cura.po 241 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2020.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.8\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2020-10-19 13:15+0200\n"
  11. "PO-Revision-Date: 2020-08-21 14:20+0200\n"
  12. "Last-Translator: DenyCZ <www.github.com/DenyCZ>\n"
  13. "Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
  14. "Language: cs_CZ\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
  19. "X-Generator: Poedit 2.3\n"
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  21. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  22. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
  23. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1581
  24. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  25. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  26. msgctxt "@label"
  27. msgid "Unknown"
  28. msgstr "Neznámý"
  29. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  30. msgctxt "@label"
  31. msgid "The printer(s) below cannot be connected because they are part of a group"
  32. msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny"
  33. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  34. msgctxt "@label"
  35. msgid "Available networked printers"
  36. msgstr "Dostupné síťové tiskárny"
  37. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
  38. msgctxt "@menuitem"
  39. msgid "Not overridden"
  40. msgstr "Nepřepsáno"
  41. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  42. #, python-brace-format
  43. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  44. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  45. msgstr ""
  46. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  47. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  48. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
  49. msgctxt "@label"
  50. msgid "Default"
  51. msgstr "Výchozí"
  52. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  53. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  54. msgctxt "@label"
  55. msgid "Visual"
  56. msgstr "Vizuální"
  57. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  58. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  59. msgctxt "@text"
  60. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  61. msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality."
  62. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  63. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  64. msgctxt "@label"
  65. msgid "Engineering"
  66. msgstr "Technika"
  67. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  68. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  69. msgctxt "@text"
  70. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  71. msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí."
  72. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  73. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  74. msgctxt "@label"
  75. msgid "Draft"
  76. msgstr "Návrh"
  77. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  78. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  79. msgctxt "@text"
  80. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  81. msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku."
  82. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  83. msgctxt "@label"
  84. msgid "Custom Material"
  85. msgstr "Vlastní materiál"
  86. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  87. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  88. msgctxt "@label"
  89. msgid "Custom"
  90. msgstr "Vlastní"
  91. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
  92. msgctxt "@label"
  93. msgid "Custom profiles"
  94. msgstr "Vlastní profily"
  95. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
  96. #, python-brace-format
  97. msgctxt "@item:inlistbox"
  98. msgid "All Supported Types ({0})"
  99. msgstr "Všechny podporované typy ({0})"
  100. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
  101. msgctxt "@item:inlistbox"
  102. msgid "All Files (*)"
  103. msgstr "Všechny soubory (*)"
  104. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:178
  105. msgctxt "@info:title"
  106. msgid "Login failed"
  107. msgstr "Přihlášení selhalo"
  108. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  109. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  110. msgctxt "@info:status"
  111. msgid "Finding new location for objects"
  112. msgstr "Hledám nové umístění pro objekt"
  113. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  114. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  115. msgctxt "@info:title"
  116. msgid "Finding Location"
  117. msgstr "Hledám umístění"
  118. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  119. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  120. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
  121. msgctxt "@info:status"
  122. msgid "Unable to find a location within the build volume for all objects"
  123. msgstr "Nemohu najít lokaci na podložce pro všechny objekty"
  124. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  125. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  126. msgctxt "@info:title"
  127. msgid "Can't Find Location"
  128. msgstr "Nemohu najít umístění"
  129. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:104
  130. msgctxt "@info:backup_failed"
  131. msgid "Could not create archive from user data directory: {}"
  132. msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}"
  133. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:110
  134. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  135. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  136. msgctxt "@info:title"
  137. msgid "Backup"
  138. msgstr "Záloha"
  139. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:123
  140. msgctxt "@info:backup_failed"
  141. msgid "Tried to restore a Cura backup without having proper data or meta data."
  142. msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat."
  143. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134
  144. msgctxt "@info:backup_failed"
  145. msgid "Tried to restore a Cura backup that is higher than the current version."
  146. msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze."
  147. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
  148. msgctxt "@info:status"
  149. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  150. msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely."
  151. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
  152. msgctxt "@info:title"
  153. msgid "Build Volume"
  154. msgstr "Podložka"
  155. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  156. msgctxt "@title:window"
  157. msgid "Cura can't start"
  158. msgstr "Cura nelze spustit"
  159. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  160. msgctxt "@label crash message"
  161. msgid ""
  162. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  163. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  164. " <p>Backups can be found in the configuration folder.</p>\n"
  165. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  166. " "
  167. msgstr ""
  168. "<p> <b> Jejda, Ultimaker Cura narazil na něco, co se nezdá být v pořádku. </p> </b>\n"
  169. "                     <p> Během spouštění jsme zaznamenali neodstranitelnou chybu. Bylo to pravděpodobně způsobeno některými nesprávnými konfiguračními soubory. Doporučujeme zálohovat a resetovat vaši konfiguraci. </p>\n"
  170. "                     <p> Zálohy najdete v konfigurační složce. </p>\n"
  171. "                     <p> Za účelem vyřešení problému nám prosím pošlete tento záznam pádu. </p>\n"
  172. " "
  173. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  174. msgctxt "@action:button"
  175. msgid "Send crash report to Ultimaker"
  176. msgstr "Poslat záznam o pádu do Ultimakeru"
  177. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  178. msgctxt "@action:button"
  179. msgid "Show detailed crash report"
  180. msgstr "Zobrazit podrobný záznam pádu"
  181. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  182. msgctxt "@action:button"
  183. msgid "Show configuration folder"
  184. msgstr "Zobrazit složku s konfigurací"
  185. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  186. msgctxt "@action:button"
  187. msgid "Backup and Reset Configuration"
  188. msgstr "Zálohovat a resetovat konfiguraci"
  189. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
  190. msgctxt "@title:window"
  191. msgid "Crash Report"
  192. msgstr "Záznam pádu"
  193. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
  194. msgctxt "@label crash message"
  195. msgid ""
  196. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  197. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  198. " "
  199. msgstr ""
  200. "<p> <b> V Cuře došlo k závažné chybě. Zašlete nám prosím tento záznam pádu k vyřešení problému </p> </b>\n"
  201. "             <p> Použijte tlačítko „Odeslat zprávu“ k automatickému odeslání hlášení o chybě na naše servery </p>\n"
  202. " "
  203. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
  204. msgctxt "@title:groupbox"
  205. msgid "System information"
  206. msgstr "Systémové informace"
  207. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
  208. msgctxt "@label unknown version of Cura"
  209. msgid "Unknown"
  210. msgstr "Neznámý"
  211. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
  212. msgctxt "@label Cura version number"
  213. msgid "Cura version"
  214. msgstr "Verze Cura"
  215. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
  216. msgctxt "@label"
  217. msgid "Cura language"
  218. msgstr "Jazyk Cura"
  219. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
  220. msgctxt "@label"
  221. msgid "OS language"
  222. msgstr "Jazyk operačního systému"
  223. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
  224. msgctxt "@label Type of platform"
  225. msgid "Platform"
  226. msgstr "Platforma"
  227. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
  228. msgctxt "@label"
  229. msgid "Qt version"
  230. msgstr "Verze Qt"
  231. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
  232. msgctxt "@label"
  233. msgid "PyQt version"
  234. msgstr "Verze PyQt"
  235. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
  236. msgctxt "@label OpenGL version"
  237. msgid "OpenGL"
  238. msgstr "OpenGL"
  239. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
  240. msgctxt "@label"
  241. msgid "Not yet initialized<br/>"
  242. msgstr "Neinicializováno<br/>"
  243. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
  244. #, python-brace-format
  245. msgctxt "@label OpenGL version"
  246. msgid "<li>OpenGL Version: {version}</li>"
  247. msgstr "<li>Verze OpenGL: {version}</li>"
  248. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
  249. #, python-brace-format
  250. msgctxt "@label OpenGL vendor"
  251. msgid "<li>OpenGL Vendor: {vendor}</li>"
  252. msgstr "<li>OpenGL Vendor: {vendor}</li>"
  253. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
  254. #, python-brace-format
  255. msgctxt "@label OpenGL renderer"
  256. msgid "<li>OpenGL Renderer: {renderer}</li>"
  257. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  258. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
  259. msgctxt "@title:groupbox"
  260. msgid "Error traceback"
  261. msgstr "Stopování chyby"
  262. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
  263. msgctxt "@title:groupbox"
  264. msgid "Logs"
  265. msgstr "Protokoly"
  266. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
  267. msgctxt "@action:button"
  268. msgid "Send report"
  269. msgstr "Odeslat záznam"
  270. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:521
  271. msgctxt "@info:progress"
  272. msgid "Loading machines..."
  273. msgstr "Načítám zařízení..."
  274. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:528
  275. msgctxt "@info:progress"
  276. msgid "Setting up preferences..."
  277. msgstr "Nastavuji preference..."
  278. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:657
  279. msgctxt "@info:progress"
  280. msgid "Initializing Active Machine..."
  281. msgstr "Inicializuji aktivní zařízení..."
  282. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:788
  283. msgctxt "@info:progress"
  284. msgid "Initializing machine manager..."
  285. msgstr "Inicializuji správce zařízení..."
  286. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:802
  287. msgctxt "@info:progress"
  288. msgid "Initializing build volume..."
  289. msgstr "Inicializuji prostor podložky..."
  290. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:870
  291. msgctxt "@info:progress"
  292. msgid "Setting up scene..."
  293. msgstr "Připravuji scénu..."
  294. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:906
  295. msgctxt "@info:progress"
  296. msgid "Loading interface..."
  297. msgstr "Načítám rozhraní..."
  298. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:911
  299. msgctxt "@info:progress"
  300. msgid "Initializing engine..."
  301. msgstr "Inicializuji engine..."
  302. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1221
  303. #, python-format
  304. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  305. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  306. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  307. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1777
  308. #, python-brace-format
  309. msgctxt "@info:status"
  310. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  311. msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}"
  312. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1778
  313. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:188
  314. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  315. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  316. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  317. msgctxt "@info:title"
  318. msgid "Warning"
  319. msgstr "Varování"
  320. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1787
  321. #, python-brace-format
  322. msgctxt "@info:status"
  323. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  324. msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}"
  325. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1788
  326. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
  327. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
  328. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  329. msgctxt "@info:title"
  330. msgid "Error"
  331. msgstr "Chyba"
  332. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
  333. msgctxt "@info:status"
  334. msgid "Multiplying and placing objects"
  335. msgstr "Násobím a rozmisťuji objekty"
  336. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
  337. msgctxt "@info:title"
  338. msgid "Placing Objects"
  339. msgstr "Umisťuji objekty"
  340. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
  341. msgctxt "@info:title"
  342. msgid "Placing Object"
  343. msgstr "Umisťuji objekt"
  344. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:90
  345. msgctxt "@message"
  346. msgid "Could not read response."
  347. msgstr "Nelze přečíst odpověď."
  348. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  349. msgctxt "@message"
  350. msgid "The provided state is not correct."
  351. msgstr "Poskytnutý stav není správný."
  352. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  353. msgctxt "@message"
  354. msgid "Please give the required permissions when authorizing this application."
  355. msgstr "Při autorizaci této aplikace zadejte požadovaná oprávnění."
  356. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  357. msgctxt "@message"
  358. msgid "Something unexpected happened when trying to log in, please try again."
  359. msgstr "Při pokusu o přihlášení se stalo něco neočekávaného, zkuste to znovu."
  360. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:187
  361. msgctxt "@info"
  362. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  363. msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží."
  364. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  365. msgctxt "@info"
  366. msgid "Unable to reach the Ultimaker account server."
  367. msgstr "Nelze se dostat na server účtu Ultimaker."
  368. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
  369. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
  370. msgctxt "@title:window"
  371. msgid "File Already Exists"
  372. msgstr "Soubor již existuje"
  373. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
  374. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  375. #, python-brace-format
  376. msgctxt "@label Don't translate the XML tag <filename>!"
  377. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  378. msgstr "Soubor <filename>{0}</filename> již existuje. Opravdu jej chcete přepsat?"
  379. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:452
  380. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:455
  381. msgctxt "@info:status"
  382. msgid "Invalid file URL:"
  383. msgstr "Špatná cesta k souboru:"
  384. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  385. #, python-brace-format
  386. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  387. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  388. msgstr "Nepodařilo se exportovat profil do <filename>{0}</filename>: <message>{1}</message>"
  389. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
  390. #, python-brace-format
  391. msgctxt "@info:status Don't translate the XML tag <filename>!"
  392. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  393. msgstr "Export profilu do <filename>{0}</filename> se nezdařil: Zapisovací zásuvný modul ohlásil chybu."
  394. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
  395. #, python-brace-format
  396. msgctxt "@info:status Don't translate the XML tag <filename>!"
  397. msgid "Exported profile to <filename>{0}</filename>"
  398. msgstr "Exportován profil do <filename>{0}</filename>"
  399. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
  400. msgctxt "@info:title"
  401. msgid "Export succeeded"
  402. msgstr "Export úspěšný"
  403. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
  404. #, python-brace-format
  405. msgctxt "@info:status Don't translate the XML tags <filename>!"
  406. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  407. msgstr "Nepodařilo se importovat profil z <filename>{0}</filename>: {1}"
  408. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
  409. #, python-brace-format
  410. msgctxt "@info:status Don't translate the XML tags <filename>!"
  411. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  412. msgstr "Nemohu přidat profil z <filename>{0}</filename> před tím, než je přidána tiskárna."
  413. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
  414. #, python-brace-format
  415. msgctxt "@info:status Don't translate the XML tags <filename>!"
  416. msgid "No custom profile to import in file <filename>{0}</filename>"
  417. msgstr "V souboru <filename>{0}</filename> není k dispozici žádný vlastní profil"
  418. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
  419. #, python-brace-format
  420. msgctxt "@info:status Don't translate the XML tags <filename>!"
  421. msgid "Failed to import profile from <filename>{0}</filename>:"
  422. msgstr "Import profilu z <filename>{0}</filename> se nezdařil:"
  423. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
  424. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
  425. #, python-brace-format
  426. msgctxt "@info:status Don't translate the XML tags <filename>!"
  427. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  428. msgstr "Tento profil <filename>{0}</filename> obsahuje nesprávná data, nemohl je importovat."
  429. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
  430. #, python-brace-format
  431. msgctxt "@info:status Don't translate the XML tag <filename>!"
  432. msgid "Failed to import profile from <filename>{0}</filename>:"
  433. msgstr "Import profilu z <filename>{0}</filename> se nezdařil:"
  434. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
  435. #, python-brace-format
  436. msgctxt "@info:status"
  437. msgid "Successfully imported profile {0}."
  438. msgstr ""
  439. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
  440. #, python-brace-format
  441. msgctxt "@info:status"
  442. msgid "File {0} does not contain any valid profile."
  443. msgstr "Soubor {0} neobsahuje žádný platný profil."
  444. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
  445. #, python-brace-format
  446. msgctxt "@info:status"
  447. msgid "Profile {0} has an unknown file type or is corrupted."
  448. msgstr "Profil {0} má neznámý typ souboru nebo je poškozen."
  449. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:423
  450. msgctxt "@label"
  451. msgid "Custom profile"
  452. msgstr "Vlastní profil"
  453. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:439
  454. msgctxt "@info:status"
  455. msgid "Profile is missing a quality type."
  456. msgstr "V profilu chybí typ kvality."
  457. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443
  458. msgctxt "@info:status"
  459. msgid "Global stack is missing."
  460. msgstr ""
  461. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:449
  462. msgctxt "@info:status"
  463. msgid "Unable to add the profile."
  464. msgstr "Nepovedlo se přidat profil."
  465. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463
  466. #, python-brace-format
  467. msgctxt "@info:status"
  468. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  469. msgstr ""
  470. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:468
  471. #, python-brace-format
  472. msgctxt "@info:status"
  473. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  474. msgstr ""
  475. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  476. msgctxt "@info:not supported profile"
  477. msgid "Not supported"
  478. msgstr "Nepodporovaný"
  479. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  480. msgctxt "@info:No intent profile selected"
  481. msgid "Default"
  482. msgstr "Výchozí"
  483. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:712
  484. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  485. msgctxt "@label"
  486. msgid "Nozzle"
  487. msgstr "Tryska"
  488. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:860
  489. msgctxt "@info:message Followed by a list of settings."
  490. msgid "Settings have been changed to match the current availability of extruders:"
  491. msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:"
  492. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:862
  493. msgctxt "@info:title"
  494. msgid "Settings updated"
  495. msgstr "Nastavení aktualizováno"
  496. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1447
  497. msgctxt "@info:title"
  498. msgid "Extruder(s) Disabled"
  499. msgstr "Extruder(y) zakázány"
  500. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  501. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  502. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  503. msgctxt "@action:button"
  504. msgid "Add"
  505. msgstr "Přidat"
  506. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
  507. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:263
  508. msgctxt "@action:button"
  509. msgid "Finish"
  510. msgstr "Dokončit"
  511. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
  512. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:441
  513. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  514. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  515. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  516. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  517. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  518. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  519. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  520. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  521. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  522. msgctxt "@action:button"
  523. msgid "Cancel"
  524. msgstr "Zrušit"
  525. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
  526. #, python-brace-format
  527. msgctxt "@label"
  528. msgid "Group #{group_nr}"
  529. msgstr "Skupina #{group_nr}"
  530. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
  531. msgctxt "@tooltip"
  532. msgid "Outer Wall"
  533. msgstr "Vnější stěna"
  534. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
  535. msgctxt "@tooltip"
  536. msgid "Inner Walls"
  537. msgstr "Vnitřní stěna"
  538. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  539. msgctxt "@tooltip"
  540. msgid "Skin"
  541. msgstr "Skin"
  542. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  543. msgctxt "@tooltip"
  544. msgid "Infill"
  545. msgstr "Výplň"
  546. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  547. msgctxt "@tooltip"
  548. msgid "Support Infill"
  549. msgstr "Výplň podpor"
  550. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  551. msgctxt "@tooltip"
  552. msgid "Support Interface"
  553. msgstr "Rozhraní podpor"
  554. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  555. msgctxt "@tooltip"
  556. msgid "Support"
  557. msgstr "Podpora"
  558. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  559. msgctxt "@tooltip"
  560. msgid "Skirt"
  561. msgstr "Límec"
  562. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  563. msgctxt "@tooltip"
  564. msgid "Prime Tower"
  565. msgstr "Hlavní věž"
  566. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  567. msgctxt "@tooltip"
  568. msgid "Travel"
  569. msgstr "Pohyb"
  570. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
  571. msgctxt "@tooltip"
  572. msgid "Retractions"
  573. msgstr "Retrakce"
  574. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94
  575. msgctxt "@tooltip"
  576. msgid "Other"
  577. msgstr "Jiné"
  578. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  579. msgctxt "@action:button"
  580. msgid "Next"
  581. msgstr "Další"
  582. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  583. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  584. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  585. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  587. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  588. msgctxt "@action:button"
  589. msgid "Close"
  590. msgstr "Zavřít"
  591. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  592. msgctxt "@info:title"
  593. msgid "3D Model Assistant"
  594. msgstr "Asistent 3D modelu"
  595. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
  596. #, python-brace-format
  597. msgctxt "@info:status"
  598. msgid ""
  599. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  600. "<p>{model_names}</p>\n"
  601. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  602. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  603. msgstr ""
  604. "<p> Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu: </p>\n"
  605. "<p> {model_names} </p>\n"
  606. "<p> Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku. </p>\n"
  607. "<p> <a href=\"https://ultimaker.com/3D-model-assistant\"> Zobrazit průvodce kvalitou tisku </a> </p>"
  608. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  609. #, python-brace-format
  610. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  611. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  612. msgstr "Projektový soubor <filename>{0}</filename> obsahuje neznámý typ zařízení <message>{1}</message>. Nelze importovat zařízení. Místo toho budou importovány modely."
  613. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  614. msgctxt "@info:title"
  615. msgid "Open Project File"
  616. msgstr "Otevřít soubor s projektem"
  617. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  618. #, python-brace-format
  619. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  620. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  621. msgstr "Soubor projektu <filename>{0}</filename>je neočekávaně nedostupný: <message>{1}</message>."
  622. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  623. msgctxt "@info:title"
  624. msgid "Can't Open Project File"
  625. msgstr "Nepovedlo se otevřít soubor projektu"
  626. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:686
  627. #, python-brace-format
  628. msgctxt "@info:error Don't translate the XML tag <filename>!"
  629. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  630. msgstr "Soubor projektu <filename>{0}</filename> je vytvořený profily, které jsou této verzi Ultimaker Cura neznámé."
  631. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  632. msgctxt "@title:tab"
  633. msgid "Recommended"
  634. msgstr "Doporučeno"
  635. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  636. msgctxt "@title:tab"
  637. msgid "Custom"
  638. msgstr "Vlastní"
  639. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
  640. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  641. msgctxt "@item:inlistbox"
  642. msgid "3MF File"
  643. msgstr "Soubor 3MF"
  644. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  645. msgctxt "@error:zip"
  646. msgid "3MF Writer plug-in is corrupt."
  647. msgstr "Plugin 3MF Writer je poškozen."
  648. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  649. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  650. msgctxt "@error:zip"
  651. msgid "No permission to write the workspace here."
  652. msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru."
  653. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  654. msgctxt "@error:zip"
  655. msgid "The operating system does not allow saving a project file to this location or with this file name."
  656. msgstr ""
  657. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:185
  658. msgctxt "@error:zip"
  659. msgid "Error writing 3mf file."
  660. msgstr "Chyba při zápisu 3mf file."
  661. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  662. msgctxt "@item:inlistbox"
  663. msgid "3MF file"
  664. msgstr "Soubor 3MF"
  665. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  666. msgctxt "@item:inlistbox"
  667. msgid "Cura Project 3MF file"
  668. msgstr "Soubor Cura Project 3MF"
  669. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  670. msgctxt "@item:inlistbox"
  671. msgid "AMF File"
  672. msgstr "Soubor AMF"
  673. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  674. msgctxt "@info:title"
  675. msgid "Backups"
  676. msgstr "Zálohy"
  677. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  678. msgctxt "@info:backup_status"
  679. msgid "There was an error while uploading your backup."
  680. msgstr "Nastala chyba při nahrávání vaší zálohy."
  681. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  682. msgctxt "@info:backup_status"
  683. msgid "Creating your backup..."
  684. msgstr "Vytvářím zálohu..."
  685. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  686. msgctxt "@info:backup_status"
  687. msgid "There was an error while creating your backup."
  688. msgstr "Nastala chyba při vytváření zálohy."
  689. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  690. msgctxt "@info:backup_status"
  691. msgid "Uploading your backup..."
  692. msgstr "Nahrávám vaši zálohu..."
  693. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  694. msgctxt "@info:backup_status"
  695. msgid "Your backup has finished uploading."
  696. msgstr "Vaše záloha byla úspěšně nahrána."
  697. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  698. msgctxt "@error:file_size"
  699. msgid "The backup exceeds the maximum file size."
  700. msgstr "Záloha překračuje maximální povolenou velikost soubor."
  701. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:82
  702. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  703. msgctxt "@info:backup_status"
  704. msgid "There was an error trying to restore your backup."
  705. msgstr "Nastala chyba při pokusu obnovit vaši zálohu."
  706. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  707. msgctxt "@item:inmenu"
  708. msgid "Manage backups"
  709. msgstr "Spravovat zálohy"
  710. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  711. msgctxt "@info:status"
  712. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  713. msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací."
  714. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  715. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387
  716. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:411
  717. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:420
  718. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  719. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:441
  720. msgctxt "@info:title"
  721. msgid "Unable to slice"
  722. msgstr "Nelze slicovat"
  723. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  724. #, python-brace-format
  725. msgctxt "@info:status"
  726. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  727. msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}"
  728. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:410
  729. #, python-brace-format
  730. msgctxt "@info:status"
  731. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  732. msgstr "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}"
  733. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:419
  734. msgctxt "@info:status"
  735. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  736. msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné."
  737. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  738. #, python-format
  739. msgctxt "@info:status"
  740. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  741. msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s."
  742. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  743. msgctxt "@info:status"
  744. msgid ""
  745. "Please review settings and check if your models:\n"
  746. "- Fit within the build volume\n"
  747. "- Are assigned to an enabled extruder\n"
  748. "- Are not all set as modifier meshes"
  749. msgstr ""
  750. "Zkontrolujte nastavení a zda vaše modely:\n"
  751. "- Vejdou se na pracovní prostor\n"
  752. "- Jsou přiřazeny k povolenému extruderu\n"
  753. "- Nejsou nastavené jako modifikační sítě"
  754. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  755. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  756. msgctxt "@info:status"
  757. msgid "Processing Layers"
  758. msgstr "Zpracovávám vrstvy"
  759. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  760. msgctxt "@info:title"
  761. msgid "Information"
  762. msgstr "Informace"
  763. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  764. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  765. msgctxt "@item:inlistbox"
  766. msgid "Cura Profile"
  767. msgstr "Cura profil"
  768. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  769. msgctxt "@info"
  770. msgid "Could not access update information."
  771. msgstr "Nemohu načíst informace o aktualizaci."
  772. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  773. #, python-brace-format
  774. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  775. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  776. msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}."
  777. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  778. #, python-format
  779. msgctxt "@info:title The %s gets replaced with the printer name."
  780. msgid "New %s firmware available"
  781. msgstr "Nový %s firmware je dostupný"
  782. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  783. msgctxt "@action:button"
  784. msgid "How to update"
  785. msgstr "Jak aktualizovat"
  786. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  787. msgctxt "@action"
  788. msgid "Update Firmware"
  789. msgstr "Aktualizovat firmware"
  790. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  791. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  792. msgctxt "@item:inlistbox"
  793. msgid "Compressed G-code File"
  794. msgstr "Kompresovaný soubor G kódu"
  795. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  796. msgctxt "@error:not supported"
  797. msgid "GCodeGzWriter does not support text mode."
  798. msgstr "GCodeGzWriter nepodporuje textový mód."
  799. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  800. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
  801. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  802. msgctxt "@item:inlistbox"
  803. msgid "G-code File"
  804. msgstr "Soubor G-kódu"
  805. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
  806. msgctxt "@info:status"
  807. msgid "Parsing G-code"
  808. msgstr "Zpracovávám G kód"
  809. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
  810. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
  811. msgctxt "@info:title"
  812. msgid "G-code Details"
  813. msgstr "Podrobnosti G kódu"
  814. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
  815. msgctxt "@info:generic"
  816. 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."
  817. msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná."
  818. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  819. msgctxt "@item:inlistbox"
  820. msgid "G File"
  821. msgstr "G soubor"
  822. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  823. msgctxt "@error:not supported"
  824. msgid "GCodeWriter does not support non-text mode."
  825. msgstr "GCodeWriter nepodporuje netextový mód."
  826. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  827. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  828. msgctxt "@warning:status"
  829. msgid "Please prepare G-code before exporting."
  830. msgstr "Před exportem prosím připravte G-kód."
  831. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  832. msgctxt "@item:inlistbox"
  833. msgid "JPG Image"
  834. msgstr "Obrázek JPG"
  835. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  836. msgctxt "@item:inlistbox"
  837. msgid "JPEG Image"
  838. msgstr "Obrázek JPEG"
  839. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  840. msgctxt "@item:inlistbox"
  841. msgid "PNG Image"
  842. msgstr "Obrázek PNG"
  843. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  844. msgctxt "@item:inlistbox"
  845. msgid "BMP Image"
  846. msgstr "Obrázek BMP"
  847. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  848. msgctxt "@item:inlistbox"
  849. msgid "GIF Image"
  850. msgstr "Obrázek GIF"
  851. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  852. msgctxt "@item:inlistbox"
  853. msgid "Cura 15.04 profiles"
  854. msgstr "Profily Cura 15.04"
  855. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  856. msgctxt "@action"
  857. msgid "Machine Settings"
  858. msgstr "Nastavení zařízení"
  859. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  860. msgctxt "@item:inmenu"
  861. msgid "Monitor"
  862. msgstr "Monitorování"
  863. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  864. msgctxt "@label"
  865. msgid "Per Model Settings"
  866. msgstr "Nastavení pro každý model"
  867. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  868. msgctxt "@info:tooltip"
  869. msgid "Configure Per Model Settings"
  870. msgstr "Konfigurovat nastavení pro každý model"
  871. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  872. msgctxt "@item:inmenu"
  873. msgid "Post Processing"
  874. msgstr "Post Processing"
  875. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  876. msgctxt "@item:inmenu"
  877. msgid "Modify G-Code"
  878. msgstr "Modifikovat G kód"
  879. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  880. msgctxt "@item:inmenu"
  881. msgid "Prepare"
  882. msgstr "Příprava"
  883. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  884. msgctxt "@item:inmenu"
  885. msgid "Preview"
  886. msgstr "Náhled"
  887. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  888. msgctxt "@action:button Preceded by 'Ready to'."
  889. msgid "Save to Removable Drive"
  890. msgstr "Uložit na vyměnitelný disk"
  891. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  892. #, python-brace-format
  893. msgctxt "@item:inlistbox"
  894. msgid "Save to Removable Drive {0}"
  895. msgstr "Uložit na vyměnitelný disk {0}"
  896. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  897. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  898. msgctxt "@info:status"
  899. msgid "There are no file formats available to write with!"
  900. msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!"
  901. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  902. #, python-brace-format
  903. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  904. msgid "Saving to Removable Drive <filename>{0}</filename>"
  905. msgstr "Ukládám na vyměnitelný disk <filename>{0}</filename>"
  906. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  907. msgctxt "@info:title"
  908. msgid "Saving"
  909. msgstr "Ukládám"
  910. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  911. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  912. #, python-brace-format
  913. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  914. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  915. msgstr "Nemohu uložit na <filename>{0}</filename>: <message>{1}</message>"
  916. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  917. #, python-brace-format
  918. msgctxt "@info:status Don't translate the tag {device}!"
  919. msgid "Could not find a file name when trying to write to {device}."
  920. msgstr "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru."
  921. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  922. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  923. #, python-brace-format
  924. msgctxt "@info:status"
  925. msgid "Could not save to removable drive {0}: {1}"
  926. msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}"
  927. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  928. #, python-brace-format
  929. msgctxt "@info:status"
  930. msgid "Saved to Removable Drive {0} as {1}"
  931. msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}"
  932. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  933. msgctxt "@info:title"
  934. msgid "File Saved"
  935. msgstr "Soubor uložen"
  936. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  937. msgctxt "@action:button"
  938. msgid "Eject"
  939. msgstr "Vysunout"
  940. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  941. #, python-brace-format
  942. msgctxt "@action"
  943. msgid "Eject removable device {0}"
  944. msgstr "Vysunout vyměnitelnou jednotku {0}"
  945. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  946. #, python-brace-format
  947. msgctxt "@info:status"
  948. msgid "Ejected {0}. You can now safely remove the drive."
  949. msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku."
  950. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  951. msgctxt "@info:title"
  952. msgid "Safely Remove Hardware"
  953. msgstr "Bezpečně vysunout hardware"
  954. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  955. #, python-brace-format
  956. msgctxt "@info:status"
  957. msgid "Failed to eject {0}. Another program may be using the drive."
  958. msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program."
  959. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  960. msgctxt "@item:intext"
  961. msgid "Removable Drive"
  962. msgstr "Vyměnitelná jednotka"
  963. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  964. msgctxt "@info:status"
  965. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  966. msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy."
  967. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:122
  968. msgctxt "@info:title"
  969. msgid "Simulation View"
  970. msgstr "Pohled simulace"
  971. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  972. msgctxt "@info:status"
  973. msgid "Nothing is shown because you need to slice first."
  974. msgstr "Nic není zobrazeno, nejdříve musíte slicovat."
  975. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  976. msgctxt "@info:title"
  977. msgid "No layers to show"
  978. msgstr "Žádné vrstvy k zobrazení"
  979. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:124
  980. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
  981. msgctxt "@info:option_text"
  982. msgid "Do not show this message again"
  983. msgstr "Znovu nezobrazovat tuto zprávu"
  984. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  985. msgctxt "@item:inlistbox"
  986. msgid "Layer view"
  987. msgstr "Pohled vrstev"
  988. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:70
  989. msgctxt "@info:status"
  990. msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  991. msgstr "Váš model není rozmanitý. Zvýrazněné oblasti indikují buď chybějící, či vedlejší povrch."
  992. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:72
  993. msgctxt "@info:title"
  994. msgid "Model errors"
  995. msgstr "Chyby modelu"
  996. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  997. msgctxt "@item:inmenu"
  998. msgid "Solid view"
  999. msgstr "Pevný pohled"
  1000. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  1001. msgctxt "@label"
  1002. msgid "Support Blocker"
  1003. msgstr "Blokovač podpor"
  1004. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  1005. msgctxt "@info:tooltip"
  1006. msgid "Create a volume in which supports are not printed."
  1007. msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory."
  1008. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1009. msgctxt "@info:generic"
  1010. msgid "Do you want to sync material and software packages with your account?"
  1011. msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?"
  1012. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1013. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  1014. msgctxt "@info:title"
  1015. msgid "Changes detected from your Ultimaker account"
  1016. msgstr "Zjištěny změny z vašeho účtu Ultimaker"
  1017. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:146
  1018. msgctxt "@action:button"
  1019. msgid "Sync"
  1020. msgstr "Synchronizovat"
  1021. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  1022. msgctxt "@info:generic"
  1023. msgid "Syncing..."
  1024. msgstr "Synchronizuji..."
  1025. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1026. msgctxt "@button"
  1027. msgid "Decline"
  1028. msgstr "Odmítnout"
  1029. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1030. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1031. msgctxt "@button"
  1032. msgid "Agree"
  1033. msgstr "Přijmout"
  1034. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1035. msgctxt "@title:window"
  1036. msgid "Plugin License Agreement"
  1037. msgstr "Licenční ujednání zásuvného modulu"
  1038. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  1039. msgctxt "@button"
  1040. msgid "Decline and remove from account"
  1041. msgstr "Odmítnout a odstranit z účtu"
  1042. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  1043. msgctxt "@info:generic"
  1044. msgid "You need to quit and restart {} before changes have effect."
  1045. msgstr "Než se změny projeví, musíte ukončit a restartovat {}."
  1046. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:76
  1047. msgctxt "@info:generic"
  1048. msgid "{} plugins failed to download"
  1049. msgstr "Nepovedlo se stáhnout {} zásuvných modulů"
  1050. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1051. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1052. msgid "Open Compressed Triangle Mesh"
  1053. msgstr "Open Compressed Triangle Mesh"
  1054. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1055. msgctxt "@item:inlistbox"
  1056. msgid "COLLADA Digital Asset Exchange"
  1057. msgstr "COLLADA Digital Asset Exchange"
  1058. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1059. msgctxt "@item:inlistbox"
  1060. msgid "glTF Binary"
  1061. msgstr "gITF binární soubor"
  1062. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1063. msgctxt "@item:inlistbox"
  1064. msgid "glTF Embedded JSON"
  1065. msgstr "gITF Embedded JSON"
  1066. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1067. msgctxt "@item:inlistbox"
  1068. msgid "Stanford Triangle Format"
  1069. msgstr "Stanford Triangle Format"
  1070. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1071. msgctxt "@item:inlistbox"
  1072. msgid "Compressed COLLADA Digital Asset Exchange"
  1073. msgstr "Kompresovaný COLLADA Digital Asset Exchenge"
  1074. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
  1075. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1076. msgctxt "@item:inlistbox"
  1077. msgid "Ultimaker Format Package"
  1078. msgstr "Balíček ve formátu Ultimaker"
  1079. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:146
  1080. msgctxt "@info:error"
  1081. msgid "Can't write to UFP file:"
  1082. msgstr "Nemohu zapsat do UFP souboru:"
  1083. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1084. msgctxt "@action"
  1085. msgid "Level build plate"
  1086. msgstr "Vyrovnat podložku"
  1087. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1088. msgctxt "@action"
  1089. msgid "Select upgrades"
  1090. msgstr "Vybrat vylepšení"
  1091. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  1092. msgctxt "@action:button"
  1093. msgid "Print via cloud"
  1094. msgstr "Tisknout přes cloud"
  1095. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  1096. msgctxt "@properties:tooltip"
  1097. msgid "Print via cloud"
  1098. msgstr "Tisknout přes cloud"
  1099. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1100. msgctxt "@info:status"
  1101. msgid "Connected via cloud"
  1102. msgstr "Připojen přes cloud"
  1103. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  1104. #, python-brace-format
  1105. msgctxt "@error:send"
  1106. msgid "Unknown error code when uploading print job: {0}"
  1107. msgstr ""
  1108. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  1109. msgctxt "info:status"
  1110. msgid "New printer detected from your Ultimaker account"
  1111. msgid_plural "New printers detected from your Ultimaker account"
  1112. msgstr[0] "Z vašeho Ultimaker účtu byla detekována nová tiskárna"
  1113. msgstr[1] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny"
  1114. msgstr[2] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny"
  1115. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  1116. #, python-brace-format
  1117. msgctxt "info:status Filled in with printer name and printer model."
  1118. msgid "Adding printer {name} ({model}) from your account"
  1119. msgstr ""
  1120. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  1121. #, python-brace-format
  1122. msgctxt "info:{0} gets replaced by a number of printers"
  1123. msgid "... and {0} other"
  1124. msgid_plural "... and {0} others"
  1125. msgstr[0] ""
  1126. msgstr[1] ""
  1127. msgstr[2] ""
  1128. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  1129. msgctxt "info:status"
  1130. msgid "Printers added from Digital Factory:"
  1131. msgstr ""
  1132. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  1133. msgctxt "info:status"
  1134. msgid "A cloud connection is not available for a printer"
  1135. msgid_plural "A cloud connection is not available for some printers"
  1136. msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné"
  1137. msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné"
  1138. msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné"
  1139. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  1140. msgctxt "info:status"
  1141. msgid "This printer is not linked to the Digital Factory:"
  1142. msgid_plural "These printers are not linked to the Digital Factory:"
  1143. msgstr[0] "Tato tiskárna není napojena na Digital Factory:"
  1144. msgstr[1] "Tyto tiskárny nejsou napojeny na Digital Factory:"
  1145. msgstr[2] "Tyto tiskárny nejsou napojeny na Digital Factory:"
  1146. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  1147. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  1148. msgctxt "info:name"
  1149. msgid "Ultimaker Digital Factory"
  1150. msgstr ""
  1151. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  1152. #, python-brace-format
  1153. msgctxt "info:status"
  1154. msgid "To establish a connection, please visit the {website_link}"
  1155. msgstr ""
  1156. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1157. msgctxt "@action:button"
  1158. msgid "Keep printer configurations"
  1159. msgstr "Zachovat konfiguraci tiskárny"
  1160. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  1161. msgctxt "@action:button"
  1162. msgid "Remove printers"
  1163. msgstr "Odstranit tiskárnu"
  1164. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  1165. #, python-brace-format
  1166. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1167. msgid "{printer_name} will be removed until the next account sync."
  1168. msgstr ""
  1169. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  1170. #, python-brace-format
  1171. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1172. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1173. msgstr ""
  1174. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  1175. #, python-brace-format
  1176. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1177. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1178. msgstr ""
  1179. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  1180. msgctxt "@title:window"
  1181. msgid "Remove printers?"
  1182. msgstr "Odstranit tiskárny?"
  1183. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  1184. #, python-brace-format
  1185. msgctxt "@label"
  1186. msgid ""
  1187. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1188. "Are you sure you want to continue?"
  1189. msgid_plural ""
  1190. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1191. "Are you sure you want to continue?"
  1192. msgstr[0] ""
  1193. msgstr[1] ""
  1194. msgstr[2] ""
  1195. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  1196. msgctxt "@label"
  1197. msgid ""
  1198. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1199. "Are you sure you want to continue?"
  1200. msgstr ""
  1201. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  1202. msgctxt "@info:status"
  1203. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  1204. msgstr "Odesílejte a sledujte tiskové úlohy odkudkoli pomocí účtu Ultimaker."
  1205. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  1206. msgctxt "@info:status Ultimaker Cloud should not be translated."
  1207. msgid "Connect to Ultimaker Digital Factory"
  1208. msgstr "Připojit se k Ultimaker Digital Factory"
  1209. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  1210. msgctxt "@action"
  1211. msgid "Get started"
  1212. msgstr "Začínáme"
  1213. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1214. msgctxt "@info:status"
  1215. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1216. msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware."
  1217. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1218. msgctxt "@info:title"
  1219. msgid "Update your printer"
  1220. msgstr "Aktualizujte vaší tiskárnu"
  1221. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1222. #, python-brace-format
  1223. msgctxt "@info:status"
  1224. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1225. msgstr "Cura zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}."
  1226. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1227. msgctxt "@info:title"
  1228. msgid "Sending materials to printer"
  1229. msgstr "Odesílání materiálů do tiskárny"
  1230. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1231. #, python-brace-format
  1232. msgctxt "@info:status"
  1233. 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."
  1234. msgstr "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele."
  1235. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1236. msgctxt "@info:title"
  1237. msgid "Not a group host"
  1238. msgstr "Není hostem skupiny"
  1239. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  1240. msgctxt "@action"
  1241. msgid "Configure group"
  1242. msgstr "Konfigurovat skupinu"
  1243. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1244. msgctxt "@info:status"
  1245. msgid "Please wait until the current job has been sent."
  1246. msgstr "Počkejte, až bude odeslána aktuální úloha."
  1247. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1248. msgctxt "@info:title"
  1249. msgid "Print error"
  1250. msgstr "Chyba tisku"
  1251. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1252. msgctxt "@info:text"
  1253. msgid "Could not upload the data to the printer."
  1254. msgstr "Nemohu nahrát data do tiskárny."
  1255. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1256. msgctxt "@info:title"
  1257. msgid "Network error"
  1258. msgstr "Chyba sítě"
  1259. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1260. msgctxt "@info:status"
  1261. msgid "Sending Print Job"
  1262. msgstr "Odesílám tiskovou úlohu"
  1263. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1264. msgctxt "@info:status"
  1265. msgid "Uploading print job to printer."
  1266. msgstr "Nahrávám tiskovou úlohu do tiskárny."
  1267. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1268. msgctxt "@info:status"
  1269. msgid "Print job queue is full. The printer can't accept a new job."
  1270. msgstr ""
  1271. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1272. msgctxt "@info:title"
  1273. msgid "Queue Full"
  1274. msgstr ""
  1275. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1276. msgctxt "@info:status"
  1277. msgid "Print job was successfully sent to the printer."
  1278. msgstr "Tisková úloha byla úspěšně odeslána do tiskárny."
  1279. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1280. msgctxt "@info:title"
  1281. msgid "Data Sent"
  1282. msgstr "Data poslána"
  1283. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1284. msgctxt "@action:button Preceded by 'Ready to'."
  1285. msgid "Print over network"
  1286. msgstr "Tisk přes síť"
  1287. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1288. msgctxt "@properties:tooltip"
  1289. msgid "Print over network"
  1290. msgstr "Tisk přes síť"
  1291. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1292. msgctxt "@info:status"
  1293. msgid "Connected over the network"
  1294. msgstr "Připojeno přes síť"
  1295. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1296. msgctxt "@action"
  1297. msgid "Connect via Network"
  1298. msgstr "Připojit přes síť"
  1299. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1300. msgctxt "@info:status"
  1301. msgid "tomorrow"
  1302. msgstr "zítra"
  1303. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1304. msgctxt "@info:status"
  1305. msgid "today"
  1306. msgstr "dnes"
  1307. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1308. msgctxt "@item:inmenu"
  1309. msgid "USB printing"
  1310. msgstr "USB tisk"
  1311. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1312. msgctxt "@action:button Preceded by 'Ready to'."
  1313. msgid "Print via USB"
  1314. msgstr "Tisk přes USB"
  1315. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1316. msgctxt "@info:tooltip"
  1317. msgid "Print via USB"
  1318. msgstr "Tisk přes USB"
  1319. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1320. msgctxt "@info:status"
  1321. msgid "Connected via USB"
  1322. msgstr "Připojeno přes USB"
  1323. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1324. msgctxt "@label"
  1325. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1326. msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?"
  1327. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1328. msgctxt "@message"
  1329. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1330. msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen."
  1331. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1332. msgctxt "@message"
  1333. msgid "Print in Progress"
  1334. msgstr "Probíhá tisk"
  1335. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1336. msgctxt "@item:inlistbox"
  1337. msgid "X3D File"
  1338. msgstr "Soubor X3D"
  1339. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1340. msgctxt "@item:inlistbox"
  1341. msgid "X-Ray view"
  1342. msgstr "Rentgenový pohled"
  1343. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1344. msgctxt "@info:tooltip"
  1345. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1346. msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy."
  1347. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1348. msgctxt "@title:window"
  1349. msgid "Open Project"
  1350. msgstr "Otevřit projekt"
  1351. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:61
  1352. msgctxt "@action:ComboBox Update/override existing profile"
  1353. msgid "Update existing"
  1354. msgstr "Aktualizovat existující"
  1355. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1356. msgctxt "@action:ComboBox Save settings in a new profile"
  1357. msgid "Create new"
  1358. msgstr "Vytvořit nový"
  1359. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  1360. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  1361. msgctxt "@action:title"
  1362. msgid "Summary - Cura Project"
  1363. msgstr "Souhrn - Projekt Cura"
  1364. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:96
  1365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  1366. msgctxt "@action:label"
  1367. msgid "Printer settings"
  1368. msgstr "Nastavení tiskárny"
  1369. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:112
  1370. msgctxt "@info:tooltip"
  1371. msgid "How should the conflict in the machine be resolved?"
  1372. msgstr "Jak by měl být problém v zařízení vyřešen?"
  1373. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:165
  1374. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  1375. msgctxt "@action:label"
  1376. msgid "Type"
  1377. msgstr "Typ"
  1378. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:181
  1379. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1380. msgctxt "@action:label"
  1381. msgid "Printer Group"
  1382. msgstr "Skupina tiskárny"
  1383. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:203
  1384. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  1385. msgctxt "@action:label"
  1386. msgid "Profile settings"
  1387. msgstr "Nastavení profilu"
  1388. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:219
  1389. msgctxt "@info:tooltip"
  1390. msgid "How should the conflict in the profile be resolved?"
  1391. msgstr "Jak by měl být problém v profilu vyřešen?"
  1392. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239
  1393. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:349
  1394. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1395. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  1396. msgctxt "@action:label"
  1397. msgid "Name"
  1398. msgstr "Název"
  1399. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:255
  1400. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  1401. msgctxt "@action:label"
  1402. msgid "Intent"
  1403. msgstr "Záměr"
  1404. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:271
  1405. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  1406. msgctxt "@action:label"
  1407. msgid "Not in profile"
  1408. msgstr "Není v profilu"
  1409. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:276
  1410. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  1411. msgctxt "@action:label"
  1412. msgid "%1 override"
  1413. msgid_plural "%1 overrides"
  1414. msgstr[0] "%1 přepsání"
  1415. msgstr[1] "%1 přepsání"
  1416. msgstr[2] "%1 přepsání"
  1417. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:287
  1418. msgctxt "@action:label"
  1419. msgid "Derivative from"
  1420. msgstr "Derivát z"
  1421. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292
  1422. msgctxt "@action:label"
  1423. msgid "%1, %2 override"
  1424. msgid_plural "%1, %2 overrides"
  1425. msgstr[0] "%1, %2 override"
  1426. msgstr[1] "%1, %2 overrides"
  1427. msgstr[2] "%1, %2 overrides"
  1428. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:309
  1429. msgctxt "@action:label"
  1430. msgid "Material settings"
  1431. msgstr "Nastavení materiálu"
  1432. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  1433. msgctxt "@info:tooltip"
  1434. msgid "How should the conflict in the material be resolved?"
  1435. msgstr "Jak by měl být problém v materiálu vyřešen?"
  1436. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:369
  1437. msgctxt "@action:label"
  1438. msgid "Setting visibility"
  1439. msgstr "Nastavení zobrazení"
  1440. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:378
  1441. msgctxt "@action:label"
  1442. msgid "Mode"
  1443. msgstr "Mód"
  1444. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:394
  1445. msgctxt "@action:label"
  1446. msgid "Visible settings:"
  1447. msgstr "Viditelná zařízení:"
  1448. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:399
  1449. msgctxt "@action:label"
  1450. msgid "%1 out of %2"
  1451. msgstr "%1 z %2"
  1452. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:425
  1453. msgctxt "@action:warning"
  1454. msgid "Loading a project will clear all models on the build plate."
  1455. msgstr "Nahrání projektu vymaže všechny modely na podložce."
  1456. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:453
  1457. msgctxt "@action:button"
  1458. msgid "Open"
  1459. msgstr "Otevřít"
  1460. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1461. msgctxt "@button"
  1462. msgid "Want more?"
  1463. msgstr "Chcete více?"
  1464. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1465. msgctxt "@button"
  1466. msgid "Backup Now"
  1467. msgstr "Zálohovat nyní"
  1468. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1469. msgctxt "@checkbox:description"
  1470. msgid "Auto Backup"
  1471. msgstr "Automatické zálohy"
  1472. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1473. msgctxt "@checkbox:description"
  1474. msgid "Automatically create a backup each day that Cura is started."
  1475. msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura."
  1476. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1477. msgctxt "@button"
  1478. msgid "Restore"
  1479. msgstr "Obnovit"
  1480. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  1481. msgctxt "@dialog:title"
  1482. msgid "Delete Backup"
  1483. msgstr "Odstranit zálohu"
  1484. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1485. msgctxt "@dialog:info"
  1486. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1487. msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět."
  1488. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  1489. msgctxt "@dialog:title"
  1490. msgid "Restore Backup"
  1491. msgstr "Obnovit zálohu"
  1492. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1493. msgctxt "@dialog:info"
  1494. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1495. msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?"
  1496. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1497. msgctxt "@backuplist:label"
  1498. msgid "Cura Version"
  1499. msgstr "Cura verze"
  1500. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1501. msgctxt "@backuplist:label"
  1502. msgid "Machines"
  1503. msgstr "Zařízení"
  1504. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1505. msgctxt "@backuplist:label"
  1506. msgid "Materials"
  1507. msgstr "Materiály"
  1508. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1509. msgctxt "@backuplist:label"
  1510. msgid "Profiles"
  1511. msgstr "Profily"
  1512. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1513. msgctxt "@backuplist:label"
  1514. msgid "Plugins"
  1515. msgstr "Zásuvné moduly"
  1516. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1517. msgctxt "@title:window"
  1518. msgid "Cura Backups"
  1519. msgstr "Cura zálohy"
  1520. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1521. msgctxt "@title"
  1522. msgid "My Backups"
  1523. msgstr "Moje zálohy"
  1524. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1525. msgctxt "@empty_state"
  1526. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1527. msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte."
  1528. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1529. msgctxt "@backup_limit_info"
  1530. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1531. msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu."
  1532. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1533. msgctxt "@description"
  1534. msgid "Backup and synchronize your Cura settings."
  1535. msgstr "Zálohovat a synchronizovat vaše nastavení Cura."
  1536. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1537. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1538. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  1539. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:125
  1540. msgctxt "@button"
  1541. msgid "Sign in"
  1542. msgstr "Přihlásit se"
  1543. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1544. msgctxt "@title"
  1545. msgid "Update Firmware"
  1546. msgstr "Aktualizovat firmware"
  1547. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1548. msgctxt "@label"
  1549. 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."
  1550. msgstr "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny."
  1551. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1552. msgctxt "@label"
  1553. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1554. msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení."
  1555. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1556. msgctxt "@action:button"
  1557. msgid "Automatically upgrade Firmware"
  1558. msgstr "Automaticky aktualizovat firmware"
  1559. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1560. msgctxt "@action:button"
  1561. msgid "Upload custom Firmware"
  1562. msgstr "Nahrát vlastní firmware"
  1563. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1564. msgctxt "@label"
  1565. msgid "Firmware can not be updated because there is no connection with the printer."
  1566. msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou."
  1567. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1568. msgctxt "@label"
  1569. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1570. msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru."
  1571. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1572. msgctxt "@title:window"
  1573. msgid "Select custom firmware"
  1574. msgstr "Vybrat vlastní firmware"
  1575. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1576. msgctxt "@title:window"
  1577. msgid "Firmware Update"
  1578. msgstr "Aktualizace firmwaru"
  1579. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1580. msgctxt "@label"
  1581. msgid "Updating firmware."
  1582. msgstr "Aktualizuji firmware."
  1583. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1584. msgctxt "@label"
  1585. msgid "Firmware update completed."
  1586. msgstr "Aktualizace firmwaru kompletní."
  1587. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1588. msgctxt "@label"
  1589. msgid "Firmware update failed due to an unknown error."
  1590. msgstr "Aktualizace firmwaru selhala kvůli neznámému problému."
  1591. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1592. msgctxt "@label"
  1593. msgid "Firmware update failed due to an communication error."
  1594. msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci."
  1595. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1596. msgctxt "@label"
  1597. msgid "Firmware update failed due to an input/output error."
  1598. msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu."
  1599. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1600. msgctxt "@label"
  1601. msgid "Firmware update failed due to missing firmware."
  1602. msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru."
  1603. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1604. msgctxt "@title:window"
  1605. msgid "Convert Image..."
  1606. msgstr "Konvertovat obrázek.."
  1607. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1608. msgctxt "@info:tooltip"
  1609. msgid "The maximum distance of each pixel from \"Base.\""
  1610. msgstr "Maximální vzdálenost každého pixelu od „základny“."
  1611. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1612. msgctxt "@action:label"
  1613. msgid "Height (mm)"
  1614. msgstr "Výška (mm)"
  1615. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1616. msgctxt "@info:tooltip"
  1617. msgid "The base height from the build plate in millimeters."
  1618. msgstr "Výška základny od podložky v milimetrech."
  1619. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1620. msgctxt "@action:label"
  1621. msgid "Base (mm)"
  1622. msgstr "Základna (mm)"
  1623. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1624. msgctxt "@info:tooltip"
  1625. msgid "The width in millimeters on the build plate."
  1626. msgstr "Šířka podložky v milimetrech."
  1627. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1628. msgctxt "@action:label"
  1629. msgid "Width (mm)"
  1630. msgstr "Šířka (mm)"
  1631. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1632. msgctxt "@info:tooltip"
  1633. msgid "The depth in millimeters on the build plate"
  1634. msgstr "Hloubka podložky v milimetrech"
  1635. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1636. msgctxt "@action:label"
  1637. msgid "Depth (mm)"
  1638. msgstr "Hloubka (mm)"
  1639. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1640. msgctxt "@info:tooltip"
  1641. 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."
  1642. msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu."
  1643. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1644. msgctxt "@item:inlistbox"
  1645. msgid "Darker is higher"
  1646. msgstr "Tmavější je vyšší"
  1647. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1648. msgctxt "@item:inlistbox"
  1649. msgid "Lighter is higher"
  1650. msgstr "Světlejší je vyšší"
  1651. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1652. msgctxt "@info:tooltip"
  1653. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1654. msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám."
  1655. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1656. msgctxt "@item:inlistbox"
  1657. msgid "Linear"
  1658. msgstr "Lineární"
  1659. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1660. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1661. msgctxt "@item:inlistbox"
  1662. msgid "Translucency"
  1663. msgstr "Průsvitnost"
  1664. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1665. msgctxt "@info:tooltip"
  1666. 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."
  1667. msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu."
  1668. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1669. msgctxt "@action:label"
  1670. msgid "1mm Transmittance (%)"
  1671. msgstr "1mm propustnost (%)"
  1672. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1673. msgctxt "@info:tooltip"
  1674. msgid "The amount of smoothing to apply to the image."
  1675. msgstr "Množství vyhlazení, které se použije na obrázek."
  1676. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1677. msgctxt "@action:label"
  1678. msgid "Smoothing"
  1679. msgstr "Vyhlazování"
  1680. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  1681. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1682. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1683. msgctxt "@action:button"
  1684. msgid "OK"
  1685. msgstr "OK"
  1686. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1687. msgctxt "@title:tab"
  1688. msgid "Printer"
  1689. msgstr "Tiskárna"
  1690. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1691. msgctxt "@title:label"
  1692. msgid "Nozzle Settings"
  1693. msgstr "Nastavení trysky"
  1694. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1695. msgctxt "@label"
  1696. msgid "Nozzle size"
  1697. msgstr "Velikost trysky"
  1698. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1699. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1700. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1701. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1702. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1703. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1704. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1705. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1706. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1707. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1708. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1709. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1710. msgctxt "@label"
  1711. msgid "mm"
  1712. msgstr "mm"
  1713. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1714. msgctxt "@label"
  1715. msgid "Compatible material diameter"
  1716. msgstr "Kompatibilní průměr materiálu"
  1717. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1718. msgctxt "@label"
  1719. msgid "Nozzle offset X"
  1720. msgstr "X offset trysky"
  1721. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1722. msgctxt "@label"
  1723. msgid "Nozzle offset Y"
  1724. msgstr "Y offset trysky"
  1725. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1726. msgctxt "@label"
  1727. msgid "Cooling Fan Number"
  1728. msgstr "Číslo chladícího větráku"
  1729. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1730. msgctxt "@title:label"
  1731. msgid "Extruder Start G-code"
  1732. msgstr "Počáteční G-kód extuderu"
  1733. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1734. msgctxt "@title:label"
  1735. msgid "Extruder End G-code"
  1736. msgstr "Ukončující G-kód extuderu"
  1737. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1738. msgctxt "@title:label"
  1739. msgid "Printer Settings"
  1740. msgstr "Nastavení tiskárny"
  1741. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1742. msgctxt "@label"
  1743. msgid "X (Width)"
  1744. msgstr "X (Šířka)"
  1745. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1746. msgctxt "@label"
  1747. msgid "Y (Depth)"
  1748. msgstr "Y (Hloubka)"
  1749. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1750. msgctxt "@label"
  1751. msgid "Z (Height)"
  1752. msgstr "Z (Výška)"
  1753. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1754. msgctxt "@label"
  1755. msgid "Build plate shape"
  1756. msgstr "Tvar tiskové podložky"
  1757. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1758. msgctxt "@label"
  1759. msgid "Origin at center"
  1760. msgstr "Počátek ve středu"
  1761. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1762. msgctxt "@label"
  1763. msgid "Heated bed"
  1764. msgstr "Topná podložka"
  1765. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1766. msgctxt "@label"
  1767. msgid "Heated build volume"
  1768. msgstr "Vyhřívaný objem sestavení"
  1769. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1770. msgctxt "@label"
  1771. msgid "G-code flavor"
  1772. msgstr "Varianta G kódu"
  1773. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1774. msgctxt "@title:label"
  1775. msgid "Printhead Settings"
  1776. msgstr "Nastavení tiskové hlavy"
  1777. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1778. msgctxt "@label"
  1779. msgid "X min"
  1780. msgstr "X min"
  1781. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1782. msgctxt "@label"
  1783. msgid "Y min"
  1784. msgstr "Y min"
  1785. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1786. msgctxt "@label"
  1787. msgid "X max"
  1788. msgstr "X max"
  1789. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1790. msgctxt "@label"
  1791. msgid "Y max"
  1792. msgstr "Y max"
  1793. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1794. msgctxt "@label"
  1795. msgid "Gantry Height"
  1796. msgstr "Výška rámu tiskárny"
  1797. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1798. msgctxt "@label"
  1799. msgid "Number of Extruders"
  1800. msgstr "Počet extrůderů"
  1801. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:374
  1802. msgctxt "@title:label"
  1803. msgid "Start G-code"
  1804. msgstr "Počáteční G kód"
  1805. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:385
  1806. msgctxt "@title:label"
  1807. msgid "End G-code"
  1808. msgstr "Ukončující G kód"
  1809. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1810. msgctxt "@info"
  1811. msgid ""
  1812. "Please make sure your printer has a connection:\n"
  1813. "- Check if the printer is turned on.\n"
  1814. "- Check if the printer is connected to the network.\n"
  1815. "- Check if you are signed in to discover cloud-connected printers."
  1816. msgstr ""
  1817. "Zkontrolujte, zda má tiskárna připojení:\n"
  1818. "- Zkontrolujte, zda je tiskárna zapnutá.\n"
  1819. "- Zkontrolujte, zda je tiskárna připojena k síti.\n"
  1820. "- Zkontrolujte, zda jste přihlášeni k objevování tiskáren připojených k cloudu."
  1821. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1822. msgctxt "@info"
  1823. msgid "Please connect your printer to the network."
  1824. msgstr "Připojte tiskárnu k síti."
  1825. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
  1826. msgctxt "@label link to technical assistance"
  1827. msgid "View user manuals online"
  1828. msgstr "Zobrazit online manuály"
  1829. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1830. msgctxt "@label"
  1831. msgid "Mesh Type"
  1832. msgstr "Typ síťového modelu"
  1833. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1834. msgctxt "@label"
  1835. msgid "Normal model"
  1836. msgstr "Normální model"
  1837. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1838. msgctxt "@label"
  1839. msgid "Print as support"
  1840. msgstr "Tisknout jako podporu"
  1841. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1842. msgctxt "@label"
  1843. msgid "Modify settings for overlaps"
  1844. msgstr "Upravte nastavení překrývání"
  1845. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1846. msgctxt "@label"
  1847. msgid "Don't support overlaps"
  1848. msgstr "Nepodporovat překrývání"
  1849. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1850. msgctxt "@item:inlistbox"
  1851. msgid "Infill mesh only"
  1852. msgstr "Pouze síť výplně"
  1853. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1854. msgctxt "@item:inlistbox"
  1855. msgid "Cutting mesh"
  1856. msgstr "Síť řezu"
  1857. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1858. msgctxt "@action:button"
  1859. msgid "Select settings"
  1860. msgstr "Vybrat nastavení"
  1861. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1862. msgctxt "@title:window"
  1863. msgid "Select Settings to Customize for this model"
  1864. msgstr "Vybrat nastavení k přizpůsobení pro tento model"
  1865. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1866. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1867. msgctxt "@label:textbox"
  1868. msgid "Filter..."
  1869. msgstr "Filtrovat..."
  1870. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1871. msgctxt "@label:checkbox"
  1872. msgid "Show all"
  1873. msgstr "Zobrazit vše"
  1874. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1875. msgctxt "@title:window"
  1876. msgid "Post Processing Plugin"
  1877. msgstr "Zásuvný balíček Post Processing"
  1878. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1879. msgctxt "@label"
  1880. msgid "Post Processing Scripts"
  1881. msgstr "Skripty Post Processingu"
  1882. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1883. msgctxt "@action"
  1884. msgid "Add a script"
  1885. msgstr "Přidat skript"
  1886. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1887. msgctxt "@label"
  1888. msgid "Settings"
  1889. msgstr "Nastavení"
  1890. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1891. msgctxt "@info:tooltip"
  1892. msgid "Change active post-processing scripts."
  1893. msgstr "Změnít aktivní post-processing skripty."
  1894. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1895. msgctxt "@info:tooltip"
  1896. msgid "The following script is active:"
  1897. msgid_plural "The following scripts are active:"
  1898. msgstr[0] "Následují skript je aktivní:"
  1899. msgstr[1] "Následují skripty jsou aktivní:"
  1900. msgstr[2] "Následují skripty jsou aktivní:"
  1901. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1902. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1903. msgctxt "@label"
  1904. msgid "Color scheme"
  1905. msgstr "Barevné schéma"
  1906. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  1907. msgctxt "@label:listbox"
  1908. msgid "Material Color"
  1909. msgstr "Barva materiálu"
  1910. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  1911. msgctxt "@label:listbox"
  1912. msgid "Line Type"
  1913. msgstr "Typ úsečky"
  1914. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  1915. msgctxt "@label:listbox"
  1916. msgid "Speed"
  1917. msgstr "Rychlost"
  1918. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  1919. msgctxt "@label:listbox"
  1920. msgid "Layer thickness"
  1921. msgstr "Tloušťka vrstvy"
  1922. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  1923. msgctxt "@label"
  1924. msgid "Compatibility Mode"
  1925. msgstr "Mód kompatibility"
  1926. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  1927. msgctxt "@label"
  1928. msgid "Travels"
  1929. msgstr "Cesty"
  1930. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  1931. msgctxt "@label"
  1932. msgid "Helpers"
  1933. msgstr "Pomocníci"
  1934. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  1935. msgctxt "@label"
  1936. msgid "Shell"
  1937. msgstr "Shell"
  1938. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  1939. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1940. msgctxt "@label"
  1941. msgid "Infill"
  1942. msgstr "Výplň"
  1943. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  1944. msgctxt "@label"
  1945. msgid "Only Show Top Layers"
  1946. msgstr "Zobrazit jen vrchní vrstvy"
  1947. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  1948. msgctxt "@label"
  1949. msgid "Show 5 Detailed Layers On Top"
  1950. msgstr "Zobrazit 5 podrobných vrstev nahoře"
  1951. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1952. msgctxt "@label"
  1953. msgid "Top / Bottom"
  1954. msgstr "Nahoře / Dole"
  1955. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  1956. msgctxt "@label"
  1957. msgid "Inner Wall"
  1958. msgstr "Vnitřní stěna"
  1959. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  1960. msgctxt "@label"
  1961. msgid "min"
  1962. msgstr "min"
  1963. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  1964. msgctxt "@label"
  1965. msgid "max"
  1966. msgstr "max"
  1967. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1968. msgctxt "@title:window"
  1969. msgid "More information on anonymous data collection"
  1970. msgstr "Další informace o anonymním shromažďování údajů"
  1971. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1972. msgctxt "@text:window"
  1973. 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:"
  1974. msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:"
  1975. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1976. msgctxt "@text:window"
  1977. msgid "I don't want to send anonymous data"
  1978. msgstr "Nechci posílat anonymní data"
  1979. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1980. msgctxt "@text:window"
  1981. msgid "Allow sending anonymous data"
  1982. msgstr "Povolit zasílání anonymních dat"
  1983. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1984. msgctxt "@action:button"
  1985. msgid "Back"
  1986. msgstr "Zpět"
  1987. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1988. msgctxt "@label"
  1989. msgid "Compatibility"
  1990. msgstr "Kompatibilita"
  1991. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1992. msgctxt "@label:table_header"
  1993. msgid "Machine"
  1994. msgstr "Zařízení"
  1995. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1996. msgctxt "@label:table_header"
  1997. msgid "Build Plate"
  1998. msgstr "Podložka"
  1999. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  2000. msgctxt "@label:table_header"
  2001. msgid "Support"
  2002. msgstr "Podpora"
  2003. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  2004. msgctxt "@label:table_header"
  2005. msgid "Quality"
  2006. msgstr "Kvalita"
  2007. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  2008. msgctxt "@action:label"
  2009. msgid "Technical Data Sheet"
  2010. msgstr "Technický datasheet"
  2011. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2012. msgctxt "@action:label"
  2013. msgid "Safety Data Sheet"
  2014. msgstr "Datasheet bezpečnosti"
  2015. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2016. msgctxt "@action:label"
  2017. msgid "Printing Guidelines"
  2018. msgstr "Zásady tisku"
  2019. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2020. msgctxt "@action:label"
  2021. msgid "Website"
  2022. msgstr "Webová stránka"
  2023. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2024. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2025. msgctxt "@action:button"
  2026. msgid "Installed"
  2027. msgstr "Nainstalováno"
  2028. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2029. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2030. msgid "<a href='%1'>Log in</a> is required to install or update"
  2031. msgstr "K instalaci nebo aktualizaci je vyžadováno <a href='%1'>přihlášení</a>"
  2032. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2033. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2034. msgid "<a href='%1'>Buy material spools</a>"
  2035. msgstr "<a href='%1'>Koupit cívky materiálu</a>"
  2036. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2037. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2038. msgctxt "@action:button"
  2039. msgid "Update"
  2040. msgstr "Aktualizace"
  2041. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2042. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2043. msgctxt "@action:button"
  2044. msgid "Updating"
  2045. msgstr "Aktualizuji"
  2046. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2047. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2048. msgctxt "@action:button"
  2049. msgid "Updated"
  2050. msgstr "Aktualizování"
  2051. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2052. msgctxt "@label"
  2053. msgid "Premium"
  2054. msgstr "Premium"
  2055. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2056. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2057. msgctxt "@info:tooltip"
  2058. msgid "Go to Web Marketplace"
  2059. msgstr "Přejít na webový obchod"
  2060. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2061. msgctxt "@label"
  2062. msgid "Search materials"
  2063. msgstr "Hledat materiály"
  2064. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2065. msgctxt "@info"
  2066. msgid "You will need to restart Cura before changes in packages have effect."
  2067. msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu."
  2068. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2069. msgctxt "@info:button, %1 is the application name"
  2070. msgid "Quit %1"
  2071. msgstr "Ukončit %1"
  2072. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2073. msgctxt "@title:tab"
  2074. msgid "Plugins"
  2075. msgstr "Zásuvné moduly"
  2076. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2077. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466
  2078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2079. msgctxt "@title:tab"
  2080. msgid "Materials"
  2081. msgstr "Materiály"
  2082. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2083. msgctxt "@title:tab"
  2084. msgid "Installed"
  2085. msgstr "Nainstalování"
  2086. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2087. msgctxt "@label"
  2088. msgid "Will install upon restarting"
  2089. msgstr "Nainstaluje se po restartu"
  2090. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2091. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2092. msgid "<a href='%1'>Log in</a> is required to update"
  2093. msgstr "Pro aktualizace je potřeba se <a href='%1'>přihlásit</a>"
  2094. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2095. msgctxt "@action:button"
  2096. msgid "Downgrade"
  2097. msgstr "Downgrade"
  2098. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2099. msgctxt "@action:button"
  2100. msgid "Uninstall"
  2101. msgstr "Odinstalace"
  2102. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2103. msgctxt "@action:button"
  2104. msgid "Install"
  2105. msgstr "Nainstalovat"
  2106. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2107. msgctxt "@title"
  2108. msgid "Changes from your account"
  2109. msgstr "Změny z vašeho účtu"
  2110. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2111. msgctxt "@button"
  2112. msgid "Dismiss"
  2113. msgstr "Schovat"
  2114. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2116. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2117. msgctxt "@button"
  2118. msgid "Next"
  2119. msgstr "Další"
  2120. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2121. msgctxt "@label"
  2122. msgid "The following packages will be added:"
  2123. msgstr "Následující balíčky byly přidány:"
  2124. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2125. msgctxt "@label"
  2126. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2127. msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:"
  2128. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2129. msgctxt "@title:window"
  2130. msgid "Confirm uninstall"
  2131. msgstr "Potvrdit odinstalaci"
  2132. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2133. msgctxt "@text:window"
  2134. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2135. msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty."
  2136. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2137. msgctxt "@text:window"
  2138. msgid "Materials"
  2139. msgstr "Materiály"
  2140. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2141. msgctxt "@text:window"
  2142. msgid "Profiles"
  2143. msgstr "Profily"
  2144. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2145. msgctxt "@action:button"
  2146. msgid "Confirm"
  2147. msgstr "Potvrdit"
  2148. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2149. msgctxt "@label"
  2150. msgid "You need to accept the license to install the package"
  2151. msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání"
  2152. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2153. msgctxt "@label"
  2154. msgid "Website"
  2155. msgstr "Webová stránka"
  2156. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2157. msgctxt "@label"
  2158. msgid "Email"
  2159. msgstr "Email"
  2160. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2161. msgctxt "@label"
  2162. msgid "Version"
  2163. msgstr "Verze"
  2164. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2165. msgctxt "@label"
  2166. msgid "Last updated"
  2167. msgstr "Naposledy aktualizování"
  2168. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2169. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2170. msgctxt "@label"
  2171. msgid "Brand"
  2172. msgstr "Značka"
  2173. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2174. msgctxt "@label"
  2175. msgid "Downloads"
  2176. msgstr "Ke stažení"
  2177. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2178. msgctxt "@label"
  2179. msgid "Community Contributions"
  2180. msgstr "Soubory od komunity"
  2181. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2182. msgctxt "@label"
  2183. msgid "Community Plugins"
  2184. msgstr "Komunitní zásuvné moduly"
  2185. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2186. msgctxt "@label"
  2187. msgid "Generic Materials"
  2188. msgstr "Obecné materiály"
  2189. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2190. msgctxt "@info"
  2191. msgid "Could not connect to the Cura Package database. Please check your connection."
  2192. msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení."
  2193. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2194. msgctxt "@title:tab"
  2195. msgid "Installed plugins"
  2196. msgstr "Nainstalovaná rozšíření"
  2197. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2198. msgctxt "@info"
  2199. msgid "No plugin has been installed."
  2200. msgstr "Žádné rozšíření nebylo nainstalováno."
  2201. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  2202. msgctxt "@title:tab"
  2203. msgid "Installed materials"
  2204. msgstr "Nainstalované materiály"
  2205. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  2206. msgctxt "@info"
  2207. msgid "No material has been installed."
  2208. msgstr "Žádný materiál nebyl nainstalován."
  2209. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  2210. msgctxt "@title:tab"
  2211. msgid "Bundled plugins"
  2212. msgstr "Zabalená rozšíření"
  2213. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  2214. msgctxt "@title:tab"
  2215. msgid "Bundled materials"
  2216. msgstr "Zabalené materiály"
  2217. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2218. msgctxt "@info"
  2219. msgid "Fetching packages..."
  2220. msgstr "Načítám balíčky..."
  2221. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2222. msgctxt "@description"
  2223. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2224. msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise"
  2225. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2226. msgctxt "@title"
  2227. msgid "Marketplace"
  2228. msgstr "Obchod"
  2229. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2230. msgctxt "@title"
  2231. msgid "Build Plate Leveling"
  2232. msgstr "Vyrovnávání podložky"
  2233. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2234. msgctxt "@label"
  2235. 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."
  2236. msgstr "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit."
  2237. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2238. msgctxt "@label"
  2239. 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."
  2240. msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky."
  2241. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2242. msgctxt "@action:button"
  2243. msgid "Start Build Plate Leveling"
  2244. msgstr "Spustit vyrovnání položky"
  2245. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2246. msgctxt "@action:button"
  2247. msgid "Move to Next Position"
  2248. msgstr "Přesunout na další pozici"
  2249. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2250. msgctxt "@label"
  2251. msgid "Please select any upgrades made to this Ultimaker Original"
  2252. msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker"
  2253. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2254. msgctxt "@label"
  2255. msgid "Heated Build Plate (official kit or self-built)"
  2256. msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)"
  2257. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2258. msgctxt "@title:window"
  2259. msgid "Connect to Networked Printer"
  2260. msgstr "Připojte se k síťové tiskárně"
  2261. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2262. msgctxt "@label"
  2263. 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."
  2264. msgstr "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny."
  2265. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2266. msgctxt "@label"
  2267. msgid "Select your printer from the list below:"
  2268. msgstr "Vyberte svou tiskárnu z nabídky níže:"
  2269. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2270. msgctxt "@action:button"
  2271. msgid "Edit"
  2272. msgstr "Upravit"
  2273. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2274. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2275. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2276. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2277. msgctxt "@action:button"
  2278. msgid "Remove"
  2279. msgstr "Odstranit"
  2280. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2281. msgctxt "@action:button"
  2282. msgid "Refresh"
  2283. msgstr "Aktualizovat"
  2284. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2285. msgctxt "@label"
  2286. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2287. msgstr "Pokud vaše tiskárna není uvedena, přečtěte si <a href='%1'> průvodce řešením problémů se síťovým tiskem </a>"
  2288. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2289. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2290. msgctxt "@label"
  2291. msgid "Type"
  2292. msgstr "Typ"
  2293. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2294. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2295. msgctxt "@label"
  2296. msgid "Firmware version"
  2297. msgstr "Verze firmwaru"
  2298. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2299. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2300. msgctxt "@label"
  2301. msgid "Address"
  2302. msgstr "Adresa"
  2303. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2304. msgctxt "@label"
  2305. msgid "This printer is not set up to host a group of printers."
  2306. msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren."
  2307. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2308. msgctxt "@label"
  2309. msgid "This printer is the host for a group of %1 printers."
  2310. msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1."
  2311. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2312. msgctxt "@label"
  2313. msgid "The printer at this address has not yet responded."
  2314. msgstr "Tiskárna na této adrese dosud neodpověděla."
  2315. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2316. msgctxt "@action:button"
  2317. msgid "Connect"
  2318. msgstr "Připojit"
  2319. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2320. msgctxt "@title:window"
  2321. msgid "Invalid IP address"
  2322. msgstr "Špatná IP adresa"
  2323. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2324. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2325. msgctxt "@text"
  2326. msgid "Please enter a valid IP address."
  2327. msgstr "Prosím zadejte validní IP adresu."
  2328. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2329. msgctxt "@title:window"
  2330. msgid "Printer Address"
  2331. msgstr "Adresa tiskárny"
  2332. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2333. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2334. msgctxt "@label"
  2335. msgid "Enter the IP address of your printer on the network."
  2336. msgstr "Vložte IP adresu vaší tiskárny na síti."
  2337. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2338. msgctxt "@title:window"
  2339. msgid "Configuration Changes"
  2340. msgstr "Změny konfigurace"
  2341. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2342. msgctxt "@action:button"
  2343. msgid "Override"
  2344. msgstr "Override"
  2345. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2346. msgctxt "@label"
  2347. msgid "The assigned printer, %1, requires the following configuration change:"
  2348. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2349. msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
  2350. msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:"
  2351. msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
  2352. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2353. msgctxt "@label"
  2354. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2355. msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu."
  2356. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2357. msgctxt "@label"
  2358. msgid "Change material %1 from %2 to %3."
  2359. msgstr "Změnit materiál %1 z %2 na %3."
  2360. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2361. msgctxt "@label"
  2362. msgid "Load %3 as material %1 (This cannot be overridden)."
  2363. msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)."
  2364. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2365. msgctxt "@label"
  2366. msgid "Change print core %1 from %2 to %3."
  2367. msgstr "Změnit jádro tisku %1 z %2 na %3."
  2368. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2369. msgctxt "@label"
  2370. msgid "Change build plate to %1 (This cannot be overridden)."
  2371. msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)."
  2372. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2373. msgctxt "@label"
  2374. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2375. msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku."
  2376. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2377. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2378. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2379. msgctxt "@label"
  2380. msgid "Glass"
  2381. msgstr "Sklo"
  2382. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2383. msgctxt "@label"
  2384. msgid "Aluminum"
  2385. msgstr "Hliník"
  2386. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2387. msgctxt "@label"
  2388. msgid "Move to top"
  2389. msgstr "Přesunout nahoru"
  2390. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2391. msgctxt "@label"
  2392. msgid "Delete"
  2393. msgstr "Odstranit"
  2394. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2395. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:289
  2396. msgctxt "@label"
  2397. msgid "Resume"
  2398. msgstr "Obnovit"
  2399. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2400. msgctxt "@label"
  2401. msgid "Pausing..."
  2402. msgstr "Pozastavuji..."
  2403. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2404. msgctxt "@label"
  2405. msgid "Resuming..."
  2406. msgstr "Obnovuji..."
  2407. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2408. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284
  2409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:293
  2410. msgctxt "@label"
  2411. msgid "Pause"
  2412. msgstr "Pozastavit"
  2413. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2414. msgctxt "@label"
  2415. msgid "Aborting..."
  2416. msgstr "Ruším..."
  2417. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2418. msgctxt "@label"
  2419. msgid "Abort"
  2420. msgstr "Zrušit"
  2421. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2422. msgctxt "@label %1 is the name of a print job."
  2423. msgid "Are you sure you want to move %1 to the top of the queue?"
  2424. msgstr "Doopravdy chcete posunout %1 na začátek fronty?"
  2425. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2426. msgctxt "@window:title"
  2427. msgid "Move print job to top"
  2428. msgstr "Přesunout tiskovou úlohu nahoru"
  2429. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2430. msgctxt "@label %1 is the name of a print job."
  2431. msgid "Are you sure you want to delete %1?"
  2432. msgstr "Doopravdy chcete odstranit %1?"
  2433. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2434. msgctxt "@window:title"
  2435. msgid "Delete print job"
  2436. msgstr "Odstranit tiskovou úlohu"
  2437. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2438. msgctxt "@label %1 is the name of a print job."
  2439. msgid "Are you sure you want to abort %1?"
  2440. msgstr "Doopravdy chcete zrušit %1?"
  2441. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2442. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:335
  2443. msgctxt "@window:title"
  2444. msgid "Abort print"
  2445. msgstr "Zrušit tisk"
  2446. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2447. msgctxt "@label link to Connect and Cloud interfaces"
  2448. msgid "Manage printer"
  2449. msgstr "Spravovat tiskárnu"
  2450. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2451. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:519
  2452. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2453. msgctxt "@info"
  2454. msgid "Please update your printer's firmware to manage the queue remotely."
  2455. msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně."
  2456. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2457. msgctxt "@label:status"
  2458. msgid "Loading..."
  2459. msgstr "Načítám..."
  2460. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2461. msgctxt "@label:status"
  2462. msgid "Unavailable"
  2463. msgstr "Nedostupný"
  2464. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2465. msgctxt "@label:status"
  2466. msgid "Unreachable"
  2467. msgstr "Nedostupný"
  2468. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2469. msgctxt "@label:status"
  2470. msgid "Idle"
  2471. msgstr "Čekám"
  2472. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:365
  2473. msgctxt "@label:status"
  2474. msgid "Printing"
  2475. msgstr ""
  2476. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:406
  2477. msgctxt "@label"
  2478. msgid "Untitled"
  2479. msgstr "Bez názvu"
  2480. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:427
  2481. msgctxt "@label"
  2482. msgid "Anonymous"
  2483. msgstr "Anonymní"
  2484. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:454
  2485. msgctxt "@label:status"
  2486. msgid "Requires configuration changes"
  2487. msgstr "Jsou nutné změny v nastavení"
  2488. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:492
  2489. msgctxt "@action:button"
  2490. msgid "Details"
  2491. msgstr "Podrobnosti"
  2492. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2493. msgctxt "@label"
  2494. msgid "Unavailable printer"
  2495. msgstr "Nedostupná tiskárna"
  2496. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2497. msgctxt "@label"
  2498. msgid "First available"
  2499. msgstr "První dostupný"
  2500. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2501. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2502. msgctxt "@label:status"
  2503. msgid "Aborted"
  2504. msgstr "Zrušeno"
  2505. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2506. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2507. msgctxt "@label:status"
  2508. msgid "Finished"
  2509. msgstr "Dokončeno"
  2510. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2511. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2512. msgctxt "@label:status"
  2513. msgid "Preparing..."
  2514. msgstr "Připravuji..."
  2515. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2516. msgctxt "@label:status"
  2517. msgid "Aborting..."
  2518. msgstr "Ruším..."
  2519. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2520. msgctxt "@label:status"
  2521. msgid "Pausing..."
  2522. msgstr "Pozastavuji..."
  2523. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2524. msgctxt "@label:status"
  2525. msgid "Paused"
  2526. msgstr "Pozastaveno"
  2527. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2528. msgctxt "@label:status"
  2529. msgid "Resuming..."
  2530. msgstr "Obnovuji..."
  2531. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2532. msgctxt "@label:status"
  2533. msgid "Action required"
  2534. msgstr "Akce vyžadována"
  2535. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2536. msgctxt "@label:status"
  2537. msgid "Finishes %1 at %2"
  2538. msgstr "Dokončuji %1 z %2"
  2539. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2540. msgctxt "@label"
  2541. msgid "Queued"
  2542. msgstr "Zařazeno do fronty"
  2543. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2544. msgctxt "@label link to connect manager"
  2545. msgid "Manage in browser"
  2546. msgstr "Spravovat v prohlížeči"
  2547. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2548. msgctxt "@label"
  2549. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2550. msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte."
  2551. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2552. msgctxt "@label"
  2553. msgid "Print jobs"
  2554. msgstr "Tiskové úlohy"
  2555. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2556. msgctxt "@label"
  2557. msgid "Total print time"
  2558. msgstr "Celkový čas tisknutí"
  2559. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2560. msgctxt "@label"
  2561. msgid "Waiting for"
  2562. msgstr "Čekám na"
  2563. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  2564. msgctxt "@title:window"
  2565. msgid "Print over network"
  2566. msgstr "Tisk přes síť"
  2567. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  2568. msgctxt "@action:button"
  2569. msgid "Print"
  2570. msgstr "Tisk"
  2571. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  2572. msgctxt "@label"
  2573. msgid "Printer selection"
  2574. msgstr "Výběr tiskárny"
  2575. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2576. msgctxt "@action:button"
  2577. msgid "Sign in"
  2578. msgstr "Přihlásit se"
  2579. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  2580. msgctxt "@label"
  2581. msgid "Your key to connected 3D printing"
  2582. msgstr "Váš klíč k propojenému 3D tisku"
  2583. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  2584. msgctxt "@text"
  2585. msgid ""
  2586. "- Customize your experience with more print profiles and plugins\n"
  2587. "- Stay flexible by syncing your setup and loading it anywhere\n"
  2588. "- Increase efficiency with a remote workflow on Ultimaker printers"
  2589. msgstr ""
  2590. "- Přizpůsobte si své zážitky pomocí více profilů tisku a modulů\n"
  2591. "- Zůstaňte flexibilní díky synchronizaci nastavení a přístupu k ní kdekoli\n"
  2592. "- Zvyšte efektivitu pomocí vzdáleného pracovního postupu na tiskárnách Ultimaker"
  2593. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  2594. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:142
  2595. msgctxt "@button"
  2596. msgid "Create account"
  2597. msgstr "Vytvořit účet"
  2598. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
  2599. msgctxt "@label"
  2600. msgid "Checking..."
  2601. msgstr "Kontroluji..."
  2602. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
  2603. msgctxt "@label"
  2604. msgid "Account synced"
  2605. msgstr "Účet byl synchronizován"
  2606. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
  2607. msgctxt "@label"
  2608. msgid "Something went wrong..."
  2609. msgstr "Nastala chyba..."
  2610. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
  2611. msgctxt "@button"
  2612. msgid "Install pending updates"
  2613. msgstr "Nainstalujte čekající aktualizace"
  2614. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
  2615. msgctxt "@button"
  2616. msgid "Check for account updates"
  2617. msgstr "Zkontrolovat aktualizace pro účet"
  2618. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
  2619. msgctxt "@label The argument is a timestamp"
  2620. msgid "Last update: %1"
  2621. msgstr "Poslední aktualizace: %1"
  2622. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
  2623. msgctxt "@button"
  2624. msgid "Ultimaker Account"
  2625. msgstr "Ultimaker Account"
  2626. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
  2627. msgctxt "@button"
  2628. msgid "Sign Out"
  2629. msgstr "Odhlásit se"
  2630. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2631. msgctxt "@label"
  2632. msgid "No time estimation available"
  2633. msgstr "Žádný odhad času není dostupný"
  2634. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2635. msgctxt "@label"
  2636. msgid "No cost estimation available"
  2637. msgstr "Žádná cena není dostupná"
  2638. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2639. msgctxt "@button"
  2640. msgid "Preview"
  2641. msgstr "Náhled"
  2642. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2643. msgctxt "@label"
  2644. msgid "Time estimation"
  2645. msgstr "Odhad času"
  2646. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2647. msgctxt "@label"
  2648. msgid "Material estimation"
  2649. msgstr "Odhad materiálu"
  2650. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2651. msgctxt "@label m for meter"
  2652. msgid "%1m"
  2653. msgstr "%1m"
  2654. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2655. msgctxt "@label g for grams"
  2656. msgid "%1g"
  2657. msgstr "%1g"
  2658. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2659. msgctxt "@label:PrintjobStatus"
  2660. msgid "Slicing..."
  2661. msgstr "Slicuji..."
  2662. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  2663. msgctxt "@label:PrintjobStatus"
  2664. msgid "Unable to slice"
  2665. msgstr "Nelze slicovat"
  2666. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2667. msgctxt "@button"
  2668. msgid "Processing"
  2669. msgstr "Zpracovává se"
  2670. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2671. msgctxt "@button"
  2672. msgid "Slice"
  2673. msgstr "Slicovat"
  2674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  2675. msgctxt "@label"
  2676. msgid "Start the slicing process"
  2677. msgstr "Začít proces slicování"
  2678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  2679. msgctxt "@button"
  2680. msgid "Cancel"
  2681. msgstr "Zrušit"
  2682. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:82
  2683. msgctxt "@action:inmenu"
  2684. msgid "Show Online Troubleshooting Guide"
  2685. msgstr "Zobrazit online průvodce řešením problémů"
  2686. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:89
  2687. msgctxt "@action:inmenu"
  2688. msgid "Toggle Full Screen"
  2689. msgstr "Přepnout zobrazení na celou obrazovku"
  2690. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:97
  2691. msgctxt "@action:inmenu"
  2692. msgid "Exit Full Screen"
  2693. msgstr "Ukončit zobrazení na celou obrazovku"
  2694. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:104
  2695. msgctxt "@action:inmenu menubar:edit"
  2696. msgid "&Undo"
  2697. msgstr "&Vrátit"
  2698. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:114
  2699. msgctxt "@action:inmenu menubar:edit"
  2700. msgid "&Redo"
  2701. msgstr "&Znovu"
  2702. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:124
  2703. msgctxt "@action:inmenu menubar:file"
  2704. msgid "&Quit"
  2705. msgstr "&Ukončit"
  2706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:132
  2707. msgctxt "@action:inmenu menubar:view"
  2708. msgid "3D View"
  2709. msgstr "3D Pohled"
  2710. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139
  2711. msgctxt "@action:inmenu menubar:view"
  2712. msgid "Front View"
  2713. msgstr "Přední pohled"
  2714. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146
  2715. msgctxt "@action:inmenu menubar:view"
  2716. msgid "Top View"
  2717. msgstr "Pohled ze shora"
  2718. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153
  2719. msgctxt "@action:inmenu menubar:view"
  2720. msgid "Left Side View"
  2721. msgstr "Pohled z pravé strany"
  2722. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160
  2723. msgctxt "@action:inmenu menubar:view"
  2724. msgid "Right Side View"
  2725. msgstr "Pohled z pravé strany"
  2726. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167
  2727. msgctxt "@action:inmenu"
  2728. msgid "Configure Cura..."
  2729. msgstr "Konfigurovat Cura..."
  2730. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174
  2731. msgctxt "@action:inmenu menubar:printer"
  2732. msgid "&Add Printer..."
  2733. msgstr "Přidat t&iskárnu..."
  2734. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:180
  2735. msgctxt "@action:inmenu menubar:printer"
  2736. msgid "Manage Pr&inters..."
  2737. msgstr "Spravovat &tiskárny..."
  2738. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:187
  2739. msgctxt "@action:inmenu"
  2740. msgid "Manage Materials..."
  2741. msgstr "Spravovat materiály..."
  2742. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
  2743. msgctxt "@action:inmenu"
  2744. msgid "Add more materials from Marketplace"
  2745. msgstr "Přidat více materiálů z obchodu"
  2746. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:202
  2747. msgctxt "@action:inmenu menubar:profile"
  2748. msgid "&Update profile with current settings/overrides"
  2749. msgstr "&Aktualizovat profil s aktuálními nastaveními/přepsáními"
  2750. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2751. msgctxt "@action:inmenu menubar:profile"
  2752. msgid "&Discard current changes"
  2753. msgstr "Smazat aktuální &změny"
  2754. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:222
  2755. msgctxt "@action:inmenu menubar:profile"
  2756. msgid "&Create profile from current settings/overrides..."
  2757. msgstr "&Vytvořit profil z aktuálního nastavení/přepsání."
  2758. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:228
  2759. msgctxt "@action:inmenu menubar:profile"
  2760. msgid "Manage Profiles..."
  2761. msgstr "Spravovat profily..."
  2762. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
  2763. msgctxt "@action:inmenu menubar:help"
  2764. msgid "Show Online &Documentation"
  2765. msgstr "Zobrazit online &dokumentaci"
  2766. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
  2767. msgctxt "@action:inmenu menubar:help"
  2768. msgid "Report a &Bug"
  2769. msgstr "Nahlásit &chybu"
  2770. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
  2771. msgctxt "@action:inmenu menubar:help"
  2772. msgid "What's New"
  2773. msgstr "Co je nového"
  2774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:258
  2775. msgctxt "@action:inmenu menubar:help"
  2776. msgid "About..."
  2777. msgstr "Více..."
  2778. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265
  2779. msgctxt "@action:inmenu menubar:edit"
  2780. msgid "Delete Selected Model"
  2781. msgid_plural "Delete Selected Models"
  2782. msgstr[0] "Smazat vybraný model"
  2783. msgstr[1] "Smazat vybrané modely"
  2784. msgstr[2] "Smazat vybrané modely"
  2785. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2786. msgctxt "@action:inmenu menubar:edit"
  2787. msgid "Center Selected Model"
  2788. msgid_plural "Center Selected Models"
  2789. msgstr[0] "Centrovat vybraný model"
  2790. msgstr[1] "Centrovat vybrané modely"
  2791. msgstr[2] "Centrovat vybrané modely"
  2792. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:284
  2793. msgctxt "@action:inmenu menubar:edit"
  2794. msgid "Multiply Selected Model"
  2795. msgid_plural "Multiply Selected Models"
  2796. msgstr[0] "Násobit vybraný model"
  2797. msgstr[1] "Násobit vybrané modely"
  2798. msgstr[2] "Násobit vybrané modely"
  2799. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:293
  2800. msgctxt "@action:inmenu"
  2801. msgid "Delete Model"
  2802. msgstr "Odstranit model"
  2803. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
  2804. msgctxt "@action:inmenu"
  2805. msgid "Ce&nter Model on Platform"
  2806. msgstr "&Centerovat model na podložce"
  2807. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:307
  2808. msgctxt "@action:inmenu menubar:edit"
  2809. msgid "&Group Models"
  2810. msgstr "Sesk&upit modely"
  2811. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:327
  2812. msgctxt "@action:inmenu menubar:edit"
  2813. msgid "Ungroup Models"
  2814. msgstr "Rozdělit modely"
  2815. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:337
  2816. msgctxt "@action:inmenu menubar:edit"
  2817. msgid "&Merge Models"
  2818. msgstr "Spo&jit modely"
  2819. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:347
  2820. msgctxt "@action:inmenu"
  2821. msgid "&Multiply Model..."
  2822. msgstr "Náso&bení modelu..."
  2823. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:354
  2824. msgctxt "@action:inmenu menubar:edit"
  2825. msgid "Select All Models"
  2826. msgstr "Vybrat všechny modely"
  2827. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:364
  2828. msgctxt "@action:inmenu menubar:edit"
  2829. msgid "Clear Build Plate"
  2830. msgstr "Vyčistit podložku"
  2831. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:374
  2832. msgctxt "@action:inmenu menubar:file"
  2833. msgid "Reload All Models"
  2834. msgstr "Znovu načíst všechny modely"
  2835. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383
  2836. msgctxt "@action:inmenu menubar:edit"
  2837. msgid "Arrange All Models To All Build Plates"
  2838. msgstr "Uspořádejte všechny modely do všechpodložek"
  2839. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:390
  2840. msgctxt "@action:inmenu menubar:edit"
  2841. msgid "Arrange All Models"
  2842. msgstr "Uspořádat všechny modely"
  2843. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
  2844. msgctxt "@action:inmenu menubar:edit"
  2845. msgid "Arrange Selection"
  2846. msgstr "Uspořádat selekci"
  2847. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2848. msgctxt "@action:inmenu menubar:edit"
  2849. msgid "Reset All Model Positions"
  2850. msgstr "Resetovat všechny pozice modelů"
  2851. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412
  2852. msgctxt "@action:inmenu menubar:edit"
  2853. msgid "Reset All Model Transformations"
  2854. msgstr "Resetovat všechny transformace modelů"
  2855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:419
  2856. msgctxt "@action:inmenu menubar:file"
  2857. msgid "&Open File(s)..."
  2858. msgstr "&Otevřít soubor(y)..."
  2859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427
  2860. msgctxt "@action:inmenu menubar:file"
  2861. msgid "&New Project..."
  2862. msgstr "&Nový projekt..."
  2863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434
  2864. msgctxt "@action:inmenu menubar:help"
  2865. msgid "Show Configuration Folder"
  2866. msgstr "Zobrazit složku s konfigurací"
  2867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:441
  2868. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:538
  2869. msgctxt "@action:menu"
  2870. msgid "Configure setting visibility..."
  2871. msgstr "Konfigurovat viditelnost nastavení..."
  2872. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:448
  2873. msgctxt "@action:menu"
  2874. msgid "&Marketplace"
  2875. msgstr "Mark&et"
  2876. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:266
  2877. msgctxt "@label"
  2878. msgid "This package will be installed after restarting."
  2879. msgstr "Tento balíček bude nainstalován po restartování."
  2880. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
  2881. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2882. msgctxt "@title:tab"
  2883. msgid "General"
  2884. msgstr "Obecné"
  2885. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:462
  2886. msgctxt "@title:tab"
  2887. msgid "Settings"
  2888. msgstr "Nastavení"
  2889. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:464
  2890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2891. msgctxt "@title:tab"
  2892. msgid "Printers"
  2893. msgstr "Tiskárny"
  2894. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468
  2895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2896. msgctxt "@title:tab"
  2897. msgid "Profiles"
  2898. msgstr "Profily"
  2899. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:587
  2900. msgctxt "@title:window %1 is the application name"
  2901. msgid "Closing %1"
  2902. msgstr "Zavírám %1"
  2903. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:588
  2904. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:600
  2905. msgctxt "@label %1 is the application name"
  2906. msgid "Are you sure you want to exit %1?"
  2907. msgstr "Doopravdy chcete zavřít %1?"
  2908. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:638
  2909. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  2910. msgctxt "@title:window"
  2911. msgid "Open file(s)"
  2912. msgstr "Otevřít soubor(y)"
  2913. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:744
  2914. msgctxt "@window:title"
  2915. msgid "Install Package"
  2916. msgstr "Nainstalovat balíček"
  2917. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:752
  2918. msgctxt "@title:window"
  2919. msgid "Open File(s)"
  2920. msgstr "Otevřít Soubor(y)"
  2921. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:755
  2922. msgctxt "@text:window"
  2923. 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."
  2924. msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden."
  2925. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:858
  2926. msgctxt "@title:window"
  2927. msgid "Add Printer"
  2928. msgstr "Přidat tiskárnu"
  2929. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:866
  2930. msgctxt "@title:window"
  2931. msgid "What's New"
  2932. msgstr "Co je nového"
  2933. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2934. msgctxt "@title:window The argument is the application name."
  2935. msgid "About %1"
  2936. msgstr "O %1"
  2937. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2938. msgctxt "@label"
  2939. msgid "version: %1"
  2940. msgstr "verze: %1"
  2941. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2942. msgctxt "@label"
  2943. msgid "End-to-end solution for fused filament 3D printing."
  2944. msgstr "Komplexní řešení pro 3D tisk z taveného filamentu."
  2945. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2946. msgctxt "@info:credit"
  2947. msgid ""
  2948. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2949. "Cura proudly uses the following open source projects:"
  2950. msgstr ""
  2951. "Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n"
  2952. "Cura hrdě používá následující open source projekty:"
  2953. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2954. msgctxt "@label"
  2955. msgid "Graphical user interface"
  2956. msgstr "Grafické uživatelské prostředí"
  2957. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2958. msgctxt "@label"
  2959. msgid "Application framework"
  2960. msgstr "Aplikační framework"
  2961. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2962. msgctxt "@label"
  2963. msgid "G-code generator"
  2964. msgstr "Generátor G kódu"
  2965. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2966. msgctxt "@label"
  2967. msgid "Interprocess communication library"
  2968. msgstr "Meziprocesní komunikační knihovna"
  2969. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2970. msgctxt "@label"
  2971. msgid "Programming language"
  2972. msgstr "Programovací jazyk"
  2973. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2974. msgctxt "@label"
  2975. msgid "GUI framework"
  2976. msgstr "GUI framework"
  2977. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2978. msgctxt "@label"
  2979. msgid "GUI framework bindings"
  2980. msgstr "Propojení GUI frameworku"
  2981. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2982. msgctxt "@label"
  2983. msgid "C/C++ Binding library"
  2984. msgstr "Binding knihovna C/C++"
  2985. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2986. msgctxt "@label"
  2987. msgid "Data interchange format"
  2988. msgstr "Formát výměny dat"
  2989. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2990. msgctxt "@label"
  2991. msgid "Support library for scientific computing"
  2992. msgstr "Podpůrná knihovna pro vědecké výpočty"
  2993. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2994. msgctxt "@label"
  2995. msgid "Support library for faster math"
  2996. msgstr "Podpůrný knihovna pro rychlejší matematické výpočty"
  2997. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2998. msgctxt "@label"
  2999. msgid "Support library for handling STL files"
  3000. msgstr "Podpůrná knihovna pro práci se soubory STL"
  3001. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3002. msgctxt "@label"
  3003. msgid "Support library for handling planar objects"
  3004. msgstr "Podpůrná knihovna pro manipulaci s planárními objekty"
  3005. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3006. msgctxt "@label"
  3007. msgid "Support library for handling triangular meshes"
  3008. msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi"
  3009. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3010. msgctxt "@label"
  3011. msgid "Support library for handling 3MF files"
  3012. msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory"
  3013. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3014. msgctxt "@label"
  3015. msgid "Support library for file metadata and streaming"
  3016. msgstr "Podpůrná knihovna pro metadata souborů a streaming"
  3017. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3018. msgctxt "@label"
  3019. msgid "Serial communication library"
  3020. msgstr "Knihovna pro sériovou komunikaci"
  3021. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3022. msgctxt "@label"
  3023. msgid "ZeroConf discovery library"
  3024. msgstr "Knihovna ZeroConf discovery"
  3025. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3026. msgctxt "@label"
  3027. msgid "Polygon clipping library"
  3028. msgstr "Knihovna pro výstřižky z mnohoúhelníků"
  3029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3030. msgctxt "@Label"
  3031. msgid "Static type checker for Python"
  3032. msgstr "Kontrola statických typů pro Python"
  3033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3034. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3035. msgctxt "@Label"
  3036. msgid "Root Certificates for validating SSL trustworthiness"
  3037. msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL"
  3038. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3039. msgctxt "@Label"
  3040. msgid "Python Error tracking library"
  3041. msgstr "Chyba v Python trackovací knihovně"
  3042. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3043. msgctxt "@label"
  3044. msgid "Polygon packing library, developed by Prusa Research"
  3045. msgstr ""
  3046. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3047. msgctxt "@label"
  3048. msgid "Python bindings for libnest2d"
  3049. msgstr ""
  3050. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3051. msgctxt "@label"
  3052. msgid "Font"
  3053. msgstr "Font"
  3054. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3055. msgctxt "@label"
  3056. msgid "SVG icons"
  3057. msgstr "Ikony SVG"
  3058. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3059. msgctxt "@label"
  3060. msgid "Linux cross-distribution application deployment"
  3061. msgstr "Linux cross-distribution application deployment"
  3062. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3063. msgctxt "@title:window"
  3064. msgid "Open project file"
  3065. msgstr "Otevřít soubor s projektem"
  3066. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  3067. msgctxt "@text:window"
  3068. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3069. msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?"
  3070. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  3071. msgctxt "@text:window"
  3072. msgid "Remember my choice"
  3073. msgstr "Pamatuj si moji volbu"
  3074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  3075. msgctxt "@action:button"
  3076. msgid "Open as project"
  3077. msgstr "Otevřít jako projekt"
  3078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  3079. msgctxt "@action:button"
  3080. msgid "Import models"
  3081. msgstr "Importovat modely"
  3082. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3083. msgctxt "@title:window"
  3084. msgid "Discard or Keep changes"
  3085. msgstr "Smazat nebo nechat změny"
  3086. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3087. msgctxt "@text:window, %1 is a profile name"
  3088. msgid ""
  3089. "You have customized some profile settings.\n"
  3090. "Would you like to Keep these changed settings after switching profiles?\n"
  3091. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3092. msgstr ""
  3093. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  3094. msgctxt "@title:column"
  3095. msgid "Profile settings"
  3096. msgstr "Nastavení profilu"
  3097. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3098. msgctxt "@title:column"
  3099. msgid "Current changes"
  3100. msgstr "Aktuální změny"
  3101. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  3102. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:747
  3103. msgctxt "@option:discardOrKeep"
  3104. msgid "Always ask me this"
  3105. msgstr "Vždy se zeptat"
  3106. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3107. msgctxt "@option:discardOrKeep"
  3108. msgid "Discard and never ask again"
  3109. msgstr "Smazat a už se nikdy neptat"
  3110. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3111. msgctxt "@option:discardOrKeep"
  3112. msgid "Keep and never ask again"
  3113. msgstr "Nechat a už se nikdy neptat"
  3114. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  3115. msgctxt "@action:button"
  3116. msgid "Discard changes"
  3117. msgstr "Smazat změny"
  3118. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  3119. msgctxt "@action:button"
  3120. msgid "Keep changes"
  3121. msgstr "Zanechat změny"
  3122. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3123. msgctxt "@text:window"
  3124. 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?"
  3125. msgstr "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?"
  3126. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  3127. msgctxt "@action:button"
  3128. msgid "Import all as models"
  3129. msgstr "Importovat vše jako modely"
  3130. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3131. msgctxt "@title:window"
  3132. msgid "Save Project"
  3133. msgstr "Uložit projekt"
  3134. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3135. msgctxt "@action:label"
  3136. msgid "Extruder %1"
  3137. msgstr "Extruder %1"
  3138. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3139. msgctxt "@action:label"
  3140. msgid "%1 & material"
  3141. msgstr "%1 & materiál"
  3142. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3143. msgctxt "@action:label"
  3144. msgid "Material"
  3145. msgstr "Materiál"
  3146. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3147. msgctxt "@action:label"
  3148. msgid "Don't show project summary on save again"
  3149. msgstr "Nezobrazovat souhrn projektu při uložení znovu"
  3150. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3151. msgctxt "@action:button"
  3152. msgid "Save"
  3153. msgstr "Uložit"
  3154. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3155. msgctxt "@label %1 is filled in with the name of an extruder"
  3156. msgid "Print Selected Model with %1"
  3157. msgid_plural "Print Selected Models with %1"
  3158. msgstr[0] "Tisknout vybraný model pomocí %1"
  3159. msgstr[1] "Tisknout vybraný model pomocí %1"
  3160. msgstr[2] "Tisknout vybraný model pomocí %1"
  3161. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  3162. msgctxt "@text Print job name"
  3163. msgid "Untitled"
  3164. msgstr "Bez názvu"
  3165. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  3166. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  3167. msgctxt "@title:menu menubar:toplevel"
  3168. msgid "&File"
  3169. msgstr "&Soubor"
  3170. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  3171. msgctxt "@title:menu menubar:toplevel"
  3172. msgid "&Edit"
  3173. msgstr "Upr&avit"
  3174. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  3175. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3176. msgctxt "@title:menu menubar:toplevel"
  3177. msgid "&View"
  3178. msgstr "Po&hled"
  3179. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  3180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3181. msgctxt "@title:menu menubar:toplevel"
  3182. msgid "&Settings"
  3183. msgstr "Nasta&vení"
  3184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  3185. msgctxt "@title:menu menubar:toplevel"
  3186. msgid "E&xtensions"
  3187. msgstr "D&oplňky"
  3188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  3189. msgctxt "@title:menu menubar:toplevel"
  3190. msgid "P&references"
  3191. msgstr "P&reference"
  3192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  3193. msgctxt "@title:menu menubar:toplevel"
  3194. msgid "&Help"
  3195. msgstr "Po&moc"
  3196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  3197. msgctxt "@title:window"
  3198. msgid "New project"
  3199. msgstr "Nový projekt"
  3200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  3201. msgctxt "@info:question"
  3202. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3203. msgstr "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  3205. msgctxt "@action:button"
  3206. msgid "Marketplace"
  3207. msgstr "Obchod"
  3208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3209. msgctxt "@header"
  3210. msgid "Configurations"
  3211. msgstr "Konfigurace"
  3212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3213. msgctxt "@label"
  3214. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3215. msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil."
  3216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3217. msgctxt "@label"
  3218. msgid "Marketplace"
  3219. msgstr "Obchod"
  3220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3221. msgctxt "@label"
  3222. msgid "Loading available configurations from the printer..."
  3223. msgstr "Načítání dostupných konfigurací z tiskárny ..."
  3224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3225. msgctxt "@label"
  3226. msgid "The configurations are not available because the printer is disconnected."
  3227. msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena."
  3228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  3229. msgctxt "@label"
  3230. msgid "Select configuration"
  3231. msgstr "Vybrat konfiguraci"
  3232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  3233. msgctxt "@label"
  3234. msgid "Configurations"
  3235. msgstr "Konfigurace"
  3236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3237. msgctxt "@header"
  3238. msgid "Custom"
  3239. msgstr "Vlastní"
  3240. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3241. msgctxt "@label"
  3242. msgid "Printer"
  3243. msgstr "Tiskárna"
  3244. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3245. msgctxt "@label"
  3246. msgid "Enabled"
  3247. msgstr "Povoleno"
  3248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3249. msgctxt "@label"
  3250. msgid "Material"
  3251. msgstr "Materiál"
  3252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  3253. msgctxt "@label"
  3254. msgid "Use glue for better adhesion with this material combination."
  3255. msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo."
  3256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3257. msgctxt "@label"
  3258. msgid "Print Selected Model With:"
  3259. msgid_plural "Print Selected Models With:"
  3260. msgstr[0] "Tisknout vybraný model pomocí:"
  3261. msgstr[1] "Tisknout vybrané modely pomocí:"
  3262. msgstr[2] "Tisknout vybrané modely pomocí:"
  3263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3264. msgctxt "@title:window"
  3265. msgid "Multiply Selected Model"
  3266. msgid_plural "Multiply Selected Models"
  3267. msgstr[0] "Násobit vybraný model"
  3268. msgstr[1] "Násobit vybrané modele"
  3269. msgstr[2] "Násobit vybrané modele"
  3270. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3271. msgctxt "@label"
  3272. msgid "Number of Copies"
  3273. msgstr "Počet kopií"
  3274. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  3275. msgctxt "@title:menu menubar:file"
  3276. msgid "&Save Project..."
  3277. msgstr "&Uložit projekt..."
  3278. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  3279. msgctxt "@title:menu menubar:file"
  3280. msgid "&Export..."
  3281. msgstr "&Exportovat..."
  3282. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  3283. msgctxt "@action:inmenu menubar:file"
  3284. msgid "Export Selection..."
  3285. msgstr "Výběr exportu..."
  3286. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3287. msgctxt "@label:category menu label"
  3288. msgid "Material"
  3289. msgstr "Materiál"
  3290. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3291. msgctxt "@label:category menu label"
  3292. msgid "Favorites"
  3293. msgstr "Oblíbené"
  3294. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3295. msgctxt "@label:category menu label"
  3296. msgid "Generic"
  3297. msgstr "Obecné"
  3298. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3299. msgctxt "@label:category menu label"
  3300. msgid "Network enabled printers"
  3301. msgstr "Tiskárny s povolenou sítí"
  3302. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3303. msgctxt "@label:category menu label"
  3304. msgid "Local printers"
  3305. msgstr "Lokální tiskárny"
  3306. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3307. msgctxt "@title:menu menubar:file"
  3308. msgid "Open &Recent"
  3309. msgstr "Otevřít &Poslední"
  3310. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3311. msgctxt "@title:menu menubar:settings"
  3312. msgid "&Printer"
  3313. msgstr "&Tiskárna"
  3314. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3315. msgctxt "@title:menu"
  3316. msgid "&Material"
  3317. msgstr "&Materiál"
  3318. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3319. msgctxt "@action:inmenu"
  3320. msgid "Set as Active Extruder"
  3321. msgstr "Nastavit jako aktivní extruder"
  3322. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3323. msgctxt "@action:inmenu"
  3324. msgid "Enable Extruder"
  3325. msgstr "Povolit extuder"
  3326. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3327. msgctxt "@action:inmenu"
  3328. msgid "Disable Extruder"
  3329. msgstr "Zakázat Extruder"
  3330. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3331. msgctxt "@action:inmenu"
  3332. msgid "Visible Settings"
  3333. msgstr "Viditelná nastavení"
  3334. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3335. msgctxt "@action:inmenu"
  3336. msgid "Collapse All Categories"
  3337. msgstr "Sbalit všechny kategorie"
  3338. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  3339. msgctxt "@action:inmenu"
  3340. msgid "Manage Setting Visibility..."
  3341. msgstr "Spravovat nastavení viditelnosti ..."
  3342. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3343. msgctxt "@action:inmenu menubar:view"
  3344. msgid "&Camera position"
  3345. msgstr "Pozice &kamery"
  3346. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  3347. msgctxt "@action:inmenu menubar:view"
  3348. msgid "Camera view"
  3349. msgstr "Pohled kamery"
  3350. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  3351. msgctxt "@action:inmenu menubar:view"
  3352. msgid "Perspective"
  3353. msgstr "Perspektiva"
  3354. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  3355. msgctxt "@action:inmenu menubar:view"
  3356. msgid "Orthographic"
  3357. msgstr "Ortografický"
  3358. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  3359. msgctxt "@action:inmenu menubar:view"
  3360. msgid "&Build plate"
  3361. msgstr "Pod&ložka"
  3362. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3363. msgctxt "@label:MonitorStatus"
  3364. msgid "Not connected to a printer"
  3365. msgstr "Nepřipojen k tiskárně"
  3366. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3367. msgctxt "@label:MonitorStatus"
  3368. msgid "Printer does not accept commands"
  3369. msgstr "Tiskárna nepřijímá příkazy"
  3370. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3371. msgctxt "@label:MonitorStatus"
  3372. msgid "In maintenance. Please check the printer"
  3373. msgstr "V údržbě. Prosím zkontrolujte tiskíárnu"
  3374. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3375. msgctxt "@label:MonitorStatus"
  3376. msgid "Lost connection with the printer"
  3377. msgstr "Ztráta spojení s tiskárnou"
  3378. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3379. msgctxt "@label:MonitorStatus"
  3380. msgid "Printing..."
  3381. msgstr "Tisknu..."
  3382. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3383. msgctxt "@label:MonitorStatus"
  3384. msgid "Paused"
  3385. msgstr "Pozastaveno"
  3386. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3387. msgctxt "@label:MonitorStatus"
  3388. msgid "Preparing..."
  3389. msgstr "Připravuji..."
  3390. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3391. msgctxt "@label:MonitorStatus"
  3392. msgid "Please remove the print"
  3393. msgstr "Prosím odstraňte výtisk"
  3394. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:325
  3395. msgctxt "@label"
  3396. msgid "Abort Print"
  3397. msgstr "Zrušit tisk"
  3398. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:337
  3399. msgctxt "@label"
  3400. msgid "Are you sure you want to abort the print?"
  3401. msgstr "Jste si jist, že chcete zrušit tisknutí?"
  3402. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
  3403. msgctxt "@label"
  3404. msgid "Is printed as support."
  3405. msgstr "Je tisknuto jako podpora."
  3406. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
  3407. msgctxt "@label"
  3408. msgid "Other models overlapping with this model are modified."
  3409. msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny."
  3410. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
  3411. msgctxt "@label"
  3412. msgid "Infill overlapping with this model is modified."
  3413. msgstr "Výplň překrývající se s tímto modelem byla modifikována."
  3414. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
  3415. msgctxt "@label"
  3416. msgid "Overlaps with this model are not supported."
  3417. msgstr "Přesahy na tomto modelu nejsou podporovány."
  3418. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
  3419. msgctxt "@label %1 is the number of settings it overrides."
  3420. msgid "Overrides %1 setting."
  3421. msgid_plural "Overrides %1 settings."
  3422. msgstr[0] ""
  3423. msgstr[1] ""
  3424. msgstr[2] ""
  3425. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3426. msgctxt "@label"
  3427. msgid "Object list"
  3428. msgstr "Seznam objektů"
  3429. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3430. msgctxt "@label"
  3431. msgid "Interface"
  3432. msgstr "Rozhranní"
  3433. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3434. msgctxt "@label"
  3435. msgid "Currency:"
  3436. msgstr "Měna:"
  3437. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3438. msgctxt "@label"
  3439. msgid "Theme:"
  3440. msgstr "Styl:"
  3441. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3442. msgctxt "@label"
  3443. msgid "You will need to restart the application for these changes to have effect."
  3444. msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat."
  3445. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3446. msgctxt "@info:tooltip"
  3447. msgid "Slice automatically when changing settings."
  3448. msgstr "Slicovat automaticky při změně nastavení."
  3449. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3450. msgctxt "@option:check"
  3451. msgid "Slice automatically"
  3452. msgstr "Slicovat automaticky"
  3453. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3454. msgctxt "@label"
  3455. msgid "Viewport behavior"
  3456. msgstr "Chování výřezu"
  3457. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3458. msgctxt "@info:tooltip"
  3459. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3460. msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta."
  3461. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3462. msgctxt "@option:check"
  3463. msgid "Display overhang"
  3464. msgstr "Zobrazit převis"
  3465. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3466. msgctxt "@info:tooltip"
  3467. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3468. msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie."
  3469. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3470. msgctxt "@option:check"
  3471. msgid "Display model errors"
  3472. msgstr "Zobrazovat chyby modelu"
  3473. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3474. msgctxt "@info:tooltip"
  3475. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3476. msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu"
  3477. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3478. msgctxt "@action:button"
  3479. msgid "Center camera when item is selected"
  3480. msgstr "Vycentrovat kameru pokud je vybrána položka"
  3481. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3482. msgctxt "@info:tooltip"
  3483. msgid "Should the default zoom behavior of cura be inverted?"
  3484. msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?"
  3485. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3486. msgctxt "@action:button"
  3487. msgid "Invert the direction of camera zoom."
  3488. msgstr "Obrátit směr přibližování kamery."
  3489. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3490. msgctxt "@info:tooltip"
  3491. msgid "Should zooming move in the direction of the mouse?"
  3492. msgstr "Mělo by se přibližování pohybovat ve směru myši?"
  3493. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3494. msgctxt "@info:tooltip"
  3495. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3496. msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši."
  3497. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3498. msgctxt "@action:button"
  3499. msgid "Zoom toward mouse direction"
  3500. msgstr "Přiblížit směrem k směru myši"
  3501. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3502. msgctxt "@info:tooltip"
  3503. msgid "Should models on the platform be moved so that they no longer intersect?"
  3504. msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?"
  3505. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3506. msgctxt "@option:check"
  3507. msgid "Ensure models are kept apart"
  3508. msgstr "Zajistěte, aby modely byly odděleny"
  3509. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3510. msgctxt "@info:tooltip"
  3511. msgid "Should models on the platform be moved down to touch the build plate?"
  3512. msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?"
  3513. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3514. msgctxt "@option:check"
  3515. msgid "Automatically drop models to the build plate"
  3516. msgstr "Automaticky přetáhnout modely na podložku"
  3517. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3518. msgctxt "@info:tooltip"
  3519. msgid "Show caution message in g-code reader."
  3520. msgstr "Zobrazte v čtečce g-kódu varovnou zprávu."
  3521. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3522. msgctxt "@option:check"
  3523. msgid "Caution message in g-code reader"
  3524. msgstr "Upozornění ve čtečce G-kódu"
  3525. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3526. msgctxt "@info:tooltip"
  3527. msgid "Should layer be forced into compatibility mode?"
  3528. msgstr "Měla by být vrstva vynucena do režimu kompatibility?"
  3529. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3530. msgctxt "@option:check"
  3531. msgid "Force layer view compatibility mode (restart required)"
  3532. msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)"
  3533. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3534. msgctxt "@info:tooltip"
  3535. msgid "Should Cura open at the location it was closed?"
  3536. msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?"
  3537. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3538. msgctxt "@option:check"
  3539. msgid "Restore window position on start"
  3540. msgstr "Při zapnutí obnovit pozici okna"
  3541. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3542. msgctxt "@info:tooltip"
  3543. msgid "What type of camera rendering should be used?"
  3544. msgstr "Jaký typ kamery by se měl použít?"
  3545. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3546. msgctxt "@window:text"
  3547. msgid "Camera rendering:"
  3548. msgstr "Vykreslování kamery:"
  3549. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3550. msgid "Perspective"
  3551. msgstr "Perspektiva"
  3552. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3553. msgid "Orthographic"
  3554. msgstr "Ortografický"
  3555. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3556. msgctxt "@label"
  3557. msgid "Opening and saving files"
  3558. msgstr "Otevírám a ukládám soubory"
  3559. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3560. msgctxt "@info:tooltip"
  3561. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3562. msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?"
  3563. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3564. msgctxt "@option:check"
  3565. msgid "Use a single instance of Cura"
  3566. msgstr "Používat pouze jednu instanci programu Cura"
  3567. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3568. msgctxt "@info:tooltip"
  3569. msgid "Should models be scaled to the build volume if they are too large?"
  3570. msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?"
  3571. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3572. msgctxt "@option:check"
  3573. msgid "Scale large models"
  3574. msgstr "Škálovat velké modely"
  3575. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3576. msgctxt "@info:tooltip"
  3577. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3578. msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?"
  3579. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3580. msgctxt "@option:check"
  3581. msgid "Scale extremely small models"
  3582. msgstr "Škálovat extrémně malé modely"
  3583. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3584. msgctxt "@info:tooltip"
  3585. msgid "Should models be selected after they are loaded?"
  3586. msgstr "Měly by být modely vybrány po načtení?"
  3587. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3588. msgctxt "@option:check"
  3589. msgid "Select models when loaded"
  3590. msgstr "Vybrat modely po načtení"
  3591. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3592. msgctxt "@info:tooltip"
  3593. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3594. msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?"
  3595. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3596. msgctxt "@option:check"
  3597. msgid "Add machine prefix to job name"
  3598. msgstr "Přidat předponu zařízení před název úlohy"
  3599. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3600. msgctxt "@info:tooltip"
  3601. msgid "Should a summary be shown when saving a project file?"
  3602. msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?"
  3603. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3604. msgctxt "@option:check"
  3605. msgid "Show summary dialog when saving project"
  3606. msgstr "Zobrazit souhrnný dialog při ukládání projektu"
  3607. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3608. msgctxt "@info:tooltip"
  3609. msgid "Default behavior when opening a project file"
  3610. msgstr "Výchozí chování při otevírání souboru"
  3611. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3612. msgctxt "@window:text"
  3613. msgid "Default behavior when opening a project file: "
  3614. msgstr "Výchozí chování při otevření souboru s projektem: "
  3615. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3616. msgctxt "@option:openProject"
  3617. msgid "Always ask me this"
  3618. msgstr "Vždy se zeptat"
  3619. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3620. msgctxt "@option:openProject"
  3621. msgid "Always open as a project"
  3622. msgstr "Vždy otevírat jako projekt"
  3623. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3624. msgctxt "@option:openProject"
  3625. msgid "Always import models"
  3626. msgstr "Vždy importovat modely"
  3627. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3628. msgctxt "@info:tooltip"
  3629. 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."
  3630. msgstr "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat."
  3631. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:728
  3632. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3633. msgctxt "@label"
  3634. msgid "Profiles"
  3635. msgstr "Profily"
  3636. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3637. msgctxt "@window:text"
  3638. msgid "Default behavior for changed setting values when switching to a different profile: "
  3639. msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: "
  3640. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3641. msgctxt "@option:discardOrKeep"
  3642. msgid "Always discard changed settings"
  3643. msgstr "Vždy smazat změněné nastavení"
  3644. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3645. msgctxt "@option:discardOrKeep"
  3646. msgid "Always transfer changed settings to new profile"
  3647. msgstr "Vždy přesunout nastavení do nového profilu"
  3648. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:783
  3649. msgctxt "@label"
  3650. msgid "Privacy"
  3651. msgstr "Soukromí"
  3652. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:790
  3653. msgctxt "@info:tooltip"
  3654. msgid "Should Cura check for updates when the program is started?"
  3655. msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?"
  3656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:795
  3657. msgctxt "@option:check"
  3658. msgid "Check for updates on start"
  3659. msgstr "Zkontrolovat aktualizace při zapnutí"
  3660. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:805
  3661. msgctxt "@info:tooltip"
  3662. 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."
  3663. msgstr "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje."
  3664. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:810
  3665. msgctxt "@option:check"
  3666. msgid "Send (anonymous) print information"
  3667. msgstr "Posílat (anonymní) informace o tisku"
  3668. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:819
  3669. msgctxt "@action:button"
  3670. msgid "More information"
  3671. msgstr "Více informací"
  3672. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3673. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3674. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3675. msgctxt "@action:button"
  3676. msgid "Activate"
  3677. msgstr "Aktivovat"
  3678. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3679. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3680. msgctxt "@action:button"
  3681. msgid "Rename"
  3682. msgstr "Přejmenovat"
  3683. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3684. msgctxt "@action:button"
  3685. msgid "Create"
  3686. msgstr "Vytvořit"
  3687. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3688. msgctxt "@action:button"
  3689. msgid "Duplicate"
  3690. msgstr "Duplikovat"
  3691. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3692. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3693. msgctxt "@action:button"
  3694. msgid "Import"
  3695. msgstr "Import"
  3696. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3697. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3698. msgctxt "@action:button"
  3699. msgid "Export"
  3700. msgstr "Export"
  3701. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3702. msgctxt "@action:label"
  3703. msgid "Printer"
  3704. msgstr "Tiskárna"
  3705. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3706. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  3707. msgctxt "@title:window"
  3708. msgid "Confirm Remove"
  3709. msgstr "Potvrdit odstranění"
  3710. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3711. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  3712. msgctxt "@label (%1 is object name)"
  3713. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3714. msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!"
  3715. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3716. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3717. msgctxt "@title:window"
  3718. msgid "Import Material"
  3719. msgstr "Importovat materiál"
  3720. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3721. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3722. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3723. msgstr "Nelze importovat materiál <filename>%1</filename>: <message>%2</message>"
  3724. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3725. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3726. msgid "Successfully imported material <filename>%1</filename>"
  3727. msgstr "Úspěšně importován materiál <filename>%1</filename>"
  3728. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3729. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3730. msgctxt "@title:window"
  3731. msgid "Export Material"
  3732. msgstr "Exportovat materiál"
  3733. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3734. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3735. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3736. msgstr "Neúspěch při exportu materiálu do <filename>%1</filename>: <message>%2</message>"
  3737. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3738. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3739. msgid "Successfully exported material to <filename>%1</filename>"
  3740. msgstr "Úspěšné exportování materiálu do <filename>%1</filename>"
  3741. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3742. msgctxt "@title"
  3743. msgid "Information"
  3744. msgstr "Informace"
  3745. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3746. msgctxt "@title:window"
  3747. msgid "Confirm Diameter Change"
  3748. msgstr "Potvrdit změnu průměru"
  3749. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3750. msgctxt "@label (%1 is a number)"
  3751. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3752. msgstr "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?"
  3753. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3754. msgctxt "@label"
  3755. msgid "Display Name"
  3756. msgstr "Jméno"
  3757. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3758. msgctxt "@label"
  3759. msgid "Material Type"
  3760. msgstr "Typ materiálu"
  3761. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3762. msgctxt "@label"
  3763. msgid "Color"
  3764. msgstr "Barva"
  3765. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3766. msgctxt "@label"
  3767. msgid "Properties"
  3768. msgstr "Vlastnosti"
  3769. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3770. msgctxt "@label"
  3771. msgid "Density"
  3772. msgstr "Husttoa"
  3773. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3774. msgctxt "@label"
  3775. msgid "Diameter"
  3776. msgstr "Průměr"
  3777. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3778. msgctxt "@label"
  3779. msgid "Filament Cost"
  3780. msgstr "Cena filamentu"
  3781. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3782. msgctxt "@label"
  3783. msgid "Filament weight"
  3784. msgstr "Váha filamentu"
  3785. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3786. msgctxt "@label"
  3787. msgid "Filament length"
  3788. msgstr "Délka filamentu"
  3789. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3790. msgctxt "@label"
  3791. msgid "Cost per Meter"
  3792. msgstr "Cena za metr"
  3793. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3794. msgctxt "@label"
  3795. msgid "This material is linked to %1 and shares some of its properties."
  3796. msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti."
  3797. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3798. msgctxt "@label"
  3799. msgid "Unlink Material"
  3800. msgstr "Zrušit propojení s materiálem"
  3801. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3802. msgctxt "@label"
  3803. msgid "Description"
  3804. msgstr "Popis"
  3805. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3806. msgctxt "@label"
  3807. msgid "Adhesion Information"
  3808. msgstr "Informace o adhezi"
  3809. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3810. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3811. msgctxt "@label"
  3812. msgid "Print settings"
  3813. msgstr "Nastavení tisku"
  3814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3815. msgctxt "@label"
  3816. msgid "Create"
  3817. msgstr "Vytvořit"
  3818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3819. msgctxt "@label"
  3820. msgid "Duplicate"
  3821. msgstr "Duplikovat"
  3822. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3823. msgctxt "@title:window"
  3824. msgid "Create Profile"
  3825. msgstr "Vytvořit profil"
  3826. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3827. msgctxt "@info"
  3828. msgid "Please provide a name for this profile."
  3829. msgstr "Prosím uveďte jméno pro tento profil."
  3830. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  3831. msgctxt "@title:window"
  3832. msgid "Duplicate Profile"
  3833. msgstr "Duplikovat profil"
  3834. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  3835. msgctxt "@title:window"
  3836. msgid "Rename Profile"
  3837. msgstr "Přejmenovat profil"
  3838. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  3839. msgctxt "@title:window"
  3840. msgid "Import Profile"
  3841. msgstr "Importovat profil"
  3842. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  3843. msgctxt "@title:window"
  3844. msgid "Export Profile"
  3845. msgstr "Exportovat profil"
  3846. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  3847. msgctxt "@label %1 is printer name"
  3848. msgid "Printer: %1"
  3849. msgstr "Tiskárna: %1"
  3850. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  3851. msgctxt "@action:button"
  3852. msgid "Update profile with current settings/overrides"
  3853. msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy"
  3854. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  3855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3856. msgctxt "@action:button"
  3857. msgid "Discard current changes"
  3858. msgstr "Zrušit aktuální změny"
  3859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  3860. msgctxt "@action:label"
  3861. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3862. msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu."
  3863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  3864. msgctxt "@action:label"
  3865. msgid "Your current settings match the selected profile."
  3866. msgstr "Vaše aktuální nastavení odpovídá vybranému profilu."
  3867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  3868. msgctxt "@title:tab"
  3869. msgid "Global Settings"
  3870. msgstr "Globální nastavení"
  3871. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3872. msgctxt "@info:status"
  3873. msgid "Calculated"
  3874. msgstr "Vypočítáno"
  3875. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3876. msgctxt "@title:column"
  3877. msgid "Setting"
  3878. msgstr "Nastavení"
  3879. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3880. msgctxt "@title:column"
  3881. msgid "Profile"
  3882. msgstr "Profil"
  3883. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3884. msgctxt "@title:column"
  3885. msgid "Current"
  3886. msgstr "Aktuální"
  3887. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3888. msgctxt "@title:column"
  3889. msgid "Unit"
  3890. msgstr "Jednotka"
  3891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3892. msgctxt "@title:tab"
  3893. msgid "Setting Visibility"
  3894. msgstr "Nastavení zobrazení"
  3895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3896. msgctxt "@label:textbox"
  3897. msgid "Check all"
  3898. msgstr "Zkontrolovat vše"
  3899. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3900. msgctxt "@label"
  3901. msgid "Extruder"
  3902. msgstr "Extuder"
  3903. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3904. msgctxt "@tooltip"
  3905. 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."
  3906. msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý."
  3907. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3908. msgctxt "@tooltip"
  3909. msgid "The current temperature of this hotend."
  3910. msgstr "Aktuální teplota tohoto hotendu."
  3911. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3912. msgctxt "@tooltip of temperature input"
  3913. msgid "The temperature to pre-heat the hotend to."
  3914. msgstr "Teplota pro předehřátí hotendu."
  3915. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3916. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3917. msgctxt "@button Cancel pre-heating"
  3918. msgid "Cancel"
  3919. msgstr "Zrušit"
  3920. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  3921. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3922. msgctxt "@button"
  3923. msgid "Pre-heat"
  3924. msgstr "Předehřání"
  3925. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3926. msgctxt "@tooltip of pre-heat"
  3927. 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."
  3928. msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku."
  3929. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3930. msgctxt "@tooltip"
  3931. msgid "The colour of the material in this extruder."
  3932. msgstr "Barva materiálu v tomto extruderu."
  3933. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3934. msgctxt "@tooltip"
  3935. msgid "The material in this extruder."
  3936. msgstr "Materiál v tomto extruderu."
  3937. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3938. msgctxt "@tooltip"
  3939. msgid "The nozzle inserted in this extruder."
  3940. msgstr "Vložená trysky v tomto extruderu."
  3941. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3942. msgctxt "@label"
  3943. msgid "Build plate"
  3944. msgstr "Podložka"
  3945. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3946. msgctxt "@tooltip"
  3947. 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."
  3948. msgstr "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto."
  3949. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3950. msgctxt "@tooltip"
  3951. msgid "The current temperature of the heated bed."
  3952. msgstr "Aktuální teplota vyhřívané podložky."
  3953. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3954. msgctxt "@tooltip of temperature input"
  3955. msgid "The temperature to pre-heat the bed to."
  3956. msgstr "Teplota pro předehřátí podložky."
  3957. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3958. msgctxt "@tooltip of pre-heat"
  3959. 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."
  3960. msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku."
  3961. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3962. msgctxt "@label"
  3963. msgid "Printer control"
  3964. msgstr "Ovládání tiskárny"
  3965. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3966. msgctxt "@label"
  3967. msgid "Jog Position"
  3968. msgstr "Pozice hlavy"
  3969. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3970. msgctxt "@label"
  3971. msgid "X/Y"
  3972. msgstr "X/Y"
  3973. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3974. msgctxt "@label"
  3975. msgid "Z"
  3976. msgstr "Z"
  3977. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3978. msgctxt "@label"
  3979. msgid "Jog Distance"
  3980. msgstr "Vzdálenost hlavy"
  3981. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3982. msgctxt "@label"
  3983. msgid "Send G-code"
  3984. msgstr "Poslat G kód"
  3985. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3986. msgctxt "@tooltip of G-code command input"
  3987. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3988. msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz."
  3989. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3990. msgctxt "@info:status"
  3991. msgid "The printer is not connected."
  3992. msgstr "Tiskárna není připojena."
  3993. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3994. msgctxt "@status"
  3995. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3996. msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu."
  3997. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3998. msgctxt "@status"
  3999. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4000. msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení."
  4001. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4002. msgctxt "@status"
  4003. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4004. msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně."
  4005. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4006. msgctxt "@status"
  4007. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4008. msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení."
  4009. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4010. msgctxt "@button"
  4011. msgid "Add printer"
  4012. msgstr "Přidat tiskárnu"
  4013. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4014. msgctxt "@button"
  4015. msgid "Manage printers"
  4016. msgstr "Spravovat tiskárny"
  4017. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4018. msgctxt "@label"
  4019. msgid "Connected printers"
  4020. msgstr "Připojené tiskárny"
  4021. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4022. msgctxt "@label"
  4023. msgid "Preset printers"
  4024. msgstr "Přednastavené tiskárny"
  4025. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  4026. msgctxt "@label"
  4027. msgid "Active print"
  4028. msgstr "Aktivní tisk"
  4029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  4030. msgctxt "@label"
  4031. msgid "Job Name"
  4032. msgstr "Název úlohy"
  4033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  4034. msgctxt "@label"
  4035. msgid "Printing Time"
  4036. msgstr "Čas tisku"
  4037. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  4038. msgctxt "@label"
  4039. msgid "Estimated time left"
  4040. msgstr "Předpokládaný zbývající čas"
  4041. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  4042. msgctxt "@label"
  4043. msgid "Profile"
  4044. msgstr "Profil"
  4045. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  4046. msgctxt "@tooltip"
  4047. msgid ""
  4048. "Some setting/override values are different from the values stored in the profile.\n"
  4049. "\n"
  4050. "Click to open the profile manager."
  4051. msgstr ""
  4052. "Některé hodnoty nastavení / přepsání se liší od hodnot uložených v profilu.\n"
  4053. "\n"
  4054. "Klepnutím otevřete správce profilů."
  4055. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  4056. msgctxt "@label:header"
  4057. msgid "Custom profiles"
  4058. msgstr "Vlastní profily"
  4059. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  4060. 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')"
  4061. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  4062. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  4063. msgstr[0] "Neexistuje žádný profil %1 pro konfiguraci v extruderu %2. Místo toho bude použit výchozí záměr"
  4064. msgstr[1] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
  4065. msgstr[2] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
  4066. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  4067. msgctxt "@label shown when we load a Gcode file"
  4068. msgid "Print setup disabled. G-code file can not be modified."
  4069. msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit."
  4070. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  4071. msgctxt "@button"
  4072. msgid "Recommended"
  4073. msgstr "Doporučeno"
  4074. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  4075. msgctxt "@button"
  4076. msgid "Custom"
  4077. msgstr "Vlastní"
  4078. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4079. msgctxt "@label:Should be short"
  4080. msgid "On"
  4081. msgstr "Zap"
  4082. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4083. msgctxt "@label:Should be short"
  4084. msgid "Off"
  4085. msgstr "Vyp"
  4086. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  4087. msgctxt "@label"
  4088. msgid "Experimental"
  4089. msgstr "Experimentální"
  4090. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  4091. msgctxt "@label"
  4092. msgid "Adhesion"
  4093. msgstr "Adheze"
  4094. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  4095. msgctxt "@label"
  4096. 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."
  4097. msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout."
  4098. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  4099. msgctxt "@label"
  4100. msgid "Gradual infill"
  4101. msgstr "Postupná výplň"
  4102. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  4103. msgctxt "@label"
  4104. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4105. msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru."
  4106. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  4107. msgctxt "@tooltip"
  4108. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  4109. msgstr "Upravili jste některá nastavení profilu. Pokud je chcete změnit, přejděte do uživatelského režimu."
  4110. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  4111. msgctxt "@label"
  4112. msgid "Support"
  4113. msgstr "Podpora"
  4114. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  4115. msgctxt "@label"
  4116. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4117. msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily."
  4118. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
  4119. msgctxt "@label"
  4120. msgid ""
  4121. "Some hidden settings use values different from their normal calculated value.\n"
  4122. "\n"
  4123. "Click to make these settings visible."
  4124. msgstr ""
  4125. "Některá skrytá nastavení používají hodnoty odlišné od jejich normální vypočtené hodnoty.\n"
  4126. "\n"
  4127. "Klepnutím toto nastavení zviditelníte."
  4128. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  4129. msgctxt "@label"
  4130. msgid "This setting is not used because all the settings that it influences are overridden."
  4131. msgstr "Toto nastavení se nepoužívá, protože všechna nastavení, která ovlivňuje, jsou přepsána."
  4132. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  4133. msgctxt "@label Header for list of settings."
  4134. msgid "Affects"
  4135. msgstr "Ovlivňuje"
  4136. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  4137. msgctxt "@label Header for list of settings."
  4138. msgid "Affected By"
  4139. msgstr "Ovlivněno"
  4140. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  4141. msgctxt "@label"
  4142. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4143. msgstr "Toto nastavení je vždy sdíleno všemi extrudéry. Jeho změnou se změní hodnota všech extruderů."
  4144. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  4145. msgctxt "@label"
  4146. msgid "This setting is resolved from conflicting extruder-specific values:"
  4147. msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:"
  4148. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  4149. msgctxt "@label"
  4150. msgid ""
  4151. "This setting has a value that is different from the profile.\n"
  4152. "\n"
  4153. "Click to restore the value of the profile."
  4154. msgstr ""
  4155. "Toto nastavení má jinou hodnotu než profil.\n"
  4156. "\n"
  4157. "Klepnutím obnovíte hodnotu profilu."
  4158. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  4159. msgctxt "@label"
  4160. msgid ""
  4161. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4162. "\n"
  4163. "Click to restore the calculated value."
  4164. msgstr ""
  4165. "Toto nastavení se obvykle počítá, ale v současné době je nastavena absolutní hodnota.\n"
  4166. "\n"
  4167. "Klepnutím obnovíte vypočítanou hodnotu."
  4168. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  4169. msgctxt "@label:textbox"
  4170. msgid "Search settings"
  4171. msgstr "Prohledat nastavení"
  4172. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:456
  4173. msgctxt "@action:menu"
  4174. msgid "Copy value to all extruders"
  4175. msgstr "Kopírovat hodnotu na všechny extrudery"
  4176. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:465
  4177. msgctxt "@action:menu"
  4178. msgid "Copy all changed values to all extruders"
  4179. msgstr "Kopírovat všechny změněné hodnoty na všechny extrudery"
  4180. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:502
  4181. msgctxt "@action:menu"
  4182. msgid "Hide this setting"
  4183. msgstr "Schovat toto nastavení"
  4184. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:515
  4185. msgctxt "@action:menu"
  4186. msgid "Don't show this setting"
  4187. msgstr "Neukazovat toto nastavení"
  4188. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:519
  4189. msgctxt "@action:menu"
  4190. msgid "Keep this setting visible"
  4191. msgstr "Nechat toto nastavení viditelné"
  4192. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  4193. msgctxt "@info:tooltip"
  4194. msgid "3D View"
  4195. msgstr "3D Pohled"
  4196. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  4197. msgctxt "@info:tooltip"
  4198. msgid "Front View"
  4199. msgstr "Přední pohled"
  4200. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  4201. msgctxt "@info:tooltip"
  4202. msgid "Top View"
  4203. msgstr "Pohled ze shora"
  4204. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  4205. msgctxt "@info:tooltip"
  4206. msgid "Left View"
  4207. msgstr "Pohled zleva"
  4208. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4209. msgctxt "@info:tooltip"
  4210. msgid "Right View"
  4211. msgstr "Pohled zprava"
  4212. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  4213. msgctxt "@label"
  4214. msgid "View type"
  4215. msgstr "Typ pohledu"
  4216. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4217. msgctxt "@label"
  4218. msgid "Add a Cloud printer"
  4219. msgstr "Přidat Cloudovou tiskárnu"
  4220. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4221. msgctxt "@label"
  4222. msgid "Waiting for Cloud response"
  4223. msgstr "Čekám na odpověď od Cloudu"
  4224. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4225. msgctxt "@label"
  4226. msgid "No printers found in your account?"
  4227. msgstr "Žádné tiskárny nenalezeny ve vašem účtě?"
  4228. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4229. msgctxt "@label"
  4230. msgid "The following printers in your account have been added in Cura:"
  4231. msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:"
  4232. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  4233. msgctxt "@button"
  4234. msgid "Add printer manually"
  4235. msgstr "Přidat tiskárnu manuálně"
  4236. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:218
  4237. msgctxt "@button"
  4238. msgid "Finish"
  4239. msgstr "Dokončit"
  4240. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  4241. msgctxt "@label"
  4242. msgid "Manufacturer"
  4243. msgstr "Výrobce"
  4244. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  4245. msgctxt "@label"
  4246. msgid "Profile author"
  4247. msgstr "Autor profilu"
  4248. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  4249. msgctxt "@label"
  4250. msgid "Printer name"
  4251. msgstr "Název tiskárny"
  4252. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  4253. msgctxt "@text"
  4254. msgid "Please name your printer"
  4255. msgstr ""
  4256. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4257. msgctxt "@label"
  4258. msgid "Add a printer"
  4259. msgstr "Přidat tiskárnu"
  4260. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4261. msgctxt "@label"
  4262. msgid "Add a networked printer"
  4263. msgstr "Přidat síťovou tiskárnu"
  4264. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  4265. msgctxt "@label"
  4266. msgid "Add a non-networked printer"
  4267. msgstr "Přidat ne-síťovou tiskárnu"
  4268. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4269. msgctxt "@label"
  4270. msgid "There is no printer found over your network."
  4271. msgstr "Přes síť nebyla nalezena žádná tiskárna."
  4272. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  4273. msgctxt "@label"
  4274. msgid "Refresh"
  4275. msgstr "Obnovit"
  4276. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  4277. msgctxt "@label"
  4278. msgid "Add printer by IP"
  4279. msgstr "Přidat tiskárnu podle IP"
  4280. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  4281. msgctxt "@label"
  4282. msgid "Add cloud printer"
  4283. msgstr "Přidat cloudovou tiskárnu"
  4284. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  4285. msgctxt "@label"
  4286. msgid "Troubleshooting"
  4287. msgstr "Podpora při problémech"
  4288. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4289. msgctxt "@label"
  4290. msgid "Add printer by IP address"
  4291. msgstr "Přidat tiskárnu podle IP adresy"
  4292. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4293. msgctxt "@text"
  4294. msgid "Enter your printer's IP address."
  4295. msgstr "Zadejte IP adresu vaší tiskárny."
  4296. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4297. msgctxt "@button"
  4298. msgid "Add"
  4299. msgstr "Přidat"
  4300. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4301. msgctxt "@label"
  4302. msgid "Could not connect to device."
  4303. msgstr "Nelze se připojit k zařízení."
  4304. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4305. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4306. msgctxt "@label"
  4307. msgid "Can't connect to your Ultimaker printer?"
  4308. msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?"
  4309. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4310. msgctxt "@label"
  4311. msgid "The printer at this address has not responded yet."
  4312. msgstr "Tiskárna na této adrese dosud neodpověděla."
  4313. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4314. msgctxt "@label"
  4315. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4316. msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny."
  4317. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4318. msgctxt "@button"
  4319. msgid "Back"
  4320. msgstr "Zpět"
  4321. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4322. msgctxt "@button"
  4323. msgid "Connect"
  4324. msgstr "Připojit"
  4325. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:43
  4326. msgctxt "@label"
  4327. msgid "Ultimaker Account"
  4328. msgstr "Účet Ultimaker"
  4329. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:84
  4330. msgctxt "@text"
  4331. msgid "Your key to connected 3D printing"
  4332. msgstr "Váš klíč k propojenému 3D tisku"
  4333. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:101
  4334. msgctxt "@text"
  4335. msgid "- Customize your experience with more print profiles and plugins"
  4336. msgstr "- Přizpůsobte si své zážitky pomocí více profilů tisku a modulů"
  4337. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:104
  4338. msgctxt "@text"
  4339. msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4340. msgstr "- Zůstaňte flexibilní díky synchronizaci nastavení a přístupu k ní kdekoli"
  4341. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:107
  4342. msgctxt "@text"
  4343. msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4344. msgstr "- Zvyšte efektivitu pomocí vzdáleného pracovního postupu na tiskárnách Ultimaker"
  4345. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:157
  4346. msgctxt "@button"
  4347. msgid "Skip"
  4348. msgstr "Přeskočit"
  4349. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4350. msgctxt "@label"
  4351. msgid "Help us to improve Ultimaker Cura"
  4352. msgstr "Pomožte nám zlepšovat Ultimaker Cura"
  4353. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4354. msgctxt "@text"
  4355. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4356. msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:"
  4357. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4358. msgctxt "@text"
  4359. msgid "Machine types"
  4360. msgstr "Typy zařízení"
  4361. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4362. msgctxt "@text"
  4363. msgid "Material usage"
  4364. msgstr "Použití materiálu"
  4365. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4366. msgctxt "@text"
  4367. msgid "Number of slices"
  4368. msgstr "Počet sliců"
  4369. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4370. msgctxt "@text"
  4371. msgid "Print settings"
  4372. msgstr "Nastavení tisku"
  4373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4374. msgctxt "@text"
  4375. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4376. msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje."
  4377. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4378. msgctxt "@text"
  4379. msgid "More information"
  4380. msgstr "Více informací"
  4381. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4382. msgctxt "@label"
  4383. msgid "Empty"
  4384. msgstr "Prázdné"
  4385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4386. msgctxt "@label"
  4387. msgid "User Agreement"
  4388. msgstr "Uživatelská dohoda"
  4389. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4390. msgctxt "@button"
  4391. msgid "Decline and close"
  4392. msgstr "Odmítnout a zavřít"
  4393. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  4394. msgctxt "@label"
  4395. msgid "Welcome to Ultimaker Cura"
  4396. msgstr "Vítejte v Ultimaker Cura"
  4397. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  4398. msgctxt "@text"
  4399. msgid ""
  4400. "Please follow these steps to set up\n"
  4401. "Ultimaker Cura. This will only take a few moments."
  4402. msgstr ""
  4403. "Při nastavování postupujte podle těchto pokynů\n"
  4404. "Ultimaker Cura. Bude to trvat jen několik okamžiků."
  4405. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  4406. msgctxt "@button"
  4407. msgid "Get started"
  4408. msgstr "Začínáme"
  4409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  4410. msgctxt "@label"
  4411. msgid "What's new in Ultimaker Cura"
  4412. msgstr "Co je nového v Ultimaker Cura"
  4413. #: ModelChecker/plugin.json
  4414. msgctxt "description"
  4415. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4416. msgstr "Zkontroluje možné tiskové modely a konfiguraci tisku a poskytne návrhy."
  4417. #: ModelChecker/plugin.json
  4418. msgctxt "name"
  4419. msgid "Model Checker"
  4420. msgstr "Kontroler modelu"
  4421. #: 3MFReader/plugin.json
  4422. msgctxt "description"
  4423. msgid "Provides support for reading 3MF files."
  4424. msgstr "Poskytuje podporu pro čtení souborů 3MF."
  4425. #: 3MFReader/plugin.json
  4426. msgctxt "name"
  4427. msgid "3MF Reader"
  4428. msgstr "Čtečka 3MF"
  4429. #: 3MFWriter/plugin.json
  4430. msgctxt "description"
  4431. msgid "Provides support for writing 3MF files."
  4432. msgstr "Poskytuje podporu pro psaní souborů 3MF."
  4433. #: 3MFWriter/plugin.json
  4434. msgctxt "name"
  4435. msgid "3MF Writer"
  4436. msgstr "Zapisovač 3MF"
  4437. #: AMFReader/plugin.json
  4438. msgctxt "description"
  4439. msgid "Provides support for reading AMF files."
  4440. msgstr "Poskytuje podporu pro čtení souborů AMF."
  4441. #: AMFReader/plugin.json
  4442. msgctxt "name"
  4443. msgid "AMF Reader"
  4444. msgstr "Čtečka AMF"
  4445. #: CuraDrive/plugin.json
  4446. msgctxt "description"
  4447. msgid "Backup and restore your configuration."
  4448. msgstr "Zálohujte a obnovte konfiguraci."
  4449. #: CuraDrive/plugin.json
  4450. msgctxt "name"
  4451. msgid "Cura Backups"
  4452. msgstr "Cura zálohy"
  4453. #: CuraEngineBackend/plugin.json
  4454. msgctxt "description"
  4455. msgid "Provides the link to the CuraEngine slicing backend."
  4456. msgstr "Poskytuje odkaz na backend krájení CuraEngine."
  4457. #: CuraEngineBackend/plugin.json
  4458. msgctxt "name"
  4459. msgid "CuraEngine Backend"
  4460. msgstr "CuraEngine Backend"
  4461. #: CuraProfileReader/plugin.json
  4462. msgctxt "description"
  4463. msgid "Provides support for importing Cura profiles."
  4464. msgstr "Poskytuje podporu pro import profilů Cura."
  4465. #: CuraProfileReader/plugin.json
  4466. msgctxt "name"
  4467. msgid "Cura Profile Reader"
  4468. msgstr "Čtečka Cura profilu"
  4469. #: CuraProfileWriter/plugin.json
  4470. msgctxt "description"
  4471. msgid "Provides support for exporting Cura profiles."
  4472. msgstr "Poskytuje podporu pro export profilů Cura."
  4473. #: CuraProfileWriter/plugin.json
  4474. msgctxt "name"
  4475. msgid "Cura Profile Writer"
  4476. msgstr "Zapisovač Cura profilu"
  4477. #: FirmwareUpdateChecker/plugin.json
  4478. msgctxt "description"
  4479. msgid "Checks for firmware updates."
  4480. msgstr "Zkontroluje dostupné aktualizace firmwaru."
  4481. #: FirmwareUpdateChecker/plugin.json
  4482. msgctxt "name"
  4483. msgid "Firmware Update Checker"
  4484. msgstr "Kontroler aktualizace firmwaru"
  4485. #: FirmwareUpdater/plugin.json
  4486. msgctxt "description"
  4487. msgid "Provides a machine actions for updating firmware."
  4488. msgstr "Poskytuje akce počítače pro aktualizaci firmwaru."
  4489. #: FirmwareUpdater/plugin.json
  4490. msgctxt "name"
  4491. msgid "Firmware Updater"
  4492. msgstr "Firmware Updater"
  4493. #: GCodeGzReader/plugin.json
  4494. msgctxt "description"
  4495. msgid "Reads g-code from a compressed archive."
  4496. msgstr "Čte g-kód z komprimovaného archivu."
  4497. #: GCodeGzReader/plugin.json
  4498. msgctxt "name"
  4499. msgid "Compressed G-code Reader"
  4500. msgstr "Čtečka kompresovaného G kódu"
  4501. #: GCodeGzWriter/plugin.json
  4502. msgctxt "description"
  4503. msgid "Writes g-code to a compressed archive."
  4504. msgstr "Zapíše g-kód do komprimovaného archivu."
  4505. #: GCodeGzWriter/plugin.json
  4506. msgctxt "name"
  4507. msgid "Compressed G-code Writer"
  4508. msgstr "Zapisova kompresovaného G kódu"
  4509. #: GCodeProfileReader/plugin.json
  4510. msgctxt "description"
  4511. msgid "Provides support for importing profiles from g-code files."
  4512. msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu."
  4513. #: GCodeProfileReader/plugin.json
  4514. msgctxt "name"
  4515. msgid "G-code Profile Reader"
  4516. msgstr "Čtečka profilu G kódu"
  4517. #: GCodeReader/plugin.json
  4518. msgctxt "description"
  4519. msgid "Allows loading and displaying G-code files."
  4520. msgstr "Povoluje načítání a zobrazení souborů G kódu."
  4521. #: GCodeReader/plugin.json
  4522. msgctxt "name"
  4523. msgid "G-code Reader"
  4524. msgstr "Čtečka G kódu"
  4525. #: GCodeWriter/plugin.json
  4526. msgctxt "description"
  4527. msgid "Writes g-code to a file."
  4528. msgstr "Zapisuje G kód o souboru."
  4529. #: GCodeWriter/plugin.json
  4530. msgctxt "name"
  4531. msgid "G-code Writer"
  4532. msgstr "Zapisovač G kódu"
  4533. #: ImageReader/plugin.json
  4534. msgctxt "description"
  4535. msgid "Enables ability to generate printable geometry from 2D image files."
  4536. msgstr "Umožňuje generovat tiskovou geometrii ze 2D obrazových souborů."
  4537. #: ImageReader/plugin.json
  4538. msgctxt "name"
  4539. msgid "Image Reader"
  4540. msgstr "Čtečka obrázků"
  4541. #: LegacyProfileReader/plugin.json
  4542. msgctxt "description"
  4543. msgid "Provides support for importing profiles from legacy Cura versions."
  4544. msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura."
  4545. #: LegacyProfileReader/plugin.json
  4546. msgctxt "name"
  4547. msgid "Legacy Cura Profile Reader"
  4548. msgstr "Čtečka legacy Cura profilu"
  4549. #: MachineSettingsAction/plugin.json
  4550. msgctxt "description"
  4551. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4552. msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)."
  4553. #: MachineSettingsAction/plugin.json
  4554. msgctxt "name"
  4555. msgid "Machine Settings Action"
  4556. msgstr "Akce nastavení zařízení"
  4557. #: MonitorStage/plugin.json
  4558. msgctxt "description"
  4559. msgid "Provides a monitor stage in Cura."
  4560. msgstr "Poskytuje monitorovací scénu v Cuře."
  4561. #: MonitorStage/plugin.json
  4562. msgctxt "name"
  4563. msgid "Monitor Stage"
  4564. msgstr "Fáze monitoringu"
  4565. #: PerObjectSettingsTool/plugin.json
  4566. msgctxt "description"
  4567. msgid "Provides the Per Model Settings."
  4568. msgstr "Umožňuje nastavení pro každý model."
  4569. #: PerObjectSettingsTool/plugin.json
  4570. msgctxt "name"
  4571. msgid "Per Model Settings Tool"
  4572. msgstr "Nástroj pro nastavení pro každý model"
  4573. #: PostProcessingPlugin/plugin.json
  4574. msgctxt "description"
  4575. msgid "Extension that allows for user created scripts for post processing"
  4576. msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování"
  4577. #: PostProcessingPlugin/plugin.json
  4578. msgctxt "name"
  4579. msgid "Post Processing"
  4580. msgstr "Post Processing"
  4581. #: PrepareStage/plugin.json
  4582. msgctxt "description"
  4583. msgid "Provides a prepare stage in Cura."
  4584. msgstr "Poskytuje přípravnou fázi v Cuře."
  4585. #: PrepareStage/plugin.json
  4586. msgctxt "name"
  4587. msgid "Prepare Stage"
  4588. msgstr "Fáze přípravy"
  4589. #: PreviewStage/plugin.json
  4590. msgctxt "description"
  4591. msgid "Provides a preview stage in Cura."
  4592. msgstr "Poskytuje fázi náhledu v Cura."
  4593. #: PreviewStage/plugin.json
  4594. msgctxt "name"
  4595. msgid "Preview Stage"
  4596. msgstr "Fáze náhledu"
  4597. #: RemovableDriveOutputDevice/plugin.json
  4598. msgctxt "description"
  4599. msgid "Provides removable drive hotplugging and writing support."
  4600. msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu."
  4601. #: RemovableDriveOutputDevice/plugin.json
  4602. msgctxt "name"
  4603. msgid "Removable Drive Output Device Plugin"
  4604. msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení"
  4605. #: SentryLogger/plugin.json
  4606. msgctxt "description"
  4607. msgid "Logs certain events so that they can be used by the crash reporter"
  4608. msgstr "Protokolová určité události, aby je mohl použít reportér havárií"
  4609. #: SentryLogger/plugin.json
  4610. msgctxt "name"
  4611. msgid "Sentry Logger"
  4612. msgstr "Záznamník hlavy"
  4613. #: SimulationView/plugin.json
  4614. msgctxt "description"
  4615. msgid "Provides the Simulation view."
  4616. msgstr "Poskytuje zobrazení simulace."
  4617. #: SimulationView/plugin.json
  4618. msgctxt "name"
  4619. msgid "Simulation View"
  4620. msgstr "Pohled simulace"
  4621. #: SliceInfoPlugin/plugin.json
  4622. msgctxt "description"
  4623. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4624. msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí."
  4625. #: SliceInfoPlugin/plugin.json
  4626. msgctxt "name"
  4627. msgid "Slice info"
  4628. msgstr "Informace o slicování"
  4629. #: SolidView/plugin.json
  4630. msgctxt "description"
  4631. msgid "Provides a normal solid mesh view."
  4632. msgstr "Poskytuje normální zobrazení pevné sítě."
  4633. #: SolidView/plugin.json
  4634. msgctxt "name"
  4635. msgid "Solid View"
  4636. msgstr "Solid View"
  4637. #: SupportEraser/plugin.json
  4638. msgctxt "description"
  4639. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4640. msgstr "Vytvoří gumovou síť, která blokuje tisk podpory na určitých místech"
  4641. #: SupportEraser/plugin.json
  4642. msgctxt "name"
  4643. msgid "Support Eraser"
  4644. msgstr "Mazač podpor"
  4645. #: Toolbox/plugin.json
  4646. msgctxt "description"
  4647. msgid "Find, manage and install new Cura packages."
  4648. msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura."
  4649. #: Toolbox/plugin.json
  4650. msgctxt "name"
  4651. msgid "Toolbox"
  4652. msgstr "Nástroje"
  4653. #: TrimeshReader/plugin.json
  4654. msgctxt "description"
  4655. msgid "Provides support for reading model files."
  4656. msgstr "Poskytuje podporu pro čtení souborů modelu."
  4657. #: TrimeshReader/plugin.json
  4658. msgctxt "name"
  4659. msgid "Trimesh Reader"
  4660. msgstr "Čtečka trimesh"
  4661. #: UFPReader/plugin.json
  4662. msgctxt "description"
  4663. msgid "Provides support for reading Ultimaker Format Packages."
  4664. msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker."
  4665. #: UFPReader/plugin.json
  4666. msgctxt "name"
  4667. msgid "UFP Reader"
  4668. msgstr "Čtečka UFP"
  4669. #: UFPWriter/plugin.json
  4670. msgctxt "description"
  4671. msgid "Provides support for writing Ultimaker Format Packages."
  4672. msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker."
  4673. #: UFPWriter/plugin.json
  4674. msgctxt "name"
  4675. msgid "UFP Writer"
  4676. msgstr "Zapisovač UFP"
  4677. #: UltimakerMachineActions/plugin.json
  4678. msgctxt "description"
  4679. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4680. msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)."
  4681. #: UltimakerMachineActions/plugin.json
  4682. msgctxt "name"
  4683. msgid "Ultimaker machine actions"
  4684. msgstr "Akce zařízení Ultimaker"
  4685. #: UM3NetworkPrinting/plugin.json
  4686. msgctxt "description"
  4687. msgid "Manages network connections to Ultimaker networked printers."
  4688. msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker."
  4689. #: UM3NetworkPrinting/plugin.json
  4690. msgctxt "name"
  4691. msgid "Ultimaker Network Connection"
  4692. msgstr "Síťové připojení Ultimaker"
  4693. #: USBPrinting/plugin.json
  4694. msgctxt "description"
  4695. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4696. msgstr "Přijme G-kód a odešle je do tiskárny. Plugin může také aktualizovat firmware."
  4697. #: USBPrinting/plugin.json
  4698. msgctxt "name"
  4699. msgid "USB printing"
  4700. msgstr "USB tisk"
  4701. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4702. msgctxt "description"
  4703. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4704. msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2."
  4705. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4706. msgctxt "name"
  4707. msgid "Version Upgrade 2.1 to 2.2"
  4708. msgstr "Aktualizace verze 2.1 na 2.2"
  4709. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4710. msgctxt "description"
  4711. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4712. msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4."
  4713. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4714. msgctxt "name"
  4715. msgid "Version Upgrade 2.2 to 2.4"
  4716. msgstr "Aktualizace verze 2.2 na 2.4"
  4717. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4718. msgctxt "description"
  4719. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4720. msgstr "Aktualizuje konfigurace z Cura 2.5 na Cura 2.6."
  4721. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4722. msgctxt "name"
  4723. msgid "Version Upgrade 2.5 to 2.6"
  4724. msgstr "Aktualizace verze 2.5 na 2.6"
  4725. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4726. msgctxt "description"
  4727. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4728. msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7."
  4729. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4730. msgctxt "name"
  4731. msgid "Version Upgrade 2.6 to 2.7"
  4732. msgstr "Aktualizace verze 2.6 na 2.7"
  4733. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4734. msgctxt "description"
  4735. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4736. msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0."
  4737. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4738. msgctxt "name"
  4739. msgid "Version Upgrade 2.7 to 3.0"
  4740. msgstr "Aktualizace verze 2.7 na 3.0"
  4741. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4742. msgctxt "description"
  4743. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4744. msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1."
  4745. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4746. msgctxt "name"
  4747. msgid "Version Upgrade 3.0 to 3.1"
  4748. msgstr "Aktualizace verze 3.0 na 3.1"
  4749. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4750. msgctxt "description"
  4751. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4752. msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3."
  4753. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4754. msgctxt "name"
  4755. msgid "Version Upgrade 3.2 to 3.3"
  4756. msgstr "Aktualizace verze 3.2 na 3.3"
  4757. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4758. msgctxt "description"
  4759. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4760. msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4."
  4761. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4762. msgctxt "name"
  4763. msgid "Version Upgrade 3.3 to 3.4"
  4764. msgstr "Aktualizace verze 3.3 na 3.4"
  4765. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4766. msgctxt "description"
  4767. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4768. msgstr "Aktualizuje konfigurace z Cura 3.4 na Cura 3.5."
  4769. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4770. msgctxt "name"
  4771. msgid "Version Upgrade 3.4 to 3.5"
  4772. msgstr "Aktualizace verze 3.4 na 3.5"
  4773. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4774. msgctxt "description"
  4775. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4776. msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0."
  4777. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4778. msgctxt "name"
  4779. msgid "Version Upgrade 3.5 to 4.0"
  4780. msgstr "Aktualizace verze 3.5 na 4.0"
  4781. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4782. msgctxt "description"
  4783. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4784. msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1."
  4785. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4786. msgctxt "name"
  4787. msgid "Version Upgrade 4.0 to 4.1"
  4788. msgstr "Aktualizace verze 4.0 na 4.1"
  4789. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4790. msgctxt "description"
  4791. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4792. msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2."
  4793. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4794. msgctxt "name"
  4795. msgid "Version Upgrade 4.1 to 4.2"
  4796. msgstr "Aktualizace verze 4.1 na 4.2"
  4797. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4798. msgctxt "description"
  4799. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4800. msgstr "Aktualizuje konfigurace z Cura 4.2 na Cura 4.3."
  4801. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4802. msgctxt "name"
  4803. msgid "Version Upgrade 4.2 to 4.3"
  4804. msgstr "Aktualizace verze 4.2 na 4.3"
  4805. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4806. msgctxt "description"
  4807. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4808. msgstr "Aktualizuje konfigurace z Cura 4.3 na Cura 4.4."
  4809. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4810. msgctxt "name"
  4811. msgid "Version Upgrade 4.3 to 4.4"
  4812. msgstr "Aktualizace verze 4.3 na 4.4"
  4813. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4814. msgctxt "description"
  4815. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4816. msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5."
  4817. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4818. msgctxt "name"
  4819. msgid "Version Upgrade 4.4 to 4.5"
  4820. msgstr "Aktualizace verze 4.4 na 4.5"
  4821. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4822. msgctxt "description"
  4823. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4824. msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6."
  4825. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4826. msgctxt "name"
  4827. msgid "Version Upgrade 4.5 to 4.6"
  4828. msgstr "Aktualizace verze 4.5 na 4.6"
  4829. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4830. msgctxt "description"
  4831. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4832. msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2."
  4833. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4834. msgctxt "name"
  4835. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4836. msgstr "Aktualizace verze 4.6.0 na 4.6.2"
  4837. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4838. msgctxt "description"
  4839. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4840. msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7."
  4841. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4842. msgctxt "name"
  4843. msgid "Version Upgrade 4.6.2 to 4.7"
  4844. msgstr "Aktualizace verze 4.6.2 na 4.7"
  4845. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4846. msgctxt "description"
  4847. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4848. msgstr ""
  4849. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4850. msgctxt "name"
  4851. msgid "Version Upgrade 4.7 to 4.8"
  4852. msgstr ""
  4853. #: X3DReader/plugin.json
  4854. msgctxt "description"
  4855. msgid "Provides support for reading X3D files."
  4856. msgstr "Poskytuje podporu pro čtení souborů X3D."
  4857. #: X3DReader/plugin.json
  4858. msgctxt "name"
  4859. msgid "X3D Reader"
  4860. msgstr "Čtečka X3D"
  4861. #: XmlMaterialProfile/plugin.json
  4862. msgctxt "description"
  4863. msgid "Provides capabilities to read and write XML-based material profiles."
  4864. msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML."
  4865. #: XmlMaterialProfile/plugin.json
  4866. msgctxt "name"
  4867. msgid "Material Profiles"
  4868. msgstr "Materiálové profily"
  4869. #: XRayView/plugin.json
  4870. msgctxt "description"
  4871. msgid "Provides the X-Ray view."
  4872. msgstr "Poskytuje rentgenové zobrazení."
  4873. #: XRayView/plugin.json
  4874. msgctxt "name"
  4875. msgid "X-Ray View"
  4876. msgstr "Rentgenový pohled"
  4877. #~ msgctxt "@label ({} is object name)"
  4878. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4879. #~ msgstr "Doopravdy chcete odstranit {}? Toto nelze vrátit zpět!"
  4880. #~ msgctxt "@info:status"
  4881. #~ msgid "The selected model was too small to load."
  4882. #~ msgstr "Vybraný model byl moc malý k načtení."
  4883. #~ msgctxt "@info:status"
  4884. #~ msgid "Successfully imported profile {0}"
  4885. #~ msgstr "Úspěšně importován profil {0}"
  4886. #~ msgctxt "@info:status"
  4887. #~ msgid "Could not find a quality type {0} for the current configuration."
  4888. #~ msgstr "Nelze najít typ kvality {0} pro aktuální konfiguraci."
  4889. #~ msgctxt "info:status"
  4890. #~ msgid "Adding printer {} ({}) from your account"
  4891. #~ msgstr "Přidávám tiskárnu {} ({}) z vašeho účtu"
  4892. #~ msgctxt "info:hidden list items"
  4893. #~ msgid "<li>... and {} others</li>"
  4894. #~ msgstr "<li>... a {} dalších</li>"
  4895. #~ msgctxt "info:status"
  4896. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4897. #~ msgstr "Tiskárny přidané z Digital Factory:<ul>{}</ul>"
  4898. #~ msgctxt "info:status"
  4899. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4900. #~ msgstr "<ul>{}</ul> Chcete-li navázat spojení, navštivte <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4901. #~ msgctxt "@label ({} is printer name)"
  4902. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  4903. #~ msgstr "{} bude odebrána až do další synchronizace účtu. <br> Chcete-li {} trvale odebrat, navštivte <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Opravdu chcete dočasně odebrat {}?"
  4904. #~ msgctxt "@label"
  4905. #~ msgid ""
  4906. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  4907. #~ "Are you sure you want to continue?"
  4908. #~ msgstr ""
  4909. #~ "Chystáte se odebrat {} tiskárny z Cury. Tuto akci nelze vrátit zpět.\n"
  4910. #~ "Jste si jistý, že chcete pokračovat?"
  4911. #~ msgctxt "@label"
  4912. #~ msgid ""
  4913. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  4914. #~ "Are you sure you want to continue?"
  4915. #~ msgstr ""
  4916. #~ "Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n"
  4917. #~ "Doopravdy chcete pokračovat?"
  4918. #~ msgctxt "@action:ComboBox option"
  4919. #~ msgid "Update"
  4920. #~ msgstr "Aktualizovat"
  4921. #~ msgctxt "@action:ComboBox option"
  4922. #~ msgid "Create new"
  4923. #~ msgstr "Vytvořit nový"
  4924. #~ msgctxt "@label"
  4925. #~ msgid "Shared Heater"
  4926. #~ msgstr "Sdílený ohřívač"
  4927. #~ msgctxt "@info"
  4928. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4929. #~ msgstr "Webová kamera není k dispozici, protože monitorujete cloudovou tiskárnu."
  4930. #~ msgctxt "@button"
  4931. #~ msgid "Ultimaker Digital Factory"
  4932. #~ msgstr "Ultimaker Digital Factory"
  4933. #~ msgctxt "@text:window, %1 is a profile name"
  4934. #~ msgid ""
  4935. #~ "You have customized some profile settings.\n"
  4936. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  4937. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  4938. #~ msgstr ""
  4939. #~ "Upravili jste některá nastavení profilu.\n"
  4940. #~ "Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n"
  4941. #~ "Alternativně můžete zahodit změny a načíst výchozí hodnoty z '%1'."
  4942. #~ msgctxt "@label"
  4943. #~ msgid "Overrides %1 setting."
  4944. #~ msgid_plural "Overrides %1 settings."
  4945. #~ msgstr[0] "Přepsat %1 nastavení."
  4946. #~ msgstr[1] "Přepsat %1 nastavení."
  4947. #~ msgstr[2] "Přepsat %1 nastavení."
  4948. #~ msgctxt "@text"
  4949. #~ msgid "Please give your printer a name"
  4950. #~ msgstr "Prosím dejte vaší tiskárně název"
  4951. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4952. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4953. #~ msgstr "Pro vaše zařízení {machine_name} jsou k dispozici nové funkce! Doporučujeme aktualizovat firmware na tiskárně."
  4954. #~ msgctxt "@action:button"
  4955. #~ msgid "Print via Cloud"
  4956. #~ msgstr "Tisknout přes Cloud"
  4957. #~ msgctxt "@properties:tooltip"
  4958. #~ msgid "Print via Cloud"
  4959. #~ msgstr "Tisknout přes Cloud"
  4960. #~ msgctxt "@info:status"
  4961. #~ msgid "Connected via Cloud"
  4962. #~ msgstr "Připojeno přes Cloud"
  4963. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4964. #~ msgid "Connect to Ultimaker Cloud"
  4965. #~ msgstr "Připojit k Ultimaker Cloudu"
  4966. #~ msgctxt "@label"
  4967. #~ msgid "You need to login first before you can rate"
  4968. #~ msgstr "Před hodnocením se musíte přihlásit"
  4969. #~ msgctxt "@label"
  4970. #~ msgid "You need to install the package before you can rate"
  4971. #~ msgstr "Před hodnocením musíte nainstalovat balíček"
  4972. #~ msgctxt "@label"
  4973. #~ msgid "ratings"
  4974. #~ msgstr "hodnocení"
  4975. #~ msgctxt "@label"
  4976. #~ msgid "Featured"
  4977. #~ msgstr "Doporučeno"
  4978. #~ msgctxt "@label"
  4979. #~ msgid "Your rating"
  4980. #~ msgstr "Vaše hodnocení"
  4981. #~ msgctxt "@label"
  4982. #~ msgid "Author"
  4983. #~ msgstr "Autor"
  4984. #~ msgctxt "@description"
  4985. #~ msgid "Get plugins and materials verified by Ultimaker"
  4986. #~ msgstr "Získejte pluginy a materiály ověřené společností Ultimaker"
  4987. #~ msgctxt "@label The argument is a username."
  4988. #~ msgid "Hi %1"
  4989. #~ msgstr "Zdravím, %1"
  4990. #~ msgctxt "@button"
  4991. #~ msgid "Ultimaker account"
  4992. #~ msgstr "Ultimaker účet"
  4993. #~ msgctxt "@button"
  4994. #~ msgid "Sign out"
  4995. #~ msgstr "Odhlásit se"
  4996. #~ msgctxt "@label"
  4997. #~ msgid "Support library for analysis of complex networks"
  4998. #~ msgstr "Podpůrná knihovna pro analýzu komplexních sítí"
  4999. #~ msgctxt "@Label"
  5000. #~ msgid "Python HTTP library"
  5001. #~ msgstr "Python HTTP knihovna"
  5002. #~ msgctxt "@text:window"
  5003. #~ msgid ""
  5004. #~ "You have customized some profile settings.\n"
  5005. #~ "Would you like to keep or discard those settings?"
  5006. #~ msgstr ""
  5007. #~ "Upravili jste některá nastavení profilu.\n"
  5008. #~ "Chcete tato nastavení zachovat nebo zrušit?"
  5009. #~ msgctxt "@title:column"
  5010. #~ msgid "Default"
  5011. #~ msgstr "Výchozí"
  5012. #~ msgctxt "@title:column"
  5013. #~ msgid "Customized"
  5014. #~ msgstr "Upraveno"
  5015. #~ msgctxt "@action:button"
  5016. #~ msgid "Discard"
  5017. #~ msgstr "Smazat"
  5018. #~ msgctxt "@action:button"
  5019. #~ msgid "Keep"
  5020. #~ msgstr "Ponechat"
  5021. #~ msgctxt "@action:button"
  5022. #~ msgid "Create New Profile"
  5023. #~ msgstr "Vytvořit nový profil"
  5024. #~ msgctxt "@title:menu menubar:file"
  5025. #~ msgid "&Save..."
  5026. #~ msgstr "Uloži&t..."
  5027. #~ msgctxt "@text"
  5028. #~ msgid "Place enter your printer's IP address."
  5029. #~ msgstr "Prosím zadejte IP adresu vaší tiskárny."
  5030. #~ msgctxt "@button"
  5031. #~ msgid "Create an account"
  5032. #~ msgstr "Vytvořit účet"
  5033. #~ msgctxt "@info:generic"
  5034. #~ msgid ""
  5035. #~ "\n"
  5036. #~ "Do you want to sync material and software packages with your account?"
  5037. #~ msgstr ""
  5038. #~ "\n"
  5039. #~ "Chcete synchronizovat materiálové a softwarové balíčky s vaším účtem?"
  5040. #~ msgctxt "@info:generic"
  5041. #~ msgid ""
  5042. #~ "\n"
  5043. #~ "Syncing..."
  5044. #~ msgstr ""
  5045. #~ "\n"
  5046. #~ "Synchronizuji..."
  5047. #~ msgctxt "@info:status"
  5048. #~ 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."
  5049. #~ msgstr "Nic ke slicování, protože žádný z modelů neodpovídá objemu sestavení nebo není přiřazen k vytlačovacímu stroji s deaktivací. Změňte měřítko nebo otočte modely, aby se vešly, nebo povolte extrudér."
  5050. #~ msgctxt "@info:backup_status"
  5051. #~ msgid "There was an error listing your backups."
  5052. #~ msgstr "Nastala chyba při výpisu vašich záloh."
  5053. #~ msgctxt "@title:groupbox"
  5054. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5055. #~ msgstr "Popis (Poznámka: Vývojáři nemusí mluvit vaším jazykem, pokud je to možné, použijte prosím angličtinu)"
  5056. #~ msgctxt "@title:window"
  5057. #~ msgid "Closing Cura"
  5058. #~ msgstr "Zavírám Curu"
  5059. #~ msgctxt "@label"
  5060. #~ msgid "Are you sure you want to exit Cura?"
  5061. #~ msgstr "Doopravdy chcete ukončit Curu?"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "Language:"
  5064. #~ msgstr "Jazyk:"
  5065. #~ msgctxt "@label"
  5066. #~ msgid "Ultimaker Cloud"
  5067. #~ msgstr "Ultimaker Cloud"
  5068. #~ msgctxt "@text"
  5069. #~ msgid "The next generation 3D printing workflow"
  5070. #~ msgstr "Pracovní postup 3D tisku nové generace"
  5071. #~ msgctxt "@text"
  5072. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5073. #~ msgstr "- Odeslat tiskové úlohy do tiskáren Ultimaker mimo vaši místní síť"
  5074. #~ msgctxt "@text"
  5075. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5076. #~ msgstr "- Uložte svá nastavení Ultimaker Cura do cloudu pro použití kdekoli"
  5077. #~ msgctxt "@text"
  5078. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5079. #~ msgstr "- Získejte exkluzivní přístup k profilům tisku od předních značek"
  5080. #~ msgctxt "@label"
  5081. #~ msgid "The value is resolved from per-extruder values "
  5082. #~ msgstr "Hodnota je rozlišena z hodnot na extruderu "
  5083. #~ msgctxt "@label"
  5084. #~ msgid "The next generation 3D printing workflow"
  5085. #~ msgstr "Pracovní postup 3D tisku nové generace"
  5086. #~ msgctxt "@text"
  5087. #~ msgid ""
  5088. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5089. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5090. #~ "- Get exclusive access to print profiles from leading brands"
  5091. #~ msgstr ""
  5092. #~ "- Odeslat tiskové úlohy do tiskáren Ultimaker mimo vaši místní síť\n"
  5093. #~ "- Uložte svá nastavení Ultimaker Cura do cloudu pro použití kdekoli\n"
  5094. #~ "- Získejte exkluzivní přístup k profilům tisku od předních značek"
  5095. #~ msgctxt "@title:window"
  5096. #~ msgid "About "
  5097. #~ msgstr "O "
  5098. #~ msgctxt "@info:button"
  5099. #~ msgid "Quit Cura"
  5100. #~ msgstr "Ukončit Curu"
  5101. #~ msgctxt "@action:checkbox"
  5102. #~ msgid "Infill only"
  5103. #~ msgstr "Pouze výplň"
  5104. #~ msgctxt "@info:tooltip"
  5105. #~ msgid "Change active post-processing scripts"
  5106. #~ msgstr "Změnit akitvní post-processing skripty"
  5107. #~ msgctxt "@label:listbox"
  5108. #~ msgid "Feedrate"
  5109. #~ msgstr "Feedrate"
  5110. #~ msgctxt "name"
  5111. #~ msgid "Machine Settings action"
  5112. #~ msgstr "Akce nastavení zařízení"