cura.po 327 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.11\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-08-11 09:59+0200\n"
  10. "PO-Revision-Date: 2021-09-07 08:02+0200\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 3.0\n"
  19. "X-Poedit-SourceCharset: UTF-8\n"
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:182
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Logowanie nie powiodło się"
  24. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "Znajdowanie nowej lokalizacji obiektów"
  28. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "Szukanie Lokalizacji"
  32. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Nie można znaleźć lokalizacji w obrębie obszaru roboczego dla wszystkich obiektów"
  36. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152 /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Nie można Znaleźć Lokalizacji"
  40. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Nie można utworzyć archiwum z folderu danych użytkownika: {}"
  44. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122 /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:159 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  45. msgctxt "@info:title"
  46. msgid "Backup"
  47. msgstr "Kopia zapasowa"
  48. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134
  49. msgctxt "@info:backup_failed"
  50. msgid "Tried to restore a Cura backup without having proper data or meta data."
  51. msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura na podstawie niepoprawnych danych lub metadanych."
  52. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:145
  53. msgctxt "@info:backup_failed"
  54. msgid "Tried to restore a Cura backup that is higher than the current version."
  55. msgstr "Próbowano przywrócić kopię zapasową Cura, nowszą od aktualnej wersji."
  56. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:158
  57. msgctxt "@info:backup_failed"
  58. msgid "The following error occurred while trying to restore a Cura backup:"
  59. msgstr ""
  60. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
  61. msgctxt "@info:status"
  62. 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."
  63. msgstr "Wysokość obszaru roboczego została zmniejszona ze względu na wartość ustawienia Print Sequence (Sekwencja wydruku), aby zapobiec kolizji z wydrukowanymi modelami."
  64. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:101
  65. msgctxt "@info:title"
  66. msgid "Build Volume"
  67. msgstr "Obszar Roboczy"
  68. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  69. msgctxt "@title:window"
  70. msgid "Cura can't start"
  71. msgstr "Cura nie może się uruchomić"
  72. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  73. msgctxt "@label crash message"
  74. msgid ""
  75. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  76. " <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"
  77. " <p>Backups can be found in the configuration folder.</p>\n"
  78. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  79. " "
  80. msgstr ""
  81. "<p><b>Ups, Ultimaker Cura natrafiła coś co nie wygląda dobrze.</p></b>\n"
  82. " <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"
  83. " <p>Backupy mogą być znalezione w folderze konfiguracyjnym.</p>\n"
  84. " <p>Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem.</p>\n"
  85. " "
  86. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  87. msgctxt "@action:button"
  88. msgid "Send crash report to Ultimaker"
  89. msgstr "Wyślij raport błędu do Ultimaker"
  90. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  91. msgctxt "@action:button"
  92. msgid "Show detailed crash report"
  93. msgstr "Pokaż szczegółowy raport błędu"
  94. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  95. msgctxt "@action:button"
  96. msgid "Show configuration folder"
  97. msgstr "Pokaż folder konfiguracyjny"
  98. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  99. msgctxt "@action:button"
  100. msgid "Backup and Reset Configuration"
  101. msgstr "Zrób Backup i Zresetuj Konfigurację"
  102. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
  103. msgctxt "@title:window"
  104. msgid "Crash Report"
  105. msgstr "Raport Błędu"
  106. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
  107. msgctxt "@label crash message"
  108. msgid ""
  109. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  110. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  111. " "
  112. msgstr ""
  113. "<p><b>Wystąpił błąd krytyczny. Proszę wyślij do nas ten Raport Błędu, aby rozwiązać problem</p></b>\n"
  114. " <p>Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery</p>\n"
  115. " "
  116. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
  117. msgctxt "@title:groupbox"
  118. msgid "System information"
  119. msgstr "Informacje o systemie"
  120. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
  121. msgctxt "@label unknown version of Cura"
  122. msgid "Unknown"
  123. msgstr "Nieznany"
  124. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
  125. msgctxt "@label Cura version number"
  126. msgid "Cura version"
  127. msgstr "Wersja Cura"
  128. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
  129. msgctxt "@label"
  130. msgid "Cura language"
  131. msgstr ""
  132. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
  133. msgctxt "@label"
  134. msgid "OS language"
  135. msgstr ""
  136. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
  137. msgctxt "@label Type of platform"
  138. msgid "Platform"
  139. msgstr "Platforma"
  140. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
  141. msgctxt "@label"
  142. msgid "Qt version"
  143. msgstr "Wersja Qt"
  144. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
  145. msgctxt "@label"
  146. msgid "PyQt version"
  147. msgstr "Wersja PyQt"
  148. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
  149. msgctxt "@label OpenGL version"
  150. msgid "OpenGL"
  151. msgstr "OpenGL"
  152. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
  153. msgctxt "@label"
  154. msgid "Not yet initialized<br/>"
  155. msgstr "Jeszcze nie uruchomiono<br/>"
  156. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
  157. #, python-brace-format
  158. msgctxt "@label OpenGL version"
  159. msgid "<li>OpenGL Version: {version}</li>"
  160. msgstr "<li>Wersja OpenGL: {version}</li>"
  161. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
  162. #, python-brace-format
  163. msgctxt "@label OpenGL vendor"
  164. msgid "<li>OpenGL Vendor: {vendor}</li>"
  165. msgstr "<li>Wydawca OpenGL: {vendor}</li>"
  166. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
  167. #, python-brace-format
  168. msgctxt "@label OpenGL renderer"
  169. msgid "<li>OpenGL Renderer: {renderer}</li>"
  170. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  171. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
  172. msgctxt "@title:groupbox"
  173. msgid "Error traceback"
  174. msgstr "Śledzenie błedu"
  175. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
  176. msgctxt "@title:groupbox"
  177. msgid "Logs"
  178. msgstr "Logi"
  179. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
  180. msgctxt "@action:button"
  181. msgid "Send report"
  182. msgstr "Wyślij raport"
  183. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
  184. msgctxt "@info:progress"
  185. msgid "Loading machines..."
  186. msgstr "Ładowanie drukarek..."
  187. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
  188. msgctxt "@info:progress"
  189. msgid "Setting up preferences..."
  190. msgstr "Ustawianie preferencji..."
  191. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
  192. msgctxt "@info:progress"
  193. msgid "Initializing Active Machine..."
  194. msgstr ""
  195. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:805
  196. msgctxt "@info:progress"
  197. msgid "Initializing machine manager..."
  198. msgstr ""
  199. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:819
  200. msgctxt "@info:progress"
  201. msgid "Initializing build volume..."
  202. msgstr ""
  203. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:890
  204. msgctxt "@info:progress"
  205. msgid "Setting up scene..."
  206. msgstr "Ustawianie sceny ..."
  207. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:926
  208. msgctxt "@info:progress"
  209. msgid "Loading interface..."
  210. msgstr "Ładowanie interfejsu ..."
  211. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:931
  212. msgctxt "@info:progress"
  213. msgid "Initializing engine..."
  214. msgstr ""
  215. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1248
  216. #, python-format
  217. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  218. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  219. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  220. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1801
  221. #, python-brace-format
  222. msgctxt "@info:status"
  223. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  224. msgstr "Jednocześnie można załadować tylko jeden plik G-code. Pominięto importowanie {0}"
  225. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1803 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:191 /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:249
  226. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  227. msgctxt "@info:title"
  228. msgid "Warning"
  229. msgstr "Ostrzeżenie"
  230. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1813
  231. #, python-brace-format
  232. msgctxt "@info:status"
  233. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  234. msgstr "Nie można otworzyć żadnego innego pliku, jeśli ładuje się G-code. Pominięto importowanie {0}"
  235. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1815 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:148 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:158
  236. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  237. msgctxt "@info:title"
  238. msgid "Error"
  239. msgstr "Błąd"
  240. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
  241. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1613 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  242. msgctxt "@label"
  243. msgid "Unknown"
  244. msgstr "Nieznany"
  245. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  246. msgctxt "@label"
  247. msgid "The printer(s) below cannot be connected because they are part of a group"
  248. msgstr "Poniższa drukarka nie może być podłączona, ponieważ jest częścią grupy"
  249. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  250. msgctxt "@label"
  251. msgid "Available networked printers"
  252. msgstr "Dostępne drukarki sieciowe"
  253. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:216
  254. msgctxt "@menuitem"
  255. msgid "Not overridden"
  256. msgstr "Nie zastąpione"
  257. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  258. #, python-brace-format
  259. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  260. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  261. msgstr ""
  262. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
  263. msgctxt "@label"
  264. msgid "Default"
  265. msgstr "Domyślne"
  266. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  267. msgctxt "@label"
  268. msgid "Visual"
  269. msgstr "Wizualny"
  270. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  271. msgctxt "@text"
  272. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  273. msgstr "Profil wizualny jest przeznaczony do drukowania prototypów i modeli z zamiarem podkreślenia wysokiej jakości wizualnej i powierzchni."
  274. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  275. msgctxt "@label"
  276. msgid "Engineering"
  277. msgstr "Inżynieria"
  278. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  279. msgctxt "@text"
  280. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  281. 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ę."
  282. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  283. msgctxt "@label"
  284. msgid "Draft"
  285. msgstr "Szkic"
  286. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  287. msgctxt "@text"
  288. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  289. msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania."
  290. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:224
  291. msgctxt "@label"
  292. msgid "Custom Material"
  293. msgstr "Niestandardowy materiał"
  294. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:225 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:230
  295. msgctxt "@label"
  296. msgid "Custom"
  297. msgstr "Niestandardowy"
  298. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
  299. msgctxt "@label"
  300. msgid "Custom profiles"
  301. msgstr "Profile niestandardowe"
  302. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
  303. #, python-brace-format
  304. msgctxt "@item:inlistbox"
  305. msgid "All Supported Types ({0})"
  306. msgstr "Wszystkie Wspierane Typy ({0})"
  307. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
  308. msgctxt "@item:inlistbox"
  309. msgid "All Files (*)"
  310. msgstr "Wszystkie Pliki (*)"
  311. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
  312. msgctxt "@info:status"
  313. msgid "Multiplying and placing objects"
  314. msgstr "Zwielokrotnienie i umieszczanie przedmiotów"
  315. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
  316. msgctxt "@info:title"
  317. msgid "Placing Objects"
  318. msgstr "Umieść Obiekty"
  319. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
  320. msgctxt "@info:title"
  321. msgid "Placing Object"
  322. msgstr "Rozmieszczenie Obiektów"
  323. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  324. msgctxt "@message"
  325. msgid "Could not read response."
  326. msgstr "Nie można odczytać odpowiedzi."
  327. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  328. msgctxt "@message"
  329. msgid "The provided state is not correct."
  330. msgstr ""
  331. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  332. msgctxt "@message"
  333. msgid "Please give the required permissions when authorizing this application."
  334. msgstr "Proszę nadać wymagane uprawnienia podczas autoryzacji tej aplikacji."
  335. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  336. msgctxt "@message"
  337. msgid "Something unexpected happened when trying to log in, please try again."
  338. msgstr "Coś nieoczekiwanego się stało, podczas próby logowania, spróbuj ponownie."
  339. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
  340. msgctxt "@info"
  341. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  342. msgstr ""
  343. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:248
  344. msgctxt "@info"
  345. msgid "Unable to reach the Ultimaker account server."
  346. msgstr "Nie można uzyskać dostępu do serwera kont Ultimaker."
  347. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
  348. msgctxt "@title:window"
  349. msgid "File Already Exists"
  350. msgstr "Plik już istnieje"
  351. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  352. #, python-brace-format
  353. msgctxt "@label Don't translate the XML tag <filename>!"
  354. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  355. msgstr "Plik <filename>{0}</filename> już istnieje. Czy na pewno chcesz go nadpisać?"
  356. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457 /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
  357. msgctxt "@info:status"
  358. msgid "Invalid file URL:"
  359. msgstr "Nieprawidłowy adres URL pliku:"
  360. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:145
  361. #, python-brace-format
  362. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  363. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  364. msgstr "Nie udało się wyeksportować profilu do <filename>{0}</filename>: <message>{1}</message>"
  365. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:155
  366. #, python-brace-format
  367. msgctxt "@info:status Don't translate the XML tag <filename>!"
  368. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  369. msgstr "Nie można eksportować profilu do <filename>{0}</filename>: Wtyczka pisarza zgłosiła błąd."
  370. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:163
  371. #, python-brace-format
  372. msgctxt "@info:status Don't translate the XML tag <filename>!"
  373. msgid "Exported profile to <filename>{0}</filename>"
  374. msgstr "Wyeksportowano profil do <filename>{0}</filename>"
  375. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:165
  376. msgctxt "@info:title"
  377. msgid "Export succeeded"
  378. msgstr "Eksport udany"
  379. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:197
  380. #, python-brace-format
  381. msgctxt "@info:status Don't translate the XML tags <filename>!"
  382. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  383. msgstr "Nie powiódł się import profilu z <filename>{0}</filename>: {1}"
  384. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:201
  385. #, python-brace-format
  386. msgctxt "@info:status Don't translate the XML tags <filename>!"
  387. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  388. msgstr "Nie można importować profilu z <filename>{0}</filename> przed dodaniem drukarki."
  389. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:216
  390. #, python-brace-format
  391. msgctxt "@info:status Don't translate the XML tags <filename>!"
  392. msgid "No custom profile to import in file <filename>{0}</filename>"
  393. msgstr "Brak niestandardowego profilu do importu w pliku <filename>{0}</filename>"
  394. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:220
  395. #, python-brace-format
  396. msgctxt "@info:status Don't translate the XML tags <filename>!"
  397. msgid "Failed to import profile from <filename>{0}</filename>:"
  398. msgstr "Nie powiódł się import profilu z <filename>{0}</filename>:"
  399. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:244 /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:254
  400. #, python-brace-format
  401. msgctxt "@info:status Don't translate the XML tags <filename>!"
  402. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  403. msgstr "Profil <filename>{0}</filename> zawiera błędne dane, nie można go importować."
  404. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:347
  405. #, python-brace-format
  406. msgctxt "@info:status Don't translate the XML tag <filename>!"
  407. msgid "Failed to import profile from <filename>{0}</filename>:"
  408. msgstr "Błąd importu profilu z <filename>{0}</filename>:"
  409. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:351
  410. #, python-brace-format
  411. msgctxt "@info:status"
  412. msgid "Successfully imported profile {0}."
  413. msgstr ""
  414. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:358
  415. #, python-brace-format
  416. msgctxt "@info:status"
  417. msgid "File {0} does not contain any valid profile."
  418. msgstr "Plik {0} nie zawiera żadnego poprawnego profilu."
  419. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:361
  420. #, python-brace-format
  421. msgctxt "@info:status"
  422. msgid "Profile {0} has an unknown file type or is corrupted."
  423. msgstr "Profil {0} ma nieznany typ pliku lub jest uszkodzony."
  424. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:435
  425. msgctxt "@label"
  426. msgid "Custom profile"
  427. msgstr "Niestandardowy profil"
  428. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:451
  429. msgctxt "@info:status"
  430. msgid "Profile is missing a quality type."
  431. msgstr "Profilowi brakuje typu jakości."
  432. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:455
  433. msgctxt "@info:status"
  434. msgid "There is no active printer yet."
  435. msgstr ""
  436. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:461
  437. msgctxt "@info:status"
  438. msgid "Unable to add the profile."
  439. msgstr ""
  440. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:475
  441. #, python-brace-format
  442. msgctxt "@info:status"
  443. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  444. msgstr ""
  445. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:480
  446. #, python-brace-format
  447. msgctxt "@info:status"
  448. 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."
  449. msgstr ""
  450. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  451. msgctxt "@info:not supported profile"
  452. msgid "Not supported"
  453. msgstr "Niewspierany"
  454. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  455. msgctxt "@info:No intent profile selected"
  456. msgid "Default"
  457. msgstr "Domyślne"
  458. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  459. msgctxt "@label"
  460. msgid "Nozzle"
  461. msgstr "Dysza"
  462. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:857
  463. msgctxt "@info:message Followed by a list of settings."
  464. msgid "Settings have been changed to match the current availability of extruders:"
  465. msgstr "Ustawienia zostały zmienione w celu dopasowania do bieżącej dostępności ekstruderów:"
  466. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:859
  467. msgctxt "@info:title"
  468. msgid "Settings updated"
  469. msgstr "Ustawienia zostały zaaktualizowane"
  470. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1479
  471. msgctxt "@info:title"
  472. msgid "Extruder(s) Disabled"
  473. msgstr "Ekstruder(y) wyłączony(/e)"
  474. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  475. msgctxt "@action:button"
  476. msgid "Add"
  477. msgstr "Dodaj"
  478. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
  479. msgctxt "@action:button"
  480. msgid "Finish"
  481. msgstr ""
  482. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  483. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  484. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  485. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  486. msgctxt "@action:button"
  487. msgid "Cancel"
  488. msgstr "Anuluj"
  489. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
  490. #, python-brace-format
  491. msgctxt "@label"
  492. msgid "Group #{group_nr}"
  493. msgstr "Grupa #{group_nr}"
  494. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
  495. msgctxt "@tooltip"
  496. msgid "Outer Wall"
  497. msgstr "Zewnętrzna ściana"
  498. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
  499. msgctxt "@tooltip"
  500. msgid "Inner Walls"
  501. msgstr "Ściany wewnętrzne"
  502. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
  503. msgctxt "@tooltip"
  504. msgid "Skin"
  505. msgstr "Skin"
  506. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  507. msgctxt "@tooltip"
  508. msgid "Infill"
  509. msgstr "Wypełnienie"
  510. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  511. msgctxt "@tooltip"
  512. msgid "Support Infill"
  513. msgstr "Wypełnienie podpór"
  514. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  515. msgctxt "@tooltip"
  516. msgid "Support Interface"
  517. msgstr "Łączenie podpory"
  518. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  519. msgctxt "@tooltip"
  520. msgid "Support"
  521. msgstr "Podpory"
  522. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  523. msgctxt "@tooltip"
  524. msgid "Skirt"
  525. msgstr "Obwódka"
  526. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  527. msgctxt "@tooltip"
  528. msgid "Prime Tower"
  529. msgstr "Wieża czyszcząca"
  530. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  531. msgctxt "@tooltip"
  532. msgid "Travel"
  533. msgstr "Ruch jałowy"
  534. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  535. msgctxt "@tooltip"
  536. msgid "Retractions"
  537. msgstr "Retrakcja"
  538. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
  539. msgctxt "@tooltip"
  540. msgid "Other"
  541. msgstr "Inny"
  542. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:37 /home/trin/Gedeeld/Projects/Cura/cura/UI/TextManager.py:61
  543. msgctxt "@text:window"
  544. msgid "The release notes could not be opened."
  545. msgstr ""
  546. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56 /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
  547. msgctxt "@action:button"
  548. msgid "Next"
  549. msgstr "Następny"
  550. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268 /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
  551. msgctxt "@action:button"
  552. msgid "Skip"
  553. msgstr ""
  554. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60 /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  555. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  556. msgctxt "@action:button"
  557. msgid "Close"
  558. msgstr "Zamknij"
  559. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
  560. #, python-brace-format
  561. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  562. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  563. msgstr "Plik projektu <filename>{0}</filename> zawiera nieznany typ maszyny <message>{1}</message>. Nie można zaimportować maszyny. Zostaną zaimportowane modele."
  564. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
  565. msgctxt "@info:title"
  566. msgid "Open Project File"
  567. msgstr "Otwórz Plik Projektu"
  568. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
  569. #, python-brace-format
  570. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  571. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  572. msgstr ""
  573. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:649
  574. msgctxt "@info:title"
  575. msgid "Can't Open Project File"
  576. msgstr ""
  577. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:648
  578. #, python-brace-format
  579. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  580. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  581. msgstr ""
  582. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:701
  583. #, python-brace-format
  584. msgctxt "@info:error Don't translate the XML tag <filename>!"
  585. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  586. msgstr ""
  587. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  588. msgctxt "@title:tab"
  589. msgid "Recommended"
  590. msgstr "Zalecane"
  591. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  592. msgctxt "@title:tab"
  593. msgid "Custom"
  594. msgstr "Niestandardowe"
  595. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  596. msgctxt "@item:inlistbox"
  597. msgid "3MF File"
  598. msgstr "Plik 3MF"
  599. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  600. msgctxt "@error:zip"
  601. msgid "3MF Writer plug-in is corrupt."
  602. msgstr ""
  603. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  604. msgctxt "@error:zip"
  605. msgid "No permission to write the workspace here."
  606. msgstr ""
  607. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  608. msgctxt "@error:zip"
  609. msgid "The operating system does not allow saving a project file to this location or with this file name."
  610. msgstr ""
  611. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  612. msgctxt "@error:zip"
  613. msgid "Error writing 3mf file."
  614. msgstr "Błąd zapisu pliku 3mf."
  615. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  616. msgctxt "@item:inlistbox"
  617. msgid "3MF file"
  618. msgstr "Plik 3MF"
  619. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  620. msgctxt "@item:inlistbox"
  621. msgid "Cura Project 3MF file"
  622. msgstr "Plik Cura Project 3MF"
  623. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  624. msgctxt "@item:inlistbox"
  625. msgid "AMF File"
  626. msgstr "Plik AMF"
  627. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  628. msgctxt "@info:title"
  629. msgid "Backups"
  630. msgstr "Kopie zapasowe"
  631. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  632. msgctxt "@info:backup_status"
  633. msgid "There was an error while uploading your backup."
  634. msgstr "Wystąpił błąd podczas wgrywania kopii zapasowej."
  635. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  636. msgctxt "@info:backup_status"
  637. msgid "Creating your backup..."
  638. msgstr ""
  639. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  640. msgctxt "@info:backup_status"
  641. msgid "There was an error while creating your backup."
  642. msgstr ""
  643. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  644. msgctxt "@info:backup_status"
  645. msgid "Uploading your backup..."
  646. msgstr "Wgrywanie kopii zapasowej..."
  647. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  648. msgctxt "@info:backup_status"
  649. msgid "Your backup has finished uploading."
  650. msgstr "Wgrywanie kopii zapasowej zakończone."
  651. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  652. msgctxt "@error:file_size"
  653. msgid "The backup exceeds the maximum file size."
  654. msgstr ""
  655. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  656. msgctxt "@info:backup_status"
  657. msgid "There was an error trying to restore your backup."
  658. msgstr "Wystąpił błąd podczas próby przywrócenia kopii zapasowej."
  659. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  660. msgctxt "@item:inmenu"
  661. msgid "Manage backups"
  662. msgstr "Zarządzaj kopiami zapasowymi"
  663. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  664. msgctxt "@message"
  665. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  666. msgstr ""
  667. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  668. msgctxt "@message:title"
  669. msgid "Slicing failed"
  670. msgstr ""
  671. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:166
  672. msgctxt "@message:button"
  673. msgid "Report a bug"
  674. msgstr ""
  675. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  676. msgctxt "@message:description"
  677. msgid "Report a bug on Ultimaker Cura's issue tracker."
  678. msgstr ""
  679. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:394
  680. msgctxt "@info:status"
  681. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  682. msgstr "Nie można pociąć z obecnym materiałem, ponieważ nie jest on kompatybilny z wybraną maszyną lub konfiguracją."
  683. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  684. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:465 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:476 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  685. msgctxt "@info:title"
  686. msgid "Unable to slice"
  687. msgstr "Nie można pociąć"
  688. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:427
  689. #, python-brace-format
  690. msgctxt "@info:status"
  691. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  692. msgstr "Nie można pociąć z bieżącymi ustawieniami. Następujące ustawienia mają błędy: {0}"
  693. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:453
  694. #, python-brace-format
  695. msgctxt "@info:status"
  696. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  697. 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}"
  698. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:464
  699. msgctxt "@info:status"
  700. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  701. msgstr "Nie można pociąć, ponieważ wieża czyszcząca lub jej pozycja(e) są niewłaściwe."
  702. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:475
  703. #, python-format
  704. msgctxt "@info:status"
  705. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  706. msgstr "Nie można pociąć, ponieważ obecne są obiekty powiązane z wyłączonym ekstruderem %s."
  707. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485
  708. msgctxt "@info:status"
  709. msgid ""
  710. "Please review settings and check if your models:\n"
  711. "- Fit within the build volume\n"
  712. "- Are assigned to an enabled extruder\n"
  713. "- Are not all set as modifier meshes"
  714. msgstr ""
  715. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  716. msgctxt "@info:status"
  717. msgid "Processing Layers"
  718. msgstr "Przetwarzanie warstw"
  719. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  720. msgctxt "@info:title"
  721. msgid "Information"
  722. msgstr "Informacja"
  723. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  724. msgctxt "@item:inlistbox"
  725. msgid "Cura Profile"
  726. msgstr "Profile Cura"
  727. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  728. msgctxt "@info"
  729. msgid "Could not access update information."
  730. msgstr "Nie można uzyskać dostępu do informacji o aktualizacji."
  731. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  732. #, python-brace-format
  733. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  734. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  735. msgstr ""
  736. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  737. #, python-format
  738. msgctxt "@info:title The %s gets replaced with the printer name."
  739. msgid "New %s stable firmware available"
  740. msgstr ""
  741. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  742. msgctxt "@action:button"
  743. msgid "How to update"
  744. msgstr "Jak zaktualizować"
  745. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  746. msgctxt "@action"
  747. msgid "Update Firmware"
  748. msgstr "Aktualizacja Oprogramowania Sprzętowego"
  749. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  750. msgctxt "@item:inlistbox"
  751. msgid "Compressed G-code File"
  752. msgstr "Skompresowany Plik G-code"
  753. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  754. msgctxt "@error:not supported"
  755. msgid "GCodeGzWriter does not support text mode."
  756. msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego."
  757. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  758. msgctxt "@item:inlistbox"
  759. msgid "G-code File"
  760. msgstr "Pliki G-code"
  761. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
  762. msgctxt "@info:status"
  763. msgid "Parsing G-code"
  764. msgstr "Analizowanie G-code"
  765. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
  766. msgctxt "@info:title"
  767. msgid "G-code Details"
  768. msgstr "Szczegóły G-code"
  769. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
  770. msgctxt "@info:generic"
  771. 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."
  772. msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne."
  773. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  774. msgctxt "@item:inlistbox"
  775. msgid "G File"
  776. msgstr "Plik G-code"
  777. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  778. msgctxt "@error:not supported"
  779. msgid "GCodeWriter does not support non-text mode."
  780. msgstr "Zapisywacz G-code nie obsługuje trybu nietekstowego."
  781. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  782. msgctxt "@warning:status"
  783. msgid "Please prepare G-code before exporting."
  784. msgstr "Przygotuj G-code przed eksportem."
  785. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  786. msgctxt "@item:inlistbox"
  787. msgid "JPG Image"
  788. msgstr "Obraz JPG"
  789. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  790. msgctxt "@item:inlistbox"
  791. msgid "JPEG Image"
  792. msgstr "Obraz JPEG"
  793. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  794. msgctxt "@item:inlistbox"
  795. msgid "PNG Image"
  796. msgstr "Obraz PNG"
  797. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  798. msgctxt "@item:inlistbox"
  799. msgid "BMP Image"
  800. msgstr "Obraz BMP"
  801. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  802. msgctxt "@item:inlistbox"
  803. msgid "GIF Image"
  804. msgstr "Obraz GIF"
  805. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  806. msgctxt "@item:inlistbox"
  807. msgid "Cura 15.04 profiles"
  808. msgstr "Profile Cura 15.04"
  809. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  810. msgctxt "@action"
  811. msgid "Machine Settings"
  812. msgstr "Ustawienia drukarki"
  813. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  814. msgctxt "@info:title"
  815. msgid "3D Model Assistant"
  816. msgstr "Asystent Modelu 3D"
  817. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:97
  818. #, python-brace-format
  819. msgctxt "@info:status"
  820. msgid ""
  821. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  822. "<p>{model_names}</p>\n"
  823. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  824. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  825. msgstr ""
  826. "<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"
  827. "<p>{model_names}</p>\n"
  828. "<p>Dowiedz się, jak zapewnić najlepszą możliwą jakość oraz niezawodnośc wydruku.</p>\n"
  829. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Zobacz przewodnik po jakości wydruku (strona w języku angielskim)</a></p>"
  830. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  831. msgctxt "@item:inmenu"
  832. msgid "Monitor"
  833. msgstr "Monitor"
  834. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  835. msgctxt "@label"
  836. msgid "Per Model Settings"
  837. msgstr "Ustawienia każdego modelu osobno"
  838. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  839. msgctxt "@info:tooltip"
  840. msgid "Configure Per Model Settings"
  841. msgstr "Konfiguruj ustawienia każdego modelu z osobna"
  842. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  843. msgctxt "@item:inmenu"
  844. msgid "Post Processing"
  845. msgstr "Przetwarzanie końcowe"
  846. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  847. msgctxt "@item:inmenu"
  848. msgid "Modify G-Code"
  849. msgstr "Modyfikuj G-code"
  850. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  851. msgctxt "@item:inmenu"
  852. msgid "Prepare"
  853. msgstr "Przygotuj"
  854. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  855. msgctxt "@item:inmenu"
  856. msgid "Preview"
  857. msgstr "Podgląd"
  858. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  859. msgctxt "@action:button Preceded by 'Ready to'."
  860. msgid "Save to Removable Drive"
  861. msgstr "Zapisz na dysk wymienny"
  862. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  863. #, python-brace-format
  864. msgctxt "@item:inlistbox"
  865. msgid "Save to Removable Drive {0}"
  866. msgstr "Zapisz na dysk wymienny {0}"
  867. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  868. msgctxt "@info:status"
  869. msgid "There are no file formats available to write with!"
  870. msgstr "Nie ma żadnych formatów plików do zapisania!"
  871. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  872. #, python-brace-format
  873. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  874. msgid "Saving to Removable Drive <filename>{0}</filename>"
  875. msgstr "Zapisywanie na Dysk Wymienny <filename>{0}</filename>"
  876. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  877. msgctxt "@info:title"
  878. msgid "Saving"
  879. msgstr "Zapisywanie"
  880. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  881. #, python-brace-format
  882. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  883. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  884. msgstr "Nie mogę zapisać do <filename>{0}</filename>: <message>{1}</message>"
  885. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  886. #, python-brace-format
  887. msgctxt "@info:status Don't translate the tag {device}!"
  888. msgid "Could not find a file name when trying to write to {device}."
  889. msgstr "Nie mogę znaleźć nazwy pliku podczas próby zapisu do {device}."
  890. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  891. #, python-brace-format
  892. msgctxt "@info:status"
  893. msgid "Could not save to removable drive {0}: {1}"
  894. msgstr "Nie można zapisać na wymiennym dysku {0}: {1}"
  895. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  896. #, python-brace-format
  897. msgctxt "@info:status"
  898. msgid "Saved to Removable Drive {0} as {1}"
  899. msgstr "Zapisano na dysk wymienny {0} jako {1}"
  900. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  901. msgctxt "@info:title"
  902. msgid "File Saved"
  903. msgstr "Plik Zapisany"
  904. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  905. msgctxt "@action:button"
  906. msgid "Eject"
  907. msgstr "Wyjmij"
  908. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  909. #, python-brace-format
  910. msgctxt "@action"
  911. msgid "Eject removable device {0}"
  912. msgstr "Wyjmij urządzenie wymienne {0}"
  913. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  914. #, python-brace-format
  915. msgctxt "@info:status"
  916. msgid "Ejected {0}. You can now safely remove the drive."
  917. msgstr "Wyjęto {0}. Możesz teraz bezpiecznie wyjąć dysk."
  918. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  919. msgctxt "@info:title"
  920. msgid "Safely Remove Hardware"
  921. msgstr "Bezpiecznie Odłącz Urządzenie"
  922. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  923. #, python-brace-format
  924. msgctxt "@info:status"
  925. msgid "Failed to eject {0}. Another program may be using the drive."
  926. msgstr "Nie można wysunąć {0}. Inny program może używać dysku."
  927. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  928. msgctxt "@item:intext"
  929. msgid "Removable Drive"
  930. msgstr "Dysk wymienny"
  931. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
  932. msgctxt "@info:status"
  933. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  934. msgstr ""
  935. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
  936. msgctxt "@info:title"
  937. msgid "Simulation View"
  938. msgstr "Widok symulacji"
  939. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:133
  940. msgctxt "@info:status"
  941. msgid "Nothing is shown because you need to slice first."
  942. msgstr ""
  943. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:134
  944. msgctxt "@info:title"
  945. msgid "No layers to show"
  946. msgstr ""
  947. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:136 /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
  948. msgctxt "@info:option_text"
  949. msgid "Do not show this message again"
  950. msgstr "Nie pokazuj tego komunikatu ponownie"
  951. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  952. msgctxt "@item:inlistbox"
  953. msgid "Layer view"
  954. msgstr "Widok warstwy"
  955. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  956. msgctxt "@text"
  957. msgid "Unable to read example data file."
  958. msgstr ""
  959. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
  960. msgctxt "@info:status"
  961. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  962. msgstr ""
  963. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
  964. msgctxt "@info:title"
  965. msgid "Model Errors"
  966. msgstr ""
  967. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:80
  968. msgctxt "@action:button"
  969. msgid "Learn more"
  970. msgstr ""
  971. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  972. msgctxt "@item:inmenu"
  973. msgid "Solid view"
  974. msgstr "Widok modelu"
  975. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  976. msgctxt "@label"
  977. msgid "Support Blocker"
  978. msgstr "Blokada Podpory"
  979. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  980. msgctxt "@info:tooltip"
  981. msgid "Create a volume in which supports are not printed."
  982. msgstr "Stwórz obszar, w którym podpory nie będą drukowane."
  983. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  984. msgctxt "@info:generic"
  985. msgid "Do you want to sync material and software packages with your account?"
  986. msgstr ""
  987. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  988. msgctxt "@info:title"
  989. msgid "Changes detected from your Ultimaker account"
  990. msgstr ""
  991. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  992. msgctxt "@action:button"
  993. msgid "Sync"
  994. msgstr ""
  995. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  996. msgctxt "@info:generic"
  997. msgid "Syncing..."
  998. msgstr ""
  999. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1000. msgctxt "@button"
  1001. msgid "Decline"
  1002. msgstr ""
  1003. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1004. msgctxt "@button"
  1005. msgid "Agree"
  1006. msgstr "Zgadzam się"
  1007. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1008. msgctxt "@title:window"
  1009. msgid "Plugin License Agreement"
  1010. msgstr "Akceptowanie Licencji Wtyczki"
  1011. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  1012. msgctxt "@button"
  1013. msgid "Decline and remove from account"
  1014. msgstr ""
  1015. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19
  1016. msgctxt "@info:generic"
  1017. msgid "You need to quit and restart {} before changes have effect."
  1018. msgstr ""
  1019. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  1020. msgctxt "@info:generic"
  1021. msgid "{} plugins failed to download"
  1022. msgstr ""
  1023. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1024. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1025. msgid "Open Compressed Triangle Mesh"
  1026. msgstr "Otwórz skompresowaną siatkę trójkątów"
  1027. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1028. msgctxt "@item:inlistbox"
  1029. msgid "COLLADA Digital Asset Exchange"
  1030. msgstr "Cyfrowa wymiana zasobów COLLADA"
  1031. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1032. msgctxt "@item:inlistbox"
  1033. msgid "glTF Binary"
  1034. msgstr "Biblioteka glTF"
  1035. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1036. msgctxt "@item:inlistbox"
  1037. msgid "glTF Embedded JSON"
  1038. msgstr "Załączony JSON glTF"
  1039. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1040. msgctxt "@item:inlistbox"
  1041. msgid "Stanford Triangle Format"
  1042. msgstr "Format trójkątów Stanforda"
  1043. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1044. msgctxt "@item:inlistbox"
  1045. msgid "Compressed COLLADA Digital Asset Exchange"
  1046. msgstr "Skompresowana cyfrowa wymiana zasobów COLLADA"
  1047. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1048. msgctxt "@item:inlistbox"
  1049. msgid "Ultimaker Format Package"
  1050. msgstr "Pakiet Formatu Ultimaker"
  1051. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
  1052. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
  1053. msgctxt "@info:error"
  1054. msgid "Can't write to UFP file:"
  1055. msgstr ""
  1056. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1057. msgctxt "@action"
  1058. msgid "Level build plate"
  1059. msgstr "Wypoziomuj stół"
  1060. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1061. msgctxt "@action"
  1062. msgid "Select upgrades"
  1063. msgstr "Wybierz aktualizacje"
  1064. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1065. msgctxt "@action:button"
  1066. msgid "Print via cloud"
  1067. msgstr ""
  1068. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  1069. msgctxt "@properties:tooltip"
  1070. msgid "Print via cloud"
  1071. msgstr ""
  1072. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  1073. msgctxt "@info:status"
  1074. msgid "Connected via cloud"
  1075. msgstr ""
  1076. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  1077. msgctxt "@action:button"
  1078. msgid "Monitor print"
  1079. msgstr ""
  1080. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  1081. msgctxt "@action:tooltip"
  1082. msgid "Track the print in Ultimaker Digital Factory"
  1083. msgstr ""
  1084. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  1085. #, python-brace-format
  1086. msgctxt "@error:send"
  1087. msgid "Unknown error code when uploading print job: {0}"
  1088. msgstr ""
  1089. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  1090. msgctxt "info:status"
  1091. msgid "New printer detected from your Ultimaker account"
  1092. msgid_plural "New printers detected from your Ultimaker account"
  1093. msgstr[0] ""
  1094. msgstr[1] ""
  1095. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:239
  1096. #, python-brace-format
  1097. msgctxt "info:status Filled in with printer name and printer model."
  1098. msgid "Adding printer {name} ({model}) from your account"
  1099. msgstr ""
  1100. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:256
  1101. #, python-brace-format
  1102. msgctxt "info:{0} gets replaced by a number of printers"
  1103. msgid "... and {0} other"
  1104. msgid_plural "... and {0} others"
  1105. msgstr[0] ""
  1106. msgstr[1] ""
  1107. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:261
  1108. msgctxt "info:status"
  1109. msgid "Printers added from Digital Factory:"
  1110. msgstr ""
  1111. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:317
  1112. msgctxt "info:status"
  1113. msgid "A cloud connection is not available for a printer"
  1114. msgid_plural "A cloud connection is not available for some printers"
  1115. msgstr[0] ""
  1116. msgstr[1] ""
  1117. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:326
  1118. msgctxt "info:status"
  1119. msgid "This printer is not linked to the Digital Factory:"
  1120. msgid_plural "These printers are not linked to the Digital Factory:"
  1121. msgstr[0] ""
  1122. msgstr[1] ""
  1123. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:331 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  1124. msgctxt "info:name"
  1125. msgid "Ultimaker Digital Factory"
  1126. msgstr ""
  1127. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:335
  1128. #, python-brace-format
  1129. msgctxt "info:status"
  1130. msgid "To establish a connection, please visit the {website_link}"
  1131. msgstr ""
  1132. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:339
  1133. msgctxt "@action:button"
  1134. msgid "Keep printer configurations"
  1135. msgstr ""
  1136. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:344
  1137. msgctxt "@action:button"
  1138. msgid "Remove printers"
  1139. msgstr ""
  1140. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  1141. #, python-brace-format
  1142. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1143. msgid "{printer_name} will be removed until the next account sync."
  1144. msgstr ""
  1145. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:424
  1146. #, python-brace-format
  1147. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1148. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1149. msgstr ""
  1150. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  1151. #, python-brace-format
  1152. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1153. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1154. msgstr ""
  1155. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:462
  1156. msgctxt "@title:window"
  1157. msgid "Remove printers?"
  1158. msgstr ""
  1159. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:465
  1160. #, python-brace-format
  1161. msgctxt "@label"
  1162. msgid ""
  1163. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1164. "Are you sure you want to continue?"
  1165. msgid_plural ""
  1166. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1167. "Are you sure you want to continue?"
  1168. msgstr[0] ""
  1169. msgstr[1] ""
  1170. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:470
  1171. msgctxt "@label"
  1172. msgid ""
  1173. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1174. "Are you sure you want to continue?"
  1175. msgstr ""
  1176. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  1177. msgctxt "@info:status"
  1178. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  1179. msgstr "Wyślij i nadzoruj zadania druku z każdego miejsca, używając konta Ultimaker."
  1180. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  1181. msgctxt "@info:status Ultimaker Cloud should not be translated."
  1182. msgid "Connect to Ultimaker Digital Factory"
  1183. msgstr ""
  1184. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  1185. msgctxt "@action"
  1186. msgid "Get started"
  1187. msgstr "Rozpocznij"
  1188. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1189. msgctxt "@info:status"
  1190. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1191. msgstr "Próbujesz połączyć się z drukarką, na której nie działa Ultimaker Connect. Zaktualizuj drukarkę do najnowszej wersji firmware."
  1192. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1193. msgctxt "@info:title"
  1194. msgid "Update your printer"
  1195. msgstr "Zaktualizuj swoją drukarkę"
  1196. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1197. #, python-brace-format
  1198. msgctxt "@info:status"
  1199. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1200. msgstr "Cura wykryła profile materiałów, które nie zostały jeszcze zainstalowane na gospodarzu grupy {0}."
  1201. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1202. msgctxt "@info:title"
  1203. msgid "Sending materials to printer"
  1204. msgstr "Wysyłanie materiałów do drukarki"
  1205. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1206. #, python-brace-format
  1207. msgctxt "@info:status"
  1208. 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."
  1209. msgstr "Próbujesz połączyć się z {0}, ale nie jest to gospodarz grupy. Możesz odwiedzić stronę internetową, aby skonfigurować jako gospodarza."
  1210. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1211. msgctxt "@info:title"
  1212. msgid "Not a group host"
  1213. msgstr "Nie jest gospodarzem grupy"
  1214. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  1215. msgctxt "@action"
  1216. msgid "Configure group"
  1217. msgstr "Konfiguruj grupę"
  1218. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1219. msgctxt "@info:status"
  1220. msgid "Please wait until the current job has been sent."
  1221. msgstr "Poczekaj, aż bieżące zadanie zostanie wysłane."
  1222. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1223. msgctxt "@info:title"
  1224. msgid "Print error"
  1225. msgstr "Błąd druku"
  1226. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1227. msgctxt "@info:text"
  1228. msgid "Could not upload the data to the printer."
  1229. msgstr "Nie można wgrać danych do drukarki."
  1230. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1231. msgctxt "@info:title"
  1232. msgid "Network error"
  1233. msgstr "Błąd sieci"
  1234. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1235. msgctxt "@info:status"
  1236. msgid "Sending Print Job"
  1237. msgstr "Wysyłanie zadania druku"
  1238. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1239. msgctxt "@info:status"
  1240. msgid "Uploading print job to printer."
  1241. msgstr "Przesyłanie zadania do drukarki."
  1242. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1243. msgctxt "@info:status"
  1244. msgid "Print job queue is full. The printer can't accept a new job."
  1245. msgstr ""
  1246. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1247. msgctxt "@info:title"
  1248. msgid "Queue Full"
  1249. msgstr ""
  1250. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1251. msgctxt "@info:status"
  1252. msgid "Print job was successfully sent to the printer."
  1253. msgstr "Zadanie drukowania zostało pomyślnie wysłane do drukarki."
  1254. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1255. msgctxt "@info:title"
  1256. msgid "Data Sent"
  1257. msgstr "Dane Wysłane"
  1258. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1259. msgctxt "@action:button Preceded by 'Ready to'."
  1260. msgid "Print over network"
  1261. msgstr "Drukuj przez sieć"
  1262. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1263. msgctxt "@properties:tooltip"
  1264. msgid "Print over network"
  1265. msgstr "Drukuj przez sieć"
  1266. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1267. msgctxt "@info:status"
  1268. msgid "Connected over the network"
  1269. msgstr "Połączone przez sieć"
  1270. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1271. msgctxt "@action"
  1272. msgid "Connect via Network"
  1273. msgstr "Połącz przez sieć"
  1274. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1275. msgctxt "@info:status"
  1276. msgid "tomorrow"
  1277. msgstr "jutro"
  1278. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1279. msgctxt "@info:status"
  1280. msgid "today"
  1281. msgstr "dziś"
  1282. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1283. msgctxt "@item:inmenu"
  1284. msgid "USB printing"
  1285. msgstr "Drukowanie USB"
  1286. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1287. msgctxt "@action:button Preceded by 'Ready to'."
  1288. msgid "Print via USB"
  1289. msgstr "Drukuj przez USB"
  1290. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1291. msgctxt "@info:tooltip"
  1292. msgid "Print via USB"
  1293. msgstr "Drukuj przez USB"
  1294. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1295. msgctxt "@info:status"
  1296. msgid "Connected via USB"
  1297. msgstr "Połączono przez USB"
  1298. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1299. msgctxt "@label"
  1300. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1301. msgstr "Trwa drukowanie przez USB, zamknięcie Cura spowoduje jego zatrzymanie. Jesteś pewien?"
  1302. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1303. msgctxt "@message"
  1304. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1305. msgstr "Nadal trwa drukowanie. Cura nie może rozpocząć kolejnego wydruku przez USB, dopóki poprzedni wydruk nie zostanie zakończony."
  1306. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1307. msgctxt "@message"
  1308. msgid "Print in Progress"
  1309. msgstr "Drukowanie w toku"
  1310. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1311. msgctxt "@item:inlistbox"
  1312. msgid "X3D File"
  1313. msgstr "X3D Plik"
  1314. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1315. msgctxt "@item:inlistbox"
  1316. msgid "X-Ray view"
  1317. msgstr "Widok X-Ray"
  1318. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1319. msgctxt "@title:window"
  1320. msgid "Open Project"
  1321. msgstr "Otwórz projekt"
  1322. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1323. msgctxt "@action:ComboBox Update/override existing profile"
  1324. msgid "Update existing"
  1325. msgstr "Zaktualizuj istniejące"
  1326. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1327. msgctxt "@action:ComboBox Save settings in a new profile"
  1328. msgid "Create new"
  1329. msgstr "Utwórz nowy"
  1330. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70
  1331. msgctxt "@action:title"
  1332. msgid "Summary - Cura Project"
  1333. msgstr "Podsumowanie - Projekt Cura"
  1334. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94
  1335. msgctxt "@action:label"
  1336. msgid "Printer settings"
  1337. msgstr "Ustawienia drukarki"
  1338. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  1339. msgctxt "@info:tooltip"
  1340. msgid "How should the conflict in the machine be resolved?"
  1341. msgstr "Jak powinny być rozwiązywane błędy w maszynie?"
  1342. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103
  1343. msgctxt "@action:label"
  1344. msgid "Type"
  1345. msgstr "Typ"
  1346. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1347. msgctxt "@action:label"
  1348. msgid "Printer Group"
  1349. msgstr "Grupa drukarek"
  1350. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219
  1351. msgctxt "@action:label"
  1352. msgid "Profile settings"
  1353. msgstr "Ustawienia profilu"
  1354. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  1355. msgctxt "@info:tooltip"
  1356. msgid "How should the conflict in the profile be resolved?"
  1357. msgstr "Jak powinien zostać rozwiązany problem z profilem?"
  1358. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1359. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  1360. msgctxt "@action:label"
  1361. msgid "Name"
  1362. msgstr "Nazwa"
  1363. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260
  1364. msgctxt "@action:label"
  1365. msgid "Intent"
  1366. msgstr "Cel"
  1367. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227
  1368. msgctxt "@action:label"
  1369. msgid "Not in profile"
  1370. msgstr "Nie w profilu"
  1371. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232
  1372. msgctxt "@action:label"
  1373. msgid "%1 override"
  1374. msgid_plural "%1 overrides"
  1375. msgstr[0] "%1 nadpisanie"
  1376. msgstr[1] "%1 Zastępuje"
  1377. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  1378. msgctxt "@action:label"
  1379. msgid "Derivative from"
  1380. msgstr "Pochodna z"
  1381. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  1382. msgctxt "@action:label"
  1383. msgid "%1, %2 override"
  1384. msgid_plural "%1, %2 overrides"
  1385. msgstr[0] "%1, %2 nadpisanie"
  1386. msgstr[1] "%1, %2 zastępuje"
  1387. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  1388. msgctxt "@action:label"
  1389. msgid "Material settings"
  1390. msgstr "Ustawienia materiału"
  1391. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  1392. msgctxt "@info:tooltip"
  1393. msgid "How should the conflict in the material be resolved?"
  1394. msgstr "Jak powinien zostać rozwiązany problem z materiałem?"
  1395. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  1396. msgctxt "@action:label"
  1397. msgid "Setting visibility"
  1398. msgstr "Ustawienie widoczności"
  1399. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  1400. msgctxt "@action:label"
  1401. msgid "Mode"
  1402. msgstr "Tryb"
  1403. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1404. msgctxt "@action:label"
  1405. msgid "Visible settings:"
  1406. msgstr "Widoczne ustawienie:"
  1407. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  1408. msgctxt "@action:label"
  1409. msgid "%1 out of %2"
  1410. msgstr "%1 poza %2"
  1411. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  1412. msgctxt "@action:warning"
  1413. msgid "Loading a project will clear all models on the build plate."
  1414. msgstr "Ładowanie projektu usunie wszystkie modele z platformy roboczej."
  1415. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  1416. msgctxt "@action:button"
  1417. msgid "Open"
  1418. msgstr "Otwórz"
  1419. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1420. msgctxt "@button"
  1421. msgid "Want more?"
  1422. msgstr "Chcesz więcej?"
  1423. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1424. msgctxt "@button"
  1425. msgid "Backup Now"
  1426. msgstr "Utwórz kopię zapasową"
  1427. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1428. msgctxt "@checkbox:description"
  1429. msgid "Auto Backup"
  1430. msgstr "Automatyczne tworzenie kopii zapasowej"
  1431. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1432. msgctxt "@checkbox:description"
  1433. msgid "Automatically create a backup each day that Cura is started."
  1434. msgstr "Automatycznie twórz kopie zapasowe każdego dnia, w którym uruchomiono Curę."
  1435. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1436. msgctxt "@button"
  1437. msgid "Restore"
  1438. msgstr "Przywróć"
  1439. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1440. msgctxt "@dialog:title"
  1441. msgid "Delete Backup"
  1442. msgstr "Usuń kopię zapasową"
  1443. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101
  1444. msgctxt "@dialog:info"
  1445. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1446. msgstr "Czy na pewno chcesz usunąć tę kopię zapasową? Tej czynności nie można cofnąć."
  1447. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1448. msgctxt "@dialog:title"
  1449. msgid "Restore Backup"
  1450. msgstr "Przywróć kopię zapasową"
  1451. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110
  1452. msgctxt "@dialog:info"
  1453. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1454. msgstr "Musisz zrestartować Curę przed przywróceniem kopii zapasowej. Czy chcesz teraz zamknąć Curę?"
  1455. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1456. msgctxt "@backuplist:label"
  1457. msgid "Cura Version"
  1458. msgstr "Wersja Cura"
  1459. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1460. msgctxt "@backuplist:label"
  1461. msgid "Machines"
  1462. msgstr "Drukarki"
  1463. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1464. msgctxt "@backuplist:label"
  1465. msgid "Materials"
  1466. msgstr "Materiały"
  1467. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1468. msgctxt "@backuplist:label"
  1469. msgid "Profiles"
  1470. msgstr "Profile"
  1471. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1472. msgctxt "@backuplist:label"
  1473. msgid "Plugins"
  1474. msgstr "Pluginy"
  1475. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1476. msgctxt "@title:window"
  1477. msgid "Cura Backups"
  1478. msgstr "Kopie zapasowe cura"
  1479. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1480. msgctxt "@title"
  1481. msgid "My Backups"
  1482. msgstr "Moje Kopie Zapasowe"
  1483. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1484. msgctxt "@empty_state"
  1485. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1486. msgstr "Nie masz żadnych kopii zapasowych. Użyj przycisku „Utwórz kopię zapasową”, aby go utworzyć."
  1487. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1488. msgctxt "@backup_limit_info"
  1489. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1490. msgstr "Podczas fazy podglądu będziesz ograniczony do 5 widocznych kopii zapasowych. Usuń kopię zapasową, aby zobaczyć starsze."
  1491. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1492. msgctxt "@description"
  1493. msgid "Backup and synchronize your Cura settings."
  1494. msgstr "Wykonaj kopię zapasową i zsynchronizuj ustawienia Cura."
  1495. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
  1496. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1497. msgctxt "@button"
  1498. msgid "Sign in"
  1499. msgstr "Zaloguj"
  1500. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1501. msgctxt "@title"
  1502. msgid "Update Firmware"
  1503. msgstr "Aktualizacja Oprogramowania Sprzętowego"
  1504. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1505. msgctxt "@label"
  1506. 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."
  1507. 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."
  1508. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1509. msgctxt "@label"
  1510. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1511. msgstr "Oprogramowanie ukłądowe dostarczane z nowymi drukarkami działa, ale nowe wersje mają zazwyczaj więcej funkcji i ulepszeń."
  1512. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1513. msgctxt "@action:button"
  1514. msgid "Automatically upgrade Firmware"
  1515. msgstr "Automatycznie uaktualnij oprogramowanie"
  1516. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1517. msgctxt "@action:button"
  1518. msgid "Upload custom Firmware"
  1519. msgstr "Prześlij niestandardowe oprogramowanie"
  1520. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1521. msgctxt "@label"
  1522. msgid "Firmware can not be updated because there is no connection with the printer."
  1523. msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ nie ma połączenia z drukarką."
  1524. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1525. msgctxt "@label"
  1526. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1527. msgstr "Oprogramowanie sprzętowe nie może być zaktualizowane, ponieważ połączenie z drukarką nie wspiera usługi."
  1528. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1529. msgctxt "@title:window"
  1530. msgid "Select custom firmware"
  1531. msgstr "Wybierz niestandardowe oprogramowanie"
  1532. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1533. msgctxt "@title:window"
  1534. msgid "Firmware Update"
  1535. msgstr "Aktualizacja oprogramowania układowego"
  1536. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1537. msgctxt "@label"
  1538. msgid "Updating firmware."
  1539. msgstr "Aktualizowanie oprogramowania."
  1540. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1541. msgctxt "@label"
  1542. msgid "Firmware update completed."
  1543. msgstr "Aktualizacja oprogramowania zakończona."
  1544. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1545. msgctxt "@label"
  1546. msgid "Firmware update failed due to an unknown error."
  1547. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu nieznanego błędu."
  1548. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1549. msgctxt "@label"
  1550. msgid "Firmware update failed due to an communication error."
  1551. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu komunikacji."
  1552. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1553. msgctxt "@label"
  1554. msgid "Firmware update failed due to an input/output error."
  1555. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu błędu wejścia / wyjścia."
  1556. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1557. msgctxt "@label"
  1558. msgid "Firmware update failed due to missing firmware."
  1559. msgstr "Aktualizacja oprogramowania nie powiodła się z powodu utraconego oprogramowania."
  1560. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1561. msgctxt "@title:window"
  1562. msgid "Convert Image..."
  1563. msgstr "Konwertuj obraz ..."
  1564. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1565. msgctxt "@info:tooltip"
  1566. msgid "The maximum distance of each pixel from \"Base.\""
  1567. msgstr "Maksymalna odległość każdego piksela od \"Bazy.\""
  1568. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1569. msgctxt "@action:label"
  1570. msgid "Height (mm)"
  1571. msgstr "Wysokość (mm)"
  1572. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1573. msgctxt "@info:tooltip"
  1574. msgid "The base height from the build plate in millimeters."
  1575. msgstr "Wysokość podstawy od stołu w milimetrach."
  1576. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1577. msgctxt "@action:label"
  1578. msgid "Base (mm)"
  1579. msgstr "Baza (mm)"
  1580. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1581. msgctxt "@info:tooltip"
  1582. msgid "The width in millimeters on the build plate."
  1583. msgstr "Szerokość w milimetrach na stole."
  1584. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1585. msgctxt "@action:label"
  1586. msgid "Width (mm)"
  1587. msgstr "Szerokość (mm)"
  1588. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1589. msgctxt "@info:tooltip"
  1590. msgid "The depth in millimeters on the build plate"
  1591. msgstr "Głębokość w milimetrach na stole"
  1592. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1593. msgctxt "@action:label"
  1594. msgid "Depth (mm)"
  1595. msgstr "Głębokość (mm)"
  1596. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1597. msgctxt "@info:tooltip"
  1598. 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."
  1599. 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."
  1600. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1601. msgctxt "@item:inlistbox"
  1602. msgid "Darker is higher"
  1603. msgstr "Ciemniejsze jest wyższe"
  1604. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1605. msgctxt "@item:inlistbox"
  1606. msgid "Lighter is higher"
  1607. msgstr "Jaśniejszy jest wyższy"
  1608. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1609. msgctxt "@info:tooltip"
  1610. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1611. msgstr ""
  1612. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1613. msgctxt "@item:inlistbox"
  1614. msgid "Linear"
  1615. msgstr ""
  1616. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161 /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1617. msgctxt "@item:inlistbox"
  1618. msgid "Translucency"
  1619. msgstr ""
  1620. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1621. msgctxt "@info:tooltip"
  1622. 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."
  1623. msgstr ""
  1624. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1625. msgctxt "@action:label"
  1626. msgid "1mm Transmittance (%)"
  1627. msgstr ""
  1628. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1629. msgctxt "@info:tooltip"
  1630. msgid "The amount of smoothing to apply to the image."
  1631. msgstr "Ilość wygładzania do zastosowania do obrazu."
  1632. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1633. msgctxt "@action:label"
  1634. msgid "Smoothing"
  1635. msgstr "Wygładzanie"
  1636. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227 /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1637. msgctxt "@action:button"
  1638. msgid "OK"
  1639. msgstr "OK"
  1640. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1641. msgctxt "@title:tab"
  1642. msgid "Printer"
  1643. msgstr "Drukarka"
  1644. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1645. msgctxt "@title:label"
  1646. msgid "Nozzle Settings"
  1647. msgstr "Ustawienia dyszy"
  1648. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1649. msgctxt "@label"
  1650. msgid "Nozzle size"
  1651. msgstr "Rozmiar dyszy"
  1652. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1653. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1654. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1655. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1656. msgctxt "@label"
  1657. msgid "mm"
  1658. msgstr "mm"
  1659. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1660. msgctxt "@label"
  1661. msgid "Compatible material diameter"
  1662. msgstr "Kompatybilna średnica materiału"
  1663. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1664. msgctxt "@label"
  1665. msgid "Nozzle offset X"
  1666. msgstr "Korekcja dyszy X"
  1667. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1668. msgctxt "@label"
  1669. msgid "Nozzle offset Y"
  1670. msgstr "Korekcja dyszy Y"
  1671. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1672. msgctxt "@label"
  1673. msgid "Cooling Fan Number"
  1674. msgstr "Numer Wentylatora"
  1675. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  1676. msgctxt "@title:label"
  1677. msgid "Extruder Start G-code"
  1678. msgstr "Początkowy G-code ekstrudera"
  1679. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  1680. msgctxt "@title:label"
  1681. msgid "Extruder End G-code"
  1682. msgstr "Końcowy G-code ekstrudera"
  1683. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1684. msgctxt "@title:label"
  1685. msgid "Printer Settings"
  1686. msgstr "Ustawienia drukarki"
  1687. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1688. msgctxt "@label"
  1689. msgid "X (Width)"
  1690. msgstr "X (Szerokość)"
  1691. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1692. msgctxt "@label"
  1693. msgid "Y (Depth)"
  1694. msgstr "Y (Głębokość)"
  1695. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1696. msgctxt "@label"
  1697. msgid "Z (Height)"
  1698. msgstr "Z (Wysokość)"
  1699. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1700. msgctxt "@label"
  1701. msgid "Build plate shape"
  1702. msgstr "Kształt stołu roboczego"
  1703. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1704. msgctxt "@label"
  1705. msgid "Origin at center"
  1706. msgstr "Początek na środku"
  1707. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1708. msgctxt "@label"
  1709. msgid "Heated bed"
  1710. msgstr "Podgrzewany stół"
  1711. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1712. msgctxt "@label"
  1713. msgid "Heated build volume"
  1714. msgstr "Grzany obszar roboczy"
  1715. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1716. msgctxt "@label"
  1717. msgid "G-code flavor"
  1718. msgstr "Wersja G-code"
  1719. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1720. msgctxt "@title:label"
  1721. msgid "Printhead Settings"
  1722. msgstr "Ustawienia głowicy"
  1723. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1724. msgctxt "@label"
  1725. msgid "X min"
  1726. msgstr "X min"
  1727. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1728. msgctxt "@label"
  1729. msgid "Y min"
  1730. msgstr "Y min"
  1731. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1732. msgctxt "@label"
  1733. msgid "X max"
  1734. msgstr "X max"
  1735. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1736. msgctxt "@label"
  1737. msgid "Y max"
  1738. msgstr "Y max"
  1739. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1740. msgctxt "@label"
  1741. msgid "Gantry Height"
  1742. msgstr "Wysokość wózka"
  1743. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1744. msgctxt "@label"
  1745. msgid "Number of Extruders"
  1746. msgstr "Liczba ekstruderów"
  1747. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  1748. msgctxt "@label"
  1749. msgid "Apply Extruder offsets to GCode"
  1750. msgstr ""
  1751. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  1752. msgctxt "@title:label"
  1753. msgid "Start G-code"
  1754. msgstr "Początkowy G-code"
  1755. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  1756. msgctxt "@title:label"
  1757. msgid "End G-code"
  1758. msgstr "Końcowy G-code"
  1759. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1760. msgctxt "@info:tooltip"
  1761. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1762. msgstr "Niektóre rzeczy mogą być problematyczne podczas tego wydruku. Kliknij, aby zobaczyć porady dotyczące regulacji."
  1763. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1764. msgctxt "@info"
  1765. msgid ""
  1766. "Please make sure your printer has a connection:\n"
  1767. "- Check if the printer is turned on.\n"
  1768. "- Check if the printer is connected to the network.\n"
  1769. "- Check if you are signed in to discover cloud-connected printers."
  1770. msgstr ""
  1771. "Upewnij się, że drukarka ma połączenie:\n"
  1772. "- Sprawdź, czy drukarka jest włączona.\n"
  1773. "- Sprawdź, czy drukarka jest podłączona do sieci.\n"
  1774. "- Sprawdź, czy jesteś zalogowany, aby znaleźć drukarki podłączone do chmury."
  1775. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1776. msgctxt "@info"
  1777. msgid "Please connect your printer to the network."
  1778. msgstr "Podłącz drukarkę do sieci."
  1779. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
  1780. msgctxt "@label link to technical assistance"
  1781. msgid "View user manuals online"
  1782. msgstr "Pokaż instrukcję użytkownika online"
  1783. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
  1784. msgctxt "@info"
  1785. msgid "In order to monitor your print from Cura, please connect the printer."
  1786. msgstr ""
  1787. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1788. msgctxt "@label"
  1789. msgid "Mesh Type"
  1790. msgstr "Typ siatki"
  1791. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1792. msgctxt "@label"
  1793. msgid "Normal model"
  1794. msgstr "Normalny model"
  1795. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1796. msgctxt "@label"
  1797. msgid "Print as support"
  1798. msgstr "Drukuj jako podpora"
  1799. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1800. msgctxt "@label"
  1801. msgid "Modify settings for overlaps"
  1802. msgstr "Modyfikuj ustawienia nakładania"
  1803. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1804. msgctxt "@label"
  1805. msgid "Don't support overlaps"
  1806. msgstr "Nie wspieraj nałożenia"
  1807. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151
  1808. msgctxt "@item:inlistbox"
  1809. msgid "Infill mesh only"
  1810. msgstr ""
  1811. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152
  1812. msgctxt "@item:inlistbox"
  1813. msgid "Cutting mesh"
  1814. msgstr ""
  1815. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382
  1816. msgctxt "@action:button"
  1817. msgid "Select settings"
  1818. msgstr "Wybierz ustawienia"
  1819. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1820. msgctxt "@title:window"
  1821. msgid "Select Settings to Customize for this model"
  1822. msgstr "Wybierz Ustawienia, aby dostosować ten model"
  1823. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
  1824. msgctxt "@label:textbox"
  1825. msgid "Filter..."
  1826. msgstr "Filtr..."
  1827. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1828. msgctxt "@label:checkbox"
  1829. msgid "Show all"
  1830. msgstr "Pokaż wszystko"
  1831. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
  1832. msgctxt "@title:window"
  1833. msgid "Post Processing Plugin"
  1834. msgstr "Plugin post-processingu"
  1835. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
  1836. msgctxt "@label"
  1837. msgid "Post Processing Scripts"
  1838. msgstr "Skrypty post-processingu"
  1839. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
  1840. msgctxt "@action"
  1841. msgid "Add a script"
  1842. msgstr "Dodaj skrypt"
  1843. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
  1844. msgctxt "@label"
  1845. msgid "Settings"
  1846. msgstr "Ustawienia"
  1847. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
  1848. msgctxt "@info:tooltip"
  1849. msgid "Change active post-processing scripts."
  1850. msgstr ""
  1851. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
  1852. msgctxt "@info:tooltip"
  1853. msgid "The following script is active:"
  1854. msgid_plural "The following scripts are active:"
  1855. msgstr[0] ""
  1856. msgstr[1] ""
  1857. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1858. msgctxt "@label"
  1859. msgid "Color scheme"
  1860. msgstr "Schemat kolorów"
  1861. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
  1862. msgctxt "@label:listbox"
  1863. msgid "Material Color"
  1864. msgstr "Kolor materiału"
  1865. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
  1866. msgctxt "@label:listbox"
  1867. msgid "Line Type"
  1868. msgstr "Rodzaj linii"
  1869. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
  1870. msgctxt "@label:listbox"
  1871. msgid "Speed"
  1872. msgstr ""
  1873. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
  1874. msgctxt "@label:listbox"
  1875. msgid "Layer Thickness"
  1876. msgstr ""
  1877. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
  1878. msgctxt "@label:listbox"
  1879. msgid "Line Width"
  1880. msgstr ""
  1881. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
  1882. msgctxt "@label:listbox"
  1883. msgid "Flow"
  1884. msgstr ""
  1885. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
  1886. msgctxt "@label"
  1887. msgid "Compatibility Mode"
  1888. msgstr "Tryb zgodności"
  1889. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
  1890. msgctxt "@label"
  1891. msgid "Travels"
  1892. msgstr "Ruchy"
  1893. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
  1894. msgctxt "@label"
  1895. msgid "Helpers"
  1896. msgstr "Pomoce"
  1897. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  1898. msgctxt "@label"
  1899. msgid "Shell"
  1900. msgstr "Obrys"
  1901. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1902. msgctxt "@label"
  1903. msgid "Infill"
  1904. msgstr "Wypełnienie"
  1905. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
  1906. msgctxt "@label"
  1907. msgid "Starts"
  1908. msgstr ""
  1909. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1910. msgctxt "@label"
  1911. msgid "Only Show Top Layers"
  1912. msgstr "Pokaż tylko najwyższe warstwy"
  1913. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
  1914. msgctxt "@label"
  1915. msgid "Show 5 Detailed Layers On Top"
  1916. msgstr "Pokaż 5 Szczegółowych Warstw"
  1917. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
  1918. msgctxt "@label"
  1919. msgid "Top / Bottom"
  1920. msgstr "Góra/ Dół"
  1921. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
  1922. msgctxt "@label"
  1923. msgid "Inner Wall"
  1924. msgstr "Wewnętrzna ściana"
  1925. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
  1926. msgctxt "@label"
  1927. msgid "min"
  1928. msgstr "min"
  1929. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
  1930. msgctxt "@label"
  1931. msgid "max"
  1932. msgstr "max"
  1933. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1934. msgctxt "@title:window"
  1935. msgid "More information on anonymous data collection"
  1936. msgstr "Wiećej informacji o zbieraniu anonimowych danych"
  1937. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1938. msgctxt "@text:window"
  1939. 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:"
  1940. 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:"
  1941. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1942. msgctxt "@text:window"
  1943. msgid "I don't want to send anonymous data"
  1944. msgstr "Nie chcę wysyłać anonimowych danych"
  1945. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1946. msgctxt "@text:window"
  1947. msgid "Allow sending anonymous data"
  1948. msgstr "Pozwól na wysyłanie anonimowych danych"
  1949. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1950. msgctxt "@action:button"
  1951. msgid "Back"
  1952. msgstr "Powrót"
  1953. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1954. msgctxt "@label"
  1955. msgid "Compatibility"
  1956. msgstr "Zgodność"
  1957. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1958. msgctxt "@label:table_header"
  1959. msgid "Machine"
  1960. msgstr "Drukarka"
  1961. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1962. msgctxt "@label:table_header"
  1963. msgid "Build Plate"
  1964. msgstr "Stół roboczy"
  1965. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1966. msgctxt "@label:table_header"
  1967. msgid "Support"
  1968. msgstr "Podpory"
  1969. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1970. msgctxt "@label:table_header"
  1971. msgid "Quality"
  1972. msgstr "Jakość"
  1973. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1974. msgctxt "@action:label"
  1975. msgid "Technical Data Sheet"
  1976. msgstr "Dane Techniczne"
  1977. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1978. msgctxt "@action:label"
  1979. msgid "Safety Data Sheet"
  1980. msgstr "Dane Bezpieczeństwa"
  1981. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1982. msgctxt "@action:label"
  1983. msgid "Printing Guidelines"
  1984. msgstr "Wskazówki Drukowania"
  1985. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1986. msgctxt "@action:label"
  1987. msgid "Website"
  1988. msgstr "Strona Internetowa"
  1989. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1990. msgctxt "@action:button"
  1991. msgid "Installed"
  1992. msgstr "Zainstalowane"
  1993. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1994. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1995. msgid "<a href='%1'>Log in</a> is required to install or update"
  1996. msgstr "<a href=‚%1’>Zaloguj</a> aby zainstalować lub aktualizować"
  1997. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1998. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1999. msgid "<a href='%1'>Buy material spools</a>"
  2000. msgstr "<a href=‚%1’>Kup materiał na szpulach</a>"
  2001. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2002. msgctxt "@action:button"
  2003. msgid "Update"
  2004. msgstr "Aktualizuj"
  2005. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2006. msgctxt "@action:button"
  2007. msgid "Updating"
  2008. msgstr "Aktualizowanie"
  2009. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2010. msgctxt "@action:button"
  2011. msgid "Updated"
  2012. msgstr "Zaktualizowano"
  2013. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2014. msgctxt "@label"
  2015. msgid "Premium"
  2016. msgstr ""
  2017. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39 /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2018. msgctxt "@info:tooltip"
  2019. msgid "Go to Web Marketplace"
  2020. msgstr ""
  2021. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2022. msgctxt "@label"
  2023. msgid "Search materials"
  2024. msgstr ""
  2025. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2026. msgctxt "@info"
  2027. msgid "You will need to restart Cura before changes in packages have effect."
  2028. msgstr "Należy uruchomić ponownie Cura, aby zmiany w pakietach przyniosły efekt."
  2029. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2030. msgctxt "@info:button, %1 is the application name"
  2031. msgid "Quit %1"
  2032. msgstr ""
  2033. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2034. msgctxt "@title:tab"
  2035. msgid "Plugins"
  2036. msgstr "Wtyczki"
  2037. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:475 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2038. msgctxt "@title:tab"
  2039. msgid "Materials"
  2040. msgstr "Materiał"
  2041. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2042. msgctxt "@title:tab"
  2043. msgid "Installed"
  2044. msgstr "Zainstalowano"
  2045. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2046. msgctxt "@label"
  2047. msgid "Will install upon restarting"
  2048. msgstr "Zostanie zainstalowane po ponownym uruchomieniu"
  2049. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2050. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2051. msgid "<a href='%1'>Log in</a> is required to update"
  2052. msgstr "<a href='%1'>Zaloguj</a> aby aktualizować"
  2053. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2054. msgctxt "@action:button"
  2055. msgid "Downgrade"
  2056. msgstr "Zainstaluj poprzednią wersję"
  2057. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2058. msgctxt "@action:button"
  2059. msgid "Uninstall"
  2060. msgstr "Odinstaluj"
  2061. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2062. msgctxt "@action:button"
  2063. msgid "Install"
  2064. msgstr "Instaluj"
  2065. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2066. msgctxt "@title"
  2067. msgid "Changes from your account"
  2068. msgstr ""
  2069. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2070. msgctxt "@button"
  2071. msgid "Dismiss"
  2072. msgstr ""
  2073. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
  2075. msgctxt "@button"
  2076. msgid "Next"
  2077. msgstr "Dalej"
  2078. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2079. msgctxt "@label"
  2080. msgid "The following packages will be added:"
  2081. msgstr ""
  2082. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2083. msgctxt "@label"
  2084. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2085. msgstr ""
  2086. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2087. msgctxt "@title:window"
  2088. msgid "Confirm uninstall"
  2089. msgstr "Potwierdź deinstalację"
  2090. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2091. msgctxt "@text:window"
  2092. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2093. 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."
  2094. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2095. msgctxt "@text:window"
  2096. msgid "Materials"
  2097. msgstr "Materiały"
  2098. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2099. msgctxt "@text:window"
  2100. msgid "Profiles"
  2101. msgstr "Profile"
  2102. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2103. msgctxt "@action:button"
  2104. msgid "Confirm"
  2105. msgstr "Potwierdź"
  2106. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2107. msgctxt "@label"
  2108. msgid "You need to accept the license to install the package"
  2109. msgstr ""
  2110. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2111. msgctxt "@label"
  2112. msgid "Website"
  2113. msgstr "Strona internetowa"
  2114. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2115. msgctxt "@label"
  2116. msgid "Email"
  2117. msgstr "E-mail"
  2118. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2119. msgctxt "@label"
  2120. msgid "Version"
  2121. msgstr "Wersja"
  2122. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2123. msgctxt "@label"
  2124. msgid "Last updated"
  2125. msgstr "Ostatnia aktualizacja"
  2126. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2127. msgctxt "@label"
  2128. msgid "Brand"
  2129. msgstr "Marka"
  2130. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2131. msgctxt "@label"
  2132. msgid "Downloads"
  2133. msgstr "Pobrań"
  2134. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2135. msgctxt "@label"
  2136. msgid "Community Contributions"
  2137. msgstr "Udział Społeczności"
  2138. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2139. msgctxt "@label"
  2140. msgid "Community Plugins"
  2141. msgstr "Wtyczki Społeczności"
  2142. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2143. msgctxt "@label"
  2144. msgid "Generic Materials"
  2145. msgstr "Materiały Podstawowe"
  2146. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2147. msgctxt "@info"
  2148. msgid "Could not connect to the Cura Package database. Please check your connection."
  2149. msgstr "Nie można połączyć się z bazą danych pakietów Cura. Sprawdź swoje połączenie z internetem."
  2150. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2151. msgctxt "@title:tab"
  2152. msgid "Installed plugins"
  2153. msgstr ""
  2154. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2155. msgctxt "@info"
  2156. msgid "No plugin has been installed."
  2157. msgstr ""
  2158. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  2159. msgctxt "@title:tab"
  2160. msgid "Installed materials"
  2161. msgstr ""
  2162. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  2163. msgctxt "@info"
  2164. msgid "No material has been installed."
  2165. msgstr ""
  2166. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  2167. msgctxt "@title:tab"
  2168. msgid "Bundled plugins"
  2169. msgstr ""
  2170. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  2171. msgctxt "@title:tab"
  2172. msgid "Bundled materials"
  2173. msgstr ""
  2174. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2175. msgctxt "@info"
  2176. msgid "Fetching packages..."
  2177. msgstr "Uzyskiwanie pakietów..."
  2178. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2179. msgctxt "@description"
  2180. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2181. msgstr ""
  2182. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2183. msgctxt "@title"
  2184. msgid "Marketplace"
  2185. msgstr "Marketplace"
  2186. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2187. msgctxt "@title"
  2188. msgid "Build Plate Leveling"
  2189. msgstr "Poziomowanie stołu"
  2190. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2191. msgctxt "@label"
  2192. 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."
  2193. 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ć."
  2194. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2195. msgctxt "@label"
  2196. 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."
  2197. 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."
  2198. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2199. msgctxt "@action:button"
  2200. msgid "Start Build Plate Leveling"
  2201. msgstr "Rozpocznij poziomowanie stołu roboczego"
  2202. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2203. msgctxt "@action:button"
  2204. msgid "Move to Next Position"
  2205. msgstr "Przejdź do następnego położenia"
  2206. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2207. msgctxt "@label"
  2208. msgid "Please select any upgrades made to this Ultimaker Original"
  2209. msgstr "Proszę wybrać ulepszenia wykonane w tym Ultimaker Original"
  2210. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2211. msgctxt "@label"
  2212. msgid "Heated Build Plate (official kit or self-built)"
  2213. msgstr "Płyta grzewcza (zestaw oficjalny lub własnej roboty)"
  2214. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2215. msgctxt "@title:window"
  2216. msgid "Connect to Networked Printer"
  2217. msgstr "Połącz się z drukarką sieciową"
  2218. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2219. msgctxt "@label"
  2220. 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."
  2221. 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."
  2222. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2223. msgctxt "@label"
  2224. msgid "Select your printer from the list below:"
  2225. msgstr "Wybierz swoją drukarkę z poniższej listy:"
  2226. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2227. msgctxt "@action:button"
  2228. msgid "Edit"
  2229. msgstr "Edycja"
  2230. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2231. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2232. msgctxt "@action:button"
  2233. msgid "Remove"
  2234. msgstr "Usunąć"
  2235. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2236. msgctxt "@action:button"
  2237. msgid "Refresh"
  2238. msgstr "Odśwież"
  2239. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2240. msgctxt "@label"
  2241. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2242. msgstr "Jeżeli twojej drukarki nie ma na liście, przeczytaj <a href='%1'>poradnik o problemach z drukowaniem przez sieć</a>"
  2243. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2244. msgctxt "@label"
  2245. msgid "Type"
  2246. msgstr "Rodzaj"
  2247. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2248. msgctxt "@label"
  2249. msgid "Firmware version"
  2250. msgstr "Wersja oprogramowania"
  2251. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2252. msgctxt "@label"
  2253. msgid "Address"
  2254. msgstr "Adres"
  2255. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2256. msgctxt "@label"
  2257. msgid "This printer is not set up to host a group of printers."
  2258. msgstr "Ta drukarka nie jest skonfigurowana jako host dla grupy drukarek."
  2259. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2260. msgctxt "@label"
  2261. msgid "This printer is the host for a group of %1 printers."
  2262. msgstr "Ta drukarka jest hostem grupy %1 drukarek."
  2263. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2264. msgctxt "@label"
  2265. msgid "The printer at this address has not yet responded."
  2266. msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała."
  2267. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2268. msgctxt "@action:button"
  2269. msgid "Connect"
  2270. msgstr "Połącz"
  2271. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2272. msgctxt "@title:window"
  2273. msgid "Invalid IP address"
  2274. msgstr "Nieprawidłowy adres IP"
  2275. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2276. msgctxt "@text"
  2277. msgid "Please enter a valid IP address."
  2278. msgstr "Proszę podać poprawny adres IP."
  2279. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2280. msgctxt "@title:window"
  2281. msgid "Printer Address"
  2282. msgstr "Adres drukarki"
  2283. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2284. msgctxt "@label"
  2285. msgid "Enter the IP address of your printer on the network."
  2286. msgstr "Wprowadź adres IP drukarki."
  2287. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2288. msgctxt "@title:window"
  2289. msgid "Configuration Changes"
  2290. msgstr "Zmiany konfiguracji"
  2291. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2292. msgctxt "@action:button"
  2293. msgid "Override"
  2294. msgstr "Nadpisz"
  2295. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2296. msgctxt "@label"
  2297. msgid "The assigned printer, %1, requires the following configuration change:"
  2298. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2299. msgstr[0] "Przypisana drukarka, %1, wymaga następującej zmiany konfiguracji:"
  2300. msgstr[1] "Przypisana drukarka, %1, wymaga następujących zmian konfiguracji:"
  2301. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2302. msgctxt "@label"
  2303. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2304. msgstr "Drukarka %1 jest przypisana, ale zadanie zawiera nieznaną konfigurację materiału."
  2305. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2306. msgctxt "@label"
  2307. msgid "Change material %1 from %2 to %3."
  2308. msgstr "Zmień materiał %1 z %2 na %3."
  2309. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2310. msgctxt "@label"
  2311. msgid "Load %3 as material %1 (This cannot be overridden)."
  2312. msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)."
  2313. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2314. msgctxt "@label"
  2315. msgid "Change print core %1 from %2 to %3."
  2316. msgstr "Zmień rdzeń drukujący %1 z %2 na %3."
  2317. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2318. msgctxt "@label"
  2319. msgid "Change build plate to %1 (This cannot be overridden)."
  2320. msgstr "Zmień stół na %1 (Nie można nadpisać)."
  2321. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2322. msgctxt "@label"
  2323. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2324. msgstr "Nadpisanie spowoduje użycie określonych ustawień w istniejącej konfiguracji drukarki. Może to spowodować niepowodzenie druku."
  2325. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2326. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2327. msgctxt "@label"
  2328. msgid "Glass"
  2329. msgstr "Szkło"
  2330. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2331. msgctxt "@label"
  2332. msgid "Aluminum"
  2333. msgstr "Aluminum"
  2334. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2335. msgctxt "@label"
  2336. msgid "Move to top"
  2337. msgstr "Przesuń na początek"
  2338. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2339. msgctxt "@label"
  2340. msgid "Delete"
  2341. msgstr "Usuń"
  2342. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
  2343. msgctxt "@label"
  2344. msgid "Resume"
  2345. msgstr "Ponów"
  2346. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2347. msgctxt "@label"
  2348. msgid "Pausing..."
  2349. msgstr "Zatrzymywanie..."
  2350. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2351. msgctxt "@label"
  2352. msgid "Resuming..."
  2353. msgstr "Przywracanie..."
  2354. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
  2355. msgctxt "@label"
  2356. msgid "Pause"
  2357. msgstr "Wstrzymaj"
  2358. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2359. msgctxt "@label"
  2360. msgid "Aborting..."
  2361. msgstr "Przerywanie..."
  2362. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2363. msgctxt "@label"
  2364. msgid "Abort"
  2365. msgstr "Anuluj"
  2366. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2367. msgctxt "@label %1 is the name of a print job."
  2368. msgid "Are you sure you want to move %1 to the top of the queue?"
  2369. msgstr "Czy jesteś pewien, że chcesz przesunąć %1 na początek kolejki?"
  2370. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2371. msgctxt "@window:title"
  2372. msgid "Move print job to top"
  2373. msgstr "Przesuń zadanie drukowania na początek"
  2374. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2375. msgctxt "@label %1 is the name of a print job."
  2376. msgid "Are you sure you want to delete %1?"
  2377. msgstr "Czy jesteś pewien, że chcesz usunąć %1?"
  2378. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2379. msgctxt "@window:title"
  2380. msgid "Delete print job"
  2381. msgstr "Usuń zadanie drukowania"
  2382. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2383. msgctxt "@label %1 is the name of a print job."
  2384. msgid "Are you sure you want to abort %1?"
  2385. msgstr "Czy jesteś pewien, że chcesz anulować %1?"
  2386. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
  2387. msgctxt "@window:title"
  2388. msgid "Abort print"
  2389. msgstr "Anuluj wydruk"
  2390. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2391. msgctxt "@label link to Connect and Cloud interfaces"
  2392. msgid "Manage printer"
  2393. msgstr "Zarządzaj drukarkami"
  2394. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2395. msgctxt "@info"
  2396. msgid "Please update your printer's firmware to manage the queue remotely."
  2397. msgstr "Zaktualizuj oprogramowanie drukarki, aby zdalnie zarządzać kolejką."
  2398. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288
  2399. msgctxt "@info"
  2400. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  2401. msgstr ""
  2402. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2403. msgctxt "@label:status"
  2404. msgid "Loading..."
  2405. msgstr "Wczytywanie..."
  2406. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2407. msgctxt "@label:status"
  2408. msgid "Unavailable"
  2409. msgstr "Niedostępne"
  2410. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2411. msgctxt "@label:status"
  2412. msgid "Unreachable"
  2413. msgstr "Nieosiągalna"
  2414. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2415. msgctxt "@label:status"
  2416. msgid "Idle"
  2417. msgstr "Zajęta"
  2418. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2419. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2420. msgctxt "@label:status"
  2421. msgid "Preparing..."
  2422. msgstr "Przygotowyję..."
  2423. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2424. msgctxt "@label:status"
  2425. msgid "Printing"
  2426. msgstr "Drukowanie"
  2427. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2428. msgctxt "@label"
  2429. msgid "Untitled"
  2430. msgstr "Bez tytułu"
  2431. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2432. msgctxt "@label"
  2433. msgid "Anonymous"
  2434. msgstr "Anonimowa"
  2435. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2436. msgctxt "@label:status"
  2437. msgid "Requires configuration changes"
  2438. msgstr "Wymaga zmian konfiguracji"
  2439. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2440. msgctxt "@action:button"
  2441. msgid "Details"
  2442. msgstr "Szczegóły"
  2443. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2444. msgctxt "@label"
  2445. msgid "Unavailable printer"
  2446. msgstr "Drukarka niedostępna"
  2447. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2448. msgctxt "@label"
  2449. msgid "First available"
  2450. msgstr "Pierwsza dostępna"
  2451. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2452. msgctxt "@label:status"
  2453. msgid "Aborted"
  2454. msgstr "Anulowano"
  2455. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2456. msgctxt "@label:status"
  2457. msgid "Finished"
  2458. msgstr "Zakończono"
  2459. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2460. msgctxt "@label:status"
  2461. msgid "Aborting..."
  2462. msgstr "Przerywanie..."
  2463. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2464. msgctxt "@label:status"
  2465. msgid "Pausing..."
  2466. msgstr "Zatrzymywanie..."
  2467. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2468. msgctxt "@label:status"
  2469. msgid "Paused"
  2470. msgstr "Wstrzymana"
  2471. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2472. msgctxt "@label:status"
  2473. msgid "Resuming..."
  2474. msgstr "Przywracanie..."
  2475. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2476. msgctxt "@label:status"
  2477. msgid "Action required"
  2478. msgstr "Konieczne są działania"
  2479. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2480. msgctxt "@label:status"
  2481. msgid "Finishes %1 at %2"
  2482. msgstr "Zakończone %1 z %2"
  2483. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2484. msgctxt "@label"
  2485. msgid "Queued"
  2486. msgstr "W kolejce"
  2487. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2488. msgctxt "@label link to connect manager"
  2489. msgid "Manage in browser"
  2490. msgstr "Zarządzaj w przeglądarce"
  2491. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2492. msgctxt "@label"
  2493. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2494. msgstr "W kolejce nie ma zadań drukowania. Potnij i wyślij zadanie, aby dodać."
  2495. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2496. msgctxt "@label"
  2497. msgid "Print jobs"
  2498. msgstr "Zadania druku"
  2499. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2500. msgctxt "@label"
  2501. msgid "Total print time"
  2502. msgstr "Łączny czas druku"
  2503. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2504. msgctxt "@label"
  2505. msgid "Waiting for"
  2506. msgstr "Oczekiwanie na"
  2507. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  2508. msgctxt "@title:window"
  2509. msgid "Print over network"
  2510. msgstr "Drukuj przez sieć"
  2511. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  2512. msgctxt "@action:button"
  2513. msgid "Print"
  2514. msgstr "Drukuj"
  2515. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  2516. msgctxt "@label"
  2517. msgid "Printer selection"
  2518. msgstr "Wybór drukarki"
  2519. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2520. msgctxt "@action:button"
  2521. msgid "Sign in"
  2522. msgstr "Zaloguj"
  2523. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  2524. msgctxt "@label"
  2525. msgid "Sign in to the Ultimaker platform"
  2526. msgstr ""
  2527. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
  2528. msgctxt "@text"
  2529. msgid ""
  2530. "- Add material profiles and plug-ins from the Marketplace\n"
  2531. "- Back-up and sync your material profiles and plug-ins\n"
  2532. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  2533. msgstr ""
  2534. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
  2535. msgctxt "@button"
  2536. msgid "Create a free Ultimaker account"
  2537. msgstr ""
  2538. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
  2539. msgctxt "@label"
  2540. msgid "Checking..."
  2541. msgstr ""
  2542. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
  2543. msgctxt "@label"
  2544. msgid "Account synced"
  2545. msgstr ""
  2546. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
  2547. msgctxt "@label"
  2548. msgid "Something went wrong..."
  2549. msgstr ""
  2550. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
  2551. msgctxt "@button"
  2552. msgid "Install pending updates"
  2553. msgstr ""
  2554. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
  2555. msgctxt "@button"
  2556. msgid "Check for account updates"
  2557. msgstr ""
  2558. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:82
  2559. msgctxt "@label The argument is a timestamp"
  2560. msgid "Last update: %1"
  2561. msgstr ""
  2562. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:110
  2563. msgctxt "@button"
  2564. msgid "Ultimaker Account"
  2565. msgstr ""
  2566. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:126
  2567. msgctxt "@button"
  2568. msgid "Sign Out"
  2569. msgstr ""
  2570. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2571. msgctxt "@label"
  2572. msgid "No time estimation available"
  2573. msgstr "Szacunkowy czas niedostępny"
  2574. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2575. msgctxt "@label"
  2576. msgid "No cost estimation available"
  2577. msgstr "Szacunkowy koszt niedostępny"
  2578. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2579. msgctxt "@button"
  2580. msgid "Preview"
  2581. msgstr "Podgląd"
  2582. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2583. msgctxt "@label"
  2584. msgid "Time estimation"
  2585. msgstr "Szacunkowy czas"
  2586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2587. msgctxt "@label"
  2588. msgid "Material estimation"
  2589. msgstr "Szacunkowy materiał"
  2590. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2591. msgctxt "@label m for meter"
  2592. msgid "%1m"
  2593. msgstr "%1m"
  2594. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2595. msgctxt "@label g for grams"
  2596. msgid "%1g"
  2597. msgstr "%1g"
  2598. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2599. msgctxt "@label:PrintjobStatus"
  2600. msgid "Slicing..."
  2601. msgstr "Cięcie..."
  2602. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82
  2603. msgctxt "@label:PrintjobStatus"
  2604. msgid "Unable to slice"
  2605. msgstr "Nie można pociąć"
  2606. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2607. msgctxt "@button"
  2608. msgid "Processing"
  2609. msgstr "Przetwarzanie"
  2610. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2611. msgctxt "@button"
  2612. msgid "Slice"
  2613. msgstr "Potnij"
  2614. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122
  2615. msgctxt "@label"
  2616. msgid "Start the slicing process"
  2617. msgstr "Rozpocznij proces cięcia"
  2618. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136
  2619. msgctxt "@button"
  2620. msgid "Cancel"
  2621. msgstr "Anuluj"
  2622. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
  2623. msgctxt "@action:inmenu"
  2624. msgid "Show Online Troubleshooting Guide"
  2625. msgstr "Pokaż przewodnik rozwiązywania problemów online"
  2626. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
  2627. msgctxt "@action:inmenu"
  2628. msgid "Toggle Full Screen"
  2629. msgstr "Przełącz tryb pełnoekranowy"
  2630. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
  2631. msgctxt "@action:inmenu"
  2632. msgid "Exit Full Screen"
  2633. msgstr "Wyłącz tryb pełnoekranowy"
  2634. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
  2635. msgctxt "@action:inmenu menubar:edit"
  2636. msgid "&Undo"
  2637. msgstr "&Cofnij"
  2638. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
  2639. msgctxt "@action:inmenu menubar:edit"
  2640. msgid "&Redo"
  2641. msgstr "&Ponów"
  2642. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
  2643. msgctxt "@action:inmenu menubar:file"
  2644. msgid "&Quit"
  2645. msgstr "&Zamknij"
  2646. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:141
  2647. msgctxt "@action:inmenu menubar:view"
  2648. msgid "3D View"
  2649. msgstr "Widok 3D"
  2650. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:148
  2651. msgctxt "@action:inmenu menubar:view"
  2652. msgid "Front View"
  2653. msgstr "Widok z przodu"
  2654. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:155
  2655. msgctxt "@action:inmenu menubar:view"
  2656. msgid "Top View"
  2657. msgstr "Widok z góry"
  2658. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:162
  2659. msgctxt "@action:inmenu menubar:view"
  2660. msgid "Bottom View"
  2661. msgstr ""
  2662. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:169
  2663. msgctxt "@action:inmenu menubar:view"
  2664. msgid "Left Side View"
  2665. msgstr "Widok z lewej strony"
  2666. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:176
  2667. msgctxt "@action:inmenu menubar:view"
  2668. msgid "Right Side View"
  2669. msgstr "Widok z prawej strony"
  2670. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:190
  2671. msgctxt "@action:inmenu"
  2672. msgid "Configure Cura..."
  2673. msgstr "Konfiguruj Cura..."
  2674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:197
  2675. msgctxt "@action:inmenu menubar:printer"
  2676. msgid "&Add Printer..."
  2677. msgstr "&Dodaj drukarkę..."
  2678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
  2679. msgctxt "@action:inmenu menubar:printer"
  2680. msgid "Manage Pr&inters..."
  2681. msgstr "Zarządzaj drukarkami..."
  2682. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2683. msgctxt "@action:inmenu"
  2684. msgid "Manage Materials..."
  2685. msgstr "Zarządzaj materiałami..."
  2686. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
  2687. msgctxt "@action:inmenu"
  2688. msgid "Add more materials from Marketplace"
  2689. msgstr ""
  2690. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:225
  2691. msgctxt "@action:inmenu menubar:profile"
  2692. msgid "&Update profile with current settings/overrides"
  2693. msgstr "&Aktualizuj profil z bieżącymi ustawieniami"
  2694. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:233
  2695. msgctxt "@action:inmenu menubar:profile"
  2696. msgid "&Discard current changes"
  2697. msgstr "&Odrzuć bieżące zmiany"
  2698. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:245
  2699. msgctxt "@action:inmenu menubar:profile"
  2700. msgid "&Create profile from current settings/overrides..."
  2701. msgstr "&Utwórz profil z bieżących ustawień..."
  2702. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:251
  2703. msgctxt "@action:inmenu menubar:profile"
  2704. msgid "Manage Profiles..."
  2705. msgstr "Zarządzaj profilami..."
  2706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:259
  2707. msgctxt "@action:inmenu menubar:help"
  2708. msgid "Show Online &Documentation"
  2709. msgstr "Pokaż dokumentację internetową"
  2710. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:267
  2711. msgctxt "@action:inmenu menubar:help"
  2712. msgid "Report a &Bug"
  2713. msgstr "Zgłoś błąd"
  2714. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2715. msgctxt "@action:inmenu menubar:help"
  2716. msgid "What's New"
  2717. msgstr "Co nowego"
  2718. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:289
  2719. msgctxt "@action:inmenu menubar:help"
  2720. msgid "About..."
  2721. msgstr "O..."
  2722. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:296
  2723. msgctxt "@action:inmenu menubar:edit"
  2724. msgid "Delete Selected"
  2725. msgstr ""
  2726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:306
  2727. msgctxt "@action:inmenu menubar:edit"
  2728. msgid "Center Selected"
  2729. msgstr ""
  2730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
  2731. msgctxt "@action:inmenu menubar:edit"
  2732. msgid "Multiply Selected"
  2733. msgstr ""
  2734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:324
  2735. msgctxt "@action:inmenu"
  2736. msgid "Delete Model"
  2737. msgstr "Usuń model"
  2738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:332
  2739. msgctxt "@action:inmenu"
  2740. msgid "Ce&nter Model on Platform"
  2741. msgstr "Wyśrodkuj model na platformie"
  2742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:338
  2743. msgctxt "@action:inmenu menubar:edit"
  2744. msgid "&Group Models"
  2745. msgstr "&Grupuj modele"
  2746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:358
  2747. msgctxt "@action:inmenu menubar:edit"
  2748. msgid "Ungroup Models"
  2749. msgstr "Rozgrupuj modele"
  2750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:368
  2751. msgctxt "@action:inmenu menubar:edit"
  2752. msgid "&Merge Models"
  2753. msgstr "Połącz modele"
  2754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:378
  2755. msgctxt "@action:inmenu"
  2756. msgid "&Multiply Model..."
  2757. msgstr "&Powiel model..."
  2758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:385
  2759. msgctxt "@action:inmenu menubar:edit"
  2760. msgid "Select All Models"
  2761. msgstr "Wybierz wszystkie modele"
  2762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:395
  2763. msgctxt "@action:inmenu menubar:edit"
  2764. msgid "Clear Build Plate"
  2765. msgstr "Wyczyść stół"
  2766. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2767. msgctxt "@action:inmenu menubar:file"
  2768. msgid "Reload All Models"
  2769. msgstr "Przeładuj wszystkie modele"
  2770. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:414
  2771. msgctxt "@action:inmenu menubar:edit"
  2772. msgid "Arrange All Models To All Build Plates"
  2773. msgstr "Rozłóż Wszystkie Modele na Wszystkie Platformy Robocze"
  2774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:421
  2775. msgctxt "@action:inmenu menubar:edit"
  2776. msgid "Arrange All Models"
  2777. msgstr "Ułóż wszystkie modele"
  2778. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
  2779. msgctxt "@action:inmenu menubar:edit"
  2780. msgid "Arrange Selection"
  2781. msgstr "Wybór ułożenia"
  2782. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:436
  2783. msgctxt "@action:inmenu menubar:edit"
  2784. msgid "Reset All Model Positions"
  2785. msgstr "Zresetuj wszystkie pozycje modelu"
  2786. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:443
  2787. msgctxt "@action:inmenu menubar:edit"
  2788. msgid "Reset All Model Transformations"
  2789. msgstr "Zresetuj wszystkie przekształcenia modelu"
  2790. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:452
  2791. msgctxt "@action:inmenu menubar:file"
  2792. msgid "&Open File(s)..."
  2793. msgstr "&Otwórz plik(i)..."
  2794. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:462
  2795. msgctxt "@action:inmenu menubar:file"
  2796. msgid "&New Project..."
  2797. msgstr "&Nowy projekt..."
  2798. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:469
  2799. msgctxt "@action:inmenu menubar:help"
  2800. msgid "Show Configuration Folder"
  2801. msgstr "Pokaż folder konfiguracji"
  2802. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:476 /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:558
  2803. msgctxt "@action:menu"
  2804. msgid "Configure setting visibility..."
  2805. msgstr "Skonfiguruj widoczność ustawień ..."
  2806. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:483
  2807. msgctxt "@action:menu"
  2808. msgid "&Marketplace"
  2809. msgstr "&Marketplace"
  2810. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
  2811. msgctxt "@label"
  2812. msgid "This package will be installed after restarting."
  2813. msgstr "Ten pakiet zostanie zainstalowany po ponownym uruchomieniu."
  2814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
  2815. msgctxt "@title:tab"
  2816. msgid "General"
  2817. msgstr "Ogólny"
  2818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:471
  2819. msgctxt "@title:tab"
  2820. msgid "Settings"
  2821. msgstr "Ustawienia"
  2822. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:473 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2823. msgctxt "@title:tab"
  2824. msgid "Printers"
  2825. msgstr "Drukarki"
  2826. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:477 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2827. msgctxt "@title:tab"
  2828. msgid "Profiles"
  2829. msgstr "Profile"
  2830. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:594
  2831. msgctxt "@title:window %1 is the application name"
  2832. msgid "Closing %1"
  2833. msgstr ""
  2834. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:595 /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:607
  2835. msgctxt "@label %1 is the application name"
  2836. msgid "Are you sure you want to exit %1?"
  2837. msgstr ""
  2838. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:645 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  2839. msgctxt "@title:window"
  2840. msgid "Open file(s)"
  2841. msgstr "Otwórz plik(i)"
  2842. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:755
  2843. msgctxt "@window:title"
  2844. msgid "Install Package"
  2845. msgstr "Instaluj pakiety"
  2846. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:763
  2847. msgctxt "@title:window"
  2848. msgid "Open File(s)"
  2849. msgstr "Otwórz plik(i)"
  2850. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:766
  2851. msgctxt "@text:window"
  2852. 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."
  2853. 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."
  2854. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:875
  2855. msgctxt "@title:window"
  2856. msgid "Add Printer"
  2857. msgstr "Dodaj drukarkę"
  2858. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:883
  2859. msgctxt "@title:window"
  2860. msgid "What's New"
  2861. msgstr "Co nowego"
  2862. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2863. msgctxt "@title:window The argument is the application name."
  2864. msgid "About %1"
  2865. msgstr ""
  2866. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2867. msgctxt "@label"
  2868. msgid "version: %1"
  2869. msgstr "version: %1"
  2870. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2871. msgctxt "@label"
  2872. msgid "End-to-end solution for fused filament 3D printing."
  2873. msgstr "Kompletne rozwiązanie do druku przestrzennego."
  2874. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2875. msgctxt "@info:credit"
  2876. msgid ""
  2877. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2878. "Cura proudly uses the following open source projects:"
  2879. msgstr ""
  2880. "Cura jest rozwijana przez firmę Ultimaker B.V. we współpracy ze społecznością.\n"
  2881. "Cura z dumą korzysta z następujących projektów open source:"
  2882. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2883. msgctxt "@label"
  2884. msgid "Graphical user interface"
  2885. msgstr "Graficzny interfejs użytkownika"
  2886. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2887. msgctxt "@label"
  2888. msgid "Application framework"
  2889. msgstr "Struktura aplikacji"
  2890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2891. msgctxt "@label"
  2892. msgid "G-code generator"
  2893. msgstr "Generator g-code"
  2894. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2895. msgctxt "@label"
  2896. msgid "Interprocess communication library"
  2897. msgstr "Biblioteka komunikacji międzyprocesowej"
  2898. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2899. msgctxt "@label"
  2900. msgid "Programming language"
  2901. msgstr "Język programowania"
  2902. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2903. msgctxt "@label"
  2904. msgid "GUI framework"
  2905. msgstr "Framework GUI"
  2906. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2907. msgctxt "@label"
  2908. msgid "GUI framework bindings"
  2909. msgstr "Powiązania Frameworka GUI"
  2910. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2911. msgctxt "@label"
  2912. msgid "C/C++ Binding library"
  2913. msgstr "Biblioteka Powiązań C/C++"
  2914. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2915. msgctxt "@label"
  2916. msgid "Data interchange format"
  2917. msgstr "Format wymiany danych"
  2918. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2919. msgctxt "@label"
  2920. msgid "Support library for scientific computing"
  2921. msgstr "Wsparcie biblioteki do obliczeń naukowych"
  2922. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2923. msgctxt "@label"
  2924. msgid "Support library for faster math"
  2925. msgstr "Wsparcie biblioteki dla szybszej matematyki"
  2926. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2927. msgctxt "@label"
  2928. msgid "Support library for handling STL files"
  2929. msgstr "Wsparcie biblioteki do obsługi plików STL"
  2930. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2931. msgctxt "@label"
  2932. msgid "Support library for handling planar objects"
  2933. msgstr "Biblioteka pomocnicza do obsługi obiektów płaskich"
  2934. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2935. msgctxt "@label"
  2936. msgid "Support library for handling triangular meshes"
  2937. msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów"
  2938. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2939. msgctxt "@label"
  2940. msgid "Support library for handling 3MF files"
  2941. msgstr "Wsparcie biblioteki do obsługi plików 3MF"
  2942. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2943. msgctxt "@label"
  2944. msgid "Support library for file metadata and streaming"
  2945. msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego"
  2946. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2947. msgctxt "@label"
  2948. msgid "Serial communication library"
  2949. msgstr "Biblioteka komunikacji szeregowej"
  2950. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2951. msgctxt "@label"
  2952. msgid "ZeroConf discovery library"
  2953. msgstr "Bilbiotek poszukująca Zeroconf"
  2954. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2955. msgctxt "@label"
  2956. msgid "Polygon clipping library"
  2957. msgstr "Biblioteka edytująca pola"
  2958. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2959. msgctxt "@Label"
  2960. msgid "Static type checker for Python"
  2961. msgstr ""
  2962. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2963. msgctxt "@Label"
  2964. msgid "Root Certificates for validating SSL trustworthiness"
  2965. msgstr ""
  2966. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2967. msgctxt "@Label"
  2968. msgid "Python Error tracking library"
  2969. msgstr ""
  2970. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2971. msgctxt "@label"
  2972. msgid "Polygon packing library, developed by Prusa Research"
  2973. msgstr ""
  2974. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2975. msgctxt "@label"
  2976. msgid "Python bindings for libnest2d"
  2977. msgstr ""
  2978. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  2979. msgctxt "@label"
  2980. msgid "Support library for system keyring access"
  2981. msgstr ""
  2982. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  2983. msgctxt "@label"
  2984. msgid "Python extensions for Microsoft Windows"
  2985. msgstr ""
  2986. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  2987. msgctxt "@label"
  2988. msgid "Font"
  2989. msgstr "Czcionka"
  2990. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  2991. msgctxt "@label"
  2992. msgid "SVG icons"
  2993. msgstr "Ikony SVG"
  2994. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  2995. msgctxt "@label"
  2996. msgid "Linux cross-distribution application deployment"
  2997. msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux"
  2998. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  2999. msgctxt "@title:window"
  3000. msgid "Open project file"
  3001. msgstr "Otwórz plik projektu"
  3002. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3003. msgctxt "@text:window"
  3004. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3005. msgstr "Jest to plik projektu Cura. Czy chcesz otworzyć go jako projekt, czy zaimportować z niego modele?"
  3006. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3007. msgctxt "@text:window"
  3008. msgid "Remember my choice"
  3009. msgstr "Zapamiętaj mój wybór"
  3010. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3011. msgctxt "@action:button"
  3012. msgid "Open as project"
  3013. msgstr "Otwórz jako projekt"
  3014. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3015. msgctxt "@action:button"
  3016. msgid "Import models"
  3017. msgstr "Importuj modele"
  3018. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3019. msgctxt "@title:window"
  3020. msgid "Discard or Keep changes"
  3021. msgstr "Odrzuć lub zachowaj zmiany"
  3022. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3023. msgctxt "@text:window, %1 is a profile name"
  3024. msgid ""
  3025. "You have customized some profile settings.\n"
  3026. "Would you like to Keep these changed settings after switching profiles?\n"
  3027. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3028. msgstr ""
  3029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  3030. msgctxt "@title:column"
  3031. msgid "Profile settings"
  3032. msgstr "Ustawienia profilu"
  3033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3034. msgctxt "@title:column"
  3035. msgid "Current changes"
  3036. msgstr ""
  3037. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:737
  3038. msgctxt "@option:discardOrKeep"
  3039. msgid "Always ask me this"
  3040. msgstr "Zawsze pytaj o to"
  3041. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3042. msgctxt "@option:discardOrKeep"
  3043. msgid "Discard and never ask again"
  3044. msgstr "Odrzuć i nigdy nie pytaj"
  3045. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3046. msgctxt "@option:discardOrKeep"
  3047. msgid "Keep and never ask again"
  3048. msgstr "Zachowaj i nigdy nie pytaj"
  3049. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  3050. msgctxt "@action:button"
  3051. msgid "Discard changes"
  3052. msgstr ""
  3053. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  3054. msgctxt "@action:button"
  3055. msgid "Keep changes"
  3056. msgstr ""
  3057. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3058. msgctxt "@text:window"
  3059. 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?"
  3060. 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ć?"
  3061. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3062. msgctxt "@action:button"
  3063. msgid "Import all as models"
  3064. msgstr "Importuj wszystkie jako modele"
  3065. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16
  3066. msgctxt "@title:window"
  3067. msgid "Save Project"
  3068. msgstr "Zapisz projekt"
  3069. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174
  3070. msgctxt "@action:label"
  3071. msgid "Extruder %1"
  3072. msgstr "Ekstruder %1"
  3073. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190
  3074. msgctxt "@action:label"
  3075. msgid "%1 & material"
  3076. msgstr "%1 & materiał"
  3077. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3078. msgctxt "@action:label"
  3079. msgid "Material"
  3080. msgstr "Materiał"
  3081. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282
  3082. msgctxt "@action:label"
  3083. msgid "Don't show project summary on save again"
  3084. msgstr "Nie pokazuj podsumowania projektu podczas ponownego zapisywania"
  3085. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301
  3086. msgctxt "@action:button"
  3087. msgid "Save"
  3088. msgstr "Zapisz"
  3089. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3090. msgctxt "@label %1 is filled in with the name of an extruder"
  3091. msgid "Print Selected Model with %1"
  3092. msgid_plural "Print Selected Models with %1"
  3093. msgstr[0] "Drukuj Wybrany Model z %1"
  3094. msgstr[1] "Drukuj Wybrane Modele z %1"
  3095. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  3096. msgctxt "@text Print job name"
  3097. msgid "Untitled"
  3098. msgstr "Bez tytułu"
  3099. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  3100. msgctxt "@title:menu menubar:toplevel"
  3101. msgid "&File"
  3102. msgstr "&Plik"
  3103. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  3104. msgctxt "@title:menu menubar:toplevel"
  3105. msgid "&Edit"
  3106. msgstr "&Edytuj"
  3107. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3108. msgctxt "@title:menu menubar:toplevel"
  3109. msgid "&View"
  3110. msgstr "&Widok"
  3111. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60 /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3112. msgctxt "@title:menu menubar:toplevel"
  3113. msgid "&Settings"
  3114. msgstr "Opcje"
  3115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66
  3116. msgctxt "@title:menu menubar:toplevel"
  3117. msgid "E&xtensions"
  3118. msgstr "&Rozszerzenia"
  3119. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112
  3120. msgctxt "@title:menu menubar:toplevel"
  3121. msgid "P&references"
  3122. msgstr "Preferencje"
  3123. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120
  3124. msgctxt "@title:menu menubar:toplevel"
  3125. msgid "&Help"
  3126. msgstr "P&omoc"
  3127. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166
  3128. msgctxt "@title:window"
  3129. msgid "New project"
  3130. msgstr "Nowy projekt"
  3131. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167
  3132. msgctxt "@info:question"
  3133. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3134. msgstr "Czy na pewno chcesz rozpocząć nowy projekt? Spowoduje to wyczyszczenie stołu i niezapisanych ustawień."
  3135. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:89
  3136. msgctxt "@action:button"
  3137. msgid "Marketplace"
  3138. msgstr "Marketplace"
  3139. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3140. msgctxt "@header"
  3141. msgid "Configurations"
  3142. msgstr "Konfiguracje"
  3143. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3144. msgctxt "@label"
  3145. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3146. msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału."
  3147. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3148. msgctxt "@label"
  3149. msgid "Marketplace"
  3150. msgstr "Marketplace"
  3151. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3152. msgctxt "@label"
  3153. msgid "Loading available configurations from the printer..."
  3154. msgstr "Ładowanie dostępnych konfiguracji z drukarki..."
  3155. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3156. msgctxt "@label"
  3157. msgid "The configurations are not available because the printer is disconnected."
  3158. msgstr "Konfiguracje są niedostępne, ponieważ drukarka jest odłączona."
  3159. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:137
  3160. msgctxt "@label"
  3161. msgid "Select configuration"
  3162. msgstr "Wybierz konfigurację"
  3163. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:248
  3164. msgctxt "@label"
  3165. msgid "Configurations"
  3166. msgstr "Konfiguracje"
  3167. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3168. msgctxt "@header"
  3169. msgid "Custom"
  3170. msgstr "Niestandardowe"
  3171. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3172. msgctxt "@label"
  3173. msgid "Printer"
  3174. msgstr "Drukarka"
  3175. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3176. msgctxt "@label"
  3177. msgid "Enabled"
  3178. msgstr "Włączona"
  3179. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3180. msgctxt "@label"
  3181. msgid "Material"
  3182. msgstr "Materiał"
  3183. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
  3184. msgctxt "@label"
  3185. msgid "Use glue for better adhesion with this material combination."
  3186. msgstr "Użyj kleju dla lepszej przyczepności dla tej kombinacji materiałów."
  3187. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3188. msgctxt "@label"
  3189. msgid "Print Selected Model With:"
  3190. msgid_plural "Print Selected Models With:"
  3191. msgstr[0] "Wydrukuj wybrany model z:"
  3192. msgstr[1] "Wydrukuj wybrane modele z:"
  3193. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3194. msgctxt "@title:window"
  3195. msgid "Multiply Selected Model"
  3196. msgid_plural "Multiply Selected Models"
  3197. msgstr[0] "Zduplikuj wybrany model"
  3198. msgstr[1] "Zduplikuj wybrane modele"
  3199. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3200. msgctxt "@label"
  3201. msgid "Number of Copies"
  3202. msgstr "Liczba kopii"
  3203. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
  3204. msgctxt "@title:menu menubar:file"
  3205. msgid "&Save Project..."
  3206. msgstr ""
  3207. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
  3208. msgctxt "@title:menu menubar:file"
  3209. msgid "&Export..."
  3210. msgstr "&Eksportuj..."
  3211. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
  3212. msgctxt "@action:inmenu menubar:file"
  3213. msgid "Export Selection..."
  3214. msgstr "Eksportuj Zaznaczenie..."
  3215. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3216. msgctxt "@label:category menu label"
  3217. msgid "Material"
  3218. msgstr "Materiał"
  3219. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3220. msgctxt "@label:category menu label"
  3221. msgid "Favorites"
  3222. msgstr "Ulubione"
  3223. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3224. msgctxt "@label:category menu label"
  3225. msgid "Generic"
  3226. msgstr "Podstawowe"
  3227. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3228. msgctxt "@title:menu menubar:file"
  3229. msgid "Open File(s)..."
  3230. msgstr ""
  3231. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3232. msgctxt "@label:category menu label"
  3233. msgid "Network enabled printers"
  3234. msgstr "Drukarki dostępne w sieci"
  3235. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3236. msgctxt "@label:category menu label"
  3237. msgid "Local printers"
  3238. msgstr "Drukarki lokalne"
  3239. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3240. msgctxt "@title:menu menubar:file"
  3241. msgid "Open &Recent"
  3242. msgstr "Otwórz &ostatnio używane"
  3243. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3244. msgctxt "@title:menu menubar:file"
  3245. msgid "Save Project..."
  3246. msgstr ""
  3247. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3248. msgctxt "@title:menu menubar:settings"
  3249. msgid "&Printer"
  3250. msgstr "&Drukarka"
  3251. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3252. msgctxt "@title:menu"
  3253. msgid "&Material"
  3254. msgstr "&Materiał"
  3255. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3256. msgctxt "@action:inmenu"
  3257. msgid "Set as Active Extruder"
  3258. msgstr "Ustaw jako aktywną głowicę"
  3259. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3260. msgctxt "@action:inmenu"
  3261. msgid "Enable Extruder"
  3262. msgstr "Włącz Ekstruder"
  3263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3264. msgctxt "@action:inmenu"
  3265. msgid "Disable Extruder"
  3266. msgstr "Wyłącz Ekstruder"
  3267. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3268. msgctxt "@action:inmenu"
  3269. msgid "Visible Settings"
  3270. msgstr "Widoczne Ustawienia"
  3271. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3272. msgctxt "@action:inmenu"
  3273. msgid "Collapse All Categories"
  3274. msgstr ""
  3275. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3276. msgctxt "@action:inmenu"
  3277. msgid "Manage Setting Visibility..."
  3278. msgstr "Ustaw Widoczność Ustawień..."
  3279. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3280. msgctxt "@action:inmenu menubar:view"
  3281. msgid "&Camera position"
  3282. msgstr "&Pozycja kamery"
  3283. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
  3284. msgctxt "@action:inmenu menubar:view"
  3285. msgid "Camera view"
  3286. msgstr "Widok z kamery"
  3287. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
  3288. msgctxt "@action:inmenu menubar:view"
  3289. msgid "Perspective"
  3290. msgstr "Perspektywiczny"
  3291. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
  3292. msgctxt "@action:inmenu menubar:view"
  3293. msgid "Orthographic"
  3294. msgstr "Rzut ortograficzny"
  3295. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
  3296. msgctxt "@action:inmenu menubar:view"
  3297. msgid "&Build plate"
  3298. msgstr "P&ole robocze"
  3299. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3300. msgctxt "@label:MonitorStatus"
  3301. msgid "Not connected to a printer"
  3302. msgstr "Nie podłączono do drukarki"
  3303. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3304. msgctxt "@label:MonitorStatus"
  3305. msgid "Printer does not accept commands"
  3306. msgstr "Drukarka nie akceptuje poleceń"
  3307. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3308. msgctxt "@label:MonitorStatus"
  3309. msgid "In maintenance. Please check the printer"
  3310. msgstr "W naprawie. Sprawdź drukarkę"
  3311. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3312. msgctxt "@label:MonitorStatus"
  3313. msgid "Lost connection with the printer"
  3314. msgstr "Utracone połączenie z drukarką"
  3315. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3316. msgctxt "@label:MonitorStatus"
  3317. msgid "Printing..."
  3318. msgstr "Drukowanie..."
  3319. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3320. msgctxt "@label:MonitorStatus"
  3321. msgid "Paused"
  3322. msgstr "Wstrzymano"
  3323. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3324. msgctxt "@label:MonitorStatus"
  3325. msgid "Preparing..."
  3326. msgstr "Przygotowywanie ..."
  3327. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3328. msgctxt "@label:MonitorStatus"
  3329. msgid "Please remove the print"
  3330. msgstr "Usuń wydruk"
  3331. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
  3332. msgctxt "@label"
  3333. msgid "Abort Print"
  3334. msgstr "Anuluj Wydruk"
  3335. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
  3336. msgctxt "@label"
  3337. msgid "Are you sure you want to abort the print?"
  3338. msgstr "Czy na pewno chcesz przerwać drukowanie?"
  3339. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:112
  3340. msgctxt "@label"
  3341. msgid "Is printed as support."
  3342. msgstr ""
  3343. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:115
  3344. msgctxt "@label"
  3345. msgid "Other models overlapping with this model are modified."
  3346. msgstr ""
  3347. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:118
  3348. msgctxt "@label"
  3349. msgid "Infill overlapping with this model is modified."
  3350. msgstr ""
  3351. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:121
  3352. msgctxt "@label"
  3353. msgid "Overlaps with this model are not supported."
  3354. msgstr ""
  3355. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:128
  3356. msgctxt "@label %1 is the number of settings it overrides."
  3357. msgid "Overrides %1 setting."
  3358. msgid_plural "Overrides %1 settings."
  3359. msgstr[0] ""
  3360. msgstr[1] ""
  3361. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3362. msgctxt "@label"
  3363. msgid "Object list"
  3364. msgstr "Lista obiektów"
  3365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:141
  3366. msgctxt "@label"
  3367. msgid "Interface"
  3368. msgstr "Interfejs"
  3369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:213
  3370. msgctxt "@label"
  3371. msgid "Currency:"
  3372. msgstr "Waluta:"
  3373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:226
  3374. msgctxt "@label"
  3375. msgid "Theme:"
  3376. msgstr "Motyw:"
  3377. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:271
  3378. msgctxt "@label"
  3379. msgid "You will need to restart the application for these changes to have effect."
  3380. msgstr "Musisz zrestartować aplikację, aby te zmiany zaczęły obowiązywać."
  3381. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:288
  3382. msgctxt "@info:tooltip"
  3383. msgid "Slice automatically when changing settings."
  3384. msgstr "Tnij automatycznie podczas zmiany ustawień."
  3385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:296
  3386. msgctxt "@option:check"
  3387. msgid "Slice automatically"
  3388. msgstr "Automatyczne Cięcie"
  3389. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3390. msgctxt "@label"
  3391. msgid "Viewport behavior"
  3392. msgstr "Zachowanie okna edycji"
  3393. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:318
  3394. msgctxt "@info:tooltip"
  3395. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3396. msgstr "Zaznacz nieobsługiwane obszary modelu na czerwono. Bez wsparcia te obszary nie będą drukowane prawidłowo."
  3397. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:327
  3398. msgctxt "@option:check"
  3399. msgid "Display overhang"
  3400. msgstr "Wyświetl zwis"
  3401. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:337
  3402. msgctxt "@info:tooltip"
  3403. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3404. msgstr ""
  3405. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:346
  3406. msgctxt "@option:check"
  3407. msgid "Display model errors"
  3408. msgstr ""
  3409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:354
  3410. msgctxt "@info:tooltip"
  3411. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3412. msgstr "Przenosi kamerę, aby model był w centrum widoku, gdy wybrano model"
  3413. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:359
  3414. msgctxt "@action:button"
  3415. msgid "Center camera when item is selected"
  3416. msgstr "Wyśrodkuj kamerę kiedy przedmiot jest zaznaczony"
  3417. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:369
  3418. msgctxt "@info:tooltip"
  3419. msgid "Should the default zoom behavior of cura be inverted?"
  3420. msgstr "Czy domyślne zachowanie zoomu powinno zostać odwrócone?"
  3421. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:374
  3422. msgctxt "@action:button"
  3423. msgid "Invert the direction of camera zoom."
  3424. msgstr "Odwróć kierunek zoomu kamery."
  3425. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3426. msgctxt "@info:tooltip"
  3427. msgid "Should zooming move in the direction of the mouse?"
  3428. msgstr "Czy przybliżanie powinno poruszać się w kierunku myszy?"
  3429. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3430. msgctxt "@info:tooltip"
  3431. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3432. msgstr "Powiększanie w kierunku myszy nie jest obsługiwane w danej perspektywie."
  3433. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:395
  3434. msgctxt "@action:button"
  3435. msgid "Zoom toward mouse direction"
  3436. msgstr "Przybliżaj w kierunku myszy"
  3437. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:421
  3438. msgctxt "@info:tooltip"
  3439. msgid "Should models on the platform be moved so that they no longer intersect?"
  3440. msgstr "Czy modele na platformie powinny być przenoszone w taki sposób, aby nie przecinały się?"
  3441. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:426
  3442. msgctxt "@option:check"
  3443. msgid "Ensure models are kept apart"
  3444. msgstr "Upewnij się, że modele są oddzielone"
  3445. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3446. msgctxt "@info:tooltip"
  3447. msgid "Should models on the platform be moved down to touch the build plate?"
  3448. msgstr "Czy modele na platformie powinny być przesunięte w dół, aby dotknęły stołu roboczego?"
  3449. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3450. msgctxt "@option:check"
  3451. msgid "Automatically drop models to the build plate"
  3452. msgstr "Automatycznie upuść modele na stół roboczy"
  3453. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:452
  3454. msgctxt "@info:tooltip"
  3455. msgid "Show caution message in g-code reader."
  3456. msgstr "Pokaż wiadomości ostrzegawcze w czytniku g-code."
  3457. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:461
  3458. msgctxt "@option:check"
  3459. msgid "Caution message in g-code reader"
  3460. msgstr "Wiadomość ostrzegawcza w czytniku g-code"
  3461. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:469
  3462. msgctxt "@info:tooltip"
  3463. msgid "Should layer be forced into compatibility mode?"
  3464. msgstr "Czy warstwa powinna być wymuszona w trybie zgodności?"
  3465. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:474
  3466. msgctxt "@option:check"
  3467. msgid "Force layer view compatibility mode (restart required)"
  3468. msgstr "Wymuszenie widoku warstw w trybie zgodności (wymaga ponownego uruchomienia)"
  3469. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:484
  3470. msgctxt "@info:tooltip"
  3471. msgid "Should Cura open at the location it was closed?"
  3472. msgstr "Czy Cura powinna się otwierać w miejscu, w którym została zamknięta?"
  3473. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3474. msgctxt "@option:check"
  3475. msgid "Restore window position on start"
  3476. msgstr "Przywróć pozycję okna przy starcie"
  3477. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:499
  3478. msgctxt "@info:tooltip"
  3479. msgid "What type of camera rendering should be used?"
  3480. msgstr "Jakiego rodzaju kamery należy użyć do renderowania?"
  3481. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:506
  3482. msgctxt "@window:text"
  3483. msgid "Camera rendering:"
  3484. msgstr "Renderowanie z kamery:"
  3485. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3486. msgid "Perspective"
  3487. msgstr "Perspektywiczny"
  3488. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:514
  3489. msgid "Orthographic"
  3490. msgstr "Rzut ortograficzny"
  3491. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:552
  3492. msgctxt "@label"
  3493. msgid "Opening and saving files"
  3494. msgstr "Otwieranie i zapisywanie plików"
  3495. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:559
  3496. msgctxt "@info:tooltip"
  3497. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3498. msgstr ""
  3499. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:564
  3500. msgctxt "@option:check"
  3501. msgid "Use a single instance of Cura"
  3502. msgstr ""
  3503. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574
  3504. msgctxt "@info:tooltip"
  3505. msgid "Should models be scaled to the build volume if they are too large?"
  3506. msgstr "Czy modele powinny być skalowane do wielkości obszaru roboczego, jeśli są zbyt duże?"
  3507. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:579
  3508. msgctxt "@option:check"
  3509. msgid "Scale large models"
  3510. msgstr "Skaluj duże modele"
  3511. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:589
  3512. msgctxt "@info:tooltip"
  3513. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3514. 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?"
  3515. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:594
  3516. msgctxt "@option:check"
  3517. msgid "Scale extremely small models"
  3518. msgstr "Skaluj bardzo małe modele"
  3519. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:604
  3520. msgctxt "@info:tooltip"
  3521. msgid "Should models be selected after they are loaded?"
  3522. msgstr "Czy modele powinny zostać zaznaczone po załadowaniu?"
  3523. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:609
  3524. msgctxt "@option:check"
  3525. msgid "Select models when loaded"
  3526. msgstr "Zaznaczaj modele po załadowaniu"
  3527. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619
  3528. msgctxt "@info:tooltip"
  3529. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3530. msgstr "Czy przedrostek oparty na nazwie drukarki powinien być automatycznie dodawany do nazwy zadania?"
  3531. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3532. msgctxt "@option:check"
  3533. msgid "Add machine prefix to job name"
  3534. msgstr "Dodaj przedrostek maszyny do nazwy zadania"
  3535. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
  3536. msgctxt "@info:tooltip"
  3537. msgid "Should a summary be shown when saving a project file?"
  3538. msgstr "Czy podsumowanie powinno być wyświetlane podczas zapisu projektu?"
  3539. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:638
  3540. msgctxt "@option:check"
  3541. msgid "Show summary dialog when saving project"
  3542. msgstr "Pokaż okno podsumowania podczas zapisywaniu projektu"
  3543. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:648
  3544. msgctxt "@info:tooltip"
  3545. msgid "Default behavior when opening a project file"
  3546. msgstr "Domyślne zachowanie podczas otwierania pliku projektu"
  3547. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3548. msgctxt "@window:text"
  3549. msgid "Default behavior when opening a project file: "
  3550. msgstr "Domyślne zachowanie podczas otwierania pliku projektu: "
  3551. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670
  3552. msgctxt "@option:openProject"
  3553. msgid "Always ask me this"
  3554. msgstr "Zawsze pytaj"
  3555. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:671
  3556. msgctxt "@option:openProject"
  3557. msgid "Always open as a project"
  3558. msgstr "Zawsze otwieraj jako projekt"
  3559. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:672
  3560. msgctxt "@option:openProject"
  3561. msgid "Always import models"
  3562. msgstr "Zawsze importuj modele"
  3563. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709
  3564. msgctxt "@info:tooltip"
  3565. 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."
  3566. 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."
  3567. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:718 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3568. msgctxt "@label"
  3569. msgid "Profiles"
  3570. msgstr "Profile"
  3571. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:723
  3572. msgctxt "@window:text"
  3573. msgid "Default behavior for changed setting values when switching to a different profile: "
  3574. msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: "
  3575. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738
  3576. msgctxt "@option:discardOrKeep"
  3577. msgid "Always discard changed settings"
  3578. msgstr "Zawsze odrzucaj wprowadzone zmiany"
  3579. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:739
  3580. msgctxt "@option:discardOrKeep"
  3581. msgid "Always transfer changed settings to new profile"
  3582. msgstr "Zawsze przenoś wprowadzone zmiany do nowego profilu"
  3583. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:773
  3584. msgctxt "@label"
  3585. msgid "Privacy"
  3586. msgstr "Prywatność"
  3587. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3588. msgctxt "@info:tooltip"
  3589. 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."
  3590. 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."
  3591. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:784
  3592. msgctxt "@option:check"
  3593. msgid "Send (anonymous) print information"
  3594. msgstr "Wyślij (anonimowe) informacje o drukowaniu"
  3595. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:793
  3596. msgctxt "@action:button"
  3597. msgid "More information"
  3598. msgstr "Więcej informacji"
  3599. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:811
  3600. msgctxt "@label"
  3601. msgid "Updates"
  3602. msgstr ""
  3603. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:818
  3604. msgctxt "@info:tooltip"
  3605. msgid "Should Cura check for updates when the program is started?"
  3606. msgstr "Czy Cura ma sprawdzać dostępność aktualizacji podczas uruchamiania programu?"
  3607. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:823
  3608. msgctxt "@option:check"
  3609. msgid "Check for updates on start"
  3610. msgstr "Sprawdź, dostępność aktualizacji podczas uruchamiania"
  3611. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:834
  3612. msgctxt "@info:tooltip"
  3613. msgid "When checking for updates, only check for stable releases."
  3614. msgstr ""
  3615. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:839
  3616. msgctxt "@option:radio"
  3617. msgid "Stable releases only"
  3618. msgstr ""
  3619. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:850
  3620. msgctxt "@info:tooltip"
  3621. msgid "When checking for updates, check for both stable and for beta releases."
  3622. msgstr ""
  3623. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:855
  3624. msgctxt "@option:radio"
  3625. msgid "Stable and Beta releases"
  3626. msgstr ""
  3627. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:866
  3628. msgctxt "@info:tooltip"
  3629. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  3630. msgstr ""
  3631. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:871
  3632. msgctxt "@option:check"
  3633. msgid "Get notifications for plugin updates"
  3634. msgstr ""
  3635. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3636. msgctxt "@action:button"
  3637. msgid "Activate"
  3638. msgstr "Aktywuj"
  3639. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3640. msgctxt "@action:button"
  3641. msgid "Rename"
  3642. msgstr "Zmień nazwę"
  3643. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3644. msgctxt "@action:button"
  3645. msgid "Create"
  3646. msgstr "Stwórz"
  3647. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3648. msgctxt "@action:button"
  3649. msgid "Duplicate"
  3650. msgstr "Duplikuj"
  3651. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3652. msgctxt "@action:button"
  3653. msgid "Import"
  3654. msgstr "Importuj"
  3655. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3656. msgctxt "@action:button"
  3657. msgid "Export"
  3658. msgstr "Eksportuj"
  3659. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
  3660. msgctxt "@action:button Sending materials to printers"
  3661. msgid "Sync with Printers"
  3662. msgstr ""
  3663. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:249
  3664. msgctxt "@action:label"
  3665. msgid "Printer"
  3666. msgstr "Drukarka"
  3667. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:313 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3668. msgctxt "@title:window"
  3669. msgid "Confirm Remove"
  3670. msgstr "Potwierdź Usunięcie"
  3671. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3672. msgctxt "@label (%1 is object name)"
  3673. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3674. msgstr "Czy na pewno chcesz usunąć %1? Nie można tego cofnąć!"
  3675. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:330 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
  3676. msgctxt "@title:window"
  3677. msgid "Import Material"
  3678. msgstr "Importuj Materiał"
  3679. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:339
  3680. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3681. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3682. msgstr "Nie można zaimportować materiału <filename>%1</filename>: <message>%2</message>"
  3683. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:343
  3684. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3685. msgid "Successfully imported material <filename>%1</filename>"
  3686. msgstr "Udało się zaimportować materiał <filename>%1</filename>"
  3687. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:361 /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:369
  3688. msgctxt "@title:window"
  3689. msgid "Export Material"
  3690. msgstr "Eksportuj Materiał"
  3691. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:373
  3692. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3693. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3694. msgstr "Nie udało się wyeksportować materiału do <filename>%1</filename>: <message>%2</message>"
  3695. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:379
  3696. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3697. msgid "Successfully exported material to <filename>%1</filename>"
  3698. msgstr "Udało się wyeksportować materiał do <filename>%1</filename>"
  3699. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:389
  3700. msgctxt "@title:window"
  3701. msgid "Export All Materials"
  3702. msgstr ""
  3703. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3704. msgctxt "@title"
  3705. msgid "Information"
  3706. msgstr "Informacja"
  3707. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3708. msgctxt "@title:window"
  3709. msgid "Confirm Diameter Change"
  3710. msgstr "Potwierdź Zmianę Średnicy"
  3711. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3712. msgctxt "@label (%1 is a number)"
  3713. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3714. msgstr "Średnica nowego filamentu została ustawiona na %1mm, i nie jest kompatybilna z bieżącym ekstruderem. Czy chcesz kontynuować?"
  3715. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3716. msgctxt "@label"
  3717. msgid "Display Name"
  3718. msgstr "Wyświetlana nazwa"
  3719. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3720. msgctxt "@label"
  3721. msgid "Material Type"
  3722. msgstr "Typ Materiału"
  3723. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3724. msgctxt "@label"
  3725. msgid "Color"
  3726. msgstr "Kolor"
  3727. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3728. msgctxt "@label"
  3729. msgid "Properties"
  3730. msgstr "Właściwości"
  3731. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3732. msgctxt "@label"
  3733. msgid "Density"
  3734. msgstr "Gęstość"
  3735. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3736. msgctxt "@label"
  3737. msgid "Diameter"
  3738. msgstr "Średnica"
  3739. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3740. msgctxt "@label"
  3741. msgid "Filament Cost"
  3742. msgstr "Koszt Filamentu"
  3743. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3744. msgctxt "@label"
  3745. msgid "Filament weight"
  3746. msgstr "Waga filamentu"
  3747. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3748. msgctxt "@label"
  3749. msgid "Filament length"
  3750. msgstr "Długość Filamentu"
  3751. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3752. msgctxt "@label"
  3753. msgid "Cost per Meter"
  3754. msgstr "Koszt na metr"
  3755. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3756. msgctxt "@label"
  3757. msgid "This material is linked to %1 and shares some of its properties."
  3758. msgstr "Ten materiał jest powiązany z %1 i dzieli się niekórymi swoimi właściwościami."
  3759. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3760. msgctxt "@label"
  3761. msgid "Unlink Material"
  3762. msgstr "Odłącz materiał"
  3763. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3764. msgctxt "@label"
  3765. msgid "Description"
  3766. msgstr "Opis"
  3767. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3768. msgctxt "@label"
  3769. msgid "Adhesion Information"
  3770. msgstr "Informacje dotyczące przyczepności"
  3771. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3772. msgctxt "@label"
  3773. msgid "Print settings"
  3774. msgstr "Ustawienia druku"
  3775. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3776. msgctxt "@label"
  3777. msgid "Create"
  3778. msgstr "Stwórz"
  3779. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3780. msgctxt "@label"
  3781. msgid "Duplicate"
  3782. msgstr "Duplikuj"
  3783. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3784. msgctxt "@title:window"
  3785. msgid "Create Profile"
  3786. msgstr "Stwórz profil"
  3787. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3788. msgctxt "@info"
  3789. msgid "Please provide a name for this profile."
  3790. msgstr "Podaj nazwę tego profilu."
  3791. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3792. msgctxt "@title:window"
  3793. msgid "Duplicate Profile"
  3794. msgstr "Duplikuj profil"
  3795. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3796. msgctxt "@title:window"
  3797. msgid "Rename Profile"
  3798. msgstr "Zmień nazwę profilu"
  3799. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3800. msgctxt "@title:window"
  3801. msgid "Import Profile"
  3802. msgstr "Importuj Profil"
  3803. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3804. msgctxt "@title:window"
  3805. msgid "Export Profile"
  3806. msgstr "Eksportuj Profil"
  3807. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3808. msgctxt "@label %1 is printer name"
  3809. msgid "Printer: %1"
  3810. msgstr "Drukarka: %1"
  3811. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3812. msgctxt "@action:button"
  3813. msgid "Update profile with current settings/overrides"
  3814. msgstr "Aktualizuj profil z bieżącymi ustawieniami"
  3815. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3816. msgctxt "@action:button"
  3817. msgid "Discard current changes"
  3818. msgstr "Odrzuć bieżące zmiany"
  3819. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3820. msgctxt "@action:label"
  3821. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3822. msgstr "Ten profil używa ustawień domyślnych określonych przez drukarkę, dlatego nie ma żadnych ustawień z poniższej liście."
  3823. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3824. msgctxt "@action:label"
  3825. msgid "Your current settings match the selected profile."
  3826. msgstr "Aktualne ustawienia odpowiadają wybranemu profilowi."
  3827. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3828. msgctxt "@title:tab"
  3829. msgid "Global Settings"
  3830. msgstr "Ustawienia ogólne"
  3831. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3832. msgctxt "@info:status"
  3833. msgid "Calculated"
  3834. msgstr "Przeliczone"
  3835. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3836. msgctxt "@title:column"
  3837. msgid "Setting"
  3838. msgstr "Ustawienie"
  3839. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3840. msgctxt "@title:column"
  3841. msgid "Profile"
  3842. msgstr "Profil"
  3843. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3844. msgctxt "@title:column"
  3845. msgid "Current"
  3846. msgstr "Aktualny"
  3847. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3848. msgctxt "@title:column"
  3849. msgid "Unit"
  3850. msgstr "Jednostka"
  3851. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
  3852. msgctxt "@title:tab"
  3853. msgid "Setting Visibility"
  3854. msgstr "Widoczność ustawienia"
  3855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
  3856. msgctxt "@label:textbox"
  3857. msgid "Check all"
  3858. msgstr "Zaznacz wszystko"
  3859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3860. msgctxt "@label"
  3861. msgid "Extruder"
  3862. msgstr "Ekstruder"
  3863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3864. msgctxt "@tooltip"
  3865. 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."
  3866. 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."
  3867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3868. msgctxt "@tooltip"
  3869. msgid "The current temperature of this hotend."
  3870. msgstr "Aktualna temperatura tej głowicy."
  3871. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3872. msgctxt "@tooltip of temperature input"
  3873. msgid "The temperature to pre-heat the hotend to."
  3874. msgstr "Temperatura do wstępnego podgrzewania głowicy."
  3875. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3876. msgctxt "@button Cancel pre-heating"
  3877. msgid "Cancel"
  3878. msgstr "Anuluj"
  3879. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3880. msgctxt "@button"
  3881. msgid "Pre-heat"
  3882. msgstr "Podgrzewanie wstępne"
  3883. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3884. msgctxt "@tooltip of pre-heat"
  3885. 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."
  3886. 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."
  3887. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3888. msgctxt "@tooltip"
  3889. msgid "The colour of the material in this extruder."
  3890. msgstr "Kolor materiału w tym ekstruderze."
  3891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3892. msgctxt "@tooltip"
  3893. msgid "The material in this extruder."
  3894. msgstr "Materiał w głowicy drukującej."
  3895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3896. msgctxt "@tooltip"
  3897. msgid "The nozzle inserted in this extruder."
  3898. msgstr "Dysza włożona do tego ekstrudera."
  3899. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3900. msgctxt "@label"
  3901. msgid "Build plate"
  3902. msgstr "Stół roboczy"
  3903. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3904. msgctxt "@tooltip"
  3905. 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."
  3906. 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."
  3907. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3908. msgctxt "@tooltip"
  3909. msgid "The current temperature of the heated bed."
  3910. msgstr "Bieżąca temperatura podgrzewanego stołu."
  3911. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3912. msgctxt "@tooltip of temperature input"
  3913. msgid "The temperature to pre-heat the bed to."
  3914. msgstr "Temperatura do wstępnego podgrzewania stołu."
  3915. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3916. msgctxt "@tooltip of pre-heat"
  3917. 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."
  3918. 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."
  3919. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3920. msgctxt "@label"
  3921. msgid "Printer control"
  3922. msgstr "Kontrola drukarką"
  3923. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3924. msgctxt "@label"
  3925. msgid "Jog Position"
  3926. msgstr "Pozycja Swobodnego Ruchu"
  3927. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3928. msgctxt "@label"
  3929. msgid "X/Y"
  3930. msgstr "X/Y"
  3931. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3932. msgctxt "@label"
  3933. msgid "Z"
  3934. msgstr "Z"
  3935. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3936. msgctxt "@label"
  3937. msgid "Jog Distance"
  3938. msgstr "Dystans Swobodnego Ruchu"
  3939. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3940. msgctxt "@label"
  3941. msgid "Send G-code"
  3942. msgstr "Wyślij G-code"
  3943. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3944. msgctxt "@tooltip of G-code command input"
  3945. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3946. msgstr "Wyślij niestandardową komendę G-code do podłączonej drukarki. Naciśnij 'enter', aby wysłać komendę."
  3947. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3948. msgctxt "@info:status"
  3949. msgid "The printer is not connected."
  3950. msgstr "Drukarka nie jest podłączona."
  3951. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3952. msgctxt "@status"
  3953. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3954. msgstr ""
  3955. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3956. msgctxt "@status"
  3957. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3958. msgstr ""
  3959. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3960. msgctxt "@status"
  3961. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3962. msgstr ""
  3963. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3964. msgctxt "@status"
  3965. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3966. msgstr ""
  3967. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252
  3968. msgctxt "@button"
  3969. msgid "Add printer"
  3970. msgstr "Dodaj drukarkę"
  3971. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269
  3972. msgctxt "@button"
  3973. msgid "Manage printers"
  3974. msgstr "Zarządzaj drukarkami"
  3975. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3976. msgctxt "@label"
  3977. msgid "Connected printers"
  3978. msgstr "Podłączone drukarki"
  3979. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3980. msgctxt "@label"
  3981. msgid "Preset printers"
  3982. msgstr "Zdefiniowane drukarki"
  3983. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  3984. msgctxt "@label"
  3985. msgid "Active print"
  3986. msgstr "Aktywny wydruk"
  3987. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  3988. msgctxt "@label"
  3989. msgid "Job Name"
  3990. msgstr "Nazwa pracy"
  3991. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  3992. msgctxt "@label"
  3993. msgid "Printing Time"
  3994. msgstr "Czas druku"
  3995. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  3996. msgctxt "@label"
  3997. msgid "Estimated time left"
  3998. msgstr "Szacowany czas pozostały"
  3999. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  4000. msgctxt "@label"
  4001. msgid "Profile"
  4002. msgstr "Profil"
  4003. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  4004. msgctxt "@tooltip"
  4005. msgid ""
  4006. "Some setting/override values are different from the values stored in the profile.\n"
  4007. "\n"
  4008. "Click to open the profile manager."
  4009. msgstr ""
  4010. "Niektóre wartości ustawień różnią się od wartości zapisanych w profilu.\n"
  4011. "\n"
  4012. "Kliknij, aby otworzyć menedżer profili."
  4013. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  4014. msgctxt "@label:header"
  4015. msgid "Custom profiles"
  4016. msgstr "Profile niestandardowe"
  4017. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  4018. 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')"
  4019. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  4020. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  4021. msgstr[0] "Nie ma profilu %1 dla konfiguracji w ekstruderze %2. Zamiast tego zostaną użyte domyślne cale"
  4022. msgstr[1] "Nie ma profilu %1 dla konfiguracji w ekstruderach %2. Zamiast tego zostaną użyte domyślne cale"
  4023. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  4024. msgctxt "@label shown when we load a Gcode file"
  4025. msgid "Print setup disabled. G-code file can not be modified."
  4026. msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany."
  4027. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  4028. msgctxt "@button"
  4029. msgid "Recommended"
  4030. msgstr "Polecane"
  4031. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  4032. msgctxt "@button"
  4033. msgid "Custom"
  4034. msgstr "Niestandardowe"
  4035. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4036. msgctxt "@label:Should be short"
  4037. msgid "On"
  4038. msgstr "Wł"
  4039. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4040. msgctxt "@label:Should be short"
  4041. msgid "Off"
  4042. msgstr "Wył"
  4043. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4044. msgctxt "@label"
  4045. msgid "Experimental"
  4046. msgstr "Eksperymentalne"
  4047. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  4048. msgctxt "@label"
  4049. msgid "Adhesion"
  4050. msgstr "Przyczepność"
  4051. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75
  4052. msgctxt "@label"
  4053. 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."
  4054. 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."
  4055. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196
  4056. msgctxt "@label"
  4057. msgid "Gradual infill"
  4058. msgstr "Stopniowe wypełnienie"
  4059. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235
  4060. msgctxt "@label"
  4061. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4062. msgstr "Stopniowe wypełnienie stopniowo zwiększa ilość wypełnień w górę."
  4063. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82
  4064. msgctxt "@tooltip"
  4065. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  4066. msgstr "Zmodyfikowałeś ustawienia profilu. Jeżeli chcesz je zmienić, przejdź do trybu niestandardowego."
  4067. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  4068. msgctxt "@label"
  4069. msgid "Support"
  4070. msgstr "Podpory"
  4071. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72
  4072. msgctxt "@label"
  4073. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4074. msgstr "Generuje podpory wspierające części modelu, które mają zwis. Bez tych podpór takie części mogłyby spaść podczas drukowania."
  4075. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:203
  4076. msgctxt "@label"
  4077. msgid ""
  4078. "Some hidden settings use values different from their normal calculated value.\n"
  4079. "\n"
  4080. "Click to make these settings visible."
  4081. msgstr ""
  4082. "Niektóre ukryte ustawienia używają wartości różniących się od ich normalnej, obliczonej wartości.\n"
  4083. "\n"
  4084. "Kliknij, aby te ustawienia były widoczne."
  4085. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  4086. msgctxt "@label"
  4087. msgid "This setting is not used because all the settings that it influences are overridden."
  4088. msgstr "To ustawienie nie jest używane, ponieważ wszystkie ustawienia, na które wpływa, są nadpisane."
  4089. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  4090. msgctxt "@label Header for list of settings."
  4091. msgid "Affects"
  4092. msgstr "Wpływać"
  4093. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  4094. msgctxt "@label Header for list of settings."
  4095. msgid "Affected By"
  4096. msgstr "Pod wpływem"
  4097. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:188
  4098. msgctxt "@label"
  4099. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4100. msgstr "To ustawienie jest dzielone pomiędzy wszystkimi ekstruderami. Zmiana tutaj spowoduje zmianę dla wszystkich ekstruderów."
  4101. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:192
  4102. msgctxt "@label"
  4103. msgid "This setting is resolved from conflicting extruder-specific values:"
  4104. msgstr ""
  4105. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:232
  4106. msgctxt "@label"
  4107. msgid ""
  4108. "This setting has a value that is different from the profile.\n"
  4109. "\n"
  4110. "Click to restore the value of the profile."
  4111. msgstr ""
  4112. "To ustawienie ma inną wartość niż w profilu.\n"
  4113. "\n"
  4114. "Kliknij, aby przywrócić wartość z profilu."
  4115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:332
  4116. msgctxt "@label"
  4117. msgid ""
  4118. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4119. "\n"
  4120. "Click to restore the calculated value."
  4121. msgstr ""
  4122. "To ustawienie jest zwykle obliczane, ale obecnie ma wartość bezwzględną.\n"
  4123. "\n"
  4124. "Kliknij, aby przywrócić wartość obliczoną."
  4125. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:72
  4126. msgctxt "@label:textbox"
  4127. msgid "Search settings"
  4128. msgstr "Ustawienia wyszukiwania"
  4129. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:476
  4130. msgctxt "@action:menu"
  4131. msgid "Copy value to all extruders"
  4132. msgstr "Skopiuj wartość do wszystkich ekstruderów"
  4133. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:485
  4134. msgctxt "@action:menu"
  4135. msgid "Copy all changed values to all extruders"
  4136. msgstr "Skopiuj wszystkie zmienione wartości do wszystkich ekstruderów"
  4137. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:522
  4138. msgctxt "@action:menu"
  4139. msgid "Hide this setting"
  4140. msgstr "Ukryj tę opcję"
  4141. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:535
  4142. msgctxt "@action:menu"
  4143. msgid "Don't show this setting"
  4144. msgstr "Nie pokazuj tej opcji"
  4145. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:539
  4146. msgctxt "@action:menu"
  4147. msgid "Keep this setting visible"
  4148. msgstr "Pozostaw tę opcję widoczną"
  4149. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  4150. msgctxt "@info:tooltip"
  4151. msgid "3D View"
  4152. msgstr "Widok 3D"
  4153. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  4154. msgctxt "@info:tooltip"
  4155. msgid "Front View"
  4156. msgstr "Widok z przodu"
  4157. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  4158. msgctxt "@info:tooltip"
  4159. msgid "Top View"
  4160. msgstr "Widok z góry"
  4161. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  4162. msgctxt "@info:tooltip"
  4163. msgid "Left View"
  4164. msgstr "Widok z lewej strony"
  4165. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4166. msgctxt "@info:tooltip"
  4167. msgid "Right View"
  4168. msgstr "Widok z prawej strony"
  4169. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  4170. msgctxt "@label"
  4171. msgid "View type"
  4172. msgstr "Typ widoku"
  4173. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4174. msgctxt "@label"
  4175. msgid "Add a Cloud printer"
  4176. msgstr ""
  4177. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4178. msgctxt "@label"
  4179. msgid "Waiting for Cloud response"
  4180. msgstr ""
  4181. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4182. msgctxt "@label"
  4183. msgid "No printers found in your account?"
  4184. msgstr ""
  4185. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4186. msgctxt "@label"
  4187. msgid "The following printers in your account have been added in Cura:"
  4188. msgstr ""
  4189. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  4190. msgctxt "@button"
  4191. msgid "Add printer manually"
  4192. msgstr ""
  4193. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  4194. msgctxt "@label"
  4195. msgid "Manufacturer"
  4196. msgstr "Producent"
  4197. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  4198. msgctxt "@label"
  4199. msgid "Profile author"
  4200. msgstr ""
  4201. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  4202. msgctxt "@label"
  4203. msgid "Printer name"
  4204. msgstr "Nazwa drukarki"
  4205. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  4206. msgctxt "@text"
  4207. msgid "Please name your printer"
  4208. msgstr ""
  4209. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4210. msgctxt "@label"
  4211. msgid "Add a printer"
  4212. msgstr "Dodaj drukarkę"
  4213. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4214. msgctxt "@label"
  4215. msgid "Add a networked printer"
  4216. msgstr "Dodaj drukarkę sieciową"
  4217. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  4218. msgctxt "@label"
  4219. msgid "Add a non-networked printer"
  4220. msgstr "Dodaj drukarkę niesieciową"
  4221. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4222. msgctxt "@label"
  4223. msgid "There is no printer found over your network."
  4224. msgstr "Nie znaleziono drukarki w Twojej sieci."
  4225. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  4226. msgctxt "@label"
  4227. msgid "Refresh"
  4228. msgstr "Odśwież"
  4229. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  4230. msgctxt "@label"
  4231. msgid "Add printer by IP"
  4232. msgstr "Dodaj drukarkę przez IP"
  4233. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  4234. msgctxt "@label"
  4235. msgid "Add cloud printer"
  4236. msgstr ""
  4237. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  4238. msgctxt "@label"
  4239. msgid "Troubleshooting"
  4240. msgstr "Rozwiązywanie problemów"
  4241. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4242. msgctxt "@label"
  4243. msgid "Add printer by IP address"
  4244. msgstr "Dodaj drukarkę przez IP"
  4245. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4246. msgctxt "@text"
  4247. msgid "Enter your printer's IP address."
  4248. msgstr ""
  4249. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4250. msgctxt "@button"
  4251. msgid "Add"
  4252. msgstr "Dodaj"
  4253. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4254. msgctxt "@label"
  4255. msgid "Could not connect to device."
  4256. msgstr "Nie można połączyć się z urządzeniem."
  4257. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4258. msgctxt "@label"
  4259. msgid "Can't connect to your Ultimaker printer?"
  4260. msgstr ""
  4261. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4262. msgctxt "@label"
  4263. msgid "The printer at this address has not responded yet."
  4264. msgstr "Drukarka pod tym adresem jeszcze nie odpowiedziała."
  4265. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4266. msgctxt "@label"
  4267. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4268. msgstr "Ta drukarka nie może zostać dodana, ponieważ jest nieznana lub nie jest hostem grupy."
  4269. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4270. msgctxt "@button"
  4271. msgid "Back"
  4272. msgstr "Wstecz"
  4273. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4274. msgctxt "@button"
  4275. msgid "Connect"
  4276. msgstr "Połącz"
  4277. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4278. msgctxt "@label"
  4279. msgid "Release Notes"
  4280. msgstr ""
  4281. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4282. msgctxt "@text"
  4283. msgid "Add material settings and plugins from the Marketplace"
  4284. msgstr ""
  4285. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4286. msgctxt "@text"
  4287. msgid "Backup and sync your material settings and plugins"
  4288. msgstr ""
  4289. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4290. msgctxt "@text"
  4291. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4292. msgstr ""
  4293. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  4294. msgctxt "@text"
  4295. msgid "Create a free Ultimaker Account"
  4296. msgstr ""
  4297. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  4298. msgctxt "@button"
  4299. msgid "Skip"
  4300. msgstr ""
  4301. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4302. msgctxt "@label"
  4303. msgid "Help us to improve Ultimaker Cura"
  4304. msgstr "Pomóż nam ulepszyć Ultimaker Cura"
  4305. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4306. msgctxt "@text"
  4307. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4308. msgstr "Ultimaker Cura zbiera anonimowe dane w celu poprawy jakości druku i komfortu użytkownika, w tym:"
  4309. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4310. msgctxt "@text"
  4311. msgid "Machine types"
  4312. msgstr "Typy maszyn"
  4313. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4314. msgctxt "@text"
  4315. msgid "Material usage"
  4316. msgstr "Zużycie materiału"
  4317. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4318. msgctxt "@text"
  4319. msgid "Number of slices"
  4320. msgstr "Ilość warstw"
  4321. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4322. msgctxt "@text"
  4323. msgid "Print settings"
  4324. msgstr "Ustawienia druku"
  4325. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4326. msgctxt "@text"
  4327. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4328. msgstr "Dane zebrane przez Ultimaker Cura nie będą zawierać żadnych prywatnych danych osobowych."
  4329. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4330. msgctxt "@text"
  4331. msgid "More information"
  4332. msgstr "Więcej informacji"
  4333. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4334. msgctxt "@label"
  4335. msgid "Empty"
  4336. msgstr "Pusty"
  4337. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4338. msgctxt "@label"
  4339. msgid "User Agreement"
  4340. msgstr "Umowa z użytkownikiem"
  4341. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4342. msgctxt "@button"
  4343. msgid "Decline and close"
  4344. msgstr "Odrzuć i zamknij"
  4345. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4346. msgctxt "@label"
  4347. msgid "Welcome to Ultimaker Cura"
  4348. msgstr "Witaj w Ultimaker Cura"
  4349. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4350. msgctxt "@text"
  4351. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  4352. msgstr ""
  4353. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4354. msgctxt "@button"
  4355. msgid "Get started"
  4356. msgstr "Rozpocznij"
  4357. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  4358. msgctxt "@label"
  4359. msgid "What's New"
  4360. msgstr ""
  4361. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
  4362. msgctxt "@label"
  4363. msgid "No items to select from"
  4364. msgstr ""
  4365. #: 3MFReader/plugin.json
  4366. msgctxt "description"
  4367. msgid "Provides support for reading 3MF files."
  4368. msgstr "Zapewnia wsparcie dla czytania plików 3MF."
  4369. #: 3MFReader/plugin.json
  4370. msgctxt "name"
  4371. msgid "3MF Reader"
  4372. msgstr "Czytnik 3MF"
  4373. #: 3MFWriter/plugin.json
  4374. msgctxt "description"
  4375. msgid "Provides support for writing 3MF files."
  4376. msgstr "Zapewnia wsparcie dla tworzenia plików 3MF."
  4377. #: 3MFWriter/plugin.json
  4378. msgctxt "name"
  4379. msgid "3MF Writer"
  4380. msgstr "3MF Writer"
  4381. #: AMFReader/plugin.json
  4382. msgctxt "description"
  4383. msgid "Provides support for reading AMF files."
  4384. msgstr "Zapewnia wsparcie dla czytania plików AMF."
  4385. #: AMFReader/plugin.json
  4386. msgctxt "name"
  4387. msgid "AMF Reader"
  4388. msgstr "Czytnik AMF"
  4389. #: CuraDrive/plugin.json
  4390. msgctxt "description"
  4391. msgid "Backup and restore your configuration."
  4392. msgstr "Utwórz kopię zapasową i przywróć konfigurację."
  4393. #: CuraDrive/plugin.json
  4394. msgctxt "name"
  4395. msgid "Cura Backups"
  4396. msgstr "Kopie zapasowe Cura"
  4397. #: CuraEngineBackend/plugin.json
  4398. msgctxt "description"
  4399. msgid "Provides the link to the CuraEngine slicing backend."
  4400. msgstr "Zapewnia połączenie z tnącym zapleczem CuraEngine."
  4401. #: CuraEngineBackend/plugin.json
  4402. msgctxt "name"
  4403. msgid "CuraEngine Backend"
  4404. msgstr "Zaplecze CuraEngine"
  4405. #: CuraProfileReader/plugin.json
  4406. msgctxt "description"
  4407. msgid "Provides support for importing Cura profiles."
  4408. msgstr "Zapewnia wsparcie dla importowania profili Cura."
  4409. #: CuraProfileReader/plugin.json
  4410. msgctxt "name"
  4411. msgid "Cura Profile Reader"
  4412. msgstr "Czytnik Profili Cura"
  4413. #: CuraProfileWriter/plugin.json
  4414. msgctxt "description"
  4415. msgid "Provides support for exporting Cura profiles."
  4416. msgstr "Zapewnia wsparcie dla eksportowania profili Cura."
  4417. #: CuraProfileWriter/plugin.json
  4418. msgctxt "name"
  4419. msgid "Cura Profile Writer"
  4420. msgstr "Cura Profile Writer"
  4421. #: DigitalLibrary/plugin.json
  4422. msgctxt "description"
  4423. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4424. msgstr ""
  4425. #: DigitalLibrary/plugin.json
  4426. msgctxt "name"
  4427. msgid "Ultimaker Digital Library"
  4428. msgstr ""
  4429. #: FirmwareUpdateChecker/plugin.json
  4430. msgctxt "description"
  4431. msgid "Checks for firmware updates."
  4432. msgstr "Sprawdź aktualizacje oprogramowania."
  4433. #: FirmwareUpdateChecker/plugin.json
  4434. msgctxt "name"
  4435. msgid "Firmware Update Checker"
  4436. msgstr "Sprawdzacz Aktualizacji Oprogramowania"
  4437. #: FirmwareUpdater/plugin.json
  4438. msgctxt "description"
  4439. msgid "Provides a machine actions for updating firmware."
  4440. msgstr "Dostarcza działanie, pozwalające na aktualizację oprogramowania sprzętowego."
  4441. #: FirmwareUpdater/plugin.json
  4442. msgctxt "name"
  4443. msgid "Firmware Updater"
  4444. msgstr "Aktualizacja oprogramowania sprzętowego"
  4445. #: GCodeGzReader/plugin.json
  4446. msgctxt "description"
  4447. msgid "Reads g-code from a compressed archive."
  4448. msgstr "Odczytuje g-code ze skompresowanych archiwum."
  4449. #: GCodeGzReader/plugin.json
  4450. msgctxt "name"
  4451. msgid "Compressed G-code Reader"
  4452. msgstr "Czytnik Skompresowanego G-code"
  4453. #: GCodeGzWriter/plugin.json
  4454. msgctxt "description"
  4455. msgid "Writes g-code to a compressed archive."
  4456. msgstr "Zapisuje g-code do skompresowanego archiwum."
  4457. #: GCodeGzWriter/plugin.json
  4458. msgctxt "name"
  4459. msgid "Compressed G-code Writer"
  4460. msgstr "Zapisywacz Skompresowanego G-code"
  4461. #: GCodeProfileReader/plugin.json
  4462. msgctxt "description"
  4463. msgid "Provides support for importing profiles from g-code files."
  4464. msgstr "Zapewnia wsparcie dla importowania profili z plików g-code."
  4465. #: GCodeProfileReader/plugin.json
  4466. msgctxt "name"
  4467. msgid "G-code Profile Reader"
  4468. msgstr "Czytnik Profili G-code"
  4469. #: GCodeReader/plugin.json
  4470. msgctxt "description"
  4471. msgid "Allows loading and displaying G-code files."
  4472. msgstr "Pozwala na ładowanie i wyświetlanie plików G-code."
  4473. #: GCodeReader/plugin.json
  4474. msgctxt "name"
  4475. msgid "G-code Reader"
  4476. msgstr "Czytnik G-code"
  4477. #: GCodeWriter/plugin.json
  4478. msgctxt "description"
  4479. msgid "Writes g-code to a file."
  4480. msgstr "Zapisuje g-code do pliku."
  4481. #: GCodeWriter/plugin.json
  4482. msgctxt "name"
  4483. msgid "G-code Writer"
  4484. msgstr "Zapisywacz G-code"
  4485. #: ImageReader/plugin.json
  4486. msgctxt "description"
  4487. msgid "Enables ability to generate printable geometry from 2D image files."
  4488. msgstr "Włącza możliwość generowania drukowalnej geometrii z pliku obrazu 2D."
  4489. #: ImageReader/plugin.json
  4490. msgctxt "name"
  4491. msgid "Image Reader"
  4492. msgstr "Czytnik Obrazu"
  4493. #: LegacyProfileReader/plugin.json
  4494. msgctxt "description"
  4495. msgid "Provides support for importing profiles from legacy Cura versions."
  4496. msgstr "Zapewnia wsparcie dla importowania profili ze starszych wersji Cura."
  4497. #: LegacyProfileReader/plugin.json
  4498. msgctxt "name"
  4499. msgid "Legacy Cura Profile Reader"
  4500. msgstr "Czytnik Profili Starszej Cura"
  4501. #: MachineSettingsAction/plugin.json
  4502. msgctxt "description"
  4503. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4504. msgstr "Zapewnia możliwość zmiany ustawień maszyny (takich jak objętość robocza, rozmiar dyszy itp.)."
  4505. #: MachineSettingsAction/plugin.json
  4506. msgctxt "name"
  4507. msgid "Machine Settings Action"
  4508. msgstr ""
  4509. #: ModelChecker/plugin.json
  4510. msgctxt "description"
  4511. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4512. msgstr "Sprawdza możliwe problemy drukowania modeli i konfiguracji wydruku i podaje porady."
  4513. #: ModelChecker/plugin.json
  4514. msgctxt "name"
  4515. msgid "Model Checker"
  4516. msgstr "Sprawdzacz Modelu"
  4517. #: MonitorStage/plugin.json
  4518. msgctxt "description"
  4519. msgid "Provides a monitor stage in Cura."
  4520. msgstr "Zapewnia etap monitorowania w Cura."
  4521. #: MonitorStage/plugin.json
  4522. msgctxt "name"
  4523. msgid "Monitor Stage"
  4524. msgstr "Etap Monitorowania"
  4525. #: PerObjectSettingsTool/plugin.json
  4526. msgctxt "description"
  4527. msgid "Provides the Per Model Settings."
  4528. msgstr "Zapewnia Ustawienia dla Każdego Modelu."
  4529. #: PerObjectSettingsTool/plugin.json
  4530. msgctxt "name"
  4531. msgid "Per Model Settings Tool"
  4532. msgstr "Narzędzie Ustawień dla Każdego Modelu"
  4533. #: PostProcessingPlugin/plugin.json
  4534. msgctxt "description"
  4535. msgid "Extension that allows for user created scripts for post processing"
  4536. msgstr "Dodatek, który pozwala użytkownikowi tworzenie skryptów do post processingu"
  4537. #: PostProcessingPlugin/plugin.json
  4538. msgctxt "name"
  4539. msgid "Post Processing"
  4540. msgstr "Post Processing"
  4541. #: PrepareStage/plugin.json
  4542. msgctxt "description"
  4543. msgid "Provides a prepare stage in Cura."
  4544. msgstr "Zapewnia etap przygotowania w Cura."
  4545. #: PrepareStage/plugin.json
  4546. msgctxt "name"
  4547. msgid "Prepare Stage"
  4548. msgstr "Etap Przygotowania"
  4549. #: PreviewStage/plugin.json
  4550. msgctxt "description"
  4551. msgid "Provides a preview stage in Cura."
  4552. msgstr "Dostarcza podgląd w Cura."
  4553. #: PreviewStage/plugin.json
  4554. msgctxt "name"
  4555. msgid "Preview Stage"
  4556. msgstr "Podgląd"
  4557. #: RemovableDriveOutputDevice/plugin.json
  4558. msgctxt "description"
  4559. msgid "Provides removable drive hotplugging and writing support."
  4560. msgstr "Zapewnia wsparcie dla podłączania i zapisywania dysków zewnętrznych."
  4561. #: RemovableDriveOutputDevice/plugin.json
  4562. msgctxt "name"
  4563. msgid "Removable Drive Output Device Plugin"
  4564. msgstr "Wtyczka Urządzenia Wyjścia Dysku Zewnętrznego"
  4565. #: SentryLogger/plugin.json
  4566. msgctxt "description"
  4567. msgid "Logs certain events so that they can be used by the crash reporter"
  4568. msgstr ""
  4569. #: SentryLogger/plugin.json
  4570. msgctxt "name"
  4571. msgid "Sentry Logger"
  4572. msgstr ""
  4573. #: SimulationView/plugin.json
  4574. msgctxt "description"
  4575. msgid "Provides the Simulation view."
  4576. msgstr "Zapewnia widok Symulacji."
  4577. #: SimulationView/plugin.json
  4578. msgctxt "name"
  4579. msgid "Simulation View"
  4580. msgstr "Widok Symulacji"
  4581. #: SliceInfoPlugin/plugin.json
  4582. msgctxt "description"
  4583. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4584. msgstr "Zatwierdza anonimowe informację o cięciu. Może być wyłączone w preferencjach."
  4585. #: SliceInfoPlugin/plugin.json
  4586. msgctxt "name"
  4587. msgid "Slice info"
  4588. msgstr "Informacje o cięciu"
  4589. #: SolidView/plugin.json
  4590. msgctxt "description"
  4591. msgid "Provides a normal solid mesh view."
  4592. msgstr "Zapewnia normalny widok siatki."
  4593. #: SolidView/plugin.json
  4594. msgctxt "name"
  4595. msgid "Solid View"
  4596. msgstr "Widok Bryły"
  4597. #: SupportEraser/plugin.json
  4598. msgctxt "description"
  4599. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4600. msgstr "Tworzy siatkę do blokowania drukowania podpór w określonych miejscach"
  4601. #: SupportEraser/plugin.json
  4602. msgctxt "name"
  4603. msgid "Support Eraser"
  4604. msgstr "Usuwacz Podpór"
  4605. #: Toolbox/plugin.json
  4606. msgctxt "description"
  4607. msgid "Find, manage and install new Cura packages."
  4608. msgstr "Znajdź, zarządzaj i instaluj nowe pakiety Cura."
  4609. #: Toolbox/plugin.json
  4610. msgctxt "name"
  4611. msgid "Toolbox"
  4612. msgstr "Narzędzia"
  4613. #: TrimeshReader/plugin.json
  4614. msgctxt "description"
  4615. msgid "Provides support for reading model files."
  4616. msgstr "Zapewnia wsparcie dla czytania plików modeli."
  4617. #: TrimeshReader/plugin.json
  4618. msgctxt "name"
  4619. msgid "Trimesh Reader"
  4620. msgstr "Czytnik siatki trójkątów"
  4621. #: UFPReader/plugin.json
  4622. msgctxt "description"
  4623. msgid "Provides support for reading Ultimaker Format Packages."
  4624. msgstr "Zapewnia obsługę odczytu pakietów formatu Ultimaker."
  4625. #: UFPReader/plugin.json
  4626. msgctxt "name"
  4627. msgid "UFP Reader"
  4628. msgstr "Czytnik UFP"
  4629. #: UFPWriter/plugin.json
  4630. msgctxt "description"
  4631. msgid "Provides support for writing Ultimaker Format Packages."
  4632. msgstr "Zapewnia wsparcie dla zapisywania Pakietów Formatów Ultimaker."
  4633. #: UFPWriter/plugin.json
  4634. msgctxt "name"
  4635. msgid "UFP Writer"
  4636. msgstr "Zapisywacz UFP"
  4637. #: UltimakerMachineActions/plugin.json
  4638. msgctxt "description"
  4639. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4640. msgstr "Zapewnia czynności maszyny dla urządzeń Ultimaker (na przykład kreator poziomowania stołu, wybór ulepszeń itp.)."
  4641. #: UltimakerMachineActions/plugin.json
  4642. msgctxt "name"
  4643. msgid "Ultimaker machine actions"
  4644. msgstr "Czynności maszyny Ultimaker"
  4645. #: UM3NetworkPrinting/plugin.json
  4646. msgctxt "description"
  4647. msgid "Manages network connections to Ultimaker networked printers."
  4648. msgstr "Zarządza połączeniami z sieciowymi drukarkami Ultimaker."
  4649. #: UM3NetworkPrinting/plugin.json
  4650. msgctxt "name"
  4651. msgid "Ultimaker Network Connection"
  4652. msgstr "Połączenie sieciowe Ultimaker"
  4653. #: USBPrinting/plugin.json
  4654. msgctxt "description"
  4655. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4656. msgstr "Akceptuje G-Code i wysyła je do drukarki. Wtyczka może też aktualizować oprogramowanie."
  4657. #: USBPrinting/plugin.json
  4658. msgctxt "name"
  4659. msgid "USB printing"
  4660. msgstr "Drukowanie USB"
  4661. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4662. msgctxt "description"
  4663. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4664. msgstr "Ulepsza konfigurację z Cura 2.1 do Cura 2.2."
  4665. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4666. msgctxt "name"
  4667. msgid "Version Upgrade 2.1 to 2.2"
  4668. msgstr "Ulepszenie Wersji z 2.1 do 2.2"
  4669. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4670. msgctxt "description"
  4671. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4672. msgstr "Ulepsza konfigurację z Cura 2.2 do Cura 2.4."
  4673. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4674. msgctxt "name"
  4675. msgid "Version Upgrade 2.2 to 2.4"
  4676. msgstr "Ulepszenie Wersji z 2.2 do 2.4"
  4677. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4678. msgctxt "description"
  4679. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4680. msgstr "Ulepsza konfigurację z Cura 2.5 do Cura 2.6."
  4681. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4682. msgctxt "name"
  4683. msgid "Version Upgrade 2.5 to 2.6"
  4684. msgstr "Ulepszenie Wersji z 2.5 do 2.6"
  4685. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4686. msgctxt "description"
  4687. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4688. msgstr "Ulepsza konfigurację z Cura 2.6 do Cura 2.7."
  4689. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4690. msgctxt "name"
  4691. msgid "Version Upgrade 2.6 to 2.7"
  4692. msgstr "Ulepszenie Wersji z 2.6 do 2.7"
  4693. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4694. msgctxt "description"
  4695. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4696. msgstr "Ulepsza konfigurację z Cura 2.7 do Cura 3.0."
  4697. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4698. msgctxt "name"
  4699. msgid "Version Upgrade 2.7 to 3.0"
  4700. msgstr "Ulepszenie Wersji 2.7 do 3.0"
  4701. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4702. msgctxt "description"
  4703. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4704. msgstr "Ulepsza konfigurację z Cura 3.0 do Cura 3.1."
  4705. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4706. msgctxt "name"
  4707. msgid "Version Upgrade 3.0 to 3.1"
  4708. msgstr "Ulepszenie Wersji 3.0 do 3.1"
  4709. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4710. msgctxt "description"
  4711. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4712. msgstr "Ulepsza konfigurację z Cura 3.2 do Cura 3.3."
  4713. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4714. msgctxt "name"
  4715. msgid "Version Upgrade 3.2 to 3.3"
  4716. msgstr "Ulepszenie Wersji z 3.2 do 3.3"
  4717. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4718. msgctxt "description"
  4719. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4720. msgstr "Ulepsza konfigurację z Cura 3.3 do Cura 3.4."
  4721. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4722. msgctxt "name"
  4723. msgid "Version Upgrade 3.3 to 3.4"
  4724. msgstr "Ulepszenie Wersji z 3.3 do 3.4"
  4725. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4726. msgctxt "description"
  4727. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4728. msgstr "Ulepsza konfigurację z Cura 3.4 do Cura 3.5."
  4729. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4730. msgctxt "name"
  4731. msgid "Version Upgrade 3.4 to 3.5"
  4732. msgstr "Ulepszenie Wersji z 3.4 do 3.5"
  4733. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4734. msgctxt "description"
  4735. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4736. msgstr "Uaktualnia konfiguracje z Cura 3.5 to Cura 4.0."
  4737. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4738. msgctxt "name"
  4739. msgid "Version Upgrade 3.5 to 4.0"
  4740. msgstr "Uaktualnij wersję 3.5 do 4.0"
  4741. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4742. msgctxt "description"
  4743. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4744. msgstr "Uaktualnia konfiguracje z Cura 4.0 to Cura 4.1."
  4745. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4746. msgctxt "name"
  4747. msgid "Version Upgrade 4.0 to 4.1"
  4748. msgstr "Uaktualnij wersję 4.0 do 4.1"
  4749. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4750. msgctxt "description"
  4751. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4752. msgstr "Uaktualnia konfiguracje z Cura 4.1 to Cura 4.2."
  4753. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4754. msgctxt "name"
  4755. msgid "Version Upgrade 4.1 to 4.2"
  4756. msgstr "Uaktualnij wersję 4.1 do 4.2"
  4757. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4758. msgctxt "description"
  4759. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4760. msgstr "Uaktualnia konfiguracje z Cura 4.2 to Cura 4.3."
  4761. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4762. msgctxt "name"
  4763. msgid "Version Upgrade 4.2 to 4.3"
  4764. msgstr "Uaktualnij wersję 4.2 do 4.3"
  4765. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4766. msgctxt "description"
  4767. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4768. msgstr "Uaktualnia konfiguracje z Cura 4.3 to Cura 4.4."
  4769. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4770. msgctxt "name"
  4771. msgid "Version Upgrade 4.3 to 4.4"
  4772. msgstr "Uaktualnij wersję 4.3 do 4.4"
  4773. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4774. msgctxt "description"
  4775. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4776. msgstr ""
  4777. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4778. msgctxt "name"
  4779. msgid "Version Upgrade 4.4 to 4.5"
  4780. msgstr ""
  4781. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4782. msgctxt "description"
  4783. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4784. msgstr ""
  4785. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4786. msgctxt "name"
  4787. msgid "Version Upgrade 4.5 to 4.6"
  4788. msgstr ""
  4789. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4790. msgctxt "description"
  4791. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4792. msgstr ""
  4793. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4794. msgctxt "name"
  4795. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4796. msgstr ""
  4797. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4798. msgctxt "description"
  4799. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4800. msgstr ""
  4801. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4802. msgctxt "name"
  4803. msgid "Version Upgrade 4.6.2 to 4.7"
  4804. msgstr ""
  4805. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4806. msgctxt "description"
  4807. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4808. msgstr ""
  4809. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4810. msgctxt "name"
  4811. msgid "Version Upgrade 4.7 to 4.8"
  4812. msgstr ""
  4813. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4814. msgctxt "description"
  4815. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  4816. msgstr ""
  4817. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4818. msgctxt "name"
  4819. msgid "Version Upgrade 4.8 to 4.9"
  4820. msgstr ""
  4821. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4822. msgctxt "description"
  4823. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  4824. msgstr ""
  4825. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4826. msgctxt "name"
  4827. msgid "Version Upgrade 4.9 to 4.10"
  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:title The %s gets replaced with the printer name."
  4854. #~ msgid "New %s firmware available"
  4855. #~ msgstr "Nowe oprogramowanie %s jest dostępne"
  4856. #~ msgctxt "@label:listbox"
  4857. #~ msgid "Layer thickness"
  4858. #~ msgstr "Grubość warstwy"
  4859. #~ msgctxt "@button"
  4860. #~ msgid "Create account"
  4861. #~ msgstr "Utwórz konto"
  4862. #~ msgctxt "@action:inmenu menubar:edit"
  4863. #~ msgid "Delete Selected Model"
  4864. #~ msgid_plural "Delete Selected Models"
  4865. #~ msgstr[0] "Usuń wybrany model"
  4866. #~ msgstr[1] "Usuń wybrane modele"
  4867. #~ msgctxt "@action:inmenu menubar:edit"
  4868. #~ msgid "Center Selected Model"
  4869. #~ msgid_plural "Center Selected Models"
  4870. #~ msgstr[0] "Wyśrodkuj wybrany model"
  4871. #~ msgstr[1] "Wyśrodkuj wybrane modele"
  4872. #~ msgctxt "@action:inmenu menubar:edit"
  4873. #~ msgid "Multiply Selected Model"
  4874. #~ msgid_plural "Multiply Selected Models"
  4875. #~ msgstr[0] "Rozmnóż wybrany model"
  4876. #~ msgstr[1] "Rozmnóż wybrane modele"
  4877. #~ msgctxt "@button"
  4878. #~ msgid "Finish"
  4879. #~ msgstr "Koniec"
  4880. #~ msgctxt "@text"
  4881. #~ msgid ""
  4882. #~ "Please follow these steps to set up\n"
  4883. #~ "Ultimaker Cura. This will only take a few moments."
  4884. #~ msgstr ""
  4885. #~ "Wykonaj poniższe kroki, aby skonfigurować\n"
  4886. #~ "Ultimaker Cura. To zajmie tylko kilka chwil."
  4887. #~ msgctxt "@label"
  4888. #~ msgid "What's new in Ultimaker Cura"
  4889. #~ msgstr "Co nowego w Ultimaker Cura"
  4890. #~ msgctxt "@info:status"
  4891. #~ msgid "The selected model was too small to load."
  4892. #~ msgstr "Wybrany model był zbyta mały do załadowania."
  4893. #~ msgctxt "@info:status"
  4894. #~ msgid "Successfully imported profile {0}"
  4895. #~ msgstr "Profil zaimportowany {0}"
  4896. #~ msgctxt "@info:status"
  4897. #~ msgid "Could not find a quality type {0} for the current configuration."
  4898. #~ msgstr "Nie można znaleźć typu jakości {0} dla bieżącej konfiguracji."
  4899. #~ msgctxt "@action:ComboBox option"
  4900. #~ msgid "Update"
  4901. #~ msgstr "Aktualizacja"
  4902. #~ msgctxt "@action:ComboBox option"
  4903. #~ msgid "Create new"
  4904. #~ msgstr "Utwórz nowy"
  4905. #~ msgctxt "@info"
  4906. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4907. #~ msgstr "Kamera nie jest dostępna, ponieważ nadzorujesz drukarkę w chmurze."
  4908. #~ msgctxt "@text"
  4909. #~ msgid "Please give your printer a name"
  4910. #~ msgstr "Podaj nazwę drukarki"
  4911. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4912. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4913. #~ msgstr "Nowe funkcje są dostępne dla twojej {machine_name}! Rekomendowane jest zaktualizowanie oprogramowania drukarki."
  4914. #~ msgctxt "@action:button"
  4915. #~ msgid "Print via Cloud"
  4916. #~ msgstr "Drukuj przez Chmurę"
  4917. #~ msgctxt "@properties:tooltip"
  4918. #~ msgid "Print via Cloud"
  4919. #~ msgstr "Drukuj przez Chmurę"
  4920. #~ msgctxt "@info:status"
  4921. #~ msgid "Connected via Cloud"
  4922. #~ msgstr "Połączony z Chmurą"
  4923. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4924. #~ msgid "Connect to Ultimaker Cloud"
  4925. #~ msgstr "Połacz z Ultimaker Cloud"
  4926. #~ msgctxt "@label"
  4927. #~ msgid "You need to login first before you can rate"
  4928. #~ msgstr "Musisz być zalogowany aby ocenić"
  4929. #~ msgctxt "@label"
  4930. #~ msgid "You need to install the package before you can rate"
  4931. #~ msgstr "Musisz zainstalować pakiety zanim będziesz mógł ocenić"
  4932. #~ msgctxt "@label"
  4933. #~ msgid "ratings"
  4934. #~ msgstr "oceny"
  4935. #~ msgctxt "@label"
  4936. #~ msgid "Featured"
  4937. #~ msgstr "Polecane"
  4938. #~ msgctxt "@label"
  4939. #~ msgid "Your rating"
  4940. #~ msgstr "Twoja ocena"
  4941. #~ msgctxt "@label"
  4942. #~ msgid "Author"
  4943. #~ msgstr "Autor"
  4944. #~ msgctxt "@label The argument is a username."
  4945. #~ msgid "Hi %1"
  4946. #~ msgstr "Cześć %1"
  4947. #~ msgctxt "@button"
  4948. #~ msgid "Ultimaker account"
  4949. #~ msgstr "Konto Ultimaker"
  4950. #~ msgctxt "@button"
  4951. #~ msgid "Sign out"
  4952. #~ msgstr "Wyloguj"
  4953. #~ msgctxt "@label"
  4954. #~ msgid "Support library for analysis of complex networks"
  4955. #~ msgstr "Biblioteka pomocnicza do analizy złożonych sieci"
  4956. #~ msgctxt "@Label"
  4957. #~ msgid "Python HTTP library"
  4958. #~ msgstr "Biblioteka Python HTTP"
  4959. #~ msgctxt "@text:window"
  4960. #~ msgid ""
  4961. #~ "You have customized some profile settings.\n"
  4962. #~ "Would you like to keep or discard those settings?"
  4963. #~ msgstr ""
  4964. #~ "Dostosowałeś ustawienia profilu.\n"
  4965. #~ "Chcesz zachować, czy usunąć te ustawienia?"
  4966. #~ msgctxt "@title:column"
  4967. #~ msgid "Default"
  4968. #~ msgstr "Domyślne"
  4969. #~ msgctxt "@title:column"
  4970. #~ msgid "Customized"
  4971. #~ msgstr "Dostosowane"
  4972. #~ msgctxt "@action:button"
  4973. #~ msgid "Discard"
  4974. #~ msgstr "Odrzuć"
  4975. #~ msgctxt "@action:button"
  4976. #~ msgid "Keep"
  4977. #~ msgstr "Zachowaj"
  4978. #~ msgctxt "@action:button"
  4979. #~ msgid "Create New Profile"
  4980. #~ msgstr "Utwórz nowy profil"
  4981. #~ msgctxt "@title:menu menubar:file"
  4982. #~ msgid "&Save..."
  4983. #~ msgstr "&Zapisz..."
  4984. #~ msgctxt "@text"
  4985. #~ msgid "Place enter your printer's IP address."
  4986. #~ msgstr "Wprowadź adres IP drukarki."
  4987. #~ msgctxt "@button"
  4988. #~ msgid "Create an account"
  4989. #~ msgstr "Stwórz konto"
  4990. #~ msgctxt "@info:status"
  4991. #~ 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."
  4992. #~ 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."
  4993. #~ msgctxt "@info:backup_status"
  4994. #~ msgid "There was an error listing your backups."
  4995. #~ msgstr "Wystąpił błąd z listą kopii zapasowych."
  4996. #~ msgctxt "@title:groupbox"
  4997. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  4998. #~ msgstr "Opis użytkownika (Uwaga: programiści mogą nie mówić w Twoim języku, w miarę możliwości używaj angielskiego)"
  4999. #~ msgctxt "@title:window"
  5000. #~ msgid "Closing Cura"
  5001. #~ msgstr "Zamykanie Cura"
  5002. #~ msgctxt "@label"
  5003. #~ msgid "Are you sure you want to exit Cura?"
  5004. #~ msgstr "Czy jesteś pewien, że chcesz zakończyć Cura?"
  5005. #~ msgctxt "@label"
  5006. #~ msgid "Language:"
  5007. #~ msgstr "Język:"
  5008. #~ msgctxt "@label"
  5009. #~ msgid "Ultimaker Cloud"
  5010. #~ msgstr "Chmura Ultimaker"
  5011. #~ msgctxt "@text"
  5012. #~ msgid "The next generation 3D printing workflow"
  5013. #~ msgstr "Nowa generacja systemu drukowania 3D"
  5014. #~ msgctxt "@text"
  5015. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5016. #~ msgstr "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną"
  5017. #~ msgctxt "@text"
  5018. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5019. #~ msgstr "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu"
  5020. #~ msgctxt "@text"
  5021. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5022. #~ msgstr "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  5023. #~ msgctxt "@label"
  5024. #~ msgid "The value is resolved from per-extruder values "
  5025. #~ msgstr "Wartość jest pobierana z osobna dla każdego ekstrudera "
  5026. #~ msgctxt "@label"
  5027. #~ msgid "The next generation 3D printing workflow"
  5028. #~ msgstr "Nowa generacja systemu drukowania 3D"
  5029. #~ msgctxt "@text"
  5030. #~ msgid ""
  5031. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5032. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5033. #~ "- Get exclusive access to print profiles from leading brands"
  5034. #~ msgstr ""
  5035. #~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n"
  5036. #~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n"
  5037. #~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  5038. #~ msgctxt "@info:button"
  5039. #~ msgid "Quit Cura"
  5040. #~ msgstr "Zakończ Cura"
  5041. #~ msgctxt "@action:checkbox"
  5042. #~ msgid "Infill only"
  5043. #~ msgstr "Tylko wypełnienie"
  5044. #~ msgctxt "@info:tooltip"
  5045. #~ msgid "Change active post-processing scripts"
  5046. #~ msgstr "Zmień aktywne skrypty post-processingu"
  5047. #~ msgctxt "@label:listbox"
  5048. #~ msgid "Feedrate"
  5049. #~ msgstr "Szybkość Posuwu"
  5050. #~ msgctxt "name"
  5051. #~ msgid "Machine Settings action"
  5052. #~ msgstr "Ustawienia Maszyny"
  5053. #~ msgctxt "@info:title"
  5054. #~ msgid "New cloud printers found"
  5055. #~ msgstr "Znaleziono nowe drukarki w chmurze"
  5056. #~ msgctxt "@info:message"
  5057. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5058. #~ msgstr "Nowe drukarki podłączone do Twojego konta zostały znalezione, można je odszukać na liście wykrytych drukarek."
  5059. #~ msgctxt "@info:status"
  5060. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5061. #~ msgstr "Cura nie wyświetla dokładnie warstw kiedy drukowanie przewodowe jest włączone"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "Pre-sliced file {0}"
  5064. #~ msgstr "Plik pocięty wcześniej {0}"
  5065. #~ msgctxt "@label"
  5066. #~ msgid ""
  5067. #~ "This plugin contains a license.\n"
  5068. #~ "You need to accept this license to install this plugin.\n"
  5069. #~ "Do you agree with the terms below?"
  5070. #~ msgstr ""
  5071. #~ "Ten plugin zawiera licencje.\n"
  5072. #~ "Musisz zaakceptować tę licencję, aby zainstalować ten plugin.\n"
  5073. #~ "Akceptujesz poniższe postanowienia?"
  5074. #~ msgctxt "@action:button"
  5075. #~ msgid "Accept"
  5076. #~ msgstr "Akceptuj"
  5077. #~ msgctxt "@action:button"
  5078. #~ msgid "Decline"
  5079. #~ msgstr "Odrzuć"
  5080. #~ msgctxt "@action:inmenu"
  5081. #~ msgid "Show All Settings"
  5082. #~ msgstr "Pokaż Wszystkie Ustawienia"
  5083. #~ msgctxt "@title:window"
  5084. #~ msgid "Ultimaker Cura"
  5085. #~ msgstr "Cura Ultimaker"
  5086. #~ msgctxt "@title:window"
  5087. #~ msgid "About Cura"
  5088. #~ msgstr "O Cura"
  5089. #~ msgctxt "@item:inmenu"
  5090. #~ msgid "Flatten active settings"
  5091. #~ msgstr "Spłaszczyć aktywne ustawienia"
  5092. #~ msgctxt "@info:status"
  5093. #~ msgid "Profile has been flattened & activated."
  5094. #~ msgstr "Profil został spłaszczony i aktywowany."
  5095. #~ msgctxt "X3g Writer Plugin Description"
  5096. #~ msgid "Writes X3g to files"
  5097. #~ msgstr "Zapisuje do plików X3g"
  5098. #~ msgctxt "X3g Writer File Description"
  5099. #~ msgid "X3g File"
  5100. #~ msgstr "Plik X3g"
  5101. #~ msgctxt "X3G Writer File Description"
  5102. #~ msgid "X3G File"
  5103. #~ msgstr "Plik X3G"
  5104. #~ msgctxt "@item:inlistbox"
  5105. #~ msgid "Open Compressed Triangle Mesh"
  5106. #~ msgstr "Otwórz skompresowaną siatkę trójkątów"
  5107. #~ msgctxt "@item:inmenu"
  5108. #~ msgid "Profile Assistant"
  5109. #~ msgstr "Asystent Profilu"
  5110. #~ msgctxt "@item:inlistbox"
  5111. #~ msgid "Profile Assistant"
  5112. #~ msgstr "Asystent Profilu"
  5113. #~ msgctxt "@action:button"
  5114. #~ msgid "Retry"
  5115. #~ msgstr "Spróbuj ponownie"
  5116. #~ msgctxt "@label:table_header"
  5117. #~ msgid "Print Core"
  5118. #~ msgstr "Rdzeń drukujący"
  5119. #~ msgctxt "@label"
  5120. #~ msgid "Don't support overlap with other models"
  5121. #~ msgstr "Nie wspieraj nałożeń z innymi modelami"
  5122. #~ msgctxt "@label"
  5123. #~ msgid "Modify settings for overlap with other models"
  5124. #~ msgstr "Modyfikuj ustawienia nakładania z innymi modelami"
  5125. #~ msgctxt "@label"
  5126. #~ msgid "Modify settings for infill of other models"
  5127. #~ msgstr "Modyfikuj ustawienia wypełnienia innych modeli"
  5128. #~ msgctxt "@action:ComboBox option"
  5129. #~ msgid "Update existing"
  5130. #~ msgstr "Zaktualizuj istniejące"
  5131. #~ msgctxt "@label"
  5132. #~ msgid "Not supported"
  5133. #~ msgstr "Niewspierany"
  5134. #~ msgctxt "@action:button"
  5135. #~ msgid "Previous"
  5136. #~ msgstr "Poprzedni"
  5137. #~ msgctxt "@label"
  5138. #~ msgid "Tip"
  5139. #~ msgstr "Końcówka"
  5140. #~ msgctxt "@label"
  5141. #~ msgid "Print experiment"
  5142. #~ msgstr "Próbny wydruk"
  5143. #~ msgctxt "@label"
  5144. #~ msgid "Checklist"
  5145. #~ msgstr "Lista kontrolna"
  5146. #~ msgctxt "@label"
  5147. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5148. #~ msgstr "Proszę wybrać ulepszenia w tym Ultimaker 2."
  5149. #~ msgctxt "@label"
  5150. #~ msgid "Olsson Block"
  5151. #~ msgstr "Olsson Block"
  5152. #~ msgctxt "@window:text"
  5153. #~ msgid "Camera rendering: "
  5154. #~ msgstr "Renderowanie z kamery: "
  5155. #~ msgctxt "@info:tooltip"
  5156. #~ msgid "Use multi build plate functionality"
  5157. #~ msgstr "Użyj funkcji wielu pól roboczych"
  5158. #~ msgctxt "@option:check"
  5159. #~ msgid "Use multi build plate functionality (restart required)"
  5160. #~ msgstr "Użyj funkcji wielu pól roboczych (wymagany restart)"
  5161. #~ msgctxt "@label"
  5162. #~ msgid "Default profiles"
  5163. #~ msgstr "Domyślne profile"
  5164. #~ msgctxt "@label:textbox"
  5165. #~ msgid "search settings"
  5166. #~ msgstr "ustawienia wyszukiwania"
  5167. #~ msgctxt "@label"
  5168. #~ msgid "Layer Height"
  5169. #~ msgstr "Wysokość warstwy"
  5170. #~ msgctxt "@tooltip"
  5171. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5172. #~ 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."
  5173. #~ msgctxt "@tooltip"
  5174. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5175. #~ msgstr "Niestandardowy profil jest obecnie aktywny. Aby włączyć pasek jakości, wybierz domyślny profil w zakładce Niestandardowe"
  5176. #~ msgctxt "@title:menu"
  5177. #~ msgid "&Build plate"
  5178. #~ msgstr "&Pole robocze"
  5179. #~ msgctxt "@title:settings"
  5180. #~ msgid "&Profile"
  5181. #~ msgstr "&Profil"
  5182. #~ msgctxt "@action:label"
  5183. #~ msgid "Build plate"
  5184. #~ msgstr "Pole robocze"
  5185. #~ msgctxt "description"
  5186. #~ msgid "Dump the contents of all settings to a HTML file."
  5187. #~ msgstr "Wsypuje zawartość wszystkich ustawień do pliku HTML."
  5188. #~ msgctxt "name"
  5189. #~ msgid "God Mode"
  5190. #~ msgstr "Tryb Boga"
  5191. #~ msgctxt "description"
  5192. #~ msgid "Create a flattened quality changes profile."
  5193. #~ msgstr "Stwórz spłaszczony profil zmian jakości."
  5194. #~ msgctxt "name"
  5195. #~ msgid "Profile Flattener"
  5196. #~ msgstr "Spłaszcz profil"
  5197. #~ msgctxt "description"
  5198. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5199. #~ msgstr "Pozwala twórcą materiałów na tworzenie nowych profili materiałów i jakości używając rozwijanego menu."
  5200. #~ msgctxt "name"
  5201. #~ msgid "Print Profile Assistant"
  5202. #~ msgstr "Asystent Profilów Druku"
  5203. #~ msgctxt "@info:status"
  5204. #~ msgid "Connected over the network."
  5205. #~ msgstr "Połączono przez sieć."
  5206. #~ msgctxt "@info:status"
  5207. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5208. #~ msgstr "Połączono przez sieć. Proszę zatwierdzić żądanie dostępu na drukarce."
  5209. #~ msgctxt "@info:status"
  5210. #~ msgid "Connected over the network. No access to control the printer."
  5211. #~ msgstr "Połączono przez sieć. Brak dostępu do sterowania drukarką."
  5212. #~ msgctxt "@info:status"
  5213. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5214. #~ msgstr "Wymagany dostęp do drukarki. Proszę zatwierdzić prośbę na drukarce"
  5215. #~ msgctxt "@info:title"
  5216. #~ msgid "Authentication status"
  5217. #~ msgstr "Status uwierzytelniania"
  5218. #~ msgctxt "@info:title"
  5219. #~ msgid "Authentication Status"
  5220. #~ msgstr "Status Uwierzytelniania"
  5221. #~ msgctxt "@info:tooltip"
  5222. #~ msgid "Re-send the access request"
  5223. #~ msgstr "Prześlij ponownie żądanie dostępu"
  5224. #~ msgctxt "@info:status"
  5225. #~ msgid "Access to the printer accepted"
  5226. #~ msgstr "Dostęp do drukarki został zaakceptowany"
  5227. #~ msgctxt "@info:status"
  5228. #~ msgid "No access to print with this printer. Unable to send print job."
  5229. #~ msgstr "Brak dostępu do tej drukarki. Nie można wysłać zadania drukowania."
  5230. #~ msgctxt "@action:button"
  5231. #~ msgid "Request Access"
  5232. #~ msgstr "Poproś o dostęp"
  5233. #~ msgctxt "@info:tooltip"
  5234. #~ msgid "Send access request to the printer"
  5235. #~ msgstr "Wyślij żądanie dostępu do drukarki"
  5236. #~ msgctxt "@label"
  5237. #~ msgid "Unable to start a new print job."
  5238. #~ msgstr "Nie można uruchomić nowego zadania drukowania."
  5239. #~ msgctxt "@label"
  5240. #~ 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."
  5241. #~ msgstr "Wystąpił problem z konfiguracją twojego Ultimaker'a, przez który nie można rozpocząć wydruku. Proszę rozwiąż te problemy przed kontynuowaniem."
  5242. #~ msgctxt "@window:title"
  5243. #~ msgid "Mismatched configuration"
  5244. #~ msgstr "Niedopasowana konfiguracja"
  5245. #~ msgctxt "@label"
  5246. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5247. #~ msgstr "Czy na pewno chcesz drukować z wybraną konfiguracją?"
  5248. #~ msgctxt "@label"
  5249. #~ 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."
  5250. #~ 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."
  5251. #~ msgctxt "@info:status"
  5252. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5253. #~ msgstr "Wysyłanie nowych zadań (tymczasowo) zostało zablokowane, dalej wysyłane jest poprzednie zadanie."
  5254. #~ msgctxt "@info:status"
  5255. #~ msgid "Sending data to printer"
  5256. #~ msgstr "Wysyłanie danych do drukarki"
  5257. #~ msgctxt "@info:title"
  5258. #~ msgid "Sending Data"
  5259. #~ msgstr "Wysyłanie danych"
  5260. #~ msgctxt "@info:status"
  5261. #~ msgid "No Printcore loaded in slot {slot_number}"
  5262. #~ msgstr "Brak Printcore'a w slocie {slot_number}"
  5263. #~ msgctxt "@info:status"
  5264. #~ msgid "No material loaded in slot {slot_number}"
  5265. #~ msgstr "Brak załadowanego materiału w slocie {slot_number}"
  5266. #~ msgctxt "@label"
  5267. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5268. #~ msgstr "Inny PrintCore (Cura: {cura_printcore_name}, Drukarka: {remote_printcore_name}) wybrany dla extrudera {extruder_id}"
  5269. #~ msgctxt "@label"
  5270. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5271. #~ msgstr "Różne materiały (Cura: {0}, Drukarka: {1}) wybrane do dzyszy {2}"
  5272. #~ msgctxt "@window:title"
  5273. #~ msgid "Sync with your printer"
  5274. #~ msgstr "Synchronizuj się z drukarką"
  5275. #~ msgctxt "@label"
  5276. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5277. #~ msgstr "Czy chcesz używać bieżącej konfiguracji drukarki w programie Cura?"
  5278. #~ msgctxt "@label"
  5279. #~ 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."
  5280. #~ 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."
  5281. #~ msgctxt "@action:button"
  5282. #~ msgid "View in Monitor"
  5283. #~ msgstr "Zobacz w Monitorze"
  5284. #~ msgctxt "@info:status"
  5285. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5286. #~ msgstr "{printer_name} skończyła drukowanie '{job_name}'."
  5287. #~ msgctxt "@info:status"
  5288. #~ msgid "The print job '{job_name}' was finished."
  5289. #~ msgstr "Zadanie '{job_name}' zostało zakończone."
  5290. #~ msgctxt "@info:status"
  5291. #~ msgid "Print finished"
  5292. #~ msgstr "Drukowanie zakończone"
  5293. #~ msgctxt "@label:material"
  5294. #~ msgid "Empty"
  5295. #~ msgstr "Pusty"
  5296. #~ msgctxt "@label:material"
  5297. #~ msgid "Unknown"
  5298. #~ msgstr "Nieznany"
  5299. #~ msgctxt "@info:title"
  5300. #~ msgid "Cloud error"
  5301. #~ msgstr "Błąd Chmury"
  5302. #~ msgctxt "@info:status"
  5303. #~ msgid "Could not export print job."
  5304. #~ msgstr "Nie można eksportować zadania druku."
  5305. #~ msgctxt "@info:description"
  5306. #~ msgid "There was an error connecting to the cloud."
  5307. #~ msgstr "Wystąpił błąd połączenia z chmurą."
  5308. #~ msgctxt "@info:status"
  5309. #~ msgid "Uploading via Ultimaker Cloud"
  5310. #~ msgstr "Przesyłanie z Ultimaker Cloud"
  5311. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5312. #~ msgid "Connect to Ultimaker Cloud"
  5313. #~ msgstr "Połącz z Ultimaker Cloud"
  5314. #~ msgctxt "@action"
  5315. #~ msgid "Don't ask me again for this printer."
  5316. #~ msgstr "Nie pytaj więcej dla tej drukarki."
  5317. #~ msgctxt "@info:status"
  5318. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5319. #~ msgstr "Możesz teraz wysłać i nadzorować zadania druku z każdego miejsca, używając konta Ultimaker."
  5320. #~ msgctxt "@info:status"
  5321. #~ msgid "Connected!"
  5322. #~ msgstr "Połączono!"
  5323. #~ msgctxt "@action"
  5324. #~ msgid "Review your connection"
  5325. #~ msgstr "Odnów połączenie"
  5326. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5327. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5328. #~ msgstr "Drukarka zdefiniowana w profilu <filename>{0}</filename> ({1}) nie jest zgodna z bieżącą drukarką ({2}), nie można jej importować."
  5329. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5330. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5331. #~ msgstr "Nie powiódł się import profilu z <filename>{0}</filename>:"
  5332. #~ msgctxt "@window:title"
  5333. #~ msgid "Existing Connection"
  5334. #~ msgstr "Istniejące Połączenie"
  5335. #~ msgctxt "@message:text"
  5336. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5337. #~ msgstr "Ta drukarka/grupa jest już dodana do Cura. Proszę wybierz inną drukarkę/grupę."
  5338. #~ msgctxt "@label"
  5339. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5340. #~ msgstr "Podaj adres IP lub nazwę hosta drukarki w sieci."
  5341. #~ msgctxt "@info:tooltip"
  5342. #~ msgid "Connect to a printer"
  5343. #~ msgstr "Podłącz do drukarki"
  5344. #~ msgctxt "@title"
  5345. #~ msgid "Cura Settings Guide"
  5346. #~ msgstr "Przewodnik po ustawieniach Cura"
  5347. #~ msgctxt "description"
  5348. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5349. #~ msgstr "Zarządza ustawieniami połączenia sieciowego z drukarkami Ultimaker 3."
  5350. #~ msgctxt "name"
  5351. #~ msgid "UM3 Network Connection"
  5352. #~ msgstr "Połączenie Sieciowe UM3"
  5353. #~ msgctxt "description"
  5354. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5355. #~ msgstr "Zawiera dodatkowe informacje i objaśnienia dotyczące ustawień w Cura, z obrazami i animacjami."
  5356. #~ msgctxt "name"
  5357. #~ msgid "Settings Guide"
  5358. #~ msgstr "Przewodnik po ustawieniach"
  5359. #~ msgctxt "@item:inmenu"
  5360. #~ msgid "Cura Settings Guide"
  5361. #~ msgstr "Przewodnik po ustawieniach Cura"
  5362. #~ msgctxt "@info:generic"
  5363. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5364. #~ msgstr "Ustawienia został zmienione, aby pasowały do obecnej dostępności extruderów: [%s]"
  5365. #~ msgctxt "@title:groupbox"
  5366. #~ msgid "User description"
  5367. #~ msgstr "Opis użytkownika"
  5368. #~ msgctxt "@info"
  5369. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5370. #~ msgstr "Te opcje nie są dostępne, ponieważ nadzorujesz drukarkę w chmurze."
  5371. #~ msgctxt "@label link to connect manager"
  5372. #~ msgid "Go to Cura Connect"
  5373. #~ msgstr "Idź do Cura Connect"
  5374. #~ msgctxt "@info"
  5375. #~ msgid "All jobs are printed."
  5376. #~ msgstr "Wszystkie zadania są drukowane."
  5377. #~ msgctxt "@label link to connect manager"
  5378. #~ msgid "View print history"
  5379. #~ msgstr "Poważ historię druku"
  5380. #~ msgctxt "@label"
  5381. #~ msgid ""
  5382. #~ "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"
  5383. #~ "\n"
  5384. #~ "Select your printer from the list below:"
  5385. #~ msgstr ""
  5386. #~ "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"
  5387. #~ "\n"
  5388. #~ "Wybierz drukarkę z poniższej listy:"
  5389. #~ msgctxt "@info"
  5390. #~ msgid ""
  5391. #~ "Please make sure your printer has a connection:\n"
  5392. #~ "- Check if the printer is turned on.\n"
  5393. #~ "- Check if the printer is connected to the network."
  5394. #~ msgstr ""
  5395. #~ "Upewnij się czy drukarka jest połączona:\n"
  5396. #~ "- Sprawdź czy drukarka jest włączona.\n"
  5397. #~ "- Sprawdź czy drukarka jest podłączona do sieci."
  5398. #~ msgctxt "@option:check"
  5399. #~ msgid "See only current build plate"
  5400. #~ msgstr "Pokaż tylko aktualną platformę roboczą"
  5401. #~ msgctxt "@action:button"
  5402. #~ msgid "Arrange to all build plates"
  5403. #~ msgstr "Rozłóż na wszystkich platformach roboczych"
  5404. #~ msgctxt "@action:button"
  5405. #~ msgid "Arrange current build plate"
  5406. #~ msgstr "Rozłóż na obecnej platformie roboczej"
  5407. #~ msgctxt "description"
  5408. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5409. #~ 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)."
  5410. #~ msgctxt "name"
  5411. #~ msgid "X3GWriter"
  5412. #~ msgstr "Zapisywacz X3G"
  5413. #~ msgctxt "description"
  5414. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5415. #~ msgstr "Czyta pliki SVG jako ścieżki, do debugowania ruchów drukarki."
  5416. #~ msgctxt "name"
  5417. #~ msgid "SVG Toolpath Reader"
  5418. #~ msgstr "Czytnik ścieżek SVG"
  5419. #~ msgctxt "@item:inmenu"
  5420. #~ msgid "Changelog"
  5421. #~ msgstr "Lista zmian"
  5422. #~ msgctxt "@item:inmenu"
  5423. #~ msgid "Show Changelog"
  5424. #~ msgstr "Pokaż Dziennik"
  5425. #~ msgctxt "@info:status"
  5426. #~ msgid "Sending data to remote cluster"
  5427. #~ msgstr "Wysyłanie danych do zdalnego klastra"
  5428. #~ msgctxt "@info:status"
  5429. #~ msgid "Connect to Ultimaker Cloud"
  5430. #~ msgstr "Połącz z Ultimaker Cloud"
  5431. #~ msgctxt "@info"
  5432. #~ msgid "Cura collects anonymized usage statistics."
  5433. #~ msgstr "Cura zbiera anonimowe dane statystyczne."
  5434. #~ msgctxt "@info:title"
  5435. #~ msgid "Collecting Data"
  5436. #~ msgstr "Zbieranie Danych"
  5437. #~ msgctxt "@action:button"
  5438. #~ msgid "More info"
  5439. #~ msgstr "Więcej informacji"
  5440. #~ msgctxt "@action:tooltip"
  5441. #~ msgid "See more information on what data Cura sends."
  5442. #~ msgstr "Zobacz więcej informacji o tym, jakie dane przesyła Cura."
  5443. #~ msgctxt "@action:button"
  5444. #~ msgid "Allow"
  5445. #~ msgstr "Zezwól"
  5446. #~ msgctxt "@action:tooltip"
  5447. #~ 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."
  5448. #~ 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."
  5449. #~ msgctxt "@item:inmenu"
  5450. #~ msgid "Evaluation"
  5451. #~ msgstr "Obliczanie"
  5452. #~ msgctxt "@info:title"
  5453. #~ msgid "Network enabled printers"
  5454. #~ msgstr "Drukarki dostępne w sieci"
  5455. #~ msgctxt "@info:title"
  5456. #~ msgid "Local printers"
  5457. #~ msgstr "Drukarki lokalne"
  5458. #~ msgctxt "@info:backup_failed"
  5459. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5460. #~ msgstr "Podjęto próbę przywrócenia kopii zapasowej Cura, która nie odpowiada obecnej wersji programu."
  5461. #~ msgctxt "@title"
  5462. #~ msgid "Machine Settings"
  5463. #~ msgstr "Ustawienia Drukarki"
  5464. #~ msgctxt "@label"
  5465. #~ msgid "Printer Settings"
  5466. #~ msgstr "Ustawienia drukarki"
  5467. #~ msgctxt "@option:check"
  5468. #~ msgid "Origin at center"
  5469. #~ msgstr "Początek na środku"
  5470. #~ msgctxt "@option:check"
  5471. #~ msgid "Heated bed"
  5472. #~ msgstr "Podgrzewany stół"
  5473. #~ msgctxt "@label"
  5474. #~ msgid "Printhead Settings"
  5475. #~ msgstr "Ustawienia głowic drukujących"
  5476. #~ msgctxt "@tooltip"
  5477. #~ 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\"."
  5478. #~ 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\"."
  5479. #~ msgctxt "@tooltip"
  5480. #~ 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\"."
  5481. #~ 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\"."
  5482. #~ msgctxt "@tooltip"
  5483. #~ 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\"."
  5484. #~ 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\"."
  5485. #~ msgctxt "@tooltip"
  5486. #~ 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\"."
  5487. #~ 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\"."
  5488. #~ msgctxt "@label"
  5489. #~ msgid "Gantry height"
  5490. #~ msgstr "Wysokość ramy"
  5491. #~ msgctxt "@tooltip"
  5492. #~ 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\"."
  5493. #~ 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\"."
  5494. #~ msgctxt "@label"
  5495. #~ msgid "Start G-code"
  5496. #~ msgstr "Początkowy G-code"
  5497. #~ msgctxt "@tooltip"
  5498. #~ msgid "G-code commands to be executed at the very start."
  5499. #~ msgstr "Komedy G-code, które są wykonywane na samym początku."
  5500. #~ msgctxt "@label"
  5501. #~ msgid "End G-code"
  5502. #~ msgstr "Końcowy G-code"
  5503. #~ msgctxt "@tooltip"
  5504. #~ msgid "G-code commands to be executed at the very end."
  5505. #~ msgstr "Komendy G-code, które są wykonywane na samym końcu."
  5506. #~ msgctxt "@label"
  5507. #~ msgid "Nozzle Settings"
  5508. #~ msgstr "Ustawienia dyszy"
  5509. #~ msgctxt "@tooltip"
  5510. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5511. #~ msgstr "Nominalna średnica filamentu wspierana przez drukarkę. Dokładna średnica będzie nadpisana przez materiał i/lub profil."
  5512. #~ msgctxt "@label"
  5513. #~ msgid "Extruder Start G-code"
  5514. #~ msgstr "Początkowy G-code Ekstrudera"
  5515. #~ msgctxt "@label"
  5516. #~ msgid "Extruder End G-code"
  5517. #~ msgstr "Końcowy G-code Ekstrudera"
  5518. #~ msgctxt "@label"
  5519. #~ msgid "Changelog"
  5520. #~ msgstr "Dziennik"
  5521. #~ msgctxt "@title:window"
  5522. #~ msgid "User Agreement"
  5523. #~ msgstr "Zgoda Użytkownika"
  5524. #~ msgctxt "@alabel"
  5525. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5526. #~ msgstr "Wpisz adres IP lub nazwę hosta drukarki w sieci."
  5527. #~ msgctxt "@info"
  5528. #~ msgid "Please select a network connected printer to monitor."
  5529. #~ msgstr "Wybierz drukarkę połączoną z siecią, aby nadzorować."
  5530. #~ msgctxt "@info"
  5531. #~ msgid "Please connect your Ultimaker printer to your local network."
  5532. #~ msgstr "Połącz drukarkę Ultimaker z twoją siecią lokalną."
  5533. #~ msgctxt "@text:window"
  5534. #~ 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."
  5535. #~ 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."
  5536. #~ msgctxt "@text:window"
  5537. #~ msgid "I don't want to send this data"
  5538. #~ msgstr "Nie chcę wysyłać danych"
  5539. #~ msgctxt "@text:window"
  5540. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5541. #~ msgstr "Pozwól wysłać te dane do Ultimakera i pomóż nam ulepszyć Curę"
  5542. #~ msgctxt "@label"
  5543. #~ msgid "No print selected"
  5544. #~ msgstr "Żaden wydruk nie jest zaznaczony"
  5545. #~ msgctxt "@info:tooltip"
  5546. #~ 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."
  5547. #~ 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."
  5548. #~ msgctxt "@title"
  5549. #~ msgid "Select Printer Upgrades"
  5550. #~ msgstr "Wybierz ulepszenia drukarki"
  5551. #~ msgctxt "@label"
  5552. #~ 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."
  5553. #~ 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."
  5554. #~ msgctxt "@tooltip"
  5555. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5556. #~ 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"
  5557. #~ msgctxt "@label shown when we load a Gcode file"
  5558. #~ msgid "Print setup disabled. G code file can not be modified."
  5559. #~ msgstr "Ustawienia druku niedostępne. Plik .gcode nie może być modyfikowany."
  5560. #~ msgctxt "@label"
  5561. #~ msgid "See the material compatibility chart"
  5562. #~ msgstr "Zobacz tabelę kompatybilności materiałów"
  5563. #~ msgctxt "@label"
  5564. #~ msgid "View types"
  5565. #~ msgstr "Typy widoków"
  5566. #~ msgctxt "@label"
  5567. #~ msgid "Hi "
  5568. #~ msgstr "Cześć "
  5569. #~ msgctxt "@text"
  5570. #~ msgid ""
  5571. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5572. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5573. #~ "- Get exclusive access to material profiles from leading brands"
  5574. #~ msgstr ""
  5575. #~ "- Wysyłaj zadania druku do drukarek Ultimaker poza siecią lokalną\n"
  5576. #~ "- Przechowuj ustawienia Ultimaker Cura w chmurze, aby używać w każdym miejscu\n"
  5577. #~ "- Uzyskaj wyłączny dostęp do profili materiałów wiodących marek"
  5578. #~ msgctxt "@label:PrintjobStatus"
  5579. #~ msgid "Unable to Slice"
  5580. #~ msgstr "Nie można pociąć"
  5581. #~ msgctxt "@label"
  5582. #~ msgid "Time specification"
  5583. #~ msgstr "Specyfikacja czasu"
  5584. #~ msgctxt "@label"
  5585. #~ msgid "Material specification"
  5586. #~ msgstr "Specyfikacja materiału"
  5587. #~ msgctxt "@title:tab"
  5588. #~ msgid "Add a printer to Cura"
  5589. #~ msgstr "Dodaj drukarkę do Cura"
  5590. #~ msgctxt "@title:tab"
  5591. #~ msgid ""
  5592. #~ "Select the printer you want to use from the list below.\n"
  5593. #~ "\n"
  5594. #~ "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."
  5595. #~ msgstr ""
  5596. #~ "Z poniższej listy wybierz drukarkę, której chcesz użyć.\n"
  5597. #~ "\n"
  5598. #~ "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."
  5599. #~ msgctxt "@label"
  5600. #~ msgid "Printer Name"
  5601. #~ msgstr "Nazwa drukarki"
  5602. #~ msgctxt "@action:button"
  5603. #~ msgid "Add Printer"
  5604. #~ msgstr "Dodaj drukarkę"
  5605. #~ msgid "Modify G-Code"
  5606. #~ msgstr "Modyfikuj G-Code"
  5607. #~ msgctxt "@info:status"
  5608. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5609. #~ msgstr "Nic do pocięcia, ponieważ żaden z modeli nie pasuje do obszaru roboczego. Proszę o przeskalowanie lub obrócenie modelu, żeby pasował."
  5610. #~ msgctxt "@info:status"
  5611. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5612. #~ msgstr "Wybrany materiał jest niezgodny z wybranym urządzeniem lub konfiguracją."
  5613. #~ msgctxt "@info:title"
  5614. #~ msgid "Incompatible Material"
  5615. #~ msgstr "Niekompatybilny Materiał"
  5616. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5617. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5618. #~ msgstr "Nie udało się zaimportować profilu z <filename>{0}</filename>: <message>{1}</message>"
  5619. #~ msgctxt "@title"
  5620. #~ msgid "Toolbox"
  5621. #~ msgstr "Narzędzia"
  5622. #~ msgctxt "@label"
  5623. #~ msgid "Not available"
  5624. #~ msgstr "Niedostępny"
  5625. #~ msgctxt "@label"
  5626. #~ msgid "Unreachable"
  5627. #~ msgstr "Nieosiągalny"
  5628. #~ msgctxt "@label"
  5629. #~ msgid "Available"
  5630. #~ msgstr "Dostępny"
  5631. #~ msgctxt "@label:status"
  5632. #~ msgid "Preparing"
  5633. #~ msgstr "Przygotowywanie"
  5634. #~ msgctxt "@label:status"
  5635. #~ msgid "Pausing"
  5636. #~ msgstr "Wstrzymywanie"
  5637. #~ msgctxt "@label:status"
  5638. #~ msgid "Resuming"
  5639. #~ msgstr "Wznawianie"
  5640. #~ msgctxt "@label"
  5641. #~ msgid "Waiting for: Unavailable printer"
  5642. #~ msgstr "Oczekiwanie na: Niedostępną drukarkę"
  5643. #~ msgctxt "@label"
  5644. #~ msgid "Waiting for: First available"
  5645. #~ msgstr "Oczekiwanie na: Pierwszą dostępną"
  5646. #~ msgctxt "@label"
  5647. #~ msgid "Waiting for: "
  5648. #~ msgstr "Oczekiwanie na: "
  5649. #~ msgctxt "@label link to connect manager"
  5650. #~ msgid "Manage queue"
  5651. #~ msgstr "Zarządzaj kolejką"
  5652. #~ msgctxt "@label"
  5653. #~ msgid "Printing"
  5654. #~ msgstr "Drukowanie"
  5655. #~ msgctxt "@label link to connect manager"
  5656. #~ msgid "Manage printers"
  5657. #~ msgstr "Zarządzaj drukarkami"
  5658. #~ msgctxt "@action:button"
  5659. #~ msgid "Activate Configuration"
  5660. #~ msgstr "Uaktywnij konfigurację"
  5661. #~ msgctxt "@info:tooltip"
  5662. #~ msgid "Load the configuration of the printer into Cura"
  5663. #~ msgstr "Załaduj konfigurację drukarki do Cura"
  5664. #~ msgctxt "@label"
  5665. #~ msgid "Show Travels"
  5666. #~ msgstr "Pokaż ruch jałowy"
  5667. #~ msgctxt "@label"
  5668. #~ msgid "Show Helpers"
  5669. #~ msgstr "Pokaż pomocnik"
  5670. #~ msgctxt "@label"
  5671. #~ msgid "Show Shell"
  5672. #~ msgstr "Pokaż powłokę"
  5673. #~ msgctxt "@label"
  5674. #~ msgid "Show Infill"
  5675. #~ msgstr "Pokaż wypełnienie"
  5676. #~ msgctxt "@text:window"
  5677. #~ msgid "I don't want to send these data"
  5678. #~ msgstr "Nie chcę przesyłać tych danych"
  5679. #~ msgctxt "@text:window"
  5680. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5681. #~ msgstr "Zezwól na przesyłanie tych danych do Ultimaker i pomóż nam ulepszać Cura"
  5682. #~ msgctxt "@label"
  5683. #~ msgid "Printer type:"
  5684. #~ msgstr "Typ drukarki:"
  5685. #~ msgctxt "@label"
  5686. #~ msgid "Connection:"
  5687. #~ msgstr "Połączenie:"
  5688. #~ msgctxt "@label"
  5689. #~ msgid "State:"
  5690. #~ msgstr "Stan:"
  5691. #~ msgctxt "@label:MonitorStatus"
  5692. #~ msgid "Waiting for a printjob"
  5693. #~ msgstr "Oczekiwanie na zadanie drukowania"
  5694. #~ msgctxt "@label:MonitorStatus"
  5695. #~ msgid "Waiting for someone to clear the build plate"
  5696. #~ msgstr "Oczekiwanie na wyczyszczenie stołu roboczego"
  5697. #~ msgctxt "@label:MonitorStatus"
  5698. #~ msgid "Aborting print..."
  5699. #~ msgstr "Przerywanie drukowania..."
  5700. #~ msgctxt "@label"
  5701. #~ msgid "Protected profiles"
  5702. #~ msgstr "Chronione profile"
  5703. #~ msgctxt "@label"
  5704. #~ msgid "Printer Name:"
  5705. #~ msgstr "Nazwa drukarki:"
  5706. #~ msgctxt "@label"
  5707. #~ msgid "Profile:"
  5708. #~ msgstr "Profil:"
  5709. #~ msgctxt "@label:textbox"
  5710. #~ msgid "Search..."
  5711. #~ msgstr "Szukanie..."
  5712. #~ msgctxt "@action:inmenu"
  5713. #~ msgid "Collapse All"
  5714. #~ msgstr "Schowaj wszystkie"
  5715. #~ msgctxt "@action:inmenu"
  5716. #~ msgid "Expand All"
  5717. #~ msgstr "Rozwiń wszystkie"
  5718. #~ msgctxt "@label:header configurations"
  5719. #~ msgid "Available configurations"
  5720. #~ msgstr "Dostępne konfiguracje"
  5721. #~ msgctxt "@label:extruder label"
  5722. #~ msgid "Extruder"
  5723. #~ msgstr "Ekstruder"
  5724. #~ msgctxt "@label:extruder label"
  5725. #~ msgid "Yes"
  5726. #~ msgstr "Tak"
  5727. #~ msgctxt "@label:extruder label"
  5728. #~ msgid "No"
  5729. #~ msgstr "Nie"
  5730. #~ msgctxt "@label:listbox"
  5731. #~ msgid "Print Setup"
  5732. #~ msgstr "Ustawienia druku"
  5733. #~ msgctxt "@label:listbox"
  5734. #~ msgid ""
  5735. #~ "Print Setup disabled\n"
  5736. #~ "G-code files cannot be modified"
  5737. #~ msgstr ""
  5738. #~ "Konfiguracja wydruku jest wyłączona\n"
  5739. #~ "Pliki G-code nie mogą zostać zmodyfikowane"
  5740. #~ msgctxt "@label Hours and minutes"
  5741. #~ msgid "00h 00min"
  5742. #~ msgstr "00godz. 00min."
  5743. #~ msgctxt "@tooltip"
  5744. #~ msgid "Time specification"
  5745. #~ msgstr "Specyfikacja czasu"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Cost specification"
  5748. #~ msgstr "Szacowanie kosztów"
  5749. #~ msgctxt "@label"
  5750. #~ msgid "Total:"
  5751. #~ msgstr "Razem:"
  5752. #~ msgctxt "@tooltip"
  5753. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5754. #~ msgstr "<b>Zalecana konfiguracja wydruku</b><br/><br/>Drukowanie z zalecanymi ustawieniami dla wybranej drukarki, materiału i jakości."
  5755. #~ msgctxt "@tooltip"
  5756. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5757. #~ msgstr "<b>Niestandardowa konfiguracja wydruku</b><br/><br/>Drukowanie z precyzyjną kontrolą nad każdym elementem procesu cięcia."
  5758. #~ msgctxt "@action:inmenu menubar:help"
  5759. #~ msgid "Show Engine &Log..."
  5760. #~ msgstr "Pokaż &dziennik silnika..."
  5761. #~ msgctxt "@action:menu"
  5762. #~ msgid "Browse packages..."
  5763. #~ msgstr "Przeglądaj pakiety..."
  5764. #~ msgctxt "@action:inmenu menubar:view"
  5765. #~ msgid "Expand/Collapse Sidebar"
  5766. #~ msgstr "Rozłóż/Schowaj Pasek Boczny"
  5767. #~ msgctxt "@label:PrintjobStatus"
  5768. #~ msgid "Please load a 3D model"
  5769. #~ msgstr "Proszę załaduj model 3D"
  5770. #~ msgctxt "@label:PrintjobStatus"
  5771. #~ msgid "Ready to slice"
  5772. #~ msgstr "Gotowy do cięcia"
  5773. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5774. #~ msgid "Ready to %1"
  5775. #~ msgstr "Gotowy do %1"
  5776. #~ msgctxt "@label:PrintjobStatus"
  5777. #~ msgid "Slicing unavailable"
  5778. #~ msgstr "Cięcie niedostępne"
  5779. #~ msgctxt "@info:tooltip"
  5780. #~ msgid "Slice current printjob"
  5781. #~ msgstr "Potnij aktualny wydruk"
  5782. #~ msgctxt "@info:tooltip"
  5783. #~ msgid "Cancel slicing process"
  5784. #~ msgstr "Przerwij proces cięcia"
  5785. #~ msgctxt "@label:Printjob"
  5786. #~ msgid "Prepare"
  5787. #~ msgstr "Przygotuj"
  5788. #~ msgctxt "@label:Printjob"
  5789. #~ msgid "Cancel"
  5790. #~ msgstr "Anuluj"
  5791. #~ msgctxt "@info:tooltip"
  5792. #~ msgid "Select the active output device"
  5793. #~ msgstr "Wybierz aktywne urządzenie wyjściowe"
  5794. #~ msgctxt "@title:menu"
  5795. #~ msgid "&View"
  5796. #~ msgstr "&Widok"
  5797. #~ msgctxt "@title:menu"
  5798. #~ msgid "&Settings"
  5799. #~ msgstr "&Ustawienia"
  5800. #~ msgctxt "@title:menu menubar:toplevel"
  5801. #~ msgid "&Toolbox"
  5802. #~ msgstr "&Narzędzia"
  5803. #~ msgctxt "@action:button"
  5804. #~ msgid "Open File"
  5805. #~ msgstr "Otwórz plik"
  5806. #~ msgctxt "@tooltip"
  5807. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5808. #~ 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"
  5809. #~ msgctxt "@label"
  5810. #~ msgid "Print Speed"
  5811. #~ msgstr "Prędkość Druku"
  5812. #~ msgctxt "@label"
  5813. #~ msgid "Slower"
  5814. #~ msgstr "Wolniej"
  5815. #~ msgctxt "@label"
  5816. #~ msgid "Faster"
  5817. #~ msgstr "Szybciej"
  5818. #~ msgctxt "@label"
  5819. #~ msgid "Enable gradual"
  5820. #~ msgstr "Włącz stopniowane"
  5821. #~ msgctxt "@label"
  5822. #~ msgid "Generate Support"
  5823. #~ msgstr "Generuj podpory"
  5824. #~ msgctxt "@label"
  5825. #~ msgid "Build Plate Adhesion"
  5826. #~ msgstr "Popraw przycz. modelu"
  5827. #~ msgctxt "@label"
  5828. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5829. #~ msgstr "Potrzebujesz pomocy w ulepszaniu wydruków?<br>Przeczytaj <a href='%1'>instrukcje dotyczące rozwiązywania problemów</a>"
  5830. #~ msgctxt "@title:window"
  5831. #~ msgid "Engine Log"
  5832. #~ msgstr "Dziennik silnika"
  5833. #~ msgctxt "@label"
  5834. #~ msgid "Printer type"
  5835. #~ msgstr "Typ drukarki"
  5836. #~ msgctxt "@label"
  5837. #~ msgid "Use glue with this material combination"
  5838. #~ msgstr "Użyj kleju z tą kombinacją materiałów"
  5839. #~ msgctxt "@label"
  5840. #~ msgid "Check compatibility"
  5841. #~ msgstr "Sprawdź kompatybilność"
  5842. #~ msgctxt "@tooltip"
  5843. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5844. #~ msgstr "Kliknij, aby sprawdzić zgodność materiału na Ultimaker.com."
  5845. #~ msgctxt "description"
  5846. #~ msgid "Shows changes since latest checked version."
  5847. #~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji."
  5848. #~ msgctxt "name"
  5849. #~ msgid "Changelog"
  5850. #~ msgstr "Lista zmian"
  5851. #~ msgctxt "description"
  5852. #~ msgid "Create a flattend quality changes profile."
  5853. #~ msgstr "Utwórz charakterystyczny profil zmiany jakości."
  5854. #~ msgctxt "name"
  5855. #~ msgid "Profile flatener"
  5856. #~ msgstr "Charakterystyka Profilu"
  5857. #~ msgctxt "description"
  5858. #~ msgid "Ask the user once if he/she agrees with our license."
  5859. #~ msgstr "Zapytaj użytkownika jednokrotnie, czy zgadza się z warunkami naszej licencji."
  5860. #~ msgctxt "name"
  5861. #~ msgid "UserAgreement"
  5862. #~ msgstr "ZgodaUżytkownika"
  5863. #~ msgctxt "@warning:status"
  5864. #~ msgid "Please generate G-code before saving."
  5865. #~ msgstr "Wygeneruj G-code przed zapisem."
  5866. #~ msgctxt "@action"
  5867. #~ msgid "Upgrade Firmware"
  5868. #~ msgstr "Uaktualnij oprogramowanie układowe"
  5869. #~ msgctxt "@label unknown material"
  5870. #~ msgid "Unknown"
  5871. #~ msgstr "Nieznany"
  5872. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5873. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5874. #~ msgstr "Brak niestandardowego profilu do zaimportowania do pliku <filename>{0}</filename>"
  5875. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5876. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5877. #~ msgstr "Ten profil <filename>{0}</filename> zawiera błędne dane, nie można go zaimportować."
  5878. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5879. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5880. #~ msgstr "Maszyna zdefiniowana w profilu <filename>{0}</filename> ({1}) nie zgadza się z obecnie wybraną maszyną ({2}), nie można tego zaimportować."
  5881. #~ msgctxt "@title:window"
  5882. #~ msgid "Confirm uninstall "
  5883. #~ msgstr "Potwierdź odinstalowanie "
  5884. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5885. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5886. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5887. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5888. #~ msgid "%1m / ~ %2g"
  5889. #~ msgstr "%1m / ~ %2g"
  5890. #~ msgctxt "@title"
  5891. #~ msgid "Upgrade Firmware"
  5892. #~ msgstr "Uaktualnij oprogramowanie"
  5893. #~ msgctxt "@action:button"
  5894. #~ msgid "Print with Doodle3D WiFi-Box"
  5895. #~ msgstr "Drukuj z Doodle3D WiFi-Box"
  5896. #~ msgctxt "@properties:tooltip"
  5897. #~ msgid "Print with Doodle3D WiFi-Box"
  5898. #~ msgstr "Drukuj z Doodle3D WiFi-Box"
  5899. #~ msgctxt "@info:status"
  5900. #~ msgid "Connecting to Doodle3D Connect"
  5901. #~ msgstr "Łączenie z Doodle3D Connect"
  5902. #~ msgctxt "@info:status"
  5903. #~ msgid "Sending data to Doodle3D Connect"
  5904. #~ msgstr "Wysyłanie danych do Doodle3D Connect"
  5905. #~ msgctxt "@info:status"
  5906. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5907. #~ msgstr "Nie można wysłać danych do Doodle3D Connect. Czy inne zadanie jest aktywne?"
  5908. #~ msgctxt "@info:status"
  5909. #~ msgid "Storing data on Doodle3D Connect"
  5910. #~ msgstr "Przetrzymywanie danych na Doodle3D Connect"
  5911. #~ msgctxt "@info:status"
  5912. #~ msgid "File sent to Doodle3D Connect"
  5913. #~ msgstr "Plik wysłany do Doodle3D Connect"
  5914. #~ msgctxt "@action:button"
  5915. #~ msgid "Open Connect..."
  5916. #~ msgstr "Otwórz Connect..."
  5917. #~ msgctxt "@info:tooltip"
  5918. #~ msgid "Open the Doodle3D Connect web interface"
  5919. #~ msgstr "Otwórz interfejs Doodle3D Connect"
  5920. #~ msgctxt "@item:inlistbox"
  5921. #~ msgid "Blender file"
  5922. #~ msgstr "Plik Blender"
  5923. #~ msgctxt "@info:status"
  5924. #~ msgid ""
  5925. #~ "Could not export using \"{}\" quality!\n"
  5926. #~ "Felt back to \"{}\"."
  5927. #~ msgstr ""
  5928. #~ "Nie można wyeksportować używając \"{}\" jakości!\n"
  5929. #~ "Powrócono do \"{}\"."
  5930. #~ msgctxt "@label"
  5931. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5932. #~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą drukarek Ultimaker 3."
  5933. #~ msgctxt "@label"
  5934. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5935. #~ msgstr "Ta drukarka jest gospodarzem grupy %1 drukarek Ultimaker 3."
  5936. #~ msgctxt "@label: arg 1 is group name"
  5937. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5938. #~ msgstr "%1 nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3"
  5939. #~ msgctxt "@label link to connect manager"
  5940. #~ msgid "Add/Remove printers"
  5941. #~ msgstr "Dodaj/Usuń drukarki"
  5942. #~ msgctxt "@info:tooltip"
  5943. #~ msgid "Opens the print jobs page with your default web browser."
  5944. #~ msgstr "Otwiera stronę zadań drukowania w twojej domyślnej przeglądarce sieciowej."
  5945. #~ msgctxt "@action:button"
  5946. #~ msgid "View print jobs"
  5947. #~ msgstr "Zobacz zadania drukowania"
  5948. #~ msgctxt "@label:status"
  5949. #~ msgid "Preparing to print"
  5950. #~ msgstr "Przygotowywanie do drukowania"
  5951. #~ msgctxt "@label:status"
  5952. #~ msgid "Available"
  5953. #~ msgstr "Dostępna"
  5954. #~ msgctxt "@label:status"
  5955. #~ msgid "Lost connection with the printer"
  5956. #~ msgstr "Utracono połączenie z drukarką"
  5957. #~ msgctxt "@label:status"
  5958. #~ msgid "Unknown"
  5959. #~ msgstr "Nieznane"
  5960. #~ msgctxt "@label:status"
  5961. #~ msgid "Disabled"
  5962. #~ msgstr "Wyłączona"
  5963. #~ msgctxt "@label:status"
  5964. #~ msgid "Reserved"
  5965. #~ msgstr "Zajęta"
  5966. #~ msgctxt "@label"
  5967. #~ msgid "Preparing to print"
  5968. #~ msgstr "Przygotowywanie do druku"
  5969. #~ msgctxt "@label:status"
  5970. #~ msgid "Print aborted"
  5971. #~ msgstr "Drukowanie zostaje przerwane"
  5972. #~ msgctxt "@label"
  5973. #~ msgid "Not accepting print jobs"
  5974. #~ msgstr "Nie akceptuje zadań drukowania"
  5975. #~ msgctxt "@label"
  5976. #~ msgid "Finishes at: "
  5977. #~ msgstr "Wykończenia na: "
  5978. #~ msgctxt "@label"
  5979. #~ msgid "Clear build plate"
  5980. #~ msgstr "Oczyść platformę roboczą"
  5981. #~ msgctxt "@label"
  5982. #~ msgid "Waiting for configuration change"
  5983. #~ msgstr "Oczekuje na zmianę konfiguracji"
  5984. #~ msgctxt "@title"
  5985. #~ msgid "Print jobs"
  5986. #~ msgstr "Zadania drukowania"
  5987. #~ msgctxt "@label:title"
  5988. #~ msgid "Printers"
  5989. #~ msgstr "Drukarki"
  5990. #~ msgctxt "@action:button"
  5991. #~ msgid "View printers"
  5992. #~ msgstr "Zobacz drukarki"
  5993. #~ msgctxt "@label:"
  5994. #~ msgid "Pause"
  5995. #~ msgstr "Wstrzymaj"
  5996. #~ msgctxt "@label:"
  5997. #~ msgid "Resume"
  5998. #~ msgstr "Wznów"
  5999. #~ msgctxt "@label:"
  6000. #~ msgid "Abort Print"
  6001. #~ msgstr "Przerwij wydruk"
  6002. #~ msgctxt "@option:openProject"
  6003. #~ msgid "Always ask"
  6004. #~ msgstr "Zawsze pytaj"
  6005. #~ msgctxt "@label"
  6006. #~ msgid "Override Profile"
  6007. #~ msgstr "Nadpisz profil"
  6008. #~ msgctxt "@info:tooltip"
  6009. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6010. #~ msgstr "Czy nowo załadowane modele powinny zostać rozłożone na platformie roboczej? Używane w połączeniu z multi platformą roboczą (EKSPERYMENTALNE)"
  6011. #~ msgctxt "@option:check"
  6012. #~ msgid "Do not arrange objects on load"
  6013. #~ msgstr "Nie układaj obiektów podczas ładowania"
  6014. #~ msgctxt "@action:inmenu menubar:file"
  6015. #~ msgid "&Save Selection to File"
  6016. #~ msgstr "Z&apisz wybór w pliku"
  6017. #~ msgctxt "@title:menu menubar:file"
  6018. #~ msgid "Save &As..."
  6019. #~ msgstr "Zapisz &jako..."
  6020. #~ msgctxt "@title:menu menubar:file"
  6021. #~ msgid "Save &Project..."
  6022. #~ msgstr "Zapisz &Project..."
  6023. #~ msgctxt "description"
  6024. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6025. #~ msgstr "Akceptuje G-Code i wysyła go przez WiFi do Doodle3D WiFi-Box."
  6026. #~ msgctxt "name"
  6027. #~ msgid "Doodle3D WiFi-Box"
  6028. #~ msgstr "Doodle3D WiFi-Box"
  6029. #~ msgctxt "description"
  6030. #~ msgid "Provides an edit window for direct script editing."
  6031. #~ msgstr "Zapewnia okno edycji dla bezpośredniego edytowania skryptów."
  6032. #~ msgctxt "name"
  6033. #~ msgid "Live scripting tool"
  6034. #~ msgstr "Narzędzie pisania skryptów na żywo."
  6035. #~ msgctxt "description"
  6036. #~ msgid "Helps to open Blender files directly in Cura."
  6037. #~ msgstr "Pomaga w otwieraniu plików Blender bezpośrednio w Cura."
  6038. #~ msgctxt "name"
  6039. #~ msgid "Blender Integration (experimental)"
  6040. #~ msgstr "Integracja z Blenderem (eksperymentalny)"
  6041. #~ msgctxt "@info:title"
  6042. #~ msgid "Model Checker Warning"
  6043. #~ msgstr "Ostrzeżenie Sprawdzacza Modelu"
  6044. #~ msgctxt "@info:status"
  6045. #~ msgid ""
  6046. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6047. #~ "Tips that may be useful to improve the print quality:\n"
  6048. #~ "1) Use rounded corners.\n"
  6049. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6050. #~ "3) Use a different material."
  6051. #~ msgstr ""
  6052. #~ "Niektóre modele nie będą drukowane optymalnie z powodu rozmiaru obiektu i wybranych materiałów dla modeli: {model_names}.\n"
  6053. #~ "Porady, które mogą się przydać, aby poprawić jakość wydruku:\n"
  6054. #~ "1) Używaj zaokrąglonych narożników.\n"
  6055. #~ "2) Wyłącz wentylator (tylko jeśli model nie ma małych detali).\n"
  6056. #~ "3) Użyj innego materiału."
  6057. #~ msgctxt "@info:status"
  6058. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6059. #~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tych problemów w samym SolidWorks."
  6060. #~ msgctxt "@info:status"
  6061. #~ msgid ""
  6062. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6063. #~ "\n"
  6064. #~ "Thanks!"
  6065. #~ msgstr ""
  6066. #~ "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"
  6067. #~ "\n"
  6068. #~ "Dziękuję!."
  6069. #~ msgctxt "@info:status"
  6070. #~ msgid ""
  6071. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6072. #~ "\n"
  6073. #~ "Sorry!"
  6074. #~ msgstr ""
  6075. #~ "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"
  6076. #~ "\n"
  6077. #~ "Przepraszamy!"
  6078. #~ msgctxt "@item:inlistbox"
  6079. #~ msgid "SolidWorks part file"
  6080. #~ msgstr "Plik części SolidWorks"
  6081. #~ msgctxt "@item:inlistbox"
  6082. #~ msgid "SolidWorks assembly file"
  6083. #~ msgstr "Plik złożenia SolidWorks"
  6084. #~ msgctxt "@item:inlistbox"
  6085. #~ msgid "SolidWorks drawing file"
  6086. #~ msgstr "Plik rysunku SolidWorks"
  6087. #~ msgctxt "@info:status"
  6088. #~ msgid ""
  6089. #~ "Dear customer,\n"
  6090. #~ "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"
  6091. #~ "\n"
  6092. #~ "With kind regards\n"
  6093. #~ " - Thomas Karl Pietrowski"
  6094. #~ msgstr ""
  6095. #~ "Szanowny kliencie,\n"
  6096. #~ "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"
  6097. #~ "\n"
  6098. #~ "Z wyrazami szacunku,\n"
  6099. #~ " - Thomas Karl Pietrowski"
  6100. #~ msgctxt "@info:status"
  6101. #~ msgid ""
  6102. #~ "Dear customer,\n"
  6103. #~ "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"
  6104. #~ "\n"
  6105. #~ "With kind regards\n"
  6106. #~ " - Thomas Karl Pietrowski"
  6107. #~ msgstr ""
  6108. #~ "Szanowny kliencie,\n"
  6109. #~ "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"
  6110. #~ "Z wyrazami szacunku,\n"
  6111. #~ " - Thomas Karl Pietrowski"
  6112. #~ msgid "Configure"
  6113. #~ msgstr "Konfiguruj"
  6114. #~ msgid "Installation guide for SolidWorks macro"
  6115. #~ msgstr "Instalacja poradnika dla skrótów SolidWorks"
  6116. #~ msgctxt "@action:button"
  6117. #~ msgid "Disable"
  6118. #~ msgstr "Wyłącz"
  6119. #~ msgctxt "@action:tooltip"
  6120. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6121. #~ msgstr "Nie zezwalaj Cura na wysyłanie anonimowych danych statystycznych. Możesz to włączyć ponownie w preferencjach."
  6122. #~ msgid "Install"
  6123. #~ msgstr "Zainstaluj"
  6124. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6125. #~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR. Nie jest ustawiony do folderu."
  6126. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6127. #~ msgstr "Udało się zainstalować plugin Cura Siemens NX."
  6128. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6129. #~ msgstr "Nie udało się skopiować plików pluginu Siemens NX. Proszę sprawdź twój UGII_USER_DIR."
  6130. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6131. #~ msgstr "Nie udało się zainstalować pluginu Siemens NX. Nie można ustawić zmiennej środowiskowej UGII_USER_DIR dla Siemens NX."
  6132. #~ msgctxt "@info:status"
  6133. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6134. #~ msgstr "Nie udało się uzyskać ID wtyczki z <filename>{0}</filename>"
  6135. #~ msgctxt "@info:tile"
  6136. #~ msgid "Warning"
  6137. #~ msgstr "Ostrzeżenie"
  6138. #~ msgctxt "@window:title"
  6139. #~ msgid "Plugin browser"
  6140. #~ msgstr "Przeglądarka wtyczek"
  6141. #~ msgctxt "@label"
  6142. #~ msgid "Ultimaker 3"
  6143. #~ msgstr "Ultimaker 3"
  6144. #~ msgctxt "@label"
  6145. #~ msgid "Ultimaker 3 Extended"
  6146. #~ msgstr "Ultimaker 3 Extended"
  6147. #~ msgctxt "@title:window"
  6148. #~ msgid "SolidWorks: Export wizard"
  6149. #~ msgstr "SolidWorks: Kreator eksportu"
  6150. #~ msgctxt "@action:label"
  6151. #~ msgid "Quality:"
  6152. #~ msgstr "Jakość:"
  6153. #~ msgctxt "@option:curaSolidworksStlQuality"
  6154. #~ msgid "Fine (3D-printing)"
  6155. #~ msgstr "Dobra (druk 3D)"
  6156. #~ msgctxt "@option:curaSolidworksStlQuality"
  6157. #~ msgid "Coarse (3D-printing)"
  6158. #~ msgstr "Słaba (druk 3D)"
  6159. #~ msgctxt "@option:curaSolidworksStlQuality"
  6160. #~ msgid "Fine (SolidWorks)"
  6161. #~ msgstr "Dobra (SolidWorks)"
  6162. #~ msgctxt "@option:curaSolidworksStlQuality"
  6163. #~ msgid "Coarse (SolidWorks)"
  6164. #~ msgstr "Słaba (Solidworks)"
  6165. #~ msgctxt "@text:window"
  6166. #~ msgid "Show this dialog again"
  6167. #~ msgstr "Pokaż to okno ponownie"
  6168. #~ msgctxt "@action:button"
  6169. #~ msgid "Continue"
  6170. #~ msgstr "Kontynuuj"
  6171. #~ msgctxt "@action:button"
  6172. #~ msgid "Abort"
  6173. #~ msgstr "Przerwij"
  6174. #~ msgctxt "@title:window"
  6175. #~ msgid "How to install Cura SolidWorks macro"
  6176. #~ msgstr "Jak zainstalować skróty SolidWorks dla Cura"
  6177. #~ msgctxt "@description:label"
  6178. #~ msgid "Steps:"
  6179. #~ msgstr "Kroki:"
  6180. #~ msgctxt "@action:button"
  6181. #~ msgid ""
  6182. #~ "Open the directory\n"
  6183. #~ "with macro and icon"
  6184. #~ msgstr ""
  6185. #~ "Otwórz folder\n"
  6186. #~ "ze skrótem i ikoną"
  6187. #~ msgctxt "@description:label"
  6188. #~ msgid "Instructions:"
  6189. #~ msgstr "Instrukcje:"
  6190. #~ msgctxt "@action:playpause"
  6191. #~ msgid "Play"
  6192. #~ msgstr "Odtwórz"
  6193. #~ msgctxt "@action:playpause"
  6194. #~ msgid "Pause"
  6195. #~ msgstr "Zatrzymaj"
  6196. #~ msgctxt "@action:button"
  6197. #~ msgid "Previous Step"
  6198. #~ msgstr "Poprzedni Krok"
  6199. #~ msgctxt "@action:button"
  6200. #~ msgid "Done"
  6201. #~ msgstr "Zrobione"
  6202. #~ msgctxt "@action:button"
  6203. #~ msgid "Next Step"
  6204. #~ msgstr "Następny Krok"
  6205. #~ msgctxt "@title:window"
  6206. #~ msgid "SolidWorks plugin: Configuration"
  6207. #~ msgstr "Plugin SolidWorks: Konfiguracja"
  6208. #~ msgctxt "@title:tab"
  6209. #~ msgid "Conversion settings"
  6210. #~ msgstr "Konwersja ustawień"
  6211. #~ msgctxt "@label"
  6212. #~ msgid "First choice:"
  6213. #~ msgstr "Pierwszy wybór:"
  6214. #~ msgctxt "@text:menu"
  6215. #~ msgid "Latest installed version (Recommended)"
  6216. #~ msgstr "Ostatnio zainstalowana wersja (Rekomendowana)"
  6217. #~ msgctxt "@text:menu"
  6218. #~ msgid "Default version"
  6219. #~ msgstr "Domyślna wersja"
  6220. #~ msgctxt "@label"
  6221. #~ msgid "Show wizard before opening SolidWorks files"
  6222. #~ msgstr "Pokaż konfigurator przed otworzeniem plików SolidWorks"
  6223. #~ msgctxt "@label"
  6224. #~ msgid "Automatically rotate opened file into normed orientation"
  6225. #~ msgstr "Automatycznie obracaj otworzone pliki do unormowanej pozycji"
  6226. #~ msgctxt "@title:tab"
  6227. #~ msgid "Installation(s)"
  6228. #~ msgstr "Instalacja(-e)"
  6229. #~ msgctxt "@label"
  6230. #~ msgid "COM service found"
  6231. #~ msgstr "Usługa COM znaleziona"
  6232. #~ msgctxt "@label"
  6233. #~ msgid "Executable found"
  6234. #~ msgstr "Znaleziono plik wykonywalny"
  6235. #~ msgctxt "@label"
  6236. #~ msgid "COM starting"
  6237. #~ msgstr "Uruchamianie COM"
  6238. #~ msgctxt "@label"
  6239. #~ msgid "Revision number"
  6240. #~ msgstr "Numer wydania"
  6241. #~ msgctxt "@label"
  6242. #~ msgid "Functions available"
  6243. #~ msgstr "Dostępne funkcje"
  6244. #~ msgctxt "@label (%1 is object name)"
  6245. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6246. #~ msgstr "Nowa średnica materiał jest ustawiona na %1 mm, co nie jest kompatybilne z obecną maszyną. Czy chciałbyś kontynuować?"
  6247. #~ msgctxt "@action:menu"
  6248. #~ msgid "Browse plugins..."
  6249. #~ msgstr "Przeglądaj wtyczki..."
  6250. #~ msgctxt "@title:menu menubar:toplevel"
  6251. #~ msgid "P&lugins"
  6252. #~ msgstr "W&tyczki"
  6253. #~ msgctxt "@window:title"
  6254. #~ msgid "Install Plugin"
  6255. #~ msgstr "Zainstaluj Wtyczkę"
  6256. #~ msgctxt "description"
  6257. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6258. #~ msgstr "Zapewnia możliwość zmiany ustawień maszyny (tj. obszaru roboczego, rozmiaru dyszy itd.)"
  6259. #~ msgctxt "description"
  6260. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6261. #~ msgstr "Zarządza połączeniem sieciowym z drukarką Ultimaker 3"
  6262. #~ msgctxt "description"
  6263. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6264. #~ msgstr "Daje Tobie możliwość otwierania plików używają samego SolidWorks. Konwersja jest wykonywana przez ten plugin i dodatkowo optymalizowana."
  6265. #~ msgctxt "name"
  6266. #~ msgid "SolidWorks Integration"
  6267. #~ msgstr "Integracja z SolidWorks"
  6268. #~ msgctxt "description"
  6269. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6270. #~ msgstr "Automatycznie zapisuje Preferencje, Maszyny i Profile po zmianie."
  6271. #~ msgctxt "name"
  6272. #~ msgid "Auto Save"
  6273. #~ msgstr "Auto Zapis"
  6274. #~ msgctxt "description"
  6275. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6276. #~ msgstr "Pomaga zainstalować przycisk 'eksportuj do Cura' w Siemens NX."
  6277. #~ msgctxt "name"
  6278. #~ msgid "Siemens NX Integration"
  6279. #~ msgstr "Integracja z Siemens NX"
  6280. #~ msgctxt "description"
  6281. #~ msgid "Find, manage and install new plugins."
  6282. #~ msgstr "Szuka, zarządza i instaluje nowe wtyczki."
  6283. #~ msgctxt "name"
  6284. #~ msgid "Plugin Browser"
  6285. #~ msgstr "Przeglądarka Wtyczek"
  6286. #~ msgctxt "description"
  6287. #~ msgid "Ask the user once if he/she agrees with our license"
  6288. #~ msgstr "Pyta użytkownika czy zgadza się z naszą licencją"
  6289. #~ msgctxt "description"
  6290. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6291. #~ msgstr "Zapewnia czynności maszyny dla maszyn Ultimaker (tj. poziomowanie stołu, wybór ulepszeń, itd.)"
  6292. #~ msgctxt "@item:inlistbox"
  6293. #~ msgid "GCode File"
  6294. #~ msgstr "Plik GCode"
  6295. #~ msgctxt "@info:status"
  6296. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6297. #~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka jest zajęta lub nie jest podłączona."
  6298. #~ msgctxt "@info:title"
  6299. #~ msgid "Printer Unavailable"
  6300. #~ msgstr "Drukarka Niedostępna"
  6301. #~ msgctxt "@info:status"
  6302. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6303. #~ msgstr "Ta drukarka nie obsługuje drukowania USB, ponieważ korzysta z UltiGCode."
  6304. #~ msgctxt "@info:title"
  6305. #~ msgid "USB Printing"
  6306. #~ msgstr "Drukowanie przez USB"
  6307. #~ msgctxt "@info:status"
  6308. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6309. #~ msgstr "Nie można uruchomić nowego zadania, ponieważ drukarka nie obsługuje drukowania poprzez USB."
  6310. #~ msgctxt "@info"
  6311. #~ msgid "Unable to update firmware because there are no printers connected."
  6312. #~ msgstr "Nie można zaktualizować oprogramowania, ponieważ nie ma podłączonych drukarek."
  6313. #~ msgctxt "@info"
  6314. #~ msgid "Could not find firmware required for the printer at %s."
  6315. #~ msgstr "Nie znaleziono oprogramowania wymaganego dla drukarki w %s."
  6316. #~ msgctxt "@info:title"
  6317. #~ msgid "Printer Firmware"
  6318. #~ msgstr "Oprogramowanie Drukarki"
  6319. #~ msgctxt "@info:title"
  6320. #~ msgid "Connection status"
  6321. #~ msgstr "Status połączenia"
  6322. #~ msgctxt "@info:title"
  6323. #~ msgid "Connection Status"
  6324. #~ msgstr "Status połączenia"
  6325. #~ msgctxt "@info:status"
  6326. #~ msgid "Access request was denied on the printer."
  6327. #~ msgstr "Żądanie dostępu zostało odrzucone na drukarce."
  6328. #~ msgctxt "@info:status"
  6329. #~ msgid "Access request failed due to a timeout."
  6330. #~ msgstr "Żądanie dostępu nie powiodło się z powodu limitu czasu."
  6331. #~ msgctxt "@info:status"
  6332. #~ msgid "The connection with the network was lost."
  6333. #~ msgstr "Połączenie z siecią zostało utracone."
  6334. #~ msgctxt "@info:status"
  6335. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6336. #~ msgstr "Połączenie z drukarką zostało utracone. Sprawdź, czy drukarka jest podłączona."
  6337. #~ msgctxt "@info:status"
  6338. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6339. #~ msgstr "Nie można uruchomić nowego zadania, drukarka jest zajęta. Aktualny stan drukarki to %s."
  6340. #~ msgctxt "@info:title"
  6341. #~ msgid "Printer Status"
  6342. #~ msgstr "Status Drukarki"
  6343. #~ msgctxt "@info:status"
  6344. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6345. #~ msgstr "Nie można uruchomić nowego zadania. Brak Printcore w slocie {0}"
  6346. #~ msgctxt "@info:status"
  6347. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6348. #~ msgstr "Nie można uruchomić nowego zadania. Brak materiału w slocie {0}"
  6349. #~ msgctxt "@label"
  6350. #~ msgid "Not enough material for spool {0}."
  6351. #~ msgstr "Nie ma wystarczającej ilości materiału na szpuli {0}."
  6352. #~ msgctxt "@label"
  6353. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6354. #~ msgstr "Różne PrintCore (Cura: {0}, Drukarka: {1}) wybrane dla ekstrudera {2}"
  6355. #~ msgctxt "@label"
  6356. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6357. #~ msgstr "PrintCore {0} nie jest poprawnie skalibrowany. Kalibracja XY musi zostać wykonana na tej drukarce."
  6358. #~ msgctxt "@info:status"
  6359. #~ msgid "Unable to send data to printer. Is another job still active?"
  6360. #~ msgstr "Nie można wysłać danych do drukarki. Czy inna praca jest nadal aktywna?"
  6361. #~ msgctxt "@label:MonitorStatus"
  6362. #~ msgid "Print aborted. Please check the printer"
  6363. #~ msgstr "Wydruk został przerwany. Sprawdź drukarkę"
  6364. #~ msgctxt "@label:MonitorStatus"
  6365. #~ msgid "Pausing print..."
  6366. #~ msgstr "Wstrzymywanie drukowania..."
  6367. #~ msgctxt "@label:MonitorStatus"
  6368. #~ msgid "Resuming print..."
  6369. #~ msgstr "Wznawianie drukowania ..."
  6370. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6371. #~ msgstr "Ta drukarka nie jest skonfigurowana do zarządzania grupą podłączonych drukarek Ultimaker 3."
  6372. #~ msgctxt "Count is number of printers."
  6373. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6374. #~ msgstr "Ta drukarka jest gospodarzem grupy {count} podłączonych drukarek Ultimaker 3."
  6375. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6376. #~ msgstr "{printer_name} skończyła drukowanie '{job_name}'. Proszę zabrać wydruk i potwierdzić oczyszczenie platformy roboczej."
  6377. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6378. #~ msgstr "{printer_name} jest zarezerwowana do druku '{job_name}'. Proszę zmień konfigurację drukarki, żeby pasowała do zadania dla niej, aby rozpocząć drukowanie."
  6379. #~ msgctxt "@info:status"
  6380. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6381. #~ msgstr "Nie można wysłać nowego zadania: ta drukarka 3D nie jest (jeszcze) ustawiona jako gospodarz grupy podłączonych drukarek Ultimaker 3."
  6382. #~ msgctxt "@info:status"
  6383. #~ msgid "Unable to send print job to group {cluster_name}."
  6384. #~ msgstr "Nie można wysłać zadania do grupy {cluster_name}."
  6385. #~ msgctxt "@info:status"
  6386. #~ msgid "Sent {file_name} to group {cluster_name}."
  6387. #~ msgstr "Wysłano {file_name} do grupy {cluster_name}."
  6388. #~ msgctxt "@action:button"
  6389. #~ msgid "Show print jobs"
  6390. #~ msgstr "Pokaż zadania druku"
  6391. #~ msgctxt "@info:tooltip"
  6392. #~ msgid "Opens the print jobs interface in your browser."
  6393. #~ msgstr "Otwiera interfejs zadań druku w przeglądarce."
  6394. #~ msgctxt "@label Printer name"
  6395. #~ msgid "Unknown"
  6396. #~ msgstr "Nieznana"
  6397. #~ msgctxt "@info:progress"
  6398. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6399. #~ msgstr "Wysyłanie <filename>{file_name}</filename> do grupy {cluster_name}"
  6400. #~ msgctxt "@info:status"
  6401. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6402. #~ msgstr "SolidWorks zgłosił błędy podczas otwierania twojego pliku. Zalecamy rozwiązanie tego problemu w samym SolidWorksie."
  6403. #~ msgctxt "@info:status"
  6404. #~ msgid ""
  6405. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6406. #~ "\n"
  6407. #~ " Thanks!."
  6408. #~ msgstr ""
  6409. #~ "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"
  6410. #~ "\n"
  6411. #~ "Dziękuję!."
  6412. #~ msgctxt "@info:status"
  6413. #~ msgid ""
  6414. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6415. #~ "\n"
  6416. #~ "Sorry!"
  6417. #~ msgstr ""
  6418. #~ "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"
  6419. #~ "\n"
  6420. #~ "Przepraszamy!"
  6421. #~ msgctxt "@item:material"
  6422. #~ msgid "No material loaded"
  6423. #~ msgstr "Nie załadowano materiału"
  6424. #~ msgctxt "@item:material"
  6425. #~ msgid "Unknown material"
  6426. #~ msgstr "Nieznany materiał"
  6427. #~ msgctxt "@info:status Has a cancel button next to it."
  6428. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6429. #~ msgstr "Wybrana średnica materiału powoduje, że materiał jest niekompatybilny z obecną drukarką."
  6430. #~ msgctxt "@action:button"
  6431. #~ msgid "Undo"
  6432. #~ msgstr "Cofnij"
  6433. #~ msgctxt "@action"
  6434. #~ msgid "Undo changing the material diameter."
  6435. #~ msgstr "Cofnij zmianę średnicy materiału."
  6436. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6437. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6438. #~ msgstr "Maszyna zdefiniowana w profilu <filename>{0}</filename> nie zgadza się z obecnie wybraną maszyną, nie można zaimportować."
  6439. #~ msgctxt "@label crash message"
  6440. #~ msgid ""
  6441. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6442. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6443. #~ " "
  6444. #~ msgstr ""
  6445. #~ "<p><b>Wystąpił błąd krytyczny. Proszę wysłać do nas ten Raport Błędu, aby rozwiązać ten problem</p></b>\n"
  6446. #~ " <p>Proszę użyć przycisku \"Wyślij raport\" aby wysłać raport automatycznie na nasze serwery</p>\n"
  6447. #~ " "
  6448. #~ msgctxt "@label"
  6449. #~ msgid "not yet initialised<br/>"
  6450. #~ msgstr "jeszcze nie uruchomiono<br/>"
  6451. #~ msgctxt "@label"
  6452. #~ msgid "Gcode flavor"
  6453. #~ msgstr "Wersja Gcode"
  6454. #~ msgctxt "@label"
  6455. #~ msgid "Start Gcode"
  6456. #~ msgstr "Początk. Gcode"
  6457. #~ msgctxt "@tooltip"
  6458. #~ msgid "Gcode commands to be executed at the very start."
  6459. #~ msgstr "Komendy Gcode wykonywane na samym początku."
  6460. #~ msgctxt "@label"
  6461. #~ msgid "End Gcode"
  6462. #~ msgstr "Końcowy Gcode"
  6463. #~ msgctxt "@tooltip"
  6464. #~ msgid "Gcode commands to be executed at the very end."
  6465. #~ msgstr "Komendy Gcode wykonywane na samym początku."
  6466. #~ msgctxt "@label"
  6467. #~ msgid "Extruder Start Gcode"
  6468. #~ msgstr "Początkowy Gcode ekstrudera"
  6469. #~ msgctxt "@label"
  6470. #~ msgid "Extruder End Gcode"
  6471. #~ msgstr "Końcowy Gcode ekstrudera"
  6472. #~ msgctxt "@label"
  6473. #~ msgid "Starting firmware update, this may take a while."
  6474. #~ msgstr "Uruchamianie aktualizacji oprogramowania, to może potrwać chwilę."
  6475. #~ msgctxt "@label"
  6476. #~ msgid "Unknown error code: %1"
  6477. #~ msgstr "Nieznany kod błędu: %1"
  6478. #~ msgctxt "@label Printer name"
  6479. #~ msgid "Ultimaker 3"
  6480. #~ msgstr "Ultimaker 3"
  6481. #~ msgctxt "@label Printer name"
  6482. #~ msgid "Ultimaker 3 Extended"
  6483. #~ msgstr "Ultimaker 3 Extended"
  6484. #~ msgctxt "@label Printer status"
  6485. #~ msgid "Unknown"
  6486. #~ msgstr "Nieznany"
  6487. #~ msgctxt "@title:window"
  6488. #~ msgid "Find & Update plugins"
  6489. #~ msgstr "Znajdź i Zaktualizuj Wtyczki"
  6490. #~ msgctxt "@label"
  6491. #~ msgid "Here you can find a list of Third Party plugins."
  6492. #~ msgstr "Tutaj możesz znaleźć listę wtyczek innych firm."
  6493. #~ msgctxt "@action:button"
  6494. #~ msgid "Upgrade"
  6495. #~ msgstr "Ulepsz"
  6496. #~ msgctxt "@action:button"
  6497. #~ msgid "Download"
  6498. #~ msgstr "Pobierz"
  6499. #~ msgctxt "@info:tooltip"
  6500. #~ msgid "Show caution message in gcode reader."
  6501. #~ msgstr "Pokaż komunikat ostrzegawczy w tekście G-code."
  6502. #~ msgctxt "@option:check"
  6503. #~ msgid "Caution message in gcode reader"
  6504. #~ msgstr "Komunikat ostrzegawczy w tekście G-code"
  6505. #~ msgctxt "@window:title"
  6506. #~ msgid "Import Profile"
  6507. #~ msgstr "Importuj Profil"
  6508. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6509. #~ msgid "Printer: %1, %2: %3"
  6510. #~ msgstr "Drukarka: %1, %2: %3"
  6511. #~ msgctxt "@action:label %1 is printer name"
  6512. #~ msgid "Printer: %1"
  6513. #~ msgstr "Drukarka: %1"
  6514. #~ msgctxt "@label"
  6515. #~ msgid "GCode generator"
  6516. #~ msgstr "Generator GCode"
  6517. #~ msgctxt "@action:menu"
  6518. #~ msgid "Configure setting visiblity..."
  6519. #~ msgstr "Skonfiguruj widoczność ustawień..."
  6520. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6521. #~ msgid "Automatic: %1"
  6522. #~ msgstr "Automatyczny: %1"
  6523. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6524. #~ msgid "Automatic: %1"
  6525. #~ msgstr "Automatyczny: %1"
  6526. #~ msgctxt "@info:status"
  6527. #~ msgid "No printer connected"
  6528. #~ msgstr "Nie podłączono drukarki"
  6529. #~ msgctxt "@tooltip"
  6530. #~ msgid "The current temperature of this extruder."
  6531. #~ msgstr "Bieżąca temperatura głowicy drukującej."
  6532. #~ msgctxt "@action:menu"
  6533. #~ msgid "Installed plugins..."
  6534. #~ msgstr "Zainstalowane wtyczki..."
  6535. #~ msgctxt "@label"
  6536. #~ msgid "Support Extruder"
  6537. #~ msgstr "Ekstruder od podpór"
  6538. #~ msgctxt "description"
  6539. #~ msgid "Writes GCode to a file."
  6540. #~ msgstr "Zapisuje Gcode do pliku."
  6541. #~ msgctxt "name"
  6542. #~ msgid "GCode Writer"
  6543. #~ msgstr "GCode Writer"
  6544. #~ msgctxt "name"
  6545. #~ msgid "GCode Profile Reader"
  6546. #~ msgstr "Czytnik Profili GCode"
  6547. #~ msgctxt "@info:status"
  6548. #~ 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!"
  6549. #~ msgstr "Wystąpił błąd podczas otwierania pliku SolidWorks! Proszę sprawdź, czy możesz otworzyć plik SolidWorks bez żadnych problemów!"
  6550. #~ msgctxt "@info:status"
  6551. #~ msgid "Error while starting %s!"
  6552. #~ msgstr "Błąd podczas rozpoczynania %s!"
  6553. #~ msgctxt "@item:inlistbox"
  6554. #~ msgid "Simulation view"
  6555. #~ msgstr "Widok symulacji"
  6556. #~ msgctxt "@info"
  6557. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6558. #~ msgstr "Cura zbiera anonimowe statystyki cięcia. Możesz wyłączyć to w ustawieniach."
  6559. #~ msgctxt "@action:button"
  6560. #~ msgid "Dismiss"
  6561. #~ msgstr "Anuluj"
  6562. #~ msgctxt "@menuitem"
  6563. #~ msgid "Global"
  6564. #~ msgstr "Globalny"
  6565. #~ msgctxt "@label crash message"
  6566. #~ msgid ""
  6567. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6568. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6569. #~ " "
  6570. #~ msgstr ""
  6571. #~ "<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"
  6572. #~ " <p>Proszę użyj przycisku \"Wyślij raport\", aby wysłać raport błędu automatycznie na nasze serwery.</p>\n"
  6573. #~ " "
  6574. #~ msgctxt "@label Cura version"
  6575. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6576. #~ msgstr "<b>Wersja Cura:</b> {version}<br/>"
  6577. #~ msgctxt "@label Platform"
  6578. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6579. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  6580. #~ msgctxt "@label Qt version"
  6581. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6582. #~ msgstr "<b>Wersja Qt:</b> {qt}<br/>"
  6583. #~ msgctxt "@label PyQt version"
  6584. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6585. #~ msgstr "<b>Wersja PyQt:</b> {pyqt}<br/>"
  6586. #~ msgctxt "@label OpenGL"
  6587. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6588. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6589. #~ msgctxt "@title:groupbox"
  6590. #~ msgid "Exception traceback"
  6591. #~ msgstr "Śledzenie błędów"
  6592. #~ msgctxt "@label"
  6593. #~ msgid "Material diameter"
  6594. #~ msgstr "Średnica materiału"
  6595. #~ msgctxt "@title:window"
  6596. #~ msgid "Cura SolidWorks Plugin Configuration"
  6597. #~ msgstr "Konfiguracja Wtyczki Cura SolidWorks"
  6598. #~ msgctxt "@action:label"
  6599. #~ msgid "Default quality of the exported STL:"
  6600. #~ msgstr "Domyślna jakość eksportowanego STL:"
  6601. #~ msgctxt "@option:curaSolidworksStlQuality"
  6602. #~ msgid "Always ask"
  6603. #~ msgstr "Zawsze pytaj"
  6604. #~ msgctxt "@option:curaSolidworksStlQuality"
  6605. #~ msgid "Always use Fine quality"
  6606. #~ msgstr "Zawsze używaj Dobrej jakości"
  6607. #~ msgctxt "@option:curaSolidworksStlQuality"
  6608. #~ msgid "Always use Coarse quality"
  6609. #~ msgstr "Zawsze używaj Słabej jakości"
  6610. #~ msgctxt "@title:window"
  6611. #~ msgid "Import SolidWorks File as STL..."
  6612. #~ msgstr "Importuj Plik SolidWorks jako STL..."
  6613. #~ msgctxt "@info:tooltip"
  6614. #~ msgid "Quality of the Exported STL"
  6615. #~ msgstr "Jakość Eksportowanego STL"
  6616. #~ msgctxt "@action:label"
  6617. #~ msgid "Quality"
  6618. #~ msgstr "Jakość"
  6619. #~ msgctxt "@option:curaSolidworksStlQuality"
  6620. #~ msgid "Coarse"
  6621. #~ msgstr "Słaba"
  6622. #~ msgctxt "@option:curaSolidworksStlQuality"
  6623. #~ msgid "Fine"
  6624. #~ msgstr "Dobra"
  6625. #~ msgctxt "@"
  6626. #~ msgid "No Profile Available"
  6627. #~ msgstr "Brak Dostępnego Profilu"
  6628. #~ msgctxt "@label"
  6629. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6630. #~ msgstr "To ustawienie jest zawsze dzielone między wszystkie ekstrudery. Zmiana jego wartości tutaj spowoduje zmianę dla wszystkich ekstruderów"
  6631. #~ msgctxt "@tooltip"
  6632. #~ msgid "<b>Time specification</b><br/><table>"
  6633. #~ msgstr "<b>Szacowany czas</b><br/><table>"
  6634. #~ msgctxt "@action:inmenu menubar:view"
  6635. #~ msgid "&Reset camera position"
  6636. #~ msgstr "&Zresetuj pozycję kamery"
  6637. #~ msgctxt "@title:menu menubar:file"
  6638. #~ msgid "Save project"
  6639. #~ msgstr "Zapisz projekt"
  6640. #~ msgctxt "@title:tab"
  6641. #~ msgid "Prepare"
  6642. #~ msgstr "Przygotuj"
  6643. #~ msgctxt "@title:tab"
  6644. #~ msgid "Monitor"
  6645. #~ msgstr "Monitor"
  6646. #~ msgctxt "@label"
  6647. #~ msgid "<a href='%1'>Check compatibility</a>"
  6648. #~ msgstr "<a href='%1'>Sprawdź kompatybilność</a>"
  6649. #~ msgctxt "description"
  6650. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6651. #~ msgstr "Daje tobie możliwość otwierania plików poprzez SolidWorks. Pliki są potem konwertowane i ładowane do Cura"
  6652. #~ msgctxt "@label:status"
  6653. #~ msgid "Blocked"
  6654. #~ msgstr "Zablokowany"
  6655. #~ msgctxt "@label:status"
  6656. #~ msgid "Can't start print"
  6657. #~ msgstr "Nie mogę rozpocząć drukowania"
  6658. #~ msgctxt "@action:button"
  6659. #~ msgid "Open Connect.."
  6660. #~ msgstr "Otwórz Connect.."
  6661. #~ msgctxt "@info:title"
  6662. #~ msgid "Print Details"
  6663. #~ msgstr "Szczegółu druku"
  6664. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6665. #~ 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."
  6666. #~ 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."
  6667. #~ msgctxt "@info:title"
  6668. #~ msgid "Layer View"
  6669. #~ msgstr "Widok warstwy"
  6670. #~ msgctxt "@menuitem"
  6671. #~ msgid "Browse plugins"
  6672. #~ msgstr "Przeglądaj wtyczki"
  6673. #~ msgctxt "@info:title"
  6674. #~ msgid "Export Details"
  6675. #~ msgstr "Szczegóły Eskportu"
  6676. #~ msgctxt "@label"
  6677. #~ msgid ""
  6678. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6679. #~ " <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"
  6680. #~ " "
  6681. #~ msgstr ""
  6682. #~ "<p>Pojawił się fatalny wyjątek, z którego nie możemy odzyskać!</p>\n"
  6683. #~ " <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"
  6684. #~ " "
  6685. #~ msgctxt "@action:button"
  6686. #~ msgid "Open Web Page"
  6687. #~ msgstr "Otwórz stronę sieci Web"
  6688. #~ msgctxt "@action:button"
  6689. #~ msgid "Ok"
  6690. #~ msgstr "Ok"
  6691. #~ msgctxt "@label"
  6692. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6693. #~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy podłączonych drukarek Ultimaker 3"
  6694. #~ msgctxt "@label"
  6695. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6696. #~ msgstr "Ta drukarka nie została ustawiona do hostowania grupy %1 podłączonych drukarek Ultimaker 3"
  6697. #~ msgctxt "@label"
  6698. #~ msgid "Completed on: "
  6699. #~ msgstr "Zakończono:"
  6700. #~ msgctxt "@info:tooltip"
  6701. #~ msgid "Opens the print jobs page with your default web browser."
  6702. #~ msgstr "Otwiera stronę zadań drukowania za pomocą domyślnej przeglądarki."
  6703. #~ msgctxt "@label"
  6704. #~ msgid "PRINTER GROUP"
  6705. #~ msgstr "GRUPA DRUKAREK"
  6706. #~ msgctxt "@action:warning"
  6707. #~ msgid "Loading a project will clear all models on the buildplate"
  6708. #~ msgstr "Załadowanie projektu spowoduje usunięcie wszystkich modeli ze stołu"
  6709. #~ msgctxt "@label"
  6710. #~ msgid ""
  6711. #~ " plugin contains a license.\n"
  6712. #~ "You need to accept this license to install this plugin.\n"
  6713. #~ "Do you agree with the terms below?"
  6714. #~ msgstr ""
  6715. #~ " wtyczka zawiera licencje.\n"
  6716. #~ "Musisz zaakceptować tą licencję, aby zainstalować wtyczkę.\n"
  6717. #~ "Akceptujesz poniższe postanowienia?"
  6718. #~ msgctxt "@label"
  6719. #~ msgid "00h 00min"
  6720. #~ msgstr "00h 00min"
  6721. #~ msgctxt "@tooltip"
  6722. #~ msgid "<b>Time information</b>"
  6723. #~ msgstr "<b>Informacje o czasie</b>"
  6724. #~ msgctxt "@description"
  6725. #~ msgid "Print time"
  6726. #~ msgstr "Czas druku"
  6727. #~ msgctxt "@label"
  6728. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6729. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6730. #~ msgctxt "@label"
  6731. #~ msgid "%1m / ~ %2g"
  6732. #~ msgstr "%1m / ~ %2g"
  6733. #~ msgctxt "@title:window"
  6734. #~ msgid "Cura"
  6735. #~ msgstr "Cura"
  6736. #~ msgctxt "@label"
  6737. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6738. #~ msgstr "<a href='%1'>Sprawdź kompatybilność materiału</a>"
  6739. #~ msgctxt "name"
  6740. #~ msgid "UM3 Network Connection (Cluster)"
  6741. #~ msgstr "Połączenie Sieciowe UM3 (Grupa)"
  6742. #~ msgctxt "description"
  6743. #~ msgid "Provides the Layer view."
  6744. #~ msgstr "Zapewnia widok warstw."
  6745. #~ msgctxt "name"
  6746. #~ msgid "Layer View"
  6747. #~ msgstr "Widok Warstw"
  6748. #~ msgctxt "@item:inlistbox"
  6749. #~ msgid "X-Ray"
  6750. #~ msgstr "Prześwietlenie"
  6751. #~ msgctxt "@label"
  6752. #~ msgid "Doodle3D"
  6753. #~ msgstr "Doodle3D"
  6754. #~ msgctxt "@info:whatsthis"
  6755. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6756. #~ msgstr "Akceptuje G-code i wysyła je przez WiFi do Doodle3D WiFi-Box."
  6757. #~ msgctxt "@item:inmenu"
  6758. #~ msgid "Doodle3D printing"
  6759. #~ msgstr "Drukowanie Doodle3D"
  6760. #~ msgctxt "@action:button"
  6761. #~ msgid "Print with Doodle3D"
  6762. #~ msgstr "Drukuj z Doodle3D"
  6763. #~ msgctxt "@info:tooltip"
  6764. #~ msgid "Print with "
  6765. #~ msgstr "Drukuj z "
  6766. #~ msgctxt "@title:menu"
  6767. #~ msgid "Doodle3D"
  6768. #~ msgstr "Doodle3D"
  6769. #~ msgctxt "@item:inlistbox"
  6770. #~ msgid "Enable Scan devices..."
  6771. #~ msgstr "Włącz skanowanie urządzeń ..."
  6772. #~ msgctxt "@info:progress"
  6773. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6774. #~ msgstr "Zapisywanie na dysk wymienny <filename>{0}</filename>"
  6775. #~ msgctxt "@info:status"
  6776. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6777. #~ msgstr "Nie udało się zapisać do <filename>{0}</filename>: <message>{1}</message>"
  6778. #~ msgctxt "@info:status"
  6779. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6780. #~ msgstr "Pamiętaj, że musisz ponownie otworzyć plik SolidWorks ręcznie! Przeładowanie modelu nie będzie działać!"
  6781. #~ msgctxt "@item:inlistbox"
  6782. #~ msgid "Layers"
  6783. #~ msgstr "Warstwy"
  6784. #~ msgid "Browse plugins"
  6785. #~ msgstr "Przeglądaj wtyczki"
  6786. #~ msgctxt "@item:inmenu"
  6787. #~ msgid "Solid"
  6788. #~ msgstr "Bryła"
  6789. #~ msgctxt "@label"
  6790. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6791. #~ msgstr "Plik <filename>{0}</filename> już istnieje. Czy na pewno chcesz go nadpisać?"
  6792. #~ msgctxt "@info:status"
  6793. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6794. #~ msgstr "Nie można wyeksportować profilu do <filename>{0}</filename>: <message>{1}</message>"
  6795. #~ msgctxt "@info:status"
  6796. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6797. #~ msgstr "Nie można wyeksportować profilu do <filename>{0}</filename>: Wtyczka Cura zgłosiła błąd."
  6798. #~ msgctxt "@info:status"
  6799. #~ msgid "Exported profile to <filename>{0}</filename>"
  6800. #~ msgstr "Wyeksportowano profil do <filename>{0}</filename>"
  6801. #~ msgctxt "@info:status"
  6802. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6803. #~ msgstr "Nie można zaimportować profilu z <filename>{0}</filename>: <message>{1}</message>"
  6804. #~ msgctxt "@title:window"
  6805. #~ msgid "Doodle3D Settings"
  6806. #~ msgstr "Ustawienia Doodle3D"
  6807. #~ msgctxt "@title:window"
  6808. #~ msgid "Print to: %1"
  6809. #~ msgstr "Drukuj do: %1"
  6810. #~ msgctxt "@label"
  6811. #~ msgid "Extruder Temperature: %1/%2°C"
  6812. #~ msgstr "Temperatura dyszy: %1/%2°C"
  6813. #~ msgctxt "@label"
  6814. #~ msgid "Bed Temperature: %1/%2°C"
  6815. #~ msgstr "Temperatura stołu: %1/%2°C"
  6816. #~ msgctxt "@label"
  6817. #~ msgid "%1"
  6818. #~ msgstr "%1"
  6819. #~ msgctxt "@label"
  6820. #~ msgid "View Mode: Layers"
  6821. #~ msgstr "Tryb widoku: warstwy"
  6822. #~ msgctxt "@info:status"
  6823. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6824. #~ msgstr "Nie można zaimportować materiału <filename>%1</filename>: <message>%2</message>"
  6825. #~ msgctxt "@info:status"
  6826. #~ msgid "Successfully imported material <filename>%1</filename>"
  6827. #~ msgstr "Pomyślnie zaimportowano materiał <filename>%1</filename>"
  6828. #~ msgctxt "@info:status"
  6829. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6830. #~ msgstr "Nie udało się wyeksportować materiału do <filename>%1</filename>: <message>%2</message>"
  6831. #~ msgctxt "@info:status"
  6832. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6833. #~ msgstr "Udało się wyeksportować materiał do <filename>%1</filename>"
  6834. #~ msgctxt "@label"
  6835. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6836. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6837. #~ msgctxt "@label"
  6838. #~ msgid "%1 m / ~ %2 g"
  6839. #~ msgstr "%1 m / ~ %2 g"
  6840. #~ msgctxt "@label"
  6841. #~ msgid "Hotend"
  6842. #~ msgstr "Głowica"
  6843. #~ msgctxt "@action:button"
  6844. #~ msgid "View Mode"
  6845. #~ msgstr "Tryb podglądu"
  6846. #~ msgctxt "@title:tab"
  6847. #~ msgid "Print"
  6848. #~ msgstr "Drukuj"
  6849. #~ msgctxt "@label"
  6850. #~ msgid "0%"
  6851. #~ msgstr "0%"
  6852. #~ msgctxt "@label"
  6853. #~ msgid "Empty infill will leave your model hollow with low strength."
  6854. #~ msgstr "Puste wypełnienie pozostawi twój model pusty z niską wytrzymałością."
  6855. #~ msgctxt "@label"
  6856. #~ msgid "20%"
  6857. #~ msgstr "20%"
  6858. #~ msgctxt "@label"
  6859. #~ msgid "Light (20%) infill will give your model an average strength."
  6860. #~ msgstr "Lekkie (20%) wypełnienie sprawi, że model będzie średniej wytrzymałości."
  6861. #~ msgctxt "@label"
  6862. #~ msgid "50%"
  6863. #~ msgstr "50%"
  6864. #~ msgctxt "@label"
  6865. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6866. #~ msgstr "Gęste wypełnienie (50%) da modelowi wyższą niż średnia wytrzymałość."
  6867. #~ msgctxt "@label"
  6868. #~ msgid "100%"
  6869. #~ msgstr "100%"
  6870. #~ msgctxt "@label"
  6871. #~ msgid "Solid (100%) infill will make your model completely solid."
  6872. #~ msgstr "Pełne (100%) wypełnienie sprawi, że model będzie całkowicie wypełniony."
  6873. #~ msgctxt "@label"
  6874. #~ msgid "Gradual"
  6875. #~ msgstr "Stopniowy"
  6876. #~ msgctxt "description"
  6877. #~ msgid "Provides support for writing X3G files"
  6878. #~ msgstr "Zapewnia wsparcie w tworzeniu plików X3G"
  6879. #~ msgctxt "name"
  6880. #~ msgid "X3G Writer"
  6881. #~ msgstr "X3G Writer"
  6882. #~ msgctxt "@label"
  6883. #~ msgid "Machine Settings action"
  6884. #~ msgstr "Czynność ustawienia drukarki"
  6885. #~ msgctxt "@info:whatsthis"
  6886. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6887. #~ msgstr "Zapewnia sposób zmiany ustawień maszyn (takich jak objętość robocza, rozmiar dyszy itd.)"
  6888. #~ msgctxt "@label"
  6889. #~ msgid "X-Ray View"
  6890. #~ msgstr "Widok rentgenowski"
  6891. #~ msgctxt "@info:whatsthis"
  6892. #~ msgid "Provides the X-Ray view."
  6893. #~ msgstr "Zapewnia widok rentgenowski."
  6894. #~ msgctxt "@label"
  6895. #~ msgid "X3D Reader"
  6896. #~ msgstr "Czytnik X3D"
  6897. #~ msgctxt "@info:whatsthis"
  6898. #~ msgid "Provides support for reading X3D files."
  6899. #~ msgstr "Zapewnia obsługę czytania plików X3D."
  6900. #~ msgctxt "@label"
  6901. #~ msgid "GCode Writer"
  6902. #~ msgstr "GCode Autor"
  6903. #~ msgctxt "@info:whatsthis"
  6904. #~ msgid "Writes GCode to a file."
  6905. #~ msgstr "Zapisuje kod GCode do pliku."
  6906. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6907. #~ msgid "Print with Doodle3D"
  6908. #~ msgstr "Drukuj z Doodle3D"
  6909. #~ msgctxt "@info:whatsthis"
  6910. #~ msgid "Shows changes since latest checked version."
  6911. #~ msgstr "Pokazuje zmiany od ostatniej sprawdzonej wersji."
  6912. #~ msgctxt "@label"
  6913. #~ msgid "Profile flatener"
  6914. #~ msgstr "Charakterystyka Profila"
  6915. #~ msgctxt "@info:whatsthis"
  6916. #~ msgid "Create a flattend quality changes profile."
  6917. #~ msgstr "Utwórz charakterystyczny profil jakości"
  6918. #~ msgctxt "@label"
  6919. #~ msgid "USB printing"
  6920. #~ msgstr "Drukowanie USB"
  6921. #~ msgctxt "@info:whatsthis"
  6922. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6923. #~ msgstr "Akceptuje G-code i wysyła je do drukarki. Wtyczka może również aktualizować oprogramowanie układowe."
  6924. #~ msgctxt "X3G Writer Plugin Description"
  6925. #~ msgid "Writes X3G to a file"
  6926. #~ msgstr "Zapisuje do pliku X3G"
  6927. #~ msgctxt "@label"
  6928. #~ msgid "Removable Drive Output Device Plugin"
  6929. #~ msgstr "Usuwana wtyczka urządzenia wyjściowego napędu"
  6930. #~ msgctxt "@info:whatsthis"
  6931. #~ msgid "Provides removable drive hotplugging and writing support."
  6932. #~ msgstr "Zapewnia podłączanie wymiennego dysku i zapisywania na bieżąco."
  6933. #~ msgctxt "@info:whatsthis"
  6934. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6935. #~ msgstr "Zarządza połączeniami sieciowymi z drukarkami Ultimaker 3"
  6936. #~ msgctxt "@label"
  6937. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6938. #~ msgstr "Różne Print core (Cura: {0}, Drukarka: {1}) wybrane dla dyszy {2}"
  6939. #~ msgctxt "@label"
  6940. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6941. #~ msgstr "Print core {0} nie jest poprawnie skalibrowany. Na drukarce powinna zostać przeprowadzona Kalibracja XY."
  6942. #~ msgctxt "@label"
  6943. #~ 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."
  6944. #~ 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."
  6945. #~ msgctxt "@label"
  6946. #~ msgid "Post Processing"
  6947. #~ msgstr "Przetwarzanie "
  6948. #~ msgctxt "Description of plugin"
  6949. #~ msgid "Extension that allows for user created scripts for post processing"
  6950. #~ msgstr "Rozszerzenie, które pozwala tworzyć skrypty dla użytkowników po przetworzeniu"
  6951. #~ msgctxt "@label"
  6952. #~ msgid "Auto Save"
  6953. #~ msgstr "Automatyczne zapisywanie"
  6954. #~ msgctxt "@info:whatsthis"
  6955. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6956. #~ msgstr "Automatycznie zapisuje ustawienia, maszyny i profile po zmianach."
  6957. #~ msgctxt "@label"
  6958. #~ msgid "Slice info"
  6959. #~ msgstr "Cura informacja"
  6960. #~ msgctxt "@info:whatsthis"
  6961. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6962. #~ msgstr "Składa anonimową listę cięc. Można wyłączyć przez preferencje."
  6963. #~ msgctxt "@info"
  6964. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6965. #~ msgstr "Cura zbiera anonimowe statystyki. Możesz wyłączyć to w preferencjach"
  6966. #~ msgctxt "@label"
  6967. #~ msgid "Material Profiles"
  6968. #~ msgstr "Profile materiałów"
  6969. #~ msgctxt "@info:whatsthis"
  6970. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6971. #~ msgstr "Zapewnia możliwość odczytu i zapisu profili materiałów opartych na XML."
  6972. #~ msgctxt "@label"
  6973. #~ msgid "Legacy Cura Profile Reader"
  6974. #~ msgstr "Starszy czytnik Cura"
  6975. #~ msgctxt "@info:whatsthis"
  6976. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6977. #~ msgstr "Zapewnia obsługę importowania profili w starszych wersjach Cura."
  6978. #~ msgctxt "@label"
  6979. #~ msgid "GCode Profile Reader"
  6980. #~ msgstr "Czytnik profilu GCode"
  6981. #~ msgctxt "@info:whatsthis"
  6982. #~ msgid "Provides support for importing profiles from g-code files."
  6983. #~ msgstr "Zapewnia obsługę importowania profili z plików g-code."
  6984. #~ msgctxt "@label"
  6985. #~ msgid "Layer View"
  6986. #~ msgstr "Widok warstwy"
  6987. #~ msgctxt "@info:whatsthis"
  6988. #~ msgid "Provides the Layer view."
  6989. #~ msgstr "Zapewnia widok warstwy."
  6990. #~ msgctxt "@label"
  6991. #~ msgid "Version Upgrade 2.5 to 2.6"
  6992. #~ msgstr "Aktualizacja wersji 2.5 do 2.6"
  6993. #~ msgctxt "@info:whatsthis"
  6994. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6995. #~ msgstr "Uaktualnia konfiguracji z Cura 2.5 do Cura 2.6."
  6996. #~ msgctxt "@label"
  6997. #~ msgid "Version Upgrade 2.1 to 2.2"
  6998. #~ msgstr "Aktualizacja wersji 2.1 do 2.2"
  6999. #~ msgctxt "@info:whatsthis"
  7000. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7001. #~ msgstr "Uaktualnia konfiguracji z Cura 2.1 do Cura 2.2."
  7002. #~ msgctxt "@label"
  7003. #~ msgid "Version Upgrade 2.2 to 2.4"
  7004. #~ msgstr "Aktualizacja wersji 2.2 do 2.4"
  7005. #~ msgctxt "@info:whatsthis"
  7006. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7007. #~ msgstr "Uaktualnia konfiguracji z Cura 2.2 do Cura 2.4."
  7008. #~ msgctxt "@label"
  7009. #~ msgid "Image Reader"
  7010. #~ msgstr "Czytnik Obrazów"
  7011. #~ msgctxt "@info:whatsthis"
  7012. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7013. #~ msgstr "Umożliwia generowanie drukowanej geometrii z plików obrazów 2D."
  7014. #~ msgctxt "@label"
  7015. #~ msgid "CuraEngine Backend"
  7016. #~ msgstr "CuraEngine Backend"
  7017. #~ msgctxt "@info:whatsthis"
  7018. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7019. #~ msgstr "Zapewnia połączenie do narzędzi cięcia CuraEngine."
  7020. #~ msgctxt "@label"
  7021. #~ msgid "Per Model Settings Tool"
  7022. #~ msgstr "Narzędzie ustawień osobno dla każdego modelu"
  7023. #~ msgctxt "@info:whatsthis"
  7024. #~ msgid "Provides the Per Model Settings."
  7025. #~ msgstr "Zapewnia ustawienia każdego modelu osobno."
  7026. #~ msgctxt "@label"
  7027. #~ msgid "3MF Reader"
  7028. #~ msgstr "Czytnik 3MF"
  7029. #~ msgctxt "@info:whatsthis"
  7030. #~ msgid "Provides support for reading 3MF files."
  7031. #~ msgstr "Zapewnia obsługę czytania plików 3MF."
  7032. #~ msgctxt "@label"
  7033. #~ msgid "Solid View"
  7034. #~ msgstr "Widok bryły"
  7035. #~ msgctxt "@info:whatsthis"
  7036. #~ msgid "Provides a normal solid mesh view."
  7037. #~ msgstr "Zapewnia normalny widok siatki."
  7038. #~ msgctxt "@label"
  7039. #~ msgid "G-code Reader"
  7040. #~ msgstr "Czytnik G-code"
  7041. #~ msgctxt "@info:whatsthis"
  7042. #~ msgid "Allows loading and displaying G-code files."
  7043. #~ msgstr "Umożliwia ładowanie i wyświetlanie plików G-code."
  7044. #~ msgctxt "@label"
  7045. #~ msgid "Cura Profile Writer"
  7046. #~ msgstr "Pisarz Profili Cura"
  7047. #~ msgctxt "@info:whatsthis"
  7048. #~ msgid "Provides support for exporting Cura profiles."
  7049. #~ msgstr "Zapewnia obsługę eksportowania profili Cura."
  7050. #~ msgctxt "@label"
  7051. #~ msgid "3MF Writer"
  7052. #~ msgstr "3MF Writer"
  7053. #~ msgctxt "@info:whatsthis"
  7054. #~ msgid "Provides support for writing 3MF files."
  7055. #~ msgstr "Zapewnia obsługę pisania plików 3MF."
  7056. #~ msgctxt "@label"
  7057. #~ msgid "Ultimaker machine actions"
  7058. #~ msgstr "Działania maszyny Ultimaker"
  7059. #~ msgctxt "@info:whatsthis"
  7060. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7061. #~ msgstr "Zapewnia działania maszyny Ultimaker (takie jak kreator poziomowania stołu, wybierania ulepszeń itd.)"
  7062. #~ msgctxt "@label"
  7063. #~ msgid "Cura Profile Reader"
  7064. #~ msgstr "Czytnik profilu Cura"
  7065. #~ msgctxt "@info:whatsthis"
  7066. #~ msgid "Provides support for importing Cura profiles."
  7067. #~ msgstr "Zapewnia wsparcie dla importowania profili Cura."
  7068. #~ msgctxt "@info"
  7069. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7070. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7071. #~ msgctxt "@label"
  7072. #~ msgid "Build Plate Shape"
  7073. #~ msgstr "Kształt stołu"
  7074. #~ msgctxt "@option:check"
  7075. #~ msgid "Machine Center is Zero"
  7076. #~ msgstr "Środek drukarki to zero"
  7077. #~ msgctxt "@option:check"
  7078. #~ msgid "Heated Bed"
  7079. #~ msgstr "Stół podgrzewany"
  7080. #~ msgctxt "@label"
  7081. #~ msgid "GCode Flavor"
  7082. #~ msgstr "GCode Flavor"
  7083. #~ msgctxt "@label"
  7084. #~ msgid "Material Diameter"
  7085. #~ msgstr "Średnica filamentu"
  7086. #~ msgctxt "@label"
  7087. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7088. #~ msgstr "Jeśli drukarka nie ma na liście, przeczytaj <a href='%1'>przewodnik o rozwiązywaniu problemów z drukowaniem sieciowym</a>"
  7089. #~ msgctxt "@item:inlistbox"
  7090. #~ msgid "Ultimaker"
  7091. #~ msgstr "Ultimaker"
  7092. #~ msgctxt "@label"
  7093. #~ msgid "Support library for scientific computing "
  7094. #~ msgstr "Wsparcie biblioteki dla obliczeń naukowych "
  7095. #~ msgctxt "@tooltip"
  7096. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7097. #~ msgstr "<b>Ustawienia drukowania</b><br/><br/>Edytuj lub przejrzyj ustawienia dla aktywnego zadania."
  7098. #~ msgctxt "@tooltip"
  7099. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7100. #~ msgstr "<b>Monitor wydruku</b><br/><br/>Monitorowanie stanu podłączonej drukarki i aktualnego zadania."
  7101. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7102. #~ msgid "Automatic: %1"
  7103. #~ msgstr "Automatyczny: %1"
  7104. #~ msgctxt "@label:PrintjobStatus"
  7105. #~ msgid "Please load a 3d model"
  7106. #~ msgstr "Proszę załaduj model 3d"
  7107. #~ msgctxt "@label"
  7108. #~ msgid "Print Selected Model with %1"
  7109. #~ msgid_plural "Print Selected Models With %1"
  7110. #~ msgstr[0] "Wydrukuj wybrany model z %1"
  7111. #~ msgstr[1] "Wydrukuj wybrane modele z %1"