fdmprinter.def.json.po 386 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Uranium json setting files\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0000\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. #: fdmprinter.def.json
  17. msgctxt "machine_settings label"
  18. msgid "Machine"
  19. msgstr "プリンター"
  20. #: fdmprinter.def.json
  21. msgctxt "machine_settings description"
  22. msgid "Machine specific settings"
  23. msgstr "プリンター詳細設定"
  24. #: fdmprinter.def.json
  25. msgctxt "machine_name label"
  26. msgid "Machine Type"
  27. msgstr "プリンターのタイプ"
  28. #: fdmprinter.def.json
  29. msgctxt "machine_name description"
  30. msgid "The name of your 3D printer model."
  31. msgstr "3Dプリンターの機種名。"
  32. #: fdmprinter.def.json
  33. msgctxt "machine_show_variants label"
  34. msgid "Show Machine Variants"
  35. msgstr "プリンターのバリエーションの表示"
  36. #: fdmprinter.def.json
  37. msgctxt "machine_show_variants description"
  38. msgid ""
  39. "Whether to show the different variants of this machine, which are described "
  40. "in separate json files."
  41. msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。"
  42. #: fdmprinter.def.json
  43. msgctxt "machine_start_gcode label"
  44. msgid "Start G-code"
  45. msgstr "G-Codeの開始"
  46. #: fdmprinter.def.json
  47. msgctxt "machine_start_gcode description"
  48. msgid ""
  49. "G-code commands to be executed at the very start - separated by \n"
  50. "."
  51. msgstr "最初に実行するG-codeコマンドは、\nで区切ります。"
  52. #: fdmprinter.def.json
  53. msgctxt "machine_end_gcode label"
  54. msgid "End G-code"
  55. msgstr "G-codeの終了"
  56. #: fdmprinter.def.json
  57. msgctxt "machine_end_gcode description"
  58. msgid ""
  59. "G-code commands to be executed at the very end - separated by \n"
  60. "."
  61. msgstr "最後に実行するG-codeコマンドは、\nで区切ります。"
  62. #: fdmprinter.def.json
  63. msgctxt "material_guid label"
  64. msgid "Material GUID"
  65. msgstr "マテリアルGUID"
  66. #: fdmprinter.def.json
  67. msgctxt "material_guid description"
  68. msgid "GUID of the material. This is set automatically."
  69. msgstr "マテリアルのGUID。これは自動的に設定されます。"
  70. #: fdmprinter.def.json
  71. msgctxt "material_diameter label"
  72. msgid "Diameter"
  73. msgstr "直径"
  74. #: fdmprinter.def.json
  75. msgctxt "material_diameter description"
  76. msgid ""
  77. "Adjusts the diameter of the filament used. Match this value with the "
  78. "diameter of the used filament."
  79. msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。"
  80. #: fdmprinter.def.json
  81. msgctxt "material_bed_temp_wait label"
  82. msgid "Wait for Build Plate Heatup"
  83. msgstr "ビルドプレート加熱待ち時間"
  84. #: fdmprinter.def.json
  85. msgctxt "material_bed_temp_wait description"
  86. msgid ""
  87. "Whether to insert a command to wait until the build plate temperature is "
  88. "reached at the start."
  89. msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。"
  90. #: fdmprinter.def.json
  91. msgctxt "material_print_temp_wait label"
  92. msgid "Wait for Nozzle Heatup"
  93. msgstr "ノズル加熱待ち時間"
  94. #: fdmprinter.def.json
  95. msgctxt "material_print_temp_wait description"
  96. msgid "Whether to wait until the nozzle temperature is reached at the start."
  97. msgstr "開始時にノズルの温度が達するまで待つかどうか。"
  98. #: fdmprinter.def.json
  99. msgctxt "material_print_temp_prepend label"
  100. msgid "Include Material Temperatures"
  101. msgstr "マテリアル温度を含む"
  102. #: fdmprinter.def.json
  103. msgctxt "material_print_temp_prepend description"
  104. msgid ""
  105. "Whether to include nozzle temperature commands at the start of the gcode. "
  106. "When the start_gcode already contains nozzle temperature commands Cura "
  107. "frontend will automatically disable this setting."
  108. msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  109. #: fdmprinter.def.json
  110. msgctxt "material_bed_temp_prepend label"
  111. msgid "Include Build Plate Temperature"
  112. msgstr "ビルドプレート温度を含む"
  113. #: fdmprinter.def.json
  114. msgctxt "material_bed_temp_prepend description"
  115. msgid ""
  116. "Whether to include build plate temperature commands at the start of the "
  117. "gcode. When the start_gcode already contains build plate temperature "
  118. "commands Cura frontend will automatically disable this setting."
  119. msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  120. #: fdmprinter.def.json
  121. msgctxt "machine_width label"
  122. msgid "Machine Width"
  123. msgstr "プリンターの幅"
  124. #: fdmprinter.def.json
  125. msgctxt "machine_width description"
  126. msgid "The width (X-direction) of the printable area."
  127. msgstr "造形可能領域の幅(X方向)。"
  128. #: fdmprinter.def.json
  129. msgctxt "machine_depth label"
  130. msgid "Machine Depth"
  131. msgstr "プリンターの奥行"
  132. #: fdmprinter.def.json
  133. msgctxt "machine_depth description"
  134. msgid "The depth (Y-direction) of the printable area."
  135. msgstr "造形可能領域の幅(Y方向)。"
  136. #: fdmprinter.def.json
  137. msgctxt "machine_height label"
  138. msgid "Machine Height"
  139. msgstr "プリンターの高さ"
  140. #: fdmprinter.def.json
  141. msgctxt "machine_height description"
  142. msgid "The height (Z-direction) of the printable area."
  143. msgstr "造形可能領域の幅(Z方向)。"
  144. #: fdmprinter.def.json
  145. msgctxt "machine_shape label"
  146. msgid "Build Plate Shape"
  147. msgstr "ビルドプレートの形状"
  148. #: fdmprinter.def.json
  149. msgctxt "machine_shape description"
  150. msgid ""
  151. "The shape of the build plate without taking unprintable areas into account."
  152. msgstr "造形不可領域を考慮しないビルドプレートの形状。"
  153. #: fdmprinter.def.json
  154. msgctxt "machine_shape option rectangular"
  155. msgid "Rectangular"
  156. msgstr "長方形"
  157. #: fdmprinter.def.json
  158. msgctxt "machine_shape option elliptic"
  159. msgid "Elliptic"
  160. msgstr "楕円形"
  161. #: fdmprinter.def.json
  162. msgctxt "machine_buildplate_type label"
  163. msgid "Build Plate Material"
  164. msgstr "ビルドプレートの材料"
  165. #: fdmprinter.def.json
  166. msgctxt "machine_buildplate_type description"
  167. msgid "The material of the build plate installed on the printer."
  168. msgstr "プリンターに取り付けられているビルドプレートの材料です。"
  169. #: fdmprinter.def.json
  170. msgctxt "machine_buildplate_type option glass"
  171. msgid "Glass"
  172. msgstr "ガラス"
  173. #: fdmprinter.def.json
  174. msgctxt "machine_buildplate_type option aluminum"
  175. msgid "Aluminum"
  176. msgstr "アルミニウム"
  177. #: fdmprinter.def.json
  178. msgctxt "machine_heated_bed label"
  179. msgid "Has Heated Build Plate"
  180. msgstr "加熱式ビルドプレートあり"
  181. #: fdmprinter.def.json
  182. msgctxt "machine_heated_bed description"
  183. msgid "Whether the machine has a heated build plate present."
  184. msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。"
  185. #: fdmprinter.def.json
  186. msgctxt "machine_heated_build_volume label"
  187. msgid "Has Build Volume Temperature Stabilization"
  188. msgstr "造形温度安定化処理有り"
  189. #: fdmprinter.def.json
  190. msgctxt "machine_heated_build_volume description"
  191. msgid "Whether the machine is able to stabilize the build volume temperature."
  192. msgstr "機器が造形温度を安定化処理できるかどうかです。"
  193. #: fdmprinter.def.json
  194. msgctxt "machine_always_write_active_tool label"
  195. msgid "Always Write Active Tool"
  196. msgstr "常にアクティブなツールを書き込む"
  197. #: fdmprinter.def.json
  198. msgctxt "machine_always_write_active_tool description"
  199. msgid ""
  200. "Write active tool after sending temp commands to inactive tool. Required for "
  201. "Dual Extruder printing with Smoothie or other firmware with modal tool "
  202. "commands."
  203. msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。"
  204. #: fdmprinter.def.json
  205. msgctxt "machine_center_is_zero label"
  206. msgid "Is Center Origin"
  207. msgstr "中心位置"
  208. #: fdmprinter.def.json
  209. msgctxt "machine_center_is_zero description"
  210. msgid ""
  211. "Whether the X/Y coordinates of the zero position of the printer is at the "
  212. "center of the printable area."
  213. msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。"
  214. #: fdmprinter.def.json
  215. msgctxt "machine_extruder_count label"
  216. msgid "Number of Extruders"
  217. msgstr "エクストルーダーの数"
  218. #: fdmprinter.def.json
  219. msgctxt "machine_extruder_count description"
  220. msgid ""
  221. "Number of extruder trains. An extruder train is the combination of a feeder, "
  222. "bowden tube, and nozzle."
  223. msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。"
  224. #: fdmprinter.def.json
  225. msgctxt "extruders_enabled_count label"
  226. msgid "Number of Extruders That Are Enabled"
  227. msgstr "有効なエクストルーダーの数"
  228. #: fdmprinter.def.json
  229. msgctxt "extruders_enabled_count description"
  230. msgid ""
  231. "Number of extruder trains that are enabled; automatically set in software"
  232. msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)"
  233. #: fdmprinter.def.json
  234. msgctxt "machine_nozzle_tip_outer_diameter label"
  235. msgid "Outer Nozzle Diameter"
  236. msgstr "ノズル外径"
  237. #: fdmprinter.def.json
  238. msgctxt "machine_nozzle_tip_outer_diameter description"
  239. msgid "The outer diameter of the tip of the nozzle."
  240. msgstr "ノズルの外径。"
  241. #: fdmprinter.def.json
  242. msgctxt "machine_nozzle_head_distance label"
  243. msgid "Nozzle Length"
  244. msgstr "ノズル長さ"
  245. #: fdmprinter.def.json
  246. msgctxt "machine_nozzle_head_distance description"
  247. msgid ""
  248. "The height difference between the tip of the nozzle and the lowest part of "
  249. "the print head."
  250. msgstr "ノズル先端とプリントヘッドの最下部との高さの差。"
  251. #: fdmprinter.def.json
  252. msgctxt "machine_nozzle_expansion_angle label"
  253. msgid "Nozzle Angle"
  254. msgstr "ノズル角度"
  255. #: fdmprinter.def.json
  256. msgctxt "machine_nozzle_expansion_angle description"
  257. msgid ""
  258. "The angle between the horizontal plane and the conical part right above the "
  259. "tip of the nozzle."
  260. msgstr "水平面とノズル直上の円錐部分との間の角度。"
  261. #: fdmprinter.def.json
  262. msgctxt "machine_heat_zone_length label"
  263. msgid "Heat Zone Length"
  264. msgstr "ノズル加熱長さ"
  265. #: fdmprinter.def.json
  266. msgctxt "machine_heat_zone_length description"
  267. msgid ""
  268. "The distance from the tip of the nozzle in which heat from the nozzle is "
  269. "transferred to the filament."
  270. msgstr "ノズルからの熱がフィラメントに伝達される距離。"
  271. #: fdmprinter.def.json
  272. msgctxt "machine_nozzle_temp_enabled label"
  273. msgid "Enable Nozzle Temperature Control"
  274. msgstr "ノズルの温度管理を有効にする"
  275. #: fdmprinter.def.json
  276. msgctxt "machine_nozzle_temp_enabled description"
  277. msgid ""
  278. "Whether to control temperature from Cura. Turn this off to control nozzle "
  279. "temperature from outside of Cura."
  280. msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。"
  281. #: fdmprinter.def.json
  282. msgctxt "machine_nozzle_heat_up_speed label"
  283. msgid "Heat Up Speed"
  284. msgstr "加熱速度"
  285. #: fdmprinter.def.json
  286. msgctxt "machine_nozzle_heat_up_speed description"
  287. msgid ""
  288. "The speed (°C/s) by which the nozzle heats up averaged over the window of "
  289. "normal printing temperatures and the standby temperature."
  290. msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。"
  291. #: fdmprinter.def.json
  292. msgctxt "machine_nozzle_cool_down_speed label"
  293. msgid "Cool Down Speed"
  294. msgstr "冷却速度"
  295. #: fdmprinter.def.json
  296. msgctxt "machine_nozzle_cool_down_speed description"
  297. msgid ""
  298. "The speed (°C/s) by which the nozzle cools down averaged over the window of "
  299. "normal printing temperatures and the standby temperature."
  300. msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。"
  301. #: fdmprinter.def.json
  302. msgctxt "machine_min_cool_heat_time_window label"
  303. msgid "Minimal Time Standby Temperature"
  304. msgstr "スタンバイ温度までの最短時間"
  305. #: fdmprinter.def.json
  306. msgctxt "machine_min_cool_heat_time_window description"
  307. msgid ""
  308. "The minimal time an extruder has to be inactive before the nozzle is cooled. "
  309. "Only when an extruder is not used for longer than this time will it be "
  310. "allowed to cool down to the standby temperature."
  311. msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。"
  312. #: fdmprinter.def.json
  313. msgctxt "machine_gcode_flavor label"
  314. msgid "G-code Flavor"
  315. msgstr "G-codeフレーバー"
  316. #: fdmprinter.def.json
  317. msgctxt "machine_gcode_flavor description"
  318. msgid "The type of g-code to be generated."
  319. msgstr "生成するG-codeの種類です。"
  320. #: fdmprinter.def.json
  321. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  322. msgid "Marlin"
  323. msgstr "Marlin"
  324. #: fdmprinter.def.json
  325. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  326. msgid "Marlin (Volumetric)"
  327. msgstr "Marlin (Volumetric)"
  328. #: fdmprinter.def.json
  329. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  330. msgid "RepRap"
  331. msgstr "RepRap"
  332. #: fdmprinter.def.json
  333. msgctxt "machine_gcode_flavor option UltiGCode"
  334. msgid "Ultimaker 2"
  335. msgstr "Ultimaker 2"
  336. #: fdmprinter.def.json
  337. msgctxt "machine_gcode_flavor option Griffin"
  338. msgid "Griffin"
  339. msgstr "Griffin"
  340. #: fdmprinter.def.json
  341. msgctxt "machine_gcode_flavor option Makerbot"
  342. msgid "Makerbot"
  343. msgstr "Makerbot"
  344. #: fdmprinter.def.json
  345. msgctxt "machine_gcode_flavor option BFB"
  346. msgid "Bits from Bytes"
  347. msgstr "Bits from Bytes"
  348. #: fdmprinter.def.json
  349. msgctxt "machine_gcode_flavor option MACH3"
  350. msgid "Mach3"
  351. msgstr "Mach3"
  352. #: fdmprinter.def.json
  353. msgctxt "machine_gcode_flavor option Repetier"
  354. msgid "Repetier"
  355. msgstr "Repetier"
  356. #: fdmprinter.def.json
  357. msgctxt "machine_firmware_retract label"
  358. msgid "Firmware Retraction"
  359. msgstr "ファームウェア引き戻し"
  360. #: fdmprinter.def.json
  361. msgctxt "machine_firmware_retract description"
  362. msgid ""
  363. "Whether to use firmware retract commands (G10/G11) instead of using the E "
  364. "property in G1 commands to retract the material."
  365. msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。"
  366. #: fdmprinter.def.json
  367. msgctxt "machine_extruders_share_heater label"
  368. msgid "Extruders Share Heater"
  369. msgstr "エクストルーダーのヒーター共有"
  370. #: fdmprinter.def.json
  371. msgctxt "machine_extruders_share_heater description"
  372. msgid ""
  373. "Whether the extruders share a single heater rather than each extruder having "
  374. "its own heater."
  375. msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。"
  376. #: fdmprinter.def.json
  377. msgctxt "machine_extruders_share_nozzle label"
  378. msgid "Extruders Share Nozzle"
  379. msgstr "エクストルーダーの共有ノズル"
  380. #: fdmprinter.def.json
  381. msgctxt "machine_extruders_share_nozzle description"
  382. msgid ""
  383. "Whether the extruders share a single nozzle rather than each extruder having "
  384. "its own nozzle. When set to true, it is expected that the printer-start "
  385. "gcode script properly sets up all extruders in an initial retraction state "
  386. "that is known and mutually compatible (either zero or one filament not "
  387. "retracted); in that case the initial retraction status is described, per "
  388. "extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' "
  389. "parameter."
  390. msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。"
  391. #: fdmprinter.def.json
  392. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  393. msgid "Shared Nozzle Initial Retraction"
  394. msgstr "共有ノズルの初期引き戻し"
  395. #: fdmprinter.def.json
  396. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  397. msgid ""
  398. "How much the filament of each extruder is assumed to have been retracted "
  399. "from the shared nozzle tip at the completion of the printer-start gcode "
  400. "script; the value should be equal to or greater than the length of the "
  401. "common part of the nozzle's ducts."
  402. msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。"
  403. #: fdmprinter.def.json
  404. msgctxt "machine_disallowed_areas label"
  405. msgid "Disallowed Areas"
  406. msgstr "拒否エリア"
  407. #: fdmprinter.def.json
  408. msgctxt "machine_disallowed_areas description"
  409. msgid "A list of polygons with areas the print head is not allowed to enter."
  410. msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。"
  411. #: fdmprinter.def.json
  412. msgctxt "nozzle_disallowed_areas label"
  413. msgid "Nozzle Disallowed Areas"
  414. msgstr "ノズル拒否エリア"
  415. #: fdmprinter.def.json
  416. msgctxt "nozzle_disallowed_areas description"
  417. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  418. msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。"
  419. #: fdmprinter.def.json
  420. msgctxt "machine_head_with_fans_polygon label"
  421. msgid "Machine Head & Fan Polygon"
  422. msgstr "プリントヘッドとファンポリゴン"
  423. #: fdmprinter.def.json
  424. msgctxt "machine_head_with_fans_polygon description"
  425. msgid ""
  426. "The shape of the print head. These are coordinates relative to the position "
  427. "of the print head, which is usually the position of its first extruder. The "
  428. "dimensions left and in front of the print head must be negative coordinates."
  429. msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。"
  430. #: fdmprinter.def.json
  431. msgctxt "gantry_height label"
  432. msgid "Gantry Height"
  433. msgstr "ガントリーの高さ"
  434. #: fdmprinter.def.json
  435. msgctxt "gantry_height description"
  436. msgid ""
  437. "The height difference between the tip of the nozzle and the gantry system (X "
  438. "and Y axes)."
  439. msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。"
  440. #: fdmprinter.def.json
  441. msgctxt "machine_nozzle_id label"
  442. msgid "Nozzle ID"
  443. msgstr "ノズルID"
  444. #: fdmprinter.def.json
  445. msgctxt "machine_nozzle_id description"
  446. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  447. msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。"
  448. #: fdmprinter.def.json
  449. msgctxt "machine_nozzle_size label"
  450. msgid "Nozzle Diameter"
  451. msgstr "ノズル内径"
  452. #: fdmprinter.def.json
  453. msgctxt "machine_nozzle_size description"
  454. msgid ""
  455. "The inner diameter of the nozzle. Change this setting when using a non-"
  456. "standard nozzle size."
  457. msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。"
  458. #: fdmprinter.def.json
  459. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  460. msgid "Offset with Extruder"
  461. msgstr "エクストルーダーのオフセット"
  462. #: fdmprinter.def.json
  463. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  464. msgid ""
  465. "Apply the extruder offset to the coordinate system. Affects all extruders."
  466. msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。"
  467. #: fdmprinter.def.json
  468. msgctxt "extruder_prime_pos_z label"
  469. msgid "Extruder Prime Z Position"
  470. msgstr "エクストルーダーのZ座標"
  471. #: fdmprinter.def.json
  472. msgctxt "extruder_prime_pos_z description"
  473. msgid ""
  474. "The Z coordinate of the position where the nozzle primes at the start of "
  475. "printing."
  476. msgstr "印刷開始時にノズルがポジションを確認するZ座標。"
  477. #: fdmprinter.def.json
  478. msgctxt "extruder_prime_pos_abs label"
  479. msgid "Absolute Extruder Prime Position"
  480. msgstr "エクストルーダーの絶対位置"
  481. #: fdmprinter.def.json
  482. msgctxt "extruder_prime_pos_abs description"
  483. msgid ""
  484. "Make the extruder prime position absolute rather than relative to the last-"
  485. "known location of the head."
  486. msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。"
  487. #: fdmprinter.def.json
  488. msgctxt "machine_max_feedrate_x label"
  489. msgid "Maximum Speed X"
  490. msgstr "最大速度X"
  491. #: fdmprinter.def.json
  492. msgctxt "machine_max_feedrate_x description"
  493. msgid "The maximum speed for the motor of the X-direction."
  494. msgstr "X方向のモーターの最大速度。"
  495. #: fdmprinter.def.json
  496. msgctxt "machine_max_feedrate_y label"
  497. msgid "Maximum Speed Y"
  498. msgstr "最大速度Y"
  499. #: fdmprinter.def.json
  500. msgctxt "machine_max_feedrate_y description"
  501. msgid "The maximum speed for the motor of the Y-direction."
  502. msgstr "Y方向のモーターの最大速度。"
  503. #: fdmprinter.def.json
  504. msgctxt "machine_max_feedrate_z label"
  505. msgid "Maximum Speed Z"
  506. msgstr "最大速度Z"
  507. #: fdmprinter.def.json
  508. msgctxt "machine_max_feedrate_z description"
  509. msgid "The maximum speed for the motor of the Z-direction."
  510. msgstr "Z方向のモーターの最大速度。"
  511. #: fdmprinter.def.json
  512. msgctxt "machine_max_feedrate_e label"
  513. msgid "Maximum Speed E"
  514. msgstr "最大速度E"
  515. #: fdmprinter.def.json
  516. msgctxt "machine_max_feedrate_e description"
  517. msgid "The maximum speed of the filament."
  518. msgstr "フィラメントの最大速度。"
  519. #: fdmprinter.def.json
  520. msgctxt "machine_max_acceleration_x label"
  521. msgid "Maximum Acceleration X"
  522. msgstr "最大加速度X"
  523. #: fdmprinter.def.json
  524. msgctxt "machine_max_acceleration_x description"
  525. msgid "Maximum acceleration for the motor of the X-direction"
  526. msgstr "X方向のモーターの最大速度"
  527. #: fdmprinter.def.json
  528. msgctxt "machine_max_acceleration_y label"
  529. msgid "Maximum Acceleration Y"
  530. msgstr "最大加速度Y"
  531. #: fdmprinter.def.json
  532. msgctxt "machine_max_acceleration_y description"
  533. msgid "Maximum acceleration for the motor of the Y-direction."
  534. msgstr "Y方向のモーターの最大加速度。"
  535. #: fdmprinter.def.json
  536. msgctxt "machine_max_acceleration_z label"
  537. msgid "Maximum Acceleration Z"
  538. msgstr "最大加速度Z"
  539. #: fdmprinter.def.json
  540. msgctxt "machine_max_acceleration_z description"
  541. msgid "Maximum acceleration for the motor of the Z-direction."
  542. msgstr "Z方向のモーターの最大加速度。"
  543. #: fdmprinter.def.json
  544. msgctxt "machine_max_acceleration_e label"
  545. msgid "Maximum Filament Acceleration"
  546. msgstr "フィラメント最大加速度"
  547. #: fdmprinter.def.json
  548. msgctxt "machine_max_acceleration_e description"
  549. msgid "Maximum acceleration for the motor of the filament."
  550. msgstr "フィラメントのモーターの最大加速度。"
  551. #: fdmprinter.def.json
  552. msgctxt "machine_acceleration label"
  553. msgid "Default Acceleration"
  554. msgstr "デフォルト加速度"
  555. #: fdmprinter.def.json
  556. msgctxt "machine_acceleration description"
  557. msgid "The default acceleration of print head movement."
  558. msgstr "プリントヘッド移動のデフォルトの加速度。"
  559. #: fdmprinter.def.json
  560. msgctxt "machine_max_jerk_xy label"
  561. msgid "Default X-Y Jerk"
  562. msgstr "X-Yデフォルトジャーク"
  563. #: fdmprinter.def.json
  564. msgctxt "machine_max_jerk_xy description"
  565. msgid "Default jerk for movement in the horizontal plane."
  566. msgstr "水平面内での移動のデフォルトジャーク。"
  567. #: fdmprinter.def.json
  568. msgctxt "machine_max_jerk_z label"
  569. msgid "Default Z Jerk"
  570. msgstr "Zデフォルトジャーク"
  571. #: fdmprinter.def.json
  572. msgctxt "machine_max_jerk_z description"
  573. msgid "Default jerk for the motor of the Z-direction."
  574. msgstr "Z方向のモーターのデフォルトジャーク。"
  575. #: fdmprinter.def.json
  576. msgctxt "machine_max_jerk_e label"
  577. msgid "Default Filament Jerk"
  578. msgstr "フィラメントデフォルトジャーク"
  579. #: fdmprinter.def.json
  580. msgctxt "machine_max_jerk_e description"
  581. msgid "Default jerk for the motor of the filament."
  582. msgstr "フィラメントのモーターのデフォルトジャーク。"
  583. #: fdmprinter.def.json
  584. msgctxt "machine_steps_per_mm_x label"
  585. msgid "Steps per Millimeter (X)"
  586. msgstr "ミリメートルあたりのステップ (X)"
  587. #: fdmprinter.def.json
  588. msgctxt "machine_steps_per_mm_x description"
  589. msgid ""
  590. "How many steps of the stepper motor will result in one millimeter of "
  591. "movement in the X direction."
  592. msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  593. #: fdmprinter.def.json
  594. msgctxt "machine_steps_per_mm_y label"
  595. msgid "Steps per Millimeter (Y)"
  596. msgstr "ミリメートルあたりのステップ (Y)"
  597. #: fdmprinter.def.json
  598. msgctxt "machine_steps_per_mm_y description"
  599. msgid ""
  600. "How many steps of the stepper motor will result in one millimeter of "
  601. "movement in the Y direction."
  602. msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  603. #: fdmprinter.def.json
  604. msgctxt "machine_steps_per_mm_z label"
  605. msgid "Steps per Millimeter (Z)"
  606. msgstr "ミリメートルあたりのステップ (Z)"
  607. #: fdmprinter.def.json
  608. msgctxt "machine_steps_per_mm_z description"
  609. msgid ""
  610. "How many steps of the stepper motor will result in one millimeter of "
  611. "movement in the Z direction."
  612. msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  613. #: fdmprinter.def.json
  614. msgctxt "machine_steps_per_mm_e label"
  615. msgid "Steps per Millimeter (E)"
  616. msgstr "ミリメートルあたりのステップ (E)"
  617. #: fdmprinter.def.json
  618. msgctxt "machine_steps_per_mm_e description"
  619. msgid ""
  620. "How many steps of the stepper motors will result in moving the feeder wheel "
  621. "by one millimeter around its circumference."
  622. msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。"
  623. #: fdmprinter.def.json
  624. msgctxt "machine_endstop_positive_direction_x label"
  625. msgid "X Endstop in Positive Direction"
  626. msgstr "プラス方向の X エンドストップ"
  627. #: fdmprinter.def.json
  628. msgctxt "machine_endstop_positive_direction_x description"
  629. msgid ""
  630. "Whether the endstop of the X axis is in the positive direction (high X "
  631. "coordinate) or negative (low X coordinate)."
  632. msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。"
  633. #: fdmprinter.def.json
  634. msgctxt "machine_endstop_positive_direction_y label"
  635. msgid "Y Endstop in Positive Direction"
  636. msgstr "プラス方向の Y エンドストップ"
  637. #: fdmprinter.def.json
  638. msgctxt "machine_endstop_positive_direction_y description"
  639. msgid ""
  640. "Whether the endstop of the Y axis is in the positive direction (high Y "
  641. "coordinate) or negative (low Y coordinate)."
  642. msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。"
  643. #: fdmprinter.def.json
  644. msgctxt "machine_endstop_positive_direction_z label"
  645. msgid "Z Endstop in Positive Direction"
  646. msgstr "プラス方向の Z エンドストップ"
  647. #: fdmprinter.def.json
  648. msgctxt "machine_endstop_positive_direction_z description"
  649. msgid ""
  650. "Whether the endstop of the Z axis is in the positive direction (high Z "
  651. "coordinate) or negative (low Z coordinate)."
  652. msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。"
  653. #: fdmprinter.def.json
  654. msgctxt "machine_minimum_feedrate label"
  655. msgid "Minimum Feedrate"
  656. msgstr "最小送り速度"
  657. #: fdmprinter.def.json
  658. msgctxt "machine_minimum_feedrate description"
  659. msgid "The minimal movement speed of the print head."
  660. msgstr "プリントヘッドの最小移動速度。"
  661. #: fdmprinter.def.json
  662. msgctxt "machine_feeder_wheel_diameter label"
  663. msgid "Feeder Wheel Diameter"
  664. msgstr "フィーダーホイール直径"
  665. #: fdmprinter.def.json
  666. msgctxt "machine_feeder_wheel_diameter description"
  667. msgid "The diameter of the wheel that drives the material in the feeder."
  668. msgstr "材料をフィーダーに送るホイールの直径。"
  669. #: fdmprinter.def.json
  670. msgctxt "machine_scale_fan_speed_zero_to_one label"
  671. msgid "Scale Fan Speed To 0-1"
  672. msgstr "ファン速度を0~1にスケール"
  673. #: fdmprinter.def.json
  674. msgctxt "machine_scale_fan_speed_zero_to_one description"
  675. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  676. msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。"
  677. #: fdmprinter.def.json
  678. msgctxt "resolution label"
  679. msgid "Quality"
  680. msgstr "品質"
  681. #: fdmprinter.def.json
  682. msgctxt "resolution description"
  683. msgid ""
  684. "All settings that influence the resolution of the print. These settings have "
  685. "a large impact on the quality (and print time)"
  686. msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。"
  687. #: fdmprinter.def.json
  688. msgctxt "layer_height label"
  689. msgid "Layer Height"
  690. msgstr "レイヤー高さ"
  691. #: fdmprinter.def.json
  692. msgctxt "layer_height description"
  693. msgid ""
  694. "The height of each layer in mm. Higher values produce faster prints in lower "
  695. "resolution, lower values produce slower prints in higher resolution."
  696. msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。"
  697. #: fdmprinter.def.json
  698. msgctxt "layer_height_0 label"
  699. msgid "Initial Layer Height"
  700. msgstr "初期レイヤー高さ"
  701. #: fdmprinter.def.json
  702. msgctxt "layer_height_0 description"
  703. msgid ""
  704. "The height of the initial layer in mm. A thicker initial layer makes "
  705. "adhesion to the build plate easier."
  706. msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。"
  707. #: fdmprinter.def.json
  708. msgctxt "line_width label"
  709. msgid "Line Width"
  710. msgstr "ライン幅"
  711. #: fdmprinter.def.json
  712. msgctxt "line_width description"
  713. msgid ""
  714. "Width of a single line. Generally, the width of each line should correspond "
  715. "to the width of the nozzle. However, slightly reducing this value could "
  716. "produce better prints."
  717. msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。"
  718. #: fdmprinter.def.json
  719. msgctxt "wall_line_width label"
  720. msgid "Wall Line Width"
  721. msgstr "ウォールライン幅"
  722. #: fdmprinter.def.json
  723. msgctxt "wall_line_width description"
  724. msgid "Width of a single wall line."
  725. msgstr "ウォールラインの幅。"
  726. #: fdmprinter.def.json
  727. msgctxt "wall_line_width_0 label"
  728. msgid "Outer Wall Line Width"
  729. msgstr "外側ウォールライン幅"
  730. #: fdmprinter.def.json
  731. msgctxt "wall_line_width_0 description"
  732. msgid ""
  733. "Width of the outermost wall line. By lowering this value, higher levels of "
  734. "detail can be printed."
  735. msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。"
  736. #: fdmprinter.def.json
  737. msgctxt "wall_line_width_x label"
  738. msgid "Inner Wall(s) Line Width"
  739. msgstr "内側ウォールライン幅"
  740. #: fdmprinter.def.json
  741. msgctxt "wall_line_width_x description"
  742. msgid ""
  743. "Width of a single wall line for all wall lines except the outermost one."
  744. msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。"
  745. #: fdmprinter.def.json
  746. msgctxt "skin_line_width label"
  747. msgid "Top/Bottom Line Width"
  748. msgstr "上下面ライン幅"
  749. #: fdmprinter.def.json
  750. msgctxt "skin_line_width description"
  751. msgid "Width of a single top/bottom line."
  752. msgstr "上辺/底辺線のライン幅。"
  753. #: fdmprinter.def.json
  754. msgctxt "infill_line_width label"
  755. msgid "Infill Line Width"
  756. msgstr "インフィルラインの幅"
  757. #: fdmprinter.def.json
  758. msgctxt "infill_line_width description"
  759. msgid "Width of a single infill line."
  760. msgstr "インフィル線の幅。"
  761. #: fdmprinter.def.json
  762. msgctxt "skirt_brim_line_width label"
  763. msgid "Skirt/Brim Line Width"
  764. msgstr "スカート/ブリムラインの幅"
  765. #: fdmprinter.def.json
  766. msgctxt "skirt_brim_line_width description"
  767. msgid "Width of a single skirt or brim line."
  768. msgstr "単一のスカートまたはブリムラインの幅。"
  769. #: fdmprinter.def.json
  770. msgctxt "support_line_width label"
  771. msgid "Support Line Width"
  772. msgstr "サポートライン幅"
  773. #: fdmprinter.def.json
  774. msgctxt "support_line_width description"
  775. msgid "Width of a single support structure line."
  776. msgstr "単一のサポート構造のライン幅。"
  777. #: fdmprinter.def.json
  778. msgctxt "support_interface_line_width label"
  779. msgid "Support Interface Line Width"
  780. msgstr "サポート面のライン幅"
  781. #: fdmprinter.def.json
  782. msgctxt "support_interface_line_width description"
  783. msgid "Width of a single line of support roof or floor."
  784. msgstr "サポートのルーフ、フロアのライン幅。"
  785. #: fdmprinter.def.json
  786. msgctxt "support_roof_line_width label"
  787. msgid "Support Roof Line Width"
  788. msgstr "サポートルーフのライン幅"
  789. #: fdmprinter.def.json
  790. msgctxt "support_roof_line_width description"
  791. msgid "Width of a single support roof line."
  792. msgstr "サポートルーフのライン一幅。"
  793. #: fdmprinter.def.json
  794. msgctxt "support_bottom_line_width label"
  795. msgid "Support Floor Line Width"
  796. msgstr "サポートフロアのライン幅"
  797. #: fdmprinter.def.json
  798. msgctxt "support_bottom_line_width description"
  799. msgid "Width of a single support floor line."
  800. msgstr "サポートのフロアのラインの一幅。"
  801. #: fdmprinter.def.json
  802. msgctxt "prime_tower_line_width label"
  803. msgid "Prime Tower Line Width"
  804. msgstr "プライムタワーのライン幅"
  805. #: fdmprinter.def.json
  806. msgctxt "prime_tower_line_width description"
  807. msgid "Width of a single prime tower line."
  808. msgstr "単一のプライムタワーラインの幅。"
  809. #: fdmprinter.def.json
  810. msgctxt "initial_layer_line_width_factor label"
  811. msgid "Initial Layer Line Width"
  812. msgstr "初期レイヤーのライン幅"
  813. #: fdmprinter.def.json
  814. msgctxt "initial_layer_line_width_factor description"
  815. msgid ""
  816. "Multiplier of the line width on the first layer. Increasing this could "
  817. "improve bed adhesion."
  818. msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。"
  819. #: fdmprinter.def.json
  820. msgctxt "shell label"
  821. msgid "Walls"
  822. msgstr "ウォール"
  823. #: fdmprinter.def.json
  824. msgctxt "shell description"
  825. msgid "Shell"
  826. msgstr "外郭"
  827. #: fdmprinter.def.json
  828. msgctxt "wall_extruder_nr label"
  829. msgid "Wall Extruder"
  830. msgstr "ウォールエクストルーダー"
  831. #: fdmprinter.def.json
  832. msgctxt "wall_extruder_nr description"
  833. msgid ""
  834. "The extruder train used for printing the walls. This is used in multi-"
  835. "extrusion."
  836. msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。"
  837. #: fdmprinter.def.json
  838. msgctxt "wall_0_extruder_nr label"
  839. msgid "Outer Wall Extruder"
  840. msgstr "外壁用エクストルーダー"
  841. #: fdmprinter.def.json
  842. msgctxt "wall_0_extruder_nr description"
  843. msgid ""
  844. "The extruder train used for printing the outer wall. This is used in multi-"
  845. "extrusion."
  846. msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  847. #: fdmprinter.def.json
  848. msgctxt "wall_x_extruder_nr label"
  849. msgid "Inner Wall Extruder"
  850. msgstr "内壁用エクストルーダー"
  851. #: fdmprinter.def.json
  852. msgctxt "wall_x_extruder_nr description"
  853. msgid ""
  854. "The extruder train used for printing the inner walls. This is used in multi-"
  855. "extrusion."
  856. msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  857. #: fdmprinter.def.json
  858. msgctxt "wall_thickness label"
  859. msgid "Wall Thickness"
  860. msgstr "壁の厚さ"
  861. #: fdmprinter.def.json
  862. msgctxt "wall_thickness description"
  863. msgid ""
  864. "The thickness of the walls in the horizontal direction. This value divided "
  865. "by the wall line width defines the number of walls."
  866. msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。"
  867. #: fdmprinter.def.json
  868. msgctxt "wall_line_count label"
  869. msgid "Wall Line Count"
  870. msgstr "ウォールライン数"
  871. #: fdmprinter.def.json
  872. msgctxt "wall_line_count description"
  873. msgid ""
  874. "The number of walls. When calculated by the wall thickness, this value is "
  875. "rounded to a whole number."
  876. msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。"
  877. #: fdmprinter.def.json
  878. msgctxt "wall_transition_length label"
  879. msgid "Wall Transition Length"
  880. msgstr "ウォール移行長さ"
  881. #: fdmprinter.def.json
  882. msgctxt "wall_transition_length description"
  883. msgid ""
  884. "When transitioning between different numbers of walls as the part becomes "
  885. "thinner, a certain amount of space is allotted to split or join the wall "
  886. "lines."
  887. msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。"
  888. #: fdmprinter.def.json
  889. msgctxt "wall_distribution_count label"
  890. msgid "Wall Distribution Count"
  891. msgstr "ウォール分配数"
  892. #: fdmprinter.def.json
  893. msgctxt "wall_distribution_count description"
  894. msgid ""
  895. "The number of walls, counted from the center, over which the variation needs "
  896. "to be spread. Lower values mean that the outer walls don't change in width."
  897. msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。"
  898. #: fdmprinter.def.json
  899. msgctxt "wall_transition_angle label"
  900. msgid "Wall Transitioning Threshold Angle"
  901. msgstr "ウォール移行しきい値角度"
  902. #: fdmprinter.def.json
  903. msgctxt "wall_transition_angle description"
  904. msgid ""
  905. "When to create transitions between even and odd numbers of walls. A wedge "
  906. "shape with an angle greater than this setting will not have transitions and "
  907. "no walls will be printed in the center to fill the remaining space. Reducing "
  908. "this setting reduces the number and length of these center walls, but may "
  909. "leave gaps or overextrude."
  910. msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。"
  911. #: fdmprinter.def.json
  912. msgctxt "wall_transition_filter_distance label"
  913. msgid "Wall Transitioning Filter Distance"
  914. msgstr "ウォール移行フィルター距離"
  915. #: fdmprinter.def.json
  916. msgctxt "wall_transition_filter_distance description"
  917. msgid ""
  918. "If it would be transitioning back and forth between different numbers of "
  919. "walls in quick succession, don't transition at all. Remove transitions if "
  920. "they are closer together than this distance."
  921. msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。"
  922. #: fdmprinter.def.json
  923. msgctxt "wall_transition_filter_deviation label"
  924. msgid "Wall Transitioning Filter Margin"
  925. msgstr "ウォール移行フィルターマージン"
  926. #: fdmprinter.def.json
  927. msgctxt "wall_transition_filter_deviation description"
  928. msgid ""
  929. "Prevent transitioning back and forth between one extra wall and one less. "
  930. "This margin extends the range of line widths which follow to [Minimum Wall "
  931. "Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this "
  932. "margin reduces the number of transitions, which reduces the number of "
  933. "extrusion starts/stops and travel time. However, large line width variation "
  934. "can lead to under- or overextrusion problems."
  935. msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。"
  936. #: fdmprinter.def.json
  937. msgctxt "wall_0_wipe_dist label"
  938. msgid "Outer Wall Wipe Distance"
  939. msgstr "外壁移動距離"
  940. #: fdmprinter.def.json
  941. msgctxt "wall_0_wipe_dist description"
  942. msgid ""
  943. "Distance of a travel move inserted after the outer wall, to hide the Z seam "
  944. "better."
  945. msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。"
  946. #: fdmprinter.def.json
  947. msgctxt "wall_0_inset label"
  948. msgid "Outer Wall Inset"
  949. msgstr "外壁はめ込み"
  950. #: fdmprinter.def.json
  951. msgctxt "wall_0_inset description"
  952. msgid ""
  953. "Inset applied to the path of the outer wall. If the outer wall is smaller "
  954. "than the nozzle, and printed after the inner walls, use this offset to get "
  955. "the hole in the nozzle to overlap with the inner walls instead of the "
  956. "outside of the model."
  957. msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。"
  958. #: fdmprinter.def.json
  959. msgctxt "optimize_wall_printing_order label"
  960. msgid "Optimize Wall Printing Order"
  961. msgstr "壁印刷順序の最適化"
  962. #: fdmprinter.def.json
  963. msgctxt "optimize_wall_printing_order description"
  964. msgid ""
  965. "Optimize the order in which walls are printed so as to reduce the number of "
  966. "retractions and the distance travelled. Most parts will benefit from this "
  967. "being enabled but some may actually take longer so please compare the print "
  968. "time estimates with and without optimization. First layer is not optimized "
  969. "when choosing brim as build plate adhesion type."
  970. msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。"
  971. #: fdmprinter.def.json
  972. msgctxt "inset_direction label"
  973. msgid "Wall Ordering"
  974. msgstr "ウォール順序"
  975. #: fdmprinter.def.json
  976. msgctxt "inset_direction description"
  977. msgid ""
  978. "Determines the order in which walls are printed. Printing outer walls "
  979. "earlier helps with dimensional accuracy, as faults from inner walls cannot "
  980. "propagate to the outside. However printing them later allows them to stack "
  981. "better when overhangs are printed."
  982. msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。"
  983. #: fdmprinter.def.json
  984. msgctxt "inset_direction option inside_out"
  985. msgid "Inside To Outside"
  986. msgstr "内側から外側へ"
  987. #: fdmprinter.def.json
  988. msgctxt "inset_direction option outside_in"
  989. msgid "Outside To Inside"
  990. msgstr "外側から内側へ"
  991. #: fdmprinter.def.json
  992. msgctxt "alternate_extra_perimeter label"
  993. msgid "Alternate Extra Wall"
  994. msgstr "代替予備壁"
  995. #: fdmprinter.def.json
  996. msgctxt "alternate_extra_perimeter description"
  997. msgid ""
  998. "Prints an extra wall at every other layer. This way infill gets caught "
  999. "between these extra walls, resulting in stronger prints."
  1000. msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。"
  1001. #: fdmprinter.def.json
  1002. msgctxt "min_wall_line_width label"
  1003. msgid "Minimum Wall Line Width"
  1004. msgstr "最小ウォールライン幅"
  1005. #: fdmprinter.def.json
  1006. msgctxt "min_wall_line_width description"
  1007. msgid ""
  1008. "For thin structures around once or twice the nozzle size, the line widths "
  1009. "need to be altered to adhere to the thickness of the model. This setting "
  1010. "controls the minimum line width allowed for the walls. The minimum line "
  1011. "widths inherently also determine the maximum line widths, since we "
  1012. "transition from N to N+1 walls at some geometry thickness where the N walls "
  1013. "are wide and the N+1 walls are narrow. The widest possible wall line is "
  1014. "twice the Minimum Wall Line Width."
  1015. msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。"
  1016. #: fdmprinter.def.json
  1017. msgctxt "min_even_wall_line_width label"
  1018. msgid "Minimum Even Wall Line Width"
  1019. msgstr "最小偶数ウォールライン幅"
  1020. #: fdmprinter.def.json
  1021. msgctxt "min_even_wall_line_width description"
  1022. msgid ""
  1023. "The minimum line width for normal polygonal walls. This setting determines "
  1024. "at which model thickness we switch from printing a single thin wall line, to "
  1025. "printing two wall lines. A higher Minimum Even Wall Line Width leads to a "
  1026. "higher maximum odd wall line width. The maximum even wall line width is "
  1027. "calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  1028. msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5"
  1029. " * 最小奇数ウォールライン幅として計算されます。"
  1030. #: fdmprinter.def.json
  1031. msgctxt "wall_split_middle_threshold label"
  1032. msgid "Split Middle Line Threshold"
  1033. msgstr "中央ライン分割しきい値"
  1034. #: fdmprinter.def.json
  1035. msgctxt "wall_split_middle_threshold description"
  1036. msgid ""
  1037. "The smallest line width, as a factor of the normal line width, above which "
  1038. "the middle line (if there is one) will be split into two. Reduce this "
  1039. "setting to use more, thinner lines. Increase to use fewer, wider lines. Note "
  1040. "that this applies -as if- the entire shape should be filled with wall, so "
  1041. "the middle here refers to the middle of the object between two outer edges "
  1042. "of the shape, even if there actually is fill or (other) skin in the print "
  1043. "instead of wall."
  1044. msgstr "その幅を上回れば中央ライン(ある場合)を2つに分割する最小ライン幅。通常のライン幅の倍数として指定します。薄いラインを多数使用する場合は、この設定を小さくします。幅広のラインを少数使用する場合は、大きくします。これは形状全体がウォールで埋められていると想定して適用されるため、ここでの中央は、実際の成果物にはウォールではなくフィルや(他の)スキンがある場合でも、形状の2つの外端の間にあるオブジェクトの中央を意味することに注意してください。"
  1045. #: fdmprinter.def.json
  1046. msgctxt "min_odd_wall_line_width label"
  1047. msgid "Minimum Odd Wall Line Width"
  1048. msgstr "最小奇数ウォールライン幅"
  1049. #: fdmprinter.def.json
  1050. msgctxt "min_odd_wall_line_width description"
  1051. msgid ""
  1052. "The minimum line width for middle line gap filler polyline walls. This "
  1053. "setting determines at which model thickness we switch from printing two wall "
  1054. "lines, to printing two outer walls and a single central wall in the middle. "
  1055. "A higher Minimum Odd Wall Line Width leads to a higher maximum even wall "
  1056. "line width. The maximum odd wall line width is calculated as 2 * Minimum "
  1057. "Even Wall Line Width,"
  1058. msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2"
  1059. " * 最小偶数ウォールライン幅として計算されます。"
  1060. #: fdmprinter.def.json
  1061. msgctxt "wall_add_middle_threshold label"
  1062. msgid "Add Middle Line Threshold"
  1063. msgstr "中央ライン追加しきい値"
  1064. #: fdmprinter.def.json
  1065. msgctxt "wall_add_middle_threshold description"
  1066. msgid ""
  1067. "The smallest line width, as a factor of the normal line width, above which a "
  1068. "middle line (if there wasn't one already) will be added. Reduce this setting "
  1069. "to use more, thinner lines. Increase to use fewer, wider lines. Note that "
  1070. "this applies -as if- the entire shape should be filled with wall, so the "
  1071. "middle here refers to the middle of the object between two outer edges of "
  1072. "the shape, even if there actually is fill or (other) skin in the print "
  1073. "instead of wall."
  1074. msgstr "その幅を上回れば中央ライン(まだない場合)を追加する最小ライン幅。通常のライン幅の倍数として指定します。薄いラインを多数使用する場合は、この設定を小さくします。幅広のラインを少数使用する場合は、大きくします。これは形状全体がウォールで埋められていると想定して適用されるため、ここでの中央は、実際の成果物にはウォールではなくフィルや(他の)スキンがある場合でも、形状の2つの外端の間にあるオブジェクトの中央を意味することに注意してください。"
  1075. #: fdmprinter.def.json
  1076. msgctxt "fill_outline_gaps label"
  1077. msgid "Print Thin Walls"
  1078. msgstr "薄壁印刷"
  1079. #: fdmprinter.def.json
  1080. msgctxt "fill_outline_gaps description"
  1081. msgid ""
  1082. "Print pieces of the model which are horizontally thinner than the nozzle "
  1083. "size."
  1084. msgstr "ノズルサイズよりも細い壁を作ります。"
  1085. #: fdmprinter.def.json
  1086. msgctxt "min_feature_size label"
  1087. msgid "Minimum Feature Size"
  1088. msgstr "最小フィーチャーサイズ"
  1089. #: fdmprinter.def.json
  1090. msgctxt "min_feature_size description"
  1091. msgid ""
  1092. "Minimum thickness of thin features. Model features that are thinner than "
  1093. "this value will not be printed, while features thicker than the Minimum "
  1094. "Feature Size will be widened to the Minimum Wall Line Width."
  1095. msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。"
  1096. #: fdmprinter.def.json
  1097. msgctxt "min_bead_width label"
  1098. msgid "Minimum Thin Wall Line Width"
  1099. msgstr "最小薄肉ウォールライン幅"
  1100. #: fdmprinter.def.json
  1101. msgctxt "min_bead_width description"
  1102. msgid ""
  1103. "Width of the wall that will replace thin features (according to the Minimum "
  1104. "Feature Size) of the model. If the Minimum Wall Line Width is thinner than "
  1105. "the thickness of the feature, the wall will become as thick as the feature "
  1106. "itself."
  1107. msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。"
  1108. #: fdmprinter.def.json
  1109. msgctxt "xy_offset label"
  1110. msgid "Horizontal Expansion"
  1111. msgstr "水平展開"
  1112. #: fdmprinter.def.json
  1113. msgctxt "xy_offset description"
  1114. msgid ""
  1115. "Amount of offset applied to all polygons in each layer. Positive values can "
  1116. "compensate for too big holes; negative values can compensate for too small "
  1117. "holes."
  1118. msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。"
  1119. #: fdmprinter.def.json
  1120. msgctxt "xy_offset_layer_0 label"
  1121. msgid "Initial Layer Horizontal Expansion"
  1122. msgstr "初期層水平展開"
  1123. #: fdmprinter.def.json
  1124. msgctxt "xy_offset_layer_0 description"
  1125. msgid ""
  1126. "Amount of offset applied to all polygons in the first layer. A negative "
  1127. "value can compensate for squishing of the first layer known as \"elephant's "
  1128. "foot\"."
  1129. msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。"
  1130. #: fdmprinter.def.json
  1131. msgctxt "hole_xy_offset label"
  1132. msgid "Hole Horizontal Expansion"
  1133. msgstr "穴の水平展開"
  1134. #: fdmprinter.def.json
  1135. msgctxt "hole_xy_offset description"
  1136. msgid ""
  1137. "Amount of offset applied to all holes in each layer. Positive values "
  1138. "increase the size of the holes, negative values reduce the size of the holes."
  1139. msgstr "各穴のすべてのポリゴンに適用されるオフセットの量。正の値は穴のサイズを大きくします。負の値は穴のサイズを小さくします。"
  1140. #: fdmprinter.def.json
  1141. msgctxt "z_seam_type label"
  1142. msgid "Z Seam Alignment"
  1143. msgstr "Zシーム合わせ"
  1144. #: fdmprinter.def.json
  1145. msgctxt "z_seam_type description"
  1146. msgid ""
  1147. "Starting point of each path in a layer. When paths in consecutive layers "
  1148. "start at the same point a vertical seam may show on the print. When aligning "
  1149. "these near a user specified location, the seam is easiest to remove. When "
  1150. "placed randomly the inaccuracies at the paths' start will be less "
  1151. "noticeable. When taking the shortest path the print will be quicker."
  1152. msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。"
  1153. #: fdmprinter.def.json
  1154. msgctxt "z_seam_type option back"
  1155. msgid "User Specified"
  1156. msgstr "ユーザー指定"
  1157. #: fdmprinter.def.json
  1158. msgctxt "z_seam_type option shortest"
  1159. msgid "Shortest"
  1160. msgstr "最短"
  1161. #: fdmprinter.def.json
  1162. msgctxt "z_seam_type option random"
  1163. msgid "Random"
  1164. msgstr "ランダム"
  1165. #: fdmprinter.def.json
  1166. msgctxt "z_seam_type option sharpest_corner"
  1167. msgid "Sharpest Corner"
  1168. msgstr "鋭い角"
  1169. #: fdmprinter.def.json
  1170. msgctxt "z_seam_position label"
  1171. msgid "Z Seam Position"
  1172. msgstr "Zシーム位置"
  1173. #: fdmprinter.def.json
  1174. msgctxt "z_seam_position description"
  1175. msgid "The position near where to start printing each part in a layer."
  1176. msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。"
  1177. #: fdmprinter.def.json
  1178. msgctxt "z_seam_position option backleft"
  1179. msgid "Back Left"
  1180. msgstr "後方左"
  1181. #: fdmprinter.def.json
  1182. msgctxt "z_seam_position option back"
  1183. msgid "Back"
  1184. msgstr "戻る"
  1185. #: fdmprinter.def.json
  1186. msgctxt "z_seam_position option backright"
  1187. msgid "Back Right"
  1188. msgstr "後方右"
  1189. #: fdmprinter.def.json
  1190. msgctxt "z_seam_position option right"
  1191. msgid "Right"
  1192. msgstr "右"
  1193. #: fdmprinter.def.json
  1194. msgctxt "z_seam_position option frontright"
  1195. msgid "Front Right"
  1196. msgstr "前方右"
  1197. #: fdmprinter.def.json
  1198. msgctxt "z_seam_position option front"
  1199. msgid "Front"
  1200. msgstr "前"
  1201. #: fdmprinter.def.json
  1202. msgctxt "z_seam_position option frontleft"
  1203. msgid "Front Left"
  1204. msgstr "前左"
  1205. #: fdmprinter.def.json
  1206. msgctxt "z_seam_position option left"
  1207. msgid "Left"
  1208. msgstr "左"
  1209. #: fdmprinter.def.json
  1210. msgctxt "z_seam_x label"
  1211. msgid "Z Seam X"
  1212. msgstr "ZシームX"
  1213. #: fdmprinter.def.json
  1214. msgctxt "z_seam_x description"
  1215. msgid ""
  1216. "The X coordinate of the position near where to start printing each part in a "
  1217. "layer."
  1218. msgstr "レイヤー内の各印刷を開始するX座\n標の位置。"
  1219. #: fdmprinter.def.json
  1220. msgctxt "z_seam_y label"
  1221. msgid "Z Seam Y"
  1222. msgstr "ZシームY"
  1223. #: fdmprinter.def.json
  1224. msgctxt "z_seam_y description"
  1225. msgid ""
  1226. "The Y coordinate of the position near where to start printing each part in a "
  1227. "layer."
  1228. msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。"
  1229. #: fdmprinter.def.json
  1230. msgctxt "z_seam_corner label"
  1231. msgid "Seam Corner Preference"
  1232. msgstr "シームコーナー設定"
  1233. #: fdmprinter.def.json
  1234. msgctxt "z_seam_corner description"
  1235. msgid ""
  1236. "Control whether corners on the model outline influence the position of the "
  1237. "seam. None means that corners have no influence on the seam position. Hide "
  1238. "Seam makes the seam more likely to occur on an inside corner. Expose Seam "
  1239. "makes the seam more likely to occur on an outside corner. Hide or Expose "
  1240. "Seam makes the seam more likely to occur at an inside or outside corner. "
  1241. "Smart Hiding allows both inside and outside corners, but chooses inside "
  1242. "corners more frequently, if appropriate."
  1243. msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。"
  1244. #: fdmprinter.def.json
  1245. msgctxt "z_seam_corner option z_seam_corner_none"
  1246. msgid "None"
  1247. msgstr "なし"
  1248. #: fdmprinter.def.json
  1249. msgctxt "z_seam_corner option z_seam_corner_inner"
  1250. msgid "Hide Seam"
  1251. msgstr "シーム非表示"
  1252. #: fdmprinter.def.json
  1253. msgctxt "z_seam_corner option z_seam_corner_outer"
  1254. msgid "Expose Seam"
  1255. msgstr "シーム表示"
  1256. #: fdmprinter.def.json
  1257. msgctxt "z_seam_corner option z_seam_corner_any"
  1258. msgid "Hide or Expose Seam"
  1259. msgstr "シーム表示/非表示"
  1260. #: fdmprinter.def.json
  1261. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1262. msgid "Smart Hiding"
  1263. msgstr "スマート・シーム"
  1264. #: fdmprinter.def.json
  1265. msgctxt "z_seam_relative label"
  1266. msgid "Z Seam Relative"
  1267. msgstr "相対Zシーム"
  1268. #: fdmprinter.def.json
  1269. msgctxt "z_seam_relative description"
  1270. msgid ""
  1271. "When enabled, the z seam coordinates are relative to each part's centre. "
  1272. "When disabled, the coordinates define an absolute position on the build "
  1273. "plate."
  1274. msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。"
  1275. #: fdmprinter.def.json
  1276. msgctxt "top_bottom label"
  1277. msgid "Top/Bottom"
  1278. msgstr "トップ/ボトム"
  1279. #: fdmprinter.def.json
  1280. msgctxt "top_bottom description"
  1281. msgid "Top/Bottom"
  1282. msgstr "トップ/ボトム"
  1283. #: fdmprinter.def.json
  1284. msgctxt "roofing_extruder_nr label"
  1285. msgid "Top Surface Skin Extruder"
  1286. msgstr "上部表面用エクストルーダー"
  1287. #: fdmprinter.def.json
  1288. msgctxt "roofing_extruder_nr description"
  1289. msgid ""
  1290. "The extruder train used for printing the top most skin. This is used in "
  1291. "multi-extrusion."
  1292. msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  1293. #: fdmprinter.def.json
  1294. msgctxt "roofing_layer_count label"
  1295. msgid "Top Surface Skin Layers"
  1296. msgstr "上部表面レイヤー"
  1297. #: fdmprinter.def.json
  1298. msgctxt "roofing_layer_count description"
  1299. msgid ""
  1300. "The number of top most skin layers. Usually only one top most layer is "
  1301. "sufficient to generate higher quality top surfaces."
  1302. msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。"
  1303. #: fdmprinter.def.json
  1304. msgctxt "top_bottom_extruder_nr label"
  1305. msgid "Top/Bottom Extruder"
  1306. msgstr "上部/底面エクストルーダー"
  1307. #: fdmprinter.def.json
  1308. msgctxt "top_bottom_extruder_nr description"
  1309. msgid ""
  1310. "The extruder train used for printing the top and bottom skin. This is used "
  1311. "in multi-extrusion."
  1312. msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。"
  1313. #: fdmprinter.def.json
  1314. msgctxt "top_bottom_thickness label"
  1315. msgid "Top/Bottom Thickness"
  1316. msgstr "上部/底面の厚さ"
  1317. #: fdmprinter.def.json
  1318. msgctxt "top_bottom_thickness description"
  1319. msgid ""
  1320. "The thickness of the top/bottom layers in the print. This value divided by "
  1321. "the layer height defines the number of top/bottom layers."
  1322. msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。"
  1323. #: fdmprinter.def.json
  1324. msgctxt "top_thickness label"
  1325. msgid "Top Thickness"
  1326. msgstr "上部厚さ"
  1327. #: fdmprinter.def.json
  1328. msgctxt "top_thickness description"
  1329. msgid ""
  1330. "The thickness of the top layers in the print. This value divided by the "
  1331. "layer height defines the number of top layers."
  1332. msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。"
  1333. #: fdmprinter.def.json
  1334. msgctxt "top_layers label"
  1335. msgid "Top Layers"
  1336. msgstr "上部レイヤー"
  1337. #: fdmprinter.def.json
  1338. msgctxt "top_layers description"
  1339. msgid ""
  1340. "The number of top layers. When calculated by the top thickness, this value "
  1341. "is rounded to a whole number."
  1342. msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。"
  1343. #: fdmprinter.def.json
  1344. msgctxt "bottom_thickness label"
  1345. msgid "Bottom Thickness"
  1346. msgstr "底面厚さ"
  1347. #: fdmprinter.def.json
  1348. msgctxt "bottom_thickness description"
  1349. msgid ""
  1350. "The thickness of the bottom layers in the print. This value divided by the "
  1351. "layer height defines the number of bottom layers."
  1352. msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。"
  1353. #: fdmprinter.def.json
  1354. msgctxt "bottom_layers label"
  1355. msgid "Bottom Layers"
  1356. msgstr "底面レイヤー"
  1357. #: fdmprinter.def.json
  1358. msgctxt "bottom_layers description"
  1359. msgid ""
  1360. "The number of bottom layers. When calculated by the bottom thickness, this "
  1361. "value is rounded to a whole number."
  1362. msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。"
  1363. #: fdmprinter.def.json
  1364. msgctxt "initial_bottom_layers label"
  1365. msgid "Initial Bottom Layers"
  1366. msgstr "初期底面レイヤー"
  1367. #: fdmprinter.def.json
  1368. msgctxt "initial_bottom_layers description"
  1369. msgid ""
  1370. "The number of initial bottom layers, from the build-plate upwards. When "
  1371. "calculated by the bottom thickness, this value is rounded to a whole number."
  1372. msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。"
  1373. #: fdmprinter.def.json
  1374. msgctxt "top_bottom_pattern label"
  1375. msgid "Top/Bottom Pattern"
  1376. msgstr "上層/底層パターン"
  1377. #: fdmprinter.def.json
  1378. msgctxt "top_bottom_pattern description"
  1379. msgid "The pattern of the top/bottom layers."
  1380. msgstr "上層/底層のパターン。"
  1381. #: fdmprinter.def.json
  1382. msgctxt "top_bottom_pattern option lines"
  1383. msgid "Lines"
  1384. msgstr "直線"
  1385. #: fdmprinter.def.json
  1386. msgctxt "top_bottom_pattern option concentric"
  1387. msgid "Concentric"
  1388. msgstr "同心円"
  1389. #: fdmprinter.def.json
  1390. msgctxt "top_bottom_pattern option zigzag"
  1391. msgid "Zig Zag"
  1392. msgstr "ジグザグ"
  1393. #: fdmprinter.def.json
  1394. msgctxt "top_bottom_pattern_0 label"
  1395. msgid "Bottom Pattern Initial Layer"
  1396. msgstr "底層初期レイヤー"
  1397. #: fdmprinter.def.json
  1398. msgctxt "top_bottom_pattern_0 description"
  1399. msgid "The pattern on the bottom of the print on the first layer."
  1400. msgstr "第1層のプリントの底部のパターン。"
  1401. #: fdmprinter.def.json
  1402. msgctxt "top_bottom_pattern_0 option lines"
  1403. msgid "Lines"
  1404. msgstr "直線"
  1405. #: fdmprinter.def.json
  1406. msgctxt "top_bottom_pattern_0 option concentric"
  1407. msgid "Concentric"
  1408. msgstr "同心円"
  1409. #: fdmprinter.def.json
  1410. msgctxt "top_bottom_pattern_0 option zigzag"
  1411. msgid "Zig Zag"
  1412. msgstr "ジグザグ"
  1413. #: fdmprinter.def.json
  1414. msgctxt "connect_skin_polygons label"
  1415. msgid "Connect Top/Bottom Polygons"
  1416. msgstr "上層/底層ポリゴンに接合"
  1417. #: fdmprinter.def.json
  1418. msgctxt "connect_skin_polygons description"
  1419. msgid ""
  1420. "Connect top/bottom skin paths where they run next to each other. For the "
  1421. "concentric pattern enabling this setting greatly reduces the travel time, "
  1422. "but because the connections can happen midway over infill this feature can "
  1423. "reduce the top surface quality."
  1424. msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。"
  1425. #: fdmprinter.def.json
  1426. msgctxt "skin_monotonic label"
  1427. msgid "Monotonic Top/Bottom Order"
  1428. msgstr "上面/底面の方向一貫性"
  1429. #: fdmprinter.def.json
  1430. msgctxt "skin_monotonic description"
  1431. msgid ""
  1432. "Print top/bottom lines in an ordering that causes them to always overlap "
  1433. "with adjacent lines in a single direction. This takes slightly more time to "
  1434. "print, but makes flat surfaces look more consistent."
  1435. msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  1436. #: fdmprinter.def.json
  1437. msgctxt "skin_angles label"
  1438. msgid "Top/Bottom Line Directions"
  1439. msgstr "上層/底層ラインの向き"
  1440. #: fdmprinter.def.json
  1441. msgctxt "skin_angles description"
  1442. msgid ""
  1443. "A list of integer line directions to use when the top/bottom layers use the "
  1444. "lines or zig zag pattern. Elements from the list are used sequentially as "
  1445. "the layers progress and when the end of the list is reached, it starts at "
  1446. "the beginning again. The list items are separated by commas and the whole "
  1447. "list is contained in square brackets. Default is an empty list which means "
  1448. "use the traditional default angles (45 and 135 degrees)."
  1449. msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。"
  1450. #: fdmprinter.def.json
  1451. msgctxt "skin_no_small_gaps_heuristic label"
  1452. msgid "No Skin in Z Gaps"
  1453. msgstr "Z 軸ギャップにスキンなし"
  1454. #: fdmprinter.def.json
  1455. msgctxt "skin_no_small_gaps_heuristic description"
  1456. msgid ""
  1457. "When the model has small vertical gaps of only a few layers, there should "
  1458. "normally be skin around those layers in the narrow space. Enable this "
  1459. "setting to not generate skin if the vertical gap is very small. This "
  1460. "improves printing time and slicing time, but technically leaves infill "
  1461. "exposed to the air."
  1462. msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。"
  1463. #: fdmprinter.def.json
  1464. msgctxt "skin_outline_count label"
  1465. msgid "Extra Skin Wall Count"
  1466. msgstr "外側表面の数"
  1467. #: fdmprinter.def.json
  1468. msgctxt "skin_outline_count description"
  1469. msgid ""
  1470. "Replaces the outermost part of the top/bottom pattern with a number of "
  1471. "concentric lines. Using one or two lines improves roofs that start on infill "
  1472. "material."
  1473. msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。"
  1474. #: fdmprinter.def.json
  1475. msgctxt "ironing_enabled label"
  1476. msgid "Enable Ironing"
  1477. msgstr "アイロン有効"
  1478. #: fdmprinter.def.json
  1479. msgctxt "ironing_enabled description"
  1480. msgid ""
  1481. "Go over the top surface one additional time, but this time extruding very "
  1482. "little material. This is meant to melt the plastic on top further, creating "
  1483. "a smoother surface. The pressure in the nozzle chamber is kept high so that "
  1484. "the creases in the surface are filled with material."
  1485. msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。"
  1486. #: fdmprinter.def.json
  1487. msgctxt "ironing_only_highest_layer label"
  1488. msgid "Iron Only Highest Layer"
  1489. msgstr "最上層のみアイロン"
  1490. #: fdmprinter.def.json
  1491. msgctxt "ironing_only_highest_layer description"
  1492. msgid ""
  1493. "Only perform ironing on the very last layer of the mesh. This saves time if "
  1494. "the lower layers don't need a smooth surface finish."
  1495. msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。"
  1496. #: fdmprinter.def.json
  1497. msgctxt "ironing_pattern label"
  1498. msgid "Ironing Pattern"
  1499. msgstr "アイロンパターン"
  1500. #: fdmprinter.def.json
  1501. msgctxt "ironing_pattern description"
  1502. msgid "The pattern to use for ironing top surfaces."
  1503. msgstr "アイロンのパターン。"
  1504. #: fdmprinter.def.json
  1505. msgctxt "ironing_pattern option concentric"
  1506. msgid "Concentric"
  1507. msgstr "同心円"
  1508. #: fdmprinter.def.json
  1509. msgctxt "ironing_pattern option zigzag"
  1510. msgid "Zig Zag"
  1511. msgstr "ジグザグ"
  1512. #: fdmprinter.def.json
  1513. msgctxt "ironing_monotonic label"
  1514. msgid "Monotonic Ironing Order"
  1515. msgstr "アイロン方向一貫性"
  1516. #: fdmprinter.def.json
  1517. msgctxt "ironing_monotonic description"
  1518. msgid ""
  1519. "Print ironing lines in an ordering that causes them to always overlap with "
  1520. "adjacent lines in a single direction. This takes slightly more time to "
  1521. "print, but makes flat surfaces look more consistent."
  1522. msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  1523. #: fdmprinter.def.json
  1524. msgctxt "ironing_line_spacing label"
  1525. msgid "Ironing Line Spacing"
  1526. msgstr "アイロン線のスペース"
  1527. #: fdmprinter.def.json
  1528. msgctxt "ironing_line_spacing description"
  1529. msgid "The distance between the lines of ironing."
  1530. msgstr "アイロンライン同士の距離。"
  1531. #: fdmprinter.def.json
  1532. msgctxt "ironing_flow label"
  1533. msgid "Ironing Flow"
  1534. msgstr "アイロンフロー"
  1535. #: fdmprinter.def.json
  1536. msgctxt "ironing_flow description"
  1537. msgid ""
  1538. "The amount of material, relative to a normal skin line, to extrude during "
  1539. "ironing. Keeping the nozzle filled helps filling some of the crevices of the "
  1540. "top surface, but too much results in overextrusion and blips on the side of "
  1541. "the surface."
  1542. msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。"
  1543. #: fdmprinter.def.json
  1544. msgctxt "ironing_inset label"
  1545. msgid "Ironing Inset"
  1546. msgstr "アイロンインセット"
  1547. #: fdmprinter.def.json
  1548. msgctxt "ironing_inset description"
  1549. msgid ""
  1550. "A distance to keep from the edges of the model. Ironing all the way to the "
  1551. "edge of the mesh may result in a jagged edge on your print."
  1552. msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。"
  1553. #: fdmprinter.def.json
  1554. msgctxt "speed_ironing label"
  1555. msgid "Ironing Speed"
  1556. msgstr "アイロン速度"
  1557. #: fdmprinter.def.json
  1558. msgctxt "speed_ironing description"
  1559. msgid "The speed at which to pass over the top surface."
  1560. msgstr "上部表面通過時の速度。"
  1561. #: fdmprinter.def.json
  1562. msgctxt "acceleration_ironing label"
  1563. msgid "Ironing Acceleration"
  1564. msgstr "アイロン加速度"
  1565. #: fdmprinter.def.json
  1566. msgctxt "acceleration_ironing description"
  1567. msgid "The acceleration with which ironing is performed."
  1568. msgstr "アイロン時の加速度。"
  1569. #: fdmprinter.def.json
  1570. msgctxt "jerk_ironing label"
  1571. msgid "Ironing Jerk"
  1572. msgstr "アイロンジャーク"
  1573. #: fdmprinter.def.json
  1574. msgctxt "jerk_ironing description"
  1575. msgid "The maximum instantaneous velocity change while performing ironing."
  1576. msgstr "アイロン時の最大加速度。"
  1577. #: fdmprinter.def.json
  1578. msgctxt "skin_overlap label"
  1579. msgid "Skin Overlap Percentage"
  1580. msgstr "表面公差量"
  1581. #: fdmprinter.def.json
  1582. msgctxt "skin_overlap description"
  1583. msgid ""
  1584. "Adjust the amount of overlap between the walls and (the endpoints of) the "
  1585. "skin-centerlines, as a percentage of the line widths of the skin lines and "
  1586. "the innermost wall. A slight overlap allows the walls to connect firmly to "
  1587. "the skin. Note that, given an equal skin and wall line-width, any percentage "
  1588. "over 50% may already cause any skin to go past the wall, because at that "
  1589. "point the position of the nozzle of the skin-extruder may already reach past "
  1590. "the middle of the wall."
  1591. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  1592. #: fdmprinter.def.json
  1593. msgctxt "skin_overlap_mm label"
  1594. msgid "Skin Overlap"
  1595. msgstr "表面公差"
  1596. #: fdmprinter.def.json
  1597. msgctxt "skin_overlap_mm description"
  1598. msgid ""
  1599. "Adjust the amount of overlap between the walls and (the endpoints of) the "
  1600. "skin-centerlines. A slight overlap allows the walls to connect firmly to the "
  1601. "skin. Note that, given an equal skin and wall line-width, any value over "
  1602. "half the width of the wall may already cause any skin to go past the wall, "
  1603. "because at that point the position of the nozzle of the skin-extruder may "
  1604. "already reach past the middle of the wall."
  1605. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  1606. #: fdmprinter.def.json
  1607. msgctxt "skin_preshrink label"
  1608. msgid "Skin Removal Width"
  1609. msgstr "表面除去幅"
  1610. #: fdmprinter.def.json
  1611. msgctxt "skin_preshrink description"
  1612. msgid ""
  1613. "The largest width of skin areas which are to be removed. Every skin area "
  1614. "smaller than this value will disappear. This can help in limiting the amount "
  1615. "of time and material spent on printing top/bottom skin at slanted surfaces "
  1616. "in the model."
  1617. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1618. #: fdmprinter.def.json
  1619. msgctxt "top_skin_preshrink label"
  1620. msgid "Top Skin Removal Width"
  1621. msgstr "上面除去幅"
  1622. #: fdmprinter.def.json
  1623. msgctxt "top_skin_preshrink description"
  1624. msgid ""
  1625. "The largest width of top skin areas which are to be removed. Every skin area "
  1626. "smaller than this value will disappear. This can help in limiting the amount "
  1627. "of time and material spent on printing top skin at slanted surfaces in the "
  1628. "model."
  1629. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1630. #: fdmprinter.def.json
  1631. msgctxt "bottom_skin_preshrink label"
  1632. msgid "Bottom Skin Removal Width"
  1633. msgstr "底面除去幅"
  1634. #: fdmprinter.def.json
  1635. msgctxt "bottom_skin_preshrink description"
  1636. msgid ""
  1637. "The largest width of bottom skin areas which are to be removed. Every skin "
  1638. "area smaller than this value will disappear. This can help in limiting the "
  1639. "amount of time and material spent on printing bottom skin at slanted "
  1640. "surfaces in the model."
  1641. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1642. #: fdmprinter.def.json
  1643. msgctxt "expand_skins_expand_distance label"
  1644. msgid "Skin Expand Distance"
  1645. msgstr "表面展開距離"
  1646. #: fdmprinter.def.json
  1647. msgctxt "expand_skins_expand_distance description"
  1648. msgid ""
  1649. "The distance the skins are expanded into the infill. Higher values makes the "
  1650. "skin attach better to the infill pattern and makes the walls on neighboring "
  1651. "layers adhere better to the skin. Lower values save amount of material used."
  1652. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1653. #: fdmprinter.def.json
  1654. msgctxt "top_skin_expand_distance label"
  1655. msgid "Top Skin Expand Distance"
  1656. msgstr "上面展開距離"
  1657. #: fdmprinter.def.json
  1658. msgctxt "top_skin_expand_distance description"
  1659. msgid ""
  1660. "The distance the top skins are expanded into the infill. Higher values makes "
  1661. "the skin attach better to the infill pattern and makes the walls on the "
  1662. "layer above adhere better to the skin. Lower values save amount of material "
  1663. "used."
  1664. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1665. #: fdmprinter.def.json
  1666. msgctxt "bottom_skin_expand_distance label"
  1667. msgid "Bottom Skin Expand Distance"
  1668. msgstr "底面展開距離"
  1669. #: fdmprinter.def.json
  1670. msgctxt "bottom_skin_expand_distance description"
  1671. msgid ""
  1672. "The distance the bottom skins are expanded into the infill. Higher values "
  1673. "makes the skin attach better to the infill pattern and makes the skin adhere "
  1674. "better to the walls on the layer below. Lower values save amount of material "
  1675. "used."
  1676. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1677. #: fdmprinter.def.json
  1678. msgctxt "max_skin_angle_for_expansion label"
  1679. msgid "Maximum Skin Angle for Expansion"
  1680. msgstr "表面展開最大角"
  1681. #: fdmprinter.def.json
  1682. msgctxt "max_skin_angle_for_expansion description"
  1683. msgid ""
  1684. "Top and/or bottom surfaces of your object with an angle larger than this "
  1685. "setting, won't have their top/bottom skin expanded. This avoids expanding "
  1686. "the narrow skin areas that are created when the model surface has a near "
  1687. "vertical slope. An angle of 0° is horizontal and will cause no skin to be "
  1688. "expanded, while an angle of 90° is vertical and will cause all skin to be "
  1689. "expanded."
  1690. msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。"
  1691. #: fdmprinter.def.json
  1692. msgctxt "min_skin_width_for_expansion label"
  1693. msgid "Minimum Skin Width for Expansion"
  1694. msgstr "表面展開最小角"
  1695. #: fdmprinter.def.json
  1696. msgctxt "min_skin_width_for_expansion description"
  1697. msgid ""
  1698. "Skin areas narrower than this are not expanded. This avoids expanding the "
  1699. "narrow skin areas that are created when the model surface has a slope close "
  1700. "to the vertical."
  1701. msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。"
  1702. #: fdmprinter.def.json
  1703. msgctxt "infill label"
  1704. msgid "Infill"
  1705. msgstr "インフィル"
  1706. #: fdmprinter.def.json
  1707. msgctxt "infill description"
  1708. msgid "Infill"
  1709. msgstr "インフィル"
  1710. #: fdmprinter.def.json
  1711. msgctxt "infill_extruder_nr label"
  1712. msgid "Infill Extruder"
  1713. msgstr "インフィルエクストルーダー"
  1714. #: fdmprinter.def.json
  1715. msgctxt "infill_extruder_nr description"
  1716. msgid ""
  1717. "The extruder train used for printing infill. This is used in multi-extrusion."
  1718. msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。"
  1719. #: fdmprinter.def.json
  1720. msgctxt "infill_sparse_density label"
  1721. msgid "Infill Density"
  1722. msgstr "インフィル密度"
  1723. #: fdmprinter.def.json
  1724. msgctxt "infill_sparse_density description"
  1725. msgid "Adjusts the density of infill of the print."
  1726. msgstr "プリントのインフィルの密度を調整します。"
  1727. #: fdmprinter.def.json
  1728. msgctxt "infill_line_distance label"
  1729. msgid "Infill Line Distance"
  1730. msgstr "インフィルライン距離"
  1731. #: fdmprinter.def.json
  1732. msgctxt "infill_line_distance description"
  1733. msgid ""
  1734. "Distance between the printed infill lines. This setting is calculated by the "
  1735. "infill density and the infill line width."
  1736. msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。"
  1737. #: fdmprinter.def.json
  1738. msgctxt "infill_pattern label"
  1739. msgid "Infill Pattern"
  1740. msgstr "インフィルパターン"
  1741. #: fdmprinter.def.json
  1742. msgctxt "infill_pattern description"
  1743. msgid ""
  1744. "The pattern of the infill material of the print. The line and zig zag infill "
  1745. "swap direction on alternate layers, reducing material cost. The grid, "
  1746. "triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric "
  1747. "patterns are fully printed every layer. Gyroid, cubic, quarter cubic and "
  1748. "octet infill change with every layer to provide a more equal distribution of "
  1749. "strength over each direction. Lightning infill tries to minimize the infill, "
  1750. "by only supporting the ceiling of the object."
  1751. msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。"
  1752. #: fdmprinter.def.json
  1753. msgctxt "infill_pattern option grid"
  1754. msgid "Grid"
  1755. msgstr "グリッド"
  1756. #: fdmprinter.def.json
  1757. msgctxt "infill_pattern option lines"
  1758. msgid "Lines"
  1759. msgstr "ライン"
  1760. #: fdmprinter.def.json
  1761. msgctxt "infill_pattern option triangles"
  1762. msgid "Triangles"
  1763. msgstr "トライアングル"
  1764. #: fdmprinter.def.json
  1765. msgctxt "infill_pattern option trihexagon"
  1766. msgid "Tri-Hexagon"
  1767. msgstr "トライヘキサゴン"
  1768. #: fdmprinter.def.json
  1769. msgctxt "infill_pattern option cubic"
  1770. msgid "Cubic"
  1771. msgstr "キュービック"
  1772. #: fdmprinter.def.json
  1773. msgctxt "infill_pattern option cubicsubdiv"
  1774. msgid "Cubic Subdivision"
  1775. msgstr "キュービックサブディビジョン"
  1776. #: fdmprinter.def.json
  1777. msgctxt "infill_pattern option tetrahedral"
  1778. msgid "Octet"
  1779. msgstr "オクテット"
  1780. #: fdmprinter.def.json
  1781. msgctxt "infill_pattern option quarter_cubic"
  1782. msgid "Quarter Cubic"
  1783. msgstr "クォーターキュービック"
  1784. #: fdmprinter.def.json
  1785. msgctxt "infill_pattern option concentric"
  1786. msgid "Concentric"
  1787. msgstr "同心円"
  1788. #: fdmprinter.def.json
  1789. msgctxt "infill_pattern option zigzag"
  1790. msgid "Zig Zag"
  1791. msgstr "ジグザグ"
  1792. #: fdmprinter.def.json
  1793. msgctxt "infill_pattern option cross"
  1794. msgid "Cross"
  1795. msgstr "クロス"
  1796. #: fdmprinter.def.json
  1797. msgctxt "infill_pattern option cross_3d"
  1798. msgid "Cross 3D"
  1799. msgstr "3Dクロス"
  1800. #: fdmprinter.def.json
  1801. msgctxt "infill_pattern option gyroid"
  1802. msgid "Gyroid"
  1803. msgstr "ジャイロイド"
  1804. #: fdmprinter.def.json
  1805. msgctxt "infill_pattern option lightning"
  1806. msgid "Lightning"
  1807. msgstr "ライトニング"
  1808. #: fdmprinter.def.json
  1809. msgctxt "zig_zaggify_infill label"
  1810. msgid "Connect Infill Lines"
  1811. msgstr "インフィルライン接合"
  1812. #: fdmprinter.def.json
  1813. msgctxt "zig_zaggify_infill description"
  1814. msgid ""
  1815. "Connect the ends where the infill pattern meets the inner wall using a line "
  1816. "which follows the shape of the inner wall. Enabling this setting can make "
  1817. "the infill adhere to the walls better and reduce the effects of infill on "
  1818. "the quality of vertical surfaces. Disabling this setting reduces the amount "
  1819. "of material used."
  1820. msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。"
  1821. #: fdmprinter.def.json
  1822. msgctxt "connect_infill_polygons label"
  1823. msgid "Connect Infill Polygons"
  1824. msgstr "インフィルポリゴン接合"
  1825. #: fdmprinter.def.json
  1826. msgctxt "connect_infill_polygons description"
  1827. msgid ""
  1828. "Connect infill paths where they run next to each other. For infill patterns "
  1829. "which consist of several closed polygons, enabling this setting greatly "
  1830. "reduces the travel time."
  1831. msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。"
  1832. #: fdmprinter.def.json
  1833. msgctxt "infill_angles label"
  1834. msgid "Infill Line Directions"
  1835. msgstr "インフィルラインの向き"
  1836. #: fdmprinter.def.json
  1837. msgctxt "infill_angles description"
  1838. msgid ""
  1839. "A list of integer line directions to use. Elements from the list are used "
  1840. "sequentially as the layers progress and when the end of the list is reached, "
  1841. "it starts at the beginning again. The list items are separated by commas and "
  1842. "the whole list is contained in square brackets. Default is an empty list "
  1843. "which means use the traditional default angles (45 and 135 degrees for the "
  1844. "lines and zig zag patterns and 45 degrees for all other patterns)."
  1845. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。"
  1846. #: fdmprinter.def.json
  1847. msgctxt "infill_offset_x label"
  1848. msgid "Infill X Offset"
  1849. msgstr "インフィルXオフセット"
  1850. #: fdmprinter.def.json
  1851. msgctxt "infill_offset_x description"
  1852. msgid "The infill pattern is moved this distance along the X axis."
  1853. msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。"
  1854. #: fdmprinter.def.json
  1855. msgctxt "infill_offset_y label"
  1856. msgid "Infill Y Offset"
  1857. msgstr "インフィルYオフセット"
  1858. #: fdmprinter.def.json
  1859. msgctxt "infill_offset_y description"
  1860. msgid "The infill pattern is moved this distance along the Y axis."
  1861. msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。"
  1862. #: fdmprinter.def.json
  1863. msgctxt "infill_randomize_start_location label"
  1864. msgid "Randomize Infill Start"
  1865. msgstr "インフィル開始のランダム化"
  1866. #: fdmprinter.def.json
  1867. msgctxt "infill_randomize_start_location description"
  1868. msgid ""
  1869. "Randomize which infill line is printed first. This prevents one segment "
  1870. "becoming the strongest, but it does so at the cost of an additional travel "
  1871. "move."
  1872. msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。"
  1873. #: fdmprinter.def.json
  1874. msgctxt "infill_multiplier label"
  1875. msgid "Infill Line Multiplier"
  1876. msgstr "インフィルライン乗算"
  1877. #: fdmprinter.def.json
  1878. msgctxt "infill_multiplier description"
  1879. msgid ""
  1880. "Convert each infill line to this many lines. The extra lines do not cross "
  1881. "over each other, but avoid each other. This makes the infill stiffer, but "
  1882. "increases print time and material usage."
  1883. msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。"
  1884. #: fdmprinter.def.json
  1885. msgctxt "infill_wall_line_count label"
  1886. msgid "Extra Infill Wall Count"
  1887. msgstr "外側インフィル壁の数"
  1888. #: fdmprinter.def.json
  1889. msgctxt "infill_wall_line_count description"
  1890. msgid ""
  1891. "Add extra walls around the infill area. Such walls can make top/bottom skin "
  1892. "lines sag down less which means you need less top/bottom skin layers for the "
  1893. "same quality at the cost of some extra material.\n"
  1894. "This feature can combine with the Connect Infill Polygons to connect all the "
  1895. "infill into a single extrusion path without the need for travels or "
  1896. "retractions if configured right."
  1897. msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\nこの機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。"
  1898. #: fdmprinter.def.json
  1899. msgctxt "sub_div_rad_add label"
  1900. msgid "Cubic Subdivision Shell"
  1901. msgstr "キュービックサブディビジョンシェル"
  1902. #: fdmprinter.def.json
  1903. msgctxt "sub_div_rad_add description"
  1904. msgid ""
  1905. "An addition to the radius from the center of each cube to check for the "
  1906. "boundary of the model, as to decide whether this cube should be subdivided. "
  1907. "Larger values lead to a thicker shell of small cubes near the boundary of "
  1908. "the model."
  1909. msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。"
  1910. #: fdmprinter.def.json
  1911. msgctxt "infill_overlap label"
  1912. msgid "Infill Overlap Percentage"
  1913. msgstr "インフィル公差量"
  1914. #: fdmprinter.def.json
  1915. msgctxt "infill_overlap description"
  1916. msgid ""
  1917. "The amount of overlap between the infill and the walls as a percentage of "
  1918. "the infill line width. A slight overlap allows the walls to connect firmly "
  1919. "to the infill."
  1920. msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。"
  1921. #: fdmprinter.def.json
  1922. msgctxt "infill_overlap_mm label"
  1923. msgid "Infill Overlap"
  1924. msgstr "インフィル公差"
  1925. #: fdmprinter.def.json
  1926. msgctxt "infill_overlap_mm description"
  1927. msgid ""
  1928. "The amount of overlap between the infill and the walls. A slight overlap "
  1929. "allows the walls to connect firmly to the infill."
  1930. msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。"
  1931. #: fdmprinter.def.json
  1932. msgctxt "infill_wipe_dist label"
  1933. msgid "Infill Wipe Distance"
  1934. msgstr "インフィル移動距離"
  1935. #: fdmprinter.def.json
  1936. msgctxt "infill_wipe_dist description"
  1937. msgid ""
  1938. "Distance of a travel move inserted after every infill line, to make the "
  1939. "infill stick to the walls better. This option is similar to infill overlap, "
  1940. "but without extrusion and only on one end of the infill line."
  1941. msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。"
  1942. #: fdmprinter.def.json
  1943. msgctxt "infill_sparse_thickness label"
  1944. msgid "Infill Layer Thickness"
  1945. msgstr "インフィル層の厚さ"
  1946. #: fdmprinter.def.json
  1947. msgctxt "infill_sparse_thickness description"
  1948. msgid ""
  1949. "The thickness per layer of infill material. This value should always be a "
  1950. "multiple of the layer height and is otherwise rounded."
  1951. msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。"
  1952. #: fdmprinter.def.json
  1953. msgctxt "gradual_infill_steps label"
  1954. msgid "Gradual Infill Steps"
  1955. msgstr "インフィル半減回数"
  1956. #: fdmprinter.def.json
  1957. msgctxt "gradual_infill_steps description"
  1958. msgid ""
  1959. "Number of times to reduce the infill density by half when getting further "
  1960. "below top surfaces. Areas which are closer to top surfaces get a higher "
  1961. "density, up to the Infill Density."
  1962. msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。"
  1963. #: fdmprinter.def.json
  1964. msgctxt "gradual_infill_step_height label"
  1965. msgid "Gradual Infill Step Height"
  1966. msgstr "インフィル半減高さ"
  1967. #: fdmprinter.def.json
  1968. msgctxt "gradual_infill_step_height description"
  1969. msgid ""
  1970. "The height of infill of a given density before switching to half the density."
  1971. msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。"
  1972. #: fdmprinter.def.json
  1973. msgctxt "infill_before_walls label"
  1974. msgid "Infill Before Walls"
  1975. msgstr "インフィル優先"
  1976. #: fdmprinter.def.json
  1977. msgctxt "infill_before_walls description"
  1978. msgid ""
  1979. "Print the infill before printing the walls. Printing the walls first may "
  1980. "lead to more accurate walls, but overhangs print worse. Printing the infill "
  1981. "first leads to sturdier walls, but the infill pattern might sometimes show "
  1982. "through the surface."
  1983. msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\nはじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。"
  1984. #: fdmprinter.def.json
  1985. msgctxt "min_infill_area label"
  1986. msgid "Minimum Infill Area"
  1987. msgstr "最小インフィル領域"
  1988. #: fdmprinter.def.json
  1989. msgctxt "min_infill_area description"
  1990. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1991. msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。"
  1992. #: fdmprinter.def.json
  1993. msgctxt "infill_support_enabled label"
  1994. msgid "Infill Support"
  1995. msgstr "インフィルサポート"
  1996. #: fdmprinter.def.json
  1997. msgctxt "infill_support_enabled description"
  1998. msgid ""
  1999. "Print infill structures only where tops of the model should be supported. "
  2000. "Enabling this reduces print time and material usage, but leads to ununiform "
  2001. "object strength."
  2002. msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。"
  2003. #: fdmprinter.def.json
  2004. msgctxt "infill_support_angle label"
  2005. msgid "Infill Overhang Angle"
  2006. msgstr "インフィルオーバーハング角度"
  2007. #: fdmprinter.def.json
  2008. msgctxt "infill_support_angle description"
  2009. msgid ""
  2010. "The minimum angle of internal overhangs for which infill is added. At a "
  2011. "value of 0° objects are totally filled with infill, 90° will not provide any "
  2012. "infill."
  2013. msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。"
  2014. #: fdmprinter.def.json
  2015. msgctxt "skin_edge_support_thickness label"
  2016. msgid "Skin Edge Support Thickness"
  2017. msgstr "スキンエッジサポートの厚さ"
  2018. #: fdmprinter.def.json
  2019. msgctxt "skin_edge_support_thickness description"
  2020. msgid "The thickness of the extra infill that supports skin edges."
  2021. msgstr "スキンエッジをサポートする追加のインフィルの厚さ。"
  2022. #: fdmprinter.def.json
  2023. msgctxt "skin_edge_support_layers label"
  2024. msgid "Skin Edge Support Layers"
  2025. msgstr "スキンエッジサポートレイヤー"
  2026. #: fdmprinter.def.json
  2027. msgctxt "skin_edge_support_layers description"
  2028. msgid "The number of infill layers that supports skin edges."
  2029. msgstr "スキンエッジをサポートするインフィルレイヤーの数。"
  2030. #: fdmprinter.def.json
  2031. msgctxt "lightning_infill_support_angle label"
  2032. msgid "Lightning Infill Support Angle"
  2033. msgstr "ライトニングインフィルサポート角度"
  2034. #: fdmprinter.def.json
  2035. msgctxt "lightning_infill_support_angle description"
  2036. msgid ""
  2037. "Determines when a lightning infill layer has to support anything above it. "
  2038. "Measured in the angle given the thickness of a layer."
  2039. msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。"
  2040. #: fdmprinter.def.json
  2041. msgctxt "lightning_infill_overhang_angle label"
  2042. msgid "Lightning Infill Overhang Angle"
  2043. msgstr "ライトニングインフィルオーバーハング角度"
  2044. #: fdmprinter.def.json
  2045. msgctxt "lightning_infill_overhang_angle description"
  2046. msgid ""
  2047. "Determines when a lightning infill layer has to support the model above it. "
  2048. "Measured in the angle given the thickness."
  2049. msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。"
  2050. #: fdmprinter.def.json
  2051. msgctxt "lightning_infill_prune_angle label"
  2052. msgid "Lightning Infill Prune Angle"
  2053. msgstr "ライトニングインフィル刈り込み角度"
  2054. #: fdmprinter.def.json
  2055. msgctxt "lightning_infill_prune_angle description"
  2056. msgid ""
  2057. "The endpoints of infill lines are shortened to save on material. This "
  2058. "setting is the angle of overhang of the endpoints of these lines."
  2059. msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。"
  2060. #: fdmprinter.def.json
  2061. msgctxt "lightning_infill_straightening_angle label"
  2062. msgid "Lightning Infill Straightening Angle"
  2063. msgstr "ライトニングインフィル矯正角度"
  2064. #: fdmprinter.def.json
  2065. msgctxt "lightning_infill_straightening_angle description"
  2066. msgid ""
  2067. "The infill lines are straightened out to save on printing time. This is the "
  2068. "maximum angle of overhang allowed across the length of the infill line."
  2069. msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。"
  2070. #: fdmprinter.def.json
  2071. msgctxt "material label"
  2072. msgid "Material"
  2073. msgstr "マテリアル"
  2074. #: fdmprinter.def.json
  2075. msgctxt "material description"
  2076. msgid "Material"
  2077. msgstr "マテリアル"
  2078. #: fdmprinter.def.json
  2079. msgctxt "default_material_print_temperature label"
  2080. msgid "Default Printing Temperature"
  2081. msgstr "デフォルト印刷温度"
  2082. #: fdmprinter.def.json
  2083. msgctxt "default_material_print_temperature description"
  2084. msgid ""
  2085. "The default temperature used for printing. This should be the \"base\" "
  2086. "temperature of a material. All other print temperatures should use offsets "
  2087. "based on this value"
  2088. msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります"
  2089. #: fdmprinter.def.json
  2090. msgctxt "build_volume_temperature label"
  2091. msgid "Build Volume Temperature"
  2092. msgstr "造形温度"
  2093. #: fdmprinter.def.json
  2094. msgctxt "build_volume_temperature description"
  2095. msgid ""
  2096. "The temperature of the environment to print in. If this is 0, the build "
  2097. "volume temperature will not be adjusted."
  2098. msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。"
  2099. #: fdmprinter.def.json
  2100. msgctxt "material_print_temperature label"
  2101. msgid "Printing Temperature"
  2102. msgstr "印刷温度"
  2103. #: fdmprinter.def.json
  2104. msgctxt "material_print_temperature description"
  2105. msgid "The temperature used for printing."
  2106. msgstr "印刷中の温度。"
  2107. #: fdmprinter.def.json
  2108. msgctxt "material_print_temperature_layer_0 label"
  2109. msgid "Printing Temperature Initial Layer"
  2110. msgstr "初期レイヤー印刷温度"
  2111. #: fdmprinter.def.json
  2112. msgctxt "material_print_temperature_layer_0 description"
  2113. msgid ""
  2114. "The temperature used for printing the first layer. Set at 0 to disable "
  2115. "special handling of the initial layer."
  2116. msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。"
  2117. #: fdmprinter.def.json
  2118. msgctxt "material_initial_print_temperature label"
  2119. msgid "Initial Printing Temperature"
  2120. msgstr "初期印刷温度"
  2121. #: fdmprinter.def.json
  2122. msgctxt "material_initial_print_temperature description"
  2123. msgid ""
  2124. "The minimal temperature while heating up to the Printing Temperature at "
  2125. "which printing can already start."
  2126. msgstr "加熱中、印刷を開始することができる最低の温度。"
  2127. #: fdmprinter.def.json
  2128. msgctxt "material_final_print_temperature label"
  2129. msgid "Final Printing Temperature"
  2130. msgstr "最終印刷温度"
  2131. #: fdmprinter.def.json
  2132. msgctxt "material_final_print_temperature description"
  2133. msgid ""
  2134. "The temperature to which to already start cooling down just before the end "
  2135. "of printing."
  2136. msgstr "印刷終了直前に冷却を開始する温度。"
  2137. #: fdmprinter.def.json
  2138. msgctxt "material_extrusion_cool_down_speed label"
  2139. msgid "Extrusion Cool Down Speed Modifier"
  2140. msgstr "押出クールダウン速度修飾子"
  2141. #: fdmprinter.def.json
  2142. msgctxt "material_extrusion_cool_down_speed description"
  2143. msgid ""
  2144. "The extra speed by which the nozzle cools while extruding. The same value is "
  2145. "used to signify the heat up speed lost when heating up while extruding."
  2146. msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。"
  2147. #: fdmprinter.def.json
  2148. msgctxt "default_material_bed_temperature label"
  2149. msgid "Default Build Plate Temperature"
  2150. msgstr "ビルドプレートのデフォルト温度"
  2151. #: fdmprinter.def.json
  2152. msgctxt "default_material_bed_temperature description"
  2153. msgid ""
  2154. "The default temperature used for the heated build plate. This should be the "
  2155. "\"base\" temperature of a build plate. All other print temperatures should "
  2156. "use offsets based on this value"
  2157. msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります"
  2158. #: fdmprinter.def.json
  2159. msgctxt "material_bed_temperature label"
  2160. msgid "Build Plate Temperature"
  2161. msgstr "ビルドプレート温度"
  2162. #: fdmprinter.def.json
  2163. msgctxt "material_bed_temperature description"
  2164. msgid ""
  2165. "The temperature used for the heated build plate. If this is 0, the build "
  2166. "plate is left unheated."
  2167. msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。"
  2168. #: fdmprinter.def.json
  2169. msgctxt "material_bed_temperature_layer_0 label"
  2170. msgid "Build Plate Temperature Initial Layer"
  2171. msgstr "初期レイヤーのビルドプレート温度"
  2172. #: fdmprinter.def.json
  2173. msgctxt "material_bed_temperature_layer_0 description"
  2174. msgid ""
  2175. "The temperature used for the heated build plate at the first layer. If this "
  2176. "is 0, the build plate is left unheated during the first layer."
  2177. msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。"
  2178. #: fdmprinter.def.json
  2179. msgctxt "material_adhesion_tendency label"
  2180. msgid "Adhesion Tendency"
  2181. msgstr "接着傾向"
  2182. #: fdmprinter.def.json
  2183. msgctxt "material_adhesion_tendency description"
  2184. msgid "Surface adhesion tendency."
  2185. msgstr "表面の接着傾向。"
  2186. #: fdmprinter.def.json
  2187. msgctxt "material_surface_energy label"
  2188. msgid "Surface Energy"
  2189. msgstr "表面エネルギー"
  2190. #: fdmprinter.def.json
  2191. msgctxt "material_surface_energy description"
  2192. msgid "Surface energy."
  2193. msgstr "表面エネルギー。"
  2194. #: fdmprinter.def.json
  2195. msgctxt "material_shrinkage_percentage label"
  2196. msgid "Scaling Factor Shrinkage Compensation"
  2197. msgstr "スケールファクタ収縮補正"
  2198. #: fdmprinter.def.json
  2199. msgctxt "material_shrinkage_percentage description"
  2200. msgid ""
  2201. "To compensate for the shrinkage of the material as it cools down, the model "
  2202. "will be scaled with this factor."
  2203. msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。"
  2204. #: fdmprinter.def.json
  2205. msgctxt "material_shrinkage_percentage_xy label"
  2206. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  2207. msgstr "水平スケールファクタ収縮補正"
  2208. #: fdmprinter.def.json
  2209. msgctxt "material_shrinkage_percentage_xy description"
  2210. msgid ""
  2211. "To compensate for the shrinkage of the material as it cools down, the model "
  2212. "will be scaled with this factor in the XY-direction (horizontally)."
  2213. msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。"
  2214. #: fdmprinter.def.json
  2215. msgctxt "material_shrinkage_percentage_z label"
  2216. msgid "Vertical Scaling Factor Shrinkage Compensation"
  2217. msgstr "垂直スケールファクタ収縮補正"
  2218. #: fdmprinter.def.json
  2219. msgctxt "material_shrinkage_percentage_z description"
  2220. msgid ""
  2221. "To compensate for the shrinkage of the material as it cools down, the model "
  2222. "will be scaled with this factor in the Z-direction (vertically)."
  2223. msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。"
  2224. #: fdmprinter.def.json
  2225. msgctxt "material_crystallinity label"
  2226. msgid "Crystalline Material"
  2227. msgstr "結晶性材料"
  2228. #: fdmprinter.def.json
  2229. msgctxt "material_crystallinity description"
  2230. msgid ""
  2231. "Is this material the type that breaks off cleanly when heated (crystalline), "
  2232. "or is it the type that produces long intertwined polymer chains (non-"
  2233. "crystalline)?"
  2234. msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?"
  2235. #: fdmprinter.def.json
  2236. msgctxt "material_anti_ooze_retracted_position label"
  2237. msgid "Anti-ooze Retracted Position"
  2238. msgstr "滲出防止引戻し位置"
  2239. #: fdmprinter.def.json
  2240. msgctxt "material_anti_ooze_retracted_position description"
  2241. msgid "How far the material needs to be retracted before it stops oozing."
  2242. msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。"
  2243. #: fdmprinter.def.json
  2244. msgctxt "material_anti_ooze_retraction_speed label"
  2245. msgid "Anti-ooze Retraction Speed"
  2246. msgstr "滲出防止引戻し速度"
  2247. #: fdmprinter.def.json
  2248. msgctxt "material_anti_ooze_retraction_speed description"
  2249. msgid ""
  2250. "How fast the material needs to be retracted during a filament switch to "
  2251. "prevent oozing."
  2252. msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。"
  2253. #: fdmprinter.def.json
  2254. msgctxt "material_break_preparation_retracted_position label"
  2255. msgid "Break Preparation Retracted Position"
  2256. msgstr "フィラメントの引き出し準備引戻し位置"
  2257. #: fdmprinter.def.json
  2258. msgctxt "material_break_preparation_retracted_position description"
  2259. msgid "How far the filament can be stretched before it breaks, while heated."
  2260. msgstr "加熱中にフィラメントの引き出しが生じる距離。"
  2261. #: fdmprinter.def.json
  2262. msgctxt "material_break_preparation_speed label"
  2263. msgid "Break Preparation Retraction Speed"
  2264. msgstr "フィラメント引き出し準備引戻し速度"
  2265. #: fdmprinter.def.json
  2266. msgctxt "material_break_preparation_speed description"
  2267. msgid ""
  2268. "How fast the filament needs to be retracted just before breaking it off in a "
  2269. "retraction."
  2270. msgstr "フィラメントの引き出しが起こるための引き戻しの距離。"
  2271. #: fdmprinter.def.json
  2272. msgctxt "material_break_preparation_temperature label"
  2273. msgid "Break Preparation Temperature"
  2274. msgstr "フィラメント引き出し準備温度"
  2275. #: fdmprinter.def.json
  2276. msgctxt "material_break_preparation_temperature description"
  2277. msgid ""
  2278. "The temperature used to purge material, should be roughly equal to the "
  2279. "highest possible printing temperature."
  2280. msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。"
  2281. #: fdmprinter.def.json
  2282. msgctxt "material_break_retracted_position label"
  2283. msgid "Break Retracted Position"
  2284. msgstr "フィラメント引き出しの引戻し位置"
  2285. #: fdmprinter.def.json
  2286. msgctxt "material_break_retracted_position description"
  2287. msgid "How far to retract the filament in order to break it cleanly."
  2288. msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。"
  2289. #: fdmprinter.def.json
  2290. msgctxt "material_break_speed label"
  2291. msgid "Break Retraction Speed"
  2292. msgstr "フィラメント引き出しの引戻し速度"
  2293. #: fdmprinter.def.json
  2294. msgctxt "material_break_speed description"
  2295. msgid ""
  2296. "The speed at which to retract the filament in order to break it cleanly."
  2297. msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。"
  2298. #: fdmprinter.def.json
  2299. msgctxt "material_break_temperature label"
  2300. msgid "Break Temperature"
  2301. msgstr "フィラメント引き出し温度"
  2302. #: fdmprinter.def.json
  2303. msgctxt "material_break_temperature description"
  2304. msgid "The temperature at which the filament is broken for a clean break."
  2305. msgstr "フィラメントがきれいに引き出される温度。"
  2306. #: fdmprinter.def.json
  2307. msgctxt "material_flush_purge_speed label"
  2308. msgid "Flush Purge Speed"
  2309. msgstr "フラッシュパージ速度"
  2310. #: fdmprinter.def.json
  2311. msgctxt "material_flush_purge_speed description"
  2312. msgid "How fast to prime the material after switching to a different material."
  2313. msgstr "材料を切り替えた後に、材料の下準備をする速度。"
  2314. #: fdmprinter.def.json
  2315. msgctxt "material_flush_purge_length label"
  2316. msgid "Flush Purge Length"
  2317. msgstr "フラッシュパージ長さ"
  2318. #: fdmprinter.def.json
  2319. msgctxt "material_flush_purge_length description"
  2320. msgid ""
  2321. "How much material to use to purge the previous material out of the nozzle "
  2322. "(in length of filament) when switching to a different material."
  2323. msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  2324. #: fdmprinter.def.json
  2325. msgctxt "material_end_of_filament_purge_speed label"
  2326. msgid "End of Filament Purge Speed"
  2327. msgstr "フィラメントパージ速度の後"
  2328. #: fdmprinter.def.json
  2329. msgctxt "material_end_of_filament_purge_speed description"
  2330. msgid ""
  2331. "How fast to prime the material after replacing an empty spool with a fresh "
  2332. "spool of the same material."
  2333. msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。"
  2334. #: fdmprinter.def.json
  2335. msgctxt "material_end_of_filament_purge_length label"
  2336. msgid "End of Filament Purge Length"
  2337. msgstr "フィラメントパージ長さの後"
  2338. #: fdmprinter.def.json
  2339. msgctxt "material_end_of_filament_purge_length description"
  2340. msgid ""
  2341. "How much material to use to purge the previous material out of the nozzle "
  2342. "(in length of filament) when replacing an empty spool with a fresh spool of "
  2343. "the same material."
  2344. msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  2345. #: fdmprinter.def.json
  2346. msgctxt "material_maximum_park_duration label"
  2347. msgid "Maximum Park Duration"
  2348. msgstr "最大留め期間"
  2349. #: fdmprinter.def.json
  2350. msgctxt "material_maximum_park_duration description"
  2351. msgid "How long the material can be kept out of dry storage safely."
  2352. msgstr "材料を乾燥保管容器の外に置くことができる期間。"
  2353. #: fdmprinter.def.json
  2354. msgctxt "material_no_load_move_factor label"
  2355. msgid "No Load Move Factor"
  2356. msgstr "無負荷移動係数"
  2357. #: fdmprinter.def.json
  2358. msgctxt "material_no_load_move_factor description"
  2359. msgid ""
  2360. "A factor indicating how much the filament gets compressed between the feeder "
  2361. "and the nozzle chamber, used to determine how far to move the material for a "
  2362. "filament switch."
  2363. msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。"
  2364. #: fdmprinter.def.json
  2365. msgctxt "material_flow label"
  2366. msgid "Flow"
  2367. msgstr "フロー"
  2368. #: fdmprinter.def.json
  2369. msgctxt "material_flow description"
  2370. msgid ""
  2371. "Flow compensation: the amount of material extruded is multiplied by this "
  2372. "value."
  2373. msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。"
  2374. #: fdmprinter.def.json
  2375. msgctxt "wall_material_flow label"
  2376. msgid "Wall Flow"
  2377. msgstr "壁のフロー"
  2378. #: fdmprinter.def.json
  2379. msgctxt "wall_material_flow description"
  2380. msgid "Flow compensation on wall lines."
  2381. msgstr "壁のフロー補正。"
  2382. #: fdmprinter.def.json
  2383. msgctxt "wall_0_material_flow label"
  2384. msgid "Outer Wall Flow"
  2385. msgstr "外壁のフロー"
  2386. #: fdmprinter.def.json
  2387. msgctxt "wall_0_material_flow description"
  2388. msgid "Flow compensation on the outermost wall line."
  2389. msgstr "最外壁のフロー補正。"
  2390. #: fdmprinter.def.json
  2391. msgctxt "wall_x_material_flow label"
  2392. msgid "Inner Wall(s) Flow"
  2393. msgstr "内壁のフロー"
  2394. #: fdmprinter.def.json
  2395. msgctxt "wall_x_material_flow description"
  2396. msgid ""
  2397. "Flow compensation on wall lines for all wall lines except the outermost one."
  2398. msgstr "最外壁以外の壁のフロー補正。"
  2399. #: fdmprinter.def.json
  2400. msgctxt "skin_material_flow label"
  2401. msgid "Top/Bottom Flow"
  2402. msgstr "上面/下面フロー"
  2403. #: fdmprinter.def.json
  2404. msgctxt "skin_material_flow description"
  2405. msgid "Flow compensation on top/bottom lines."
  2406. msgstr "上面/下面のフロー補正。"
  2407. #: fdmprinter.def.json
  2408. msgctxt "roofing_material_flow label"
  2409. msgid "Top Surface Skin Flow"
  2410. msgstr "上部表面スキンフロー"
  2411. #: fdmprinter.def.json
  2412. msgctxt "roofing_material_flow description"
  2413. msgid "Flow compensation on lines of the areas at the top of the print."
  2414. msgstr "印刷物の上部表面のフロー補正。"
  2415. #: fdmprinter.def.json
  2416. msgctxt "infill_material_flow label"
  2417. msgid "Infill Flow"
  2418. msgstr "インフィルフロー"
  2419. #: fdmprinter.def.json
  2420. msgctxt "infill_material_flow description"
  2421. msgid "Flow compensation on infill lines."
  2422. msgstr "インフィルのフロー補正。"
  2423. #: fdmprinter.def.json
  2424. msgctxt "skirt_brim_material_flow label"
  2425. msgid "Skirt/Brim Flow"
  2426. msgstr "スカート/ブリムのフロー"
  2427. #: fdmprinter.def.json
  2428. msgctxt "skirt_brim_material_flow description"
  2429. msgid "Flow compensation on skirt or brim lines."
  2430. msgstr "スカートまたはブリムのフロー補正。"
  2431. #: fdmprinter.def.json
  2432. msgctxt "support_material_flow label"
  2433. msgid "Support Flow"
  2434. msgstr "支持材のフロー"
  2435. #: fdmprinter.def.json
  2436. msgctxt "support_material_flow description"
  2437. msgid "Flow compensation on support structure lines."
  2438. msgstr "支持材のフロー補正。"
  2439. #: fdmprinter.def.json
  2440. msgctxt "support_interface_material_flow label"
  2441. msgid "Support Interface Flow"
  2442. msgstr "支持材界面フロー"
  2443. #: fdmprinter.def.json
  2444. msgctxt "support_interface_material_flow description"
  2445. msgid "Flow compensation on lines of support roof or floor."
  2446. msgstr "支持材の天井面または床面のフロー補正。"
  2447. #: fdmprinter.def.json
  2448. msgctxt "support_roof_material_flow label"
  2449. msgid "Support Roof Flow"
  2450. msgstr "支持材天井面フロー"
  2451. #: fdmprinter.def.json
  2452. msgctxt "support_roof_material_flow description"
  2453. msgid "Flow compensation on support roof lines."
  2454. msgstr "支持材天井面のフロー補正。"
  2455. #: fdmprinter.def.json
  2456. msgctxt "support_bottom_material_flow label"
  2457. msgid "Support Floor Flow"
  2458. msgstr "支持材床面フロー"
  2459. #: fdmprinter.def.json
  2460. msgctxt "support_bottom_material_flow description"
  2461. msgid "Flow compensation on support floor lines."
  2462. msgstr "支持材床面のフロー補正。"
  2463. #: fdmprinter.def.json
  2464. msgctxt "prime_tower_flow label"
  2465. msgid "Prime Tower Flow"
  2466. msgstr "プライムタワーのフロー"
  2467. #: fdmprinter.def.json
  2468. msgctxt "prime_tower_flow description"
  2469. msgid "Flow compensation on prime tower lines."
  2470. msgstr "プライムタワーのフロー補正。"
  2471. #: fdmprinter.def.json
  2472. msgctxt "material_flow_layer_0 label"
  2473. msgid "Initial Layer Flow"
  2474. msgstr "初期レイヤーフロー"
  2475. #: fdmprinter.def.json
  2476. msgctxt "material_flow_layer_0 description"
  2477. msgid ""
  2478. "Flow compensation for the first layer: the amount of material extruded on "
  2479. "the initial layer is multiplied by this value."
  2480. msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。"
  2481. #: fdmprinter.def.json
  2482. msgctxt "material_standby_temperature label"
  2483. msgid "Standby Temperature"
  2484. msgstr "スタンバイ温度"
  2485. #: fdmprinter.def.json
  2486. msgctxt "material_standby_temperature description"
  2487. msgid ""
  2488. "The temperature of the nozzle when another nozzle is currently used for "
  2489. "printing."
  2490. msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)"
  2491. #: fdmprinter.def.json
  2492. msgctxt "speed label"
  2493. msgid "Speed"
  2494. msgstr "スピード"
  2495. #: fdmprinter.def.json
  2496. msgctxt "speed description"
  2497. msgid "Speed"
  2498. msgstr "スピード"
  2499. #: fdmprinter.def.json
  2500. msgctxt "speed_print label"
  2501. msgid "Print Speed"
  2502. msgstr "印刷速度"
  2503. #: fdmprinter.def.json
  2504. msgctxt "speed_print description"
  2505. msgid "The speed at which printing happens."
  2506. msgstr "印刷スピード。"
  2507. #: fdmprinter.def.json
  2508. msgctxt "speed_infill label"
  2509. msgid "Infill Speed"
  2510. msgstr "インフィル速度"
  2511. #: fdmprinter.def.json
  2512. msgctxt "speed_infill description"
  2513. msgid "The speed at which infill is printed."
  2514. msgstr "インフィルを印刷する速度。"
  2515. #: fdmprinter.def.json
  2516. msgctxt "speed_wall label"
  2517. msgid "Wall Speed"
  2518. msgstr "ウォール速度"
  2519. #: fdmprinter.def.json
  2520. msgctxt "speed_wall description"
  2521. msgid "The speed at which the walls are printed."
  2522. msgstr "ウォールを印刷する速度。"
  2523. #: fdmprinter.def.json
  2524. msgctxt "speed_wall_0 label"
  2525. msgid "Outer Wall Speed"
  2526. msgstr "外壁速度"
  2527. #: fdmprinter.def.json
  2528. msgctxt "speed_wall_0 description"
  2529. msgid ""
  2530. "The speed at which the outermost walls are printed. Printing the outer wall "
  2531. "at a lower speed improves the final skin quality. However, having a large "
  2532. "difference between the inner wall speed and the outer wall speed will affect "
  2533. "quality in a negative way."
  2534. msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。"
  2535. #: fdmprinter.def.json
  2536. msgctxt "speed_wall_x label"
  2537. msgid "Inner Wall Speed"
  2538. msgstr "内壁速度"
  2539. #: fdmprinter.def.json
  2540. msgctxt "speed_wall_x description"
  2541. msgid ""
  2542. "The speed at which all inner walls are printed. Printing the inner wall "
  2543. "faster than the outer wall will reduce printing time. It works well to set "
  2544. "this in between the outer wall speed and the infill speed."
  2545. msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。"
  2546. #: fdmprinter.def.json
  2547. msgctxt "speed_roofing label"
  2548. msgid "Top Surface Skin Speed"
  2549. msgstr "最上面速度"
  2550. #: fdmprinter.def.json
  2551. msgctxt "speed_roofing description"
  2552. msgid "The speed at which top surface skin layers are printed."
  2553. msgstr "上部表面プリント時の速度。"
  2554. #: fdmprinter.def.json
  2555. msgctxt "speed_topbottom label"
  2556. msgid "Top/Bottom Speed"
  2557. msgstr "上面/底面速度"
  2558. #: fdmprinter.def.json
  2559. msgctxt "speed_topbottom description"
  2560. msgid "The speed at which top/bottom layers are printed."
  2561. msgstr "トップ/ボトムのレイヤーのプリント速度。"
  2562. #: fdmprinter.def.json
  2563. msgctxt "speed_support label"
  2564. msgid "Support Speed"
  2565. msgstr "サポート速度"
  2566. #: fdmprinter.def.json
  2567. msgctxt "speed_support description"
  2568. msgid ""
  2569. "The speed at which the support structure is printed. Printing support at "
  2570. "higher speeds can greatly reduce printing time. The surface quality of the "
  2571. "support structure is not important since it is removed after printing."
  2572. msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。"
  2573. #: fdmprinter.def.json
  2574. msgctxt "speed_support_infill label"
  2575. msgid "Support Infill Speed"
  2576. msgstr "サポートインフィル速度"
  2577. #: fdmprinter.def.json
  2578. msgctxt "speed_support_infill description"
  2579. msgid ""
  2580. "The speed at which the infill of support is printed. Printing the infill at "
  2581. "lower speeds improves stability."
  2582. msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。"
  2583. #: fdmprinter.def.json
  2584. msgctxt "speed_support_interface label"
  2585. msgid "Support Interface Speed"
  2586. msgstr "サポートインタフェース速度"
  2587. #: fdmprinter.def.json
  2588. msgctxt "speed_support_interface description"
  2589. msgid ""
  2590. "The speed at which the roofs and floors of support are printed. Printing "
  2591. "them at lower speeds can improve overhang quality."
  2592. msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。"
  2593. #: fdmprinter.def.json
  2594. msgctxt "speed_support_roof label"
  2595. msgid "Support Roof Speed"
  2596. msgstr "サポートルーフ速度"
  2597. #: fdmprinter.def.json
  2598. msgctxt "speed_support_roof description"
  2599. msgid ""
  2600. "The speed at which the roofs of support are printed. Printing them at lower "
  2601. "speeds can improve overhang quality."
  2602. msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。"
  2603. #: fdmprinter.def.json
  2604. msgctxt "speed_support_bottom label"
  2605. msgid "Support Floor Speed"
  2606. msgstr "サポートフロア速度"
  2607. #: fdmprinter.def.json
  2608. msgctxt "speed_support_bottom description"
  2609. msgid ""
  2610. "The speed at which the floor of support is printed. Printing it at lower "
  2611. "speed can improve adhesion of support on top of your model."
  2612. msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。"
  2613. #: fdmprinter.def.json
  2614. msgctxt "speed_prime_tower label"
  2615. msgid "Prime Tower Speed"
  2616. msgstr "プライムタワー印刷速度"
  2617. #: fdmprinter.def.json
  2618. msgctxt "speed_prime_tower description"
  2619. msgid ""
  2620. "The speed at which the prime tower is printed. Printing the prime tower "
  2621. "slower can make it more stable when the adhesion between the different "
  2622. "filaments is suboptimal."
  2623. msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。"
  2624. #: fdmprinter.def.json
  2625. msgctxt "speed_travel label"
  2626. msgid "Travel Speed"
  2627. msgstr "移動速度"
  2628. #: fdmprinter.def.json
  2629. msgctxt "speed_travel description"
  2630. msgid "The speed at which travel moves are made."
  2631. msgstr "移動中のスピード。"
  2632. #: fdmprinter.def.json
  2633. msgctxt "speed_layer_0 label"
  2634. msgid "Initial Layer Speed"
  2635. msgstr "初期レイヤー速度"
  2636. #: fdmprinter.def.json
  2637. msgctxt "speed_layer_0 description"
  2638. msgid ""
  2639. "The speed for the initial layer. A lower value is advised to improve "
  2640. "adhesion to the build plate. Does not affect the build plate adhesion "
  2641. "structures themselves, like brim and raft."
  2642. msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。"
  2643. #: fdmprinter.def.json
  2644. msgctxt "speed_print_layer_0 label"
  2645. msgid "Initial Layer Print Speed"
  2646. msgstr "初期レイヤー印刷速度"
  2647. #: fdmprinter.def.json
  2648. msgctxt "speed_print_layer_0 description"
  2649. msgid ""
  2650. "The speed of printing for the initial layer. A lower value is advised to "
  2651. "improve adhesion to the build plate."
  2652. msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。"
  2653. #: fdmprinter.def.json
  2654. msgctxt "speed_travel_layer_0 label"
  2655. msgid "Initial Layer Travel Speed"
  2656. msgstr "初期レイヤー移動速度"
  2657. #: fdmprinter.def.json
  2658. msgctxt "speed_travel_layer_0 description"
  2659. msgid ""
  2660. "The speed of travel moves in the initial layer. A lower value is advised to "
  2661. "prevent pulling previously printed parts away from the build plate. The "
  2662. "value of this setting can automatically be calculated from the ratio between "
  2663. "the Travel Speed and the Print Speed."
  2664. msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。"
  2665. #: fdmprinter.def.json
  2666. msgctxt "skirt_brim_speed label"
  2667. msgid "Skirt/Brim Speed"
  2668. msgstr "スカート/ブリム速度"
  2669. #: fdmprinter.def.json
  2670. msgctxt "skirt_brim_speed description"
  2671. msgid ""
  2672. "The speed at which the skirt and brim are printed. Normally this is done at "
  2673. "the initial layer speed, but sometimes you might want to print the skirt or "
  2674. "brim at a different speed."
  2675. msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。"
  2676. #: fdmprinter.def.json
  2677. msgctxt "speed_z_hop label"
  2678. msgid "Z Hop Speed"
  2679. msgstr "Z 軸ホップ速度"
  2680. #: fdmprinter.def.json
  2681. msgctxt "speed_z_hop description"
  2682. msgid ""
  2683. "The speed at which the vertical Z movement is made for Z Hops. This is "
  2684. "typically lower than the print speed since the build plate or machine's "
  2685. "gantry is harder to move."
  2686. msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。"
  2687. #: fdmprinter.def.json
  2688. msgctxt "speed_slowdown_layers label"
  2689. msgid "Number of Slower Layers"
  2690. msgstr "遅いレイヤーの数"
  2691. #: fdmprinter.def.json
  2692. msgctxt "speed_slowdown_layers description"
  2693. msgid ""
  2694. "The first few layers are printed slower than the rest of the model, to get "
  2695. "better adhesion to the build plate and improve the overall success rate of "
  2696. "prints. The speed is gradually increased over these layers."
  2697. msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。"
  2698. #: fdmprinter.def.json
  2699. msgctxt "speed_equalize_flow_width_factor label"
  2700. msgid "Flow Equalization Ratio"
  2701. msgstr "フロー均一化率"
  2702. #: fdmprinter.def.json
  2703. msgctxt "speed_equalize_flow_width_factor description"
  2704. msgid ""
  2705. "Extrusion width based correction factor on the speed. At 0% the movement "
  2706. "speed is kept constant at the Print Speed. At 100% the movement speed is "
  2707. "adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the "
  2708. "normal Line Width are printed twice as fast and lines twice as wide are "
  2709. "printed half as fast. A value larger than 100% can help to compensate for "
  2710. "the higher pressure required to extrude wide lines."
  2711. msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。"
  2712. #: fdmprinter.def.json
  2713. msgctxt "acceleration_enabled label"
  2714. msgid "Enable Acceleration Control"
  2715. msgstr "加速度制御を有効にする"
  2716. #: fdmprinter.def.json
  2717. msgctxt "acceleration_enabled description"
  2718. msgid ""
  2719. "Enables adjusting the print head acceleration. Increasing the accelerations "
  2720. "can reduce printing time at the cost of print quality."
  2721. msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。"
  2722. #: fdmprinter.def.json
  2723. msgctxt "acceleration_print label"
  2724. msgid "Print Acceleration"
  2725. msgstr "印刷加速度"
  2726. #: fdmprinter.def.json
  2727. msgctxt "acceleration_print description"
  2728. msgid "The acceleration with which printing happens."
  2729. msgstr "印刷の加速スピードです。"
  2730. #: fdmprinter.def.json
  2731. msgctxt "acceleration_infill label"
  2732. msgid "Infill Acceleration"
  2733. msgstr "インフィル加速度"
  2734. #: fdmprinter.def.json
  2735. msgctxt "acceleration_infill description"
  2736. msgid "The acceleration with which infill is printed."
  2737. msgstr "インフィルの印刷の加速スピード。"
  2738. #: fdmprinter.def.json
  2739. msgctxt "acceleration_wall label"
  2740. msgid "Wall Acceleration"
  2741. msgstr "ウォール加速度"
  2742. #: fdmprinter.def.json
  2743. msgctxt "acceleration_wall description"
  2744. msgid "The acceleration with which the walls are printed."
  2745. msgstr "ウォールをプリントする際の加速度。"
  2746. #: fdmprinter.def.json
  2747. msgctxt "acceleration_wall_0 label"
  2748. msgid "Outer Wall Acceleration"
  2749. msgstr "外壁加速度"
  2750. #: fdmprinter.def.json
  2751. msgctxt "acceleration_wall_0 description"
  2752. msgid "The acceleration with which the outermost walls are printed."
  2753. msgstr "最も外側の壁をプリントする際の加速度。"
  2754. #: fdmprinter.def.json
  2755. msgctxt "acceleration_wall_x label"
  2756. msgid "Inner Wall Acceleration"
  2757. msgstr "内壁加速度"
  2758. #: fdmprinter.def.json
  2759. msgctxt "acceleration_wall_x description"
  2760. msgid "The acceleration with which all inner walls are printed."
  2761. msgstr "内側のウォールがが出力される際のスピード。"
  2762. #: fdmprinter.def.json
  2763. msgctxt "acceleration_roofing label"
  2764. msgid "Top Surface Skin Acceleration"
  2765. msgstr "最上面加速度"
  2766. #: fdmprinter.def.json
  2767. msgctxt "acceleration_roofing description"
  2768. msgid "The acceleration with which top surface skin layers are printed."
  2769. msgstr "上部表面プリント時の加速度。"
  2770. #: fdmprinter.def.json
  2771. msgctxt "acceleration_topbottom label"
  2772. msgid "Top/Bottom Acceleration"
  2773. msgstr "上面/底面加速度"
  2774. #: fdmprinter.def.json
  2775. msgctxt "acceleration_topbottom description"
  2776. msgid "The acceleration with which top/bottom layers are printed."
  2777. msgstr "トップとボトムのレイヤーの印刷加速度。"
  2778. #: fdmprinter.def.json
  2779. msgctxt "acceleration_support label"
  2780. msgid "Support Acceleration"
  2781. msgstr "サポート加速度"
  2782. #: fdmprinter.def.json
  2783. msgctxt "acceleration_support description"
  2784. msgid "The acceleration with which the support structure is printed."
  2785. msgstr "サポート材プリント時の加速スピード。"
  2786. #: fdmprinter.def.json
  2787. msgctxt "acceleration_support_infill label"
  2788. msgid "Support Infill Acceleration"
  2789. msgstr "サポートインフィル加速度"
  2790. #: fdmprinter.def.json
  2791. msgctxt "acceleration_support_infill description"
  2792. msgid "The acceleration with which the infill of support is printed."
  2793. msgstr "インフィルのサポート材のプリント時の加速度。"
  2794. #: fdmprinter.def.json
  2795. msgctxt "acceleration_support_interface label"
  2796. msgid "Support Interface Acceleration"
  2797. msgstr "サポートインタフェース加速度"
  2798. #: fdmprinter.def.json
  2799. msgctxt "acceleration_support_interface description"
  2800. msgid ""
  2801. "The acceleration with which the roofs and floors of support are printed. "
  2802. "Printing them at lower acceleration can improve overhang quality."
  2803. msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。"
  2804. #: fdmprinter.def.json
  2805. msgctxt "acceleration_support_roof label"
  2806. msgid "Support Roof Acceleration"
  2807. msgstr "サポートルーフ加速度"
  2808. #: fdmprinter.def.json
  2809. msgctxt "acceleration_support_roof description"
  2810. msgid ""
  2811. "The acceleration with which the roofs of support are printed. Printing them "
  2812. "at lower acceleration can improve overhang quality."
  2813. msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。"
  2814. #: fdmprinter.def.json
  2815. msgctxt "acceleration_support_bottom label"
  2816. msgid "Support Floor Acceleration"
  2817. msgstr "サポートフロア加速度"
  2818. #: fdmprinter.def.json
  2819. msgctxt "acceleration_support_bottom description"
  2820. msgid ""
  2821. "The acceleration with which the floors of support are printed. Printing them "
  2822. "at lower acceleration can improve adhesion of support on top of your model."
  2823. msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。"
  2824. #: fdmprinter.def.json
  2825. msgctxt "acceleration_prime_tower label"
  2826. msgid "Prime Tower Acceleration"
  2827. msgstr "プライムタワー加速度"
  2828. #: fdmprinter.def.json
  2829. msgctxt "acceleration_prime_tower description"
  2830. msgid "The acceleration with which the prime tower is printed."
  2831. msgstr "プライムタワーの印刷時のスピード。"
  2832. #: fdmprinter.def.json
  2833. msgctxt "acceleration_travel label"
  2834. msgid "Travel Acceleration"
  2835. msgstr "移動か速度"
  2836. #: fdmprinter.def.json
  2837. msgctxt "acceleration_travel description"
  2838. msgid "The acceleration with which travel moves are made."
  2839. msgstr "移動中の加速度。"
  2840. #: fdmprinter.def.json
  2841. msgctxt "acceleration_layer_0 label"
  2842. msgid "Initial Layer Acceleration"
  2843. msgstr "初期レイヤー加速度"
  2844. #: fdmprinter.def.json
  2845. msgctxt "acceleration_layer_0 description"
  2846. msgid "The acceleration for the initial layer."
  2847. msgstr "初期レイヤーの加速度。"
  2848. #: fdmprinter.def.json
  2849. msgctxt "acceleration_print_layer_0 label"
  2850. msgid "Initial Layer Print Acceleration"
  2851. msgstr "初期レイヤー印刷加速度"
  2852. #: fdmprinter.def.json
  2853. msgctxt "acceleration_print_layer_0 description"
  2854. msgid "The acceleration during the printing of the initial layer."
  2855. msgstr "初期レイヤーの印刷中の加速度。"
  2856. #: fdmprinter.def.json
  2857. msgctxt "acceleration_travel_layer_0 label"
  2858. msgid "Initial Layer Travel Acceleration"
  2859. msgstr "初期レイヤー移動加速度"
  2860. #: fdmprinter.def.json
  2861. msgctxt "acceleration_travel_layer_0 description"
  2862. msgid "The acceleration for travel moves in the initial layer."
  2863. msgstr "最初のレイヤー時の加速度。"
  2864. #: fdmprinter.def.json
  2865. msgctxt "acceleration_skirt_brim label"
  2866. msgid "Skirt/Brim Acceleration"
  2867. msgstr "スカート/ブリム加速度"
  2868. #: fdmprinter.def.json
  2869. msgctxt "acceleration_skirt_brim description"
  2870. msgid ""
  2871. "The acceleration with which the skirt and brim are printed. Normally this is "
  2872. "done with the initial layer acceleration, but sometimes you might want to "
  2873. "print the skirt or brim at a different acceleration."
  2874. msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。"
  2875. #: fdmprinter.def.json
  2876. msgctxt "jerk_enabled label"
  2877. msgid "Enable Jerk Control"
  2878. msgstr "ジャーク制御を有効にする"
  2879. #: fdmprinter.def.json
  2880. msgctxt "jerk_enabled description"
  2881. msgid ""
  2882. "Enables adjusting the jerk of print head when the velocity in the X or Y "
  2883. "axis changes. Increasing the jerk can reduce printing time at the cost of "
  2884. "print quality."
  2885. msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。"
  2886. #: fdmprinter.def.json
  2887. msgctxt "jerk_print label"
  2888. msgid "Print Jerk"
  2889. msgstr "印刷ジャーク"
  2890. #: fdmprinter.def.json
  2891. msgctxt "jerk_print description"
  2892. msgid "The maximum instantaneous velocity change of the print head."
  2893. msgstr "プリントヘッドの最大瞬間速度の変更。"
  2894. #: fdmprinter.def.json
  2895. msgctxt "jerk_infill label"
  2896. msgid "Infill Jerk"
  2897. msgstr "インフィルジャーク"
  2898. #: fdmprinter.def.json
  2899. msgctxt "jerk_infill description"
  2900. msgid "The maximum instantaneous velocity change with which infill is printed."
  2901. msgstr "インフィルの印刷時の瞬間速度の変更。"
  2902. #: fdmprinter.def.json
  2903. msgctxt "jerk_wall label"
  2904. msgid "Wall Jerk"
  2905. msgstr "ウォールジャーク"
  2906. #: fdmprinter.def.json
  2907. msgctxt "jerk_wall description"
  2908. msgid ""
  2909. "The maximum instantaneous velocity change with which the walls are printed."
  2910. msgstr "ウォールのプリント時の最大瞬間速度を変更。"
  2911. #: fdmprinter.def.json
  2912. msgctxt "jerk_wall_0 label"
  2913. msgid "Outer Wall Jerk"
  2914. msgstr "外壁ジャーク"
  2915. #: fdmprinter.def.json
  2916. msgctxt "jerk_wall_0 description"
  2917. msgid ""
  2918. "The maximum instantaneous velocity change with which the outermost walls are "
  2919. "printed."
  2920. msgstr "外側のウォールが出力される際の最大瞬間速度の変更。"
  2921. #: fdmprinter.def.json
  2922. msgctxt "jerk_wall_x label"
  2923. msgid "Inner Wall Jerk"
  2924. msgstr "内壁ジャーク"
  2925. #: fdmprinter.def.json
  2926. msgctxt "jerk_wall_x description"
  2927. msgid ""
  2928. "The maximum instantaneous velocity change with which all inner walls are "
  2929. "printed."
  2930. msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。"
  2931. #: fdmprinter.def.json
  2932. msgctxt "jerk_roofing label"
  2933. msgid "Top Surface Skin Jerk"
  2934. msgstr "最上面ジャーク"
  2935. #: fdmprinter.def.json
  2936. msgctxt "jerk_roofing description"
  2937. msgid ""
  2938. "The maximum instantaneous velocity change with which top surface skin layers "
  2939. "are printed."
  2940. msgstr "上部表面プリント時の最大加速度。"
  2941. #: fdmprinter.def.json
  2942. msgctxt "jerk_topbottom label"
  2943. msgid "Top/Bottom Jerk"
  2944. msgstr "上面/下面ジャーク"
  2945. #: fdmprinter.def.json
  2946. msgctxt "jerk_topbottom description"
  2947. msgid ""
  2948. "The maximum instantaneous velocity change with which top/bottom layers are "
  2949. "printed."
  2950. msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。"
  2951. #: fdmprinter.def.json
  2952. msgctxt "jerk_support label"
  2953. msgid "Support Jerk"
  2954. msgstr "サポートジャーク"
  2955. #: fdmprinter.def.json
  2956. msgctxt "jerk_support description"
  2957. msgid ""
  2958. "The maximum instantaneous velocity change with which the support structure "
  2959. "is printed."
  2960. msgstr "サポート材の印刷時の最大瞬間速度の変更。"
  2961. #: fdmprinter.def.json
  2962. msgctxt "jerk_support_infill label"
  2963. msgid "Support Infill Jerk"
  2964. msgstr "サポートインフィルジャーク"
  2965. #: fdmprinter.def.json
  2966. msgctxt "jerk_support_infill description"
  2967. msgid ""
  2968. "The maximum instantaneous velocity change with which the infill of support "
  2969. "is printed."
  2970. msgstr "サポート材の印刷時、最大瞬間速度の変更。"
  2971. #: fdmprinter.def.json
  2972. msgctxt "jerk_support_interface label"
  2973. msgid "Support Interface Jerk"
  2974. msgstr "サポートインタフェースジャーク"
  2975. #: fdmprinter.def.json
  2976. msgctxt "jerk_support_interface description"
  2977. msgid ""
  2978. "The maximum instantaneous velocity change with which the roofs and floors of "
  2979. "support are printed."
  2980. msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。"
  2981. #: fdmprinter.def.json
  2982. msgctxt "jerk_support_roof label"
  2983. msgid "Support Roof Jerk"
  2984. msgstr "サポートルーフジャーク"
  2985. #: fdmprinter.def.json
  2986. msgctxt "jerk_support_roof description"
  2987. msgid ""
  2988. "The maximum instantaneous velocity change with which the roofs of support "
  2989. "are printed."
  2990. msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。"
  2991. #: fdmprinter.def.json
  2992. msgctxt "jerk_support_bottom label"
  2993. msgid "Support Floor Jerk"
  2994. msgstr "サポートフロアジャーク"
  2995. #: fdmprinter.def.json
  2996. msgctxt "jerk_support_bottom description"
  2997. msgid ""
  2998. "The maximum instantaneous velocity change with which the floors of support "
  2999. "are printed."
  3000. msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。"
  3001. #: fdmprinter.def.json
  3002. msgctxt "jerk_prime_tower label"
  3003. msgid "Prime Tower Jerk"
  3004. msgstr "プライムタワージャーク"
  3005. #: fdmprinter.def.json
  3006. msgctxt "jerk_prime_tower description"
  3007. msgid ""
  3008. "The maximum instantaneous velocity change with which the prime tower is "
  3009. "printed."
  3010. msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。"
  3011. #: fdmprinter.def.json
  3012. msgctxt "jerk_travel label"
  3013. msgid "Travel Jerk"
  3014. msgstr "移動ジャーク"
  3015. #: fdmprinter.def.json
  3016. msgctxt "jerk_travel description"
  3017. msgid ""
  3018. "The maximum instantaneous velocity change with which travel moves are made."
  3019. msgstr "移動する際の最大瞬時速度の変更。"
  3020. #: fdmprinter.def.json
  3021. msgctxt "jerk_layer_0 label"
  3022. msgid "Initial Layer Jerk"
  3023. msgstr "初期レイヤージャーク"
  3024. #: fdmprinter.def.json
  3025. msgctxt "jerk_layer_0 description"
  3026. msgid "The print maximum instantaneous velocity change for the initial layer."
  3027. msgstr "初期レイヤーの最大瞬時速度の変更。"
  3028. #: fdmprinter.def.json
  3029. msgctxt "jerk_print_layer_0 label"
  3030. msgid "Initial Layer Print Jerk"
  3031. msgstr "初期レイヤー印刷ジャーク"
  3032. #: fdmprinter.def.json
  3033. msgctxt "jerk_print_layer_0 description"
  3034. msgid ""
  3035. "The maximum instantaneous velocity change during the printing of the initial "
  3036. "layer."
  3037. msgstr "初期レイヤー印刷中の最大瞬時速度の変化。"
  3038. #: fdmprinter.def.json
  3039. msgctxt "jerk_travel_layer_0 label"
  3040. msgid "Initial Layer Travel Jerk"
  3041. msgstr "初期レイヤー移動ジャーク"
  3042. #: fdmprinter.def.json
  3043. msgctxt "jerk_travel_layer_0 description"
  3044. msgid "The acceleration for travel moves in the initial layer."
  3045. msgstr "移動加速度は最初のレイヤーに適用されます。"
  3046. #: fdmprinter.def.json
  3047. msgctxt "jerk_skirt_brim label"
  3048. msgid "Skirt/Brim Jerk"
  3049. msgstr "スカート/ブリムジャーク"
  3050. #: fdmprinter.def.json
  3051. msgctxt "jerk_skirt_brim description"
  3052. msgid ""
  3053. "The maximum instantaneous velocity change with which the skirt and brim are "
  3054. "printed."
  3055. msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。"
  3056. #: fdmprinter.def.json
  3057. msgctxt "travel label"
  3058. msgid "Travel"
  3059. msgstr "移動"
  3060. #: fdmprinter.def.json
  3061. msgctxt "travel description"
  3062. msgid "travel"
  3063. msgstr "移動"
  3064. #: fdmprinter.def.json
  3065. msgctxt "retraction_enable label"
  3066. msgid "Enable Retraction"
  3067. msgstr "引き戻し有効"
  3068. #: fdmprinter.def.json
  3069. msgctxt "retraction_enable description"
  3070. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  3071. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  3072. #: fdmprinter.def.json
  3073. msgctxt "retract_at_layer_change label"
  3074. msgid "Retract at Layer Change"
  3075. msgstr "レイヤー変更時に引き戻す"
  3076. #: fdmprinter.def.json
  3077. msgctxt "retract_at_layer_change description"
  3078. msgid "Retract the filament when the nozzle is moving to the next layer."
  3079. msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。"
  3080. #: fdmprinter.def.json
  3081. msgctxt "retraction_amount label"
  3082. msgid "Retraction Distance"
  3083. msgstr "引き戻し距離"
  3084. #: fdmprinter.def.json
  3085. msgctxt "retraction_amount description"
  3086. msgid "The length of material retracted during a retraction move."
  3087. msgstr "引き戻されるマテリアルの長さ。"
  3088. #: fdmprinter.def.json
  3089. msgctxt "retraction_speed label"
  3090. msgid "Retraction Speed"
  3091. msgstr "引き戻し速度"
  3092. #: fdmprinter.def.json
  3093. msgctxt "retraction_speed description"
  3094. msgid ""
  3095. "The speed at which the filament is retracted and primed during a retraction "
  3096. "move."
  3097. msgstr "フィラメントが引き戻される時のスピード。"
  3098. #: fdmprinter.def.json
  3099. msgctxt "retraction_retract_speed label"
  3100. msgid "Retraction Retract Speed"
  3101. msgstr "引き戻し速度の取り消し"
  3102. #: fdmprinter.def.json
  3103. msgctxt "retraction_retract_speed description"
  3104. msgid "The speed at which the filament is retracted during a retraction move."
  3105. msgstr "フィラメントが引き戻される時のスピード。"
  3106. #: fdmprinter.def.json
  3107. msgctxt "retraction_prime_speed label"
  3108. msgid "Retraction Prime Speed"
  3109. msgstr "押し戻し速度の取り消し"
  3110. #: fdmprinter.def.json
  3111. msgctxt "retraction_prime_speed description"
  3112. msgid "The speed at which the filament is primed during a retraction move."
  3113. msgstr "フィラメントが引き戻される時のスピード。"
  3114. #: fdmprinter.def.json
  3115. msgctxt "retraction_extra_prime_amount label"
  3116. msgid "Retraction Extra Prime Amount"
  3117. msgstr "余分な押し戻し量の引き戻し"
  3118. #: fdmprinter.def.json
  3119. msgctxt "retraction_extra_prime_amount description"
  3120. msgid ""
  3121. "Some material can ooze away during a travel move, which can be compensated "
  3122. "for here."
  3123. msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。"
  3124. #: fdmprinter.def.json
  3125. msgctxt "retraction_min_travel label"
  3126. msgid "Retraction Minimum Travel"
  3127. msgstr "引き戻し最小移動距離"
  3128. #: fdmprinter.def.json
  3129. msgctxt "retraction_min_travel description"
  3130. msgid ""
  3131. "The minimum distance of travel needed for a retraction to happen at all. "
  3132. "This helps to get fewer retractions in a small area."
  3133. msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。"
  3134. #: fdmprinter.def.json
  3135. msgctxt "retraction_count_max label"
  3136. msgid "Maximum Retraction Count"
  3137. msgstr "最大引き戻し回数"
  3138. #: fdmprinter.def.json
  3139. msgctxt "retraction_count_max description"
  3140. msgid ""
  3141. "This setting limits the number of retractions occurring within the minimum "
  3142. "extrusion distance window. Further retractions within this window will be "
  3143. "ignored. This avoids retracting repeatedly on the same piece of filament, as "
  3144. "that can flatten the filament and cause grinding issues."
  3145. msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。"
  3146. #: fdmprinter.def.json
  3147. msgctxt "retraction_extrusion_window label"
  3148. msgid "Minimum Extrusion Distance Window"
  3149. msgstr "最小抽出距離範囲"
  3150. #: fdmprinter.def.json
  3151. msgctxt "retraction_extrusion_window description"
  3152. msgid ""
  3153. "The window in which the maximum retraction count is enforced. This value "
  3154. "should be approximately the same as the retraction distance, so that "
  3155. "effectively the number of times a retraction passes the same patch of "
  3156. "material is limited."
  3157. msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。"
  3158. #: fdmprinter.def.json
  3159. msgctxt "limit_support_retractions label"
  3160. msgid "Limit Support Retractions"
  3161. msgstr "サポート引き戻し限界"
  3162. #: fdmprinter.def.json
  3163. msgctxt "limit_support_retractions description"
  3164. msgid ""
  3165. "Omit retraction when moving from support to support in a straight line. "
  3166. "Enabling this setting saves print time, but can lead to excessive stringing "
  3167. "within the support structure."
  3168. msgstr "支持材から支持材に直線移動する場合は、引戻しを省略します。この設定を有効にすると、印刷時間は節約できますが、支持材内で過剰な糸引きが発生する可能性があります。"
  3169. #: fdmprinter.def.json
  3170. msgctxt "retraction_combing label"
  3171. msgid "Combing Mode"
  3172. msgstr "コーミングモード"
  3173. #: fdmprinter.def.json
  3174. msgctxt "retraction_combing description"
  3175. msgid ""
  3176. "Combing keeps the nozzle within already printed areas when traveling. This "
  3177. "results in slightly longer travel moves but reduces the need for "
  3178. "retractions. If combing is off, the material will retract and the nozzle "
  3179. "moves in a straight line to the next point. It is also possible to avoid "
  3180. "combing over top/bottom skin areas or to only comb within the infill."
  3181. msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。"
  3182. #: fdmprinter.def.json
  3183. msgctxt "retraction_combing option off"
  3184. msgid "Off"
  3185. msgstr "オフ"
  3186. #: fdmprinter.def.json
  3187. msgctxt "retraction_combing option all"
  3188. msgid "All"
  3189. msgstr "すべて"
  3190. #: fdmprinter.def.json
  3191. msgctxt "retraction_combing option no_outer_surfaces"
  3192. msgid "Not on Outer Surface"
  3193. msgstr "外側表面には適用しない"
  3194. #: fdmprinter.def.json
  3195. msgctxt "retraction_combing option noskin"
  3196. msgid "Not in Skin"
  3197. msgstr "スキン内にない"
  3198. #: fdmprinter.def.json
  3199. msgctxt "retraction_combing option infill"
  3200. msgid "Within Infill"
  3201. msgstr "インフィル内"
  3202. #: fdmprinter.def.json
  3203. msgctxt "retraction_combing_max_distance label"
  3204. msgid "Max Comb Distance With No Retract"
  3205. msgstr "引き戻しのない最大コム距離"
  3206. #: fdmprinter.def.json
  3207. msgctxt "retraction_combing_max_distance description"
  3208. msgid ""
  3209. "When greater than zero, combing travel moves that are longer than this "
  3210. "distance will use retraction. If set to zero, there is no maximum and "
  3211. "combing moves will not use retraction."
  3212. msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
  3213. #: fdmprinter.def.json
  3214. msgctxt "travel_retract_before_outer_wall label"
  3215. msgid "Retract Before Outer Wall"
  3216. msgstr "外壁の前に引き戻す"
  3217. #: fdmprinter.def.json
  3218. msgctxt "travel_retract_before_outer_wall description"
  3219. msgid "Always retract when moving to start an outer wall."
  3220. msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。"
  3221. #: fdmprinter.def.json
  3222. msgctxt "travel_avoid_other_parts label"
  3223. msgid "Avoid Printed Parts When Traveling"
  3224. msgstr "移動は印刷したパーツを回避する"
  3225. #: fdmprinter.def.json
  3226. msgctxt "travel_avoid_other_parts description"
  3227. msgid ""
  3228. "The nozzle avoids already printed parts when traveling. This option is only "
  3229. "available when combing is enabled."
  3230. msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  3231. #: fdmprinter.def.json
  3232. msgctxt "travel_avoid_supports label"
  3233. msgid "Avoid Supports When Traveling"
  3234. msgstr "移動はサポートを回避する"
  3235. #: fdmprinter.def.json
  3236. msgctxt "travel_avoid_supports description"
  3237. msgid ""
  3238. "The nozzle avoids already printed supports when traveling. This option is "
  3239. "only available when combing is enabled."
  3240. msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  3241. #: fdmprinter.def.json
  3242. msgctxt "travel_avoid_distance label"
  3243. msgid "Travel Avoid Distance"
  3244. msgstr "移動回避距離"
  3245. #: fdmprinter.def.json
  3246. msgctxt "travel_avoid_distance description"
  3247. msgid ""
  3248. "The distance between the nozzle and already printed parts when avoiding "
  3249. "during travel moves."
  3250. msgstr "ノズルが既に印刷された部分を移動する際の間隔。"
  3251. #: fdmprinter.def.json
  3252. msgctxt "layer_start_x label"
  3253. msgid "Layer Start X"
  3254. msgstr "レイヤー始点X"
  3255. #: fdmprinter.def.json
  3256. msgctxt "layer_start_x description"
  3257. msgid ""
  3258. "The X coordinate of the position near where to find the part to start "
  3259. "printing each layer."
  3260. msgstr "各レイヤーのプリントを開始する部分をしめすX座標。"
  3261. #: fdmprinter.def.json
  3262. msgctxt "layer_start_y label"
  3263. msgid "Layer Start Y"
  3264. msgstr "レイヤー始点Y"
  3265. #: fdmprinter.def.json
  3266. msgctxt "layer_start_y description"
  3267. msgid ""
  3268. "The Y coordinate of the position near where to find the part to start "
  3269. "printing each layer."
  3270. msgstr "各レイヤーのプリントを開始する部分をしめすY座標。"
  3271. #: fdmprinter.def.json
  3272. msgctxt "retraction_hop_enabled label"
  3273. msgid "Z Hop When Retracted"
  3274. msgstr "引き戻し時のZホップ"
  3275. #: fdmprinter.def.json
  3276. msgctxt "retraction_hop_enabled description"
  3277. msgid ""
  3278. "Whenever a retraction is done, the build plate is lowered to create "
  3279. "clearance between the nozzle and the print. It prevents the nozzle from "
  3280. "hitting the print during travel moves, reducing the chance to knock the "
  3281. "print from the build plate."
  3282. msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
  3283. #: fdmprinter.def.json
  3284. msgctxt "retraction_hop_only_when_collides label"
  3285. msgid "Z Hop Only Over Printed Parts"
  3286. msgstr "印刷パーツに対するZホップ"
  3287. #: fdmprinter.def.json
  3288. msgctxt "retraction_hop_only_when_collides description"
  3289. msgid ""
  3290. "Only perform a Z Hop when moving over printed parts which cannot be avoided "
  3291. "by horizontal motion by Avoid Printed Parts when Traveling."
  3292. msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。"
  3293. #: fdmprinter.def.json
  3294. msgctxt "retraction_hop label"
  3295. msgid "Z Hop Height"
  3296. msgstr "Zホップ高さ"
  3297. #: fdmprinter.def.json
  3298. msgctxt "retraction_hop description"
  3299. msgid "The height difference when performing a Z Hop."
  3300. msgstr "Zホップを実行するときの高さ。"
  3301. #: fdmprinter.def.json
  3302. msgctxt "retraction_hop_after_extruder_switch label"
  3303. msgid "Z Hop After Extruder Switch"
  3304. msgstr "エクストルーダースイッチ後のZホップ"
  3305. #: fdmprinter.def.json
  3306. msgctxt "retraction_hop_after_extruder_switch description"
  3307. msgid ""
  3308. "After the machine switched from one extruder to the other, the build plate "
  3309. "is lowered to create clearance between the nozzle and the print. This "
  3310. "prevents the nozzle from leaving oozed material on the outside of a print."
  3311. msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。"
  3312. #: fdmprinter.def.json
  3313. msgctxt "retraction_hop_after_extruder_switch_height label"
  3314. msgid "Z Hop After Extruder Switch Height"
  3315. msgstr "エクストルーダースイッチ高さ後のZホップ"
  3316. #: fdmprinter.def.json
  3317. msgctxt "retraction_hop_after_extruder_switch_height description"
  3318. msgid "The height difference when performing a Z Hop after extruder switch."
  3319. msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。"
  3320. #: fdmprinter.def.json
  3321. msgctxt "cooling label"
  3322. msgid "Cooling"
  3323. msgstr "冷却"
  3324. #: fdmprinter.def.json
  3325. msgctxt "cooling description"
  3326. msgid "Cooling"
  3327. msgstr "冷却"
  3328. #: fdmprinter.def.json
  3329. msgctxt "cool_fan_enabled label"
  3330. msgid "Enable Print Cooling"
  3331. msgstr "印刷中の冷却を有効にする"
  3332. #: fdmprinter.def.json
  3333. msgctxt "cool_fan_enabled description"
  3334. msgid ""
  3335. "Enables the print cooling fans while printing. The fans improve print "
  3336. "quality on layers with short layer times and bridging / overhangs."
  3337. msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。"
  3338. #: fdmprinter.def.json
  3339. msgctxt "cool_fan_speed label"
  3340. msgid "Fan Speed"
  3341. msgstr "ファン速度"
  3342. #: fdmprinter.def.json
  3343. msgctxt "cool_fan_speed description"
  3344. msgid "The speed at which the print cooling fans spin."
  3345. msgstr "冷却ファンが回転する速度。"
  3346. #: fdmprinter.def.json
  3347. msgctxt "cool_fan_speed_min label"
  3348. msgid "Regular Fan Speed"
  3349. msgstr "標準ファン速度"
  3350. #: fdmprinter.def.json
  3351. msgctxt "cool_fan_speed_min description"
  3352. msgid ""
  3353. "The speed at which the fans spin before hitting the threshold. When a layer "
  3354. "prints faster than the threshold, the fan speed gradually inclines towards "
  3355. "the maximum fan speed."
  3356. msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。"
  3357. #: fdmprinter.def.json
  3358. msgctxt "cool_fan_speed_max label"
  3359. msgid "Maximum Fan Speed"
  3360. msgstr "最大ファン速度"
  3361. #: fdmprinter.def.json
  3362. msgctxt "cool_fan_speed_max description"
  3363. msgid ""
  3364. "The speed at which the fans spin on the minimum layer time. The fan speed "
  3365. "gradually increases between the regular fan speed and maximum fan speed when "
  3366. "the threshold is hit."
  3367. msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。"
  3368. #: fdmprinter.def.json
  3369. msgctxt "cool_min_layer_time_fan_speed_max label"
  3370. msgid "Regular/Maximum Fan Speed Threshold"
  3371. msgstr "標準/最大ファン速度のしきい値"
  3372. #: fdmprinter.def.json
  3373. msgctxt "cool_min_layer_time_fan_speed_max description"
  3374. msgid ""
  3375. "The layer time which sets the threshold between regular fan speed and "
  3376. "maximum fan speed. Layers that print slower than this time use regular fan "
  3377. "speed. For faster layers the fan speed gradually increases towards the "
  3378. "maximum fan speed."
  3379. msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。"
  3380. #: fdmprinter.def.json
  3381. msgctxt "cool_fan_speed_0 label"
  3382. msgid "Initial Fan Speed"
  3383. msgstr "初期ファン速度"
  3384. #: fdmprinter.def.json
  3385. msgctxt "cool_fan_speed_0 description"
  3386. msgid ""
  3387. "The speed at which the fans spin at the start of the print. In subsequent "
  3388. "layers the fan speed is gradually increased up to the layer corresponding to "
  3389. "Regular Fan Speed at Height."
  3390. msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。"
  3391. #: fdmprinter.def.json
  3392. msgctxt "cool_fan_full_at_height label"
  3393. msgid "Regular Fan Speed at Height"
  3394. msgstr "標準ファン速度時の高さ"
  3395. #: fdmprinter.def.json
  3396. msgctxt "cool_fan_full_at_height description"
  3397. msgid ""
  3398. "The height at which the fans spin on regular fan speed. At the layers below "
  3399. "the fan speed gradually increases from Initial Fan Speed to Regular Fan "
  3400. "Speed."
  3401. msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。"
  3402. #: fdmprinter.def.json
  3403. msgctxt "cool_fan_full_layer label"
  3404. msgid "Regular Fan Speed at Layer"
  3405. msgstr "標準ファン速度時のレイヤー"
  3406. #: fdmprinter.def.json
  3407. msgctxt "cool_fan_full_layer description"
  3408. msgid ""
  3409. "The layer at which the fans spin on regular fan speed. If regular fan speed "
  3410. "at height is set, this value is calculated and rounded to a whole number."
  3411. msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。"
  3412. #: fdmprinter.def.json
  3413. msgctxt "cool_min_layer_time label"
  3414. msgid "Minimum Layer Time"
  3415. msgstr "最小レイヤー時間"
  3416. #: fdmprinter.def.json
  3417. msgctxt "cool_min_layer_time description"
  3418. msgid ""
  3419. "The minimum time spent in a layer. This forces the printer to slow down, to "
  3420. "at least spend the time set here in one layer. This allows the printed "
  3421. "material to cool down properly before printing the next layer. Layers may "
  3422. "still take shorter than the minimal layer time if Lift Head is disabled and "
  3423. "if the Minimum Speed would otherwise be violated."
  3424. msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。"
  3425. #: fdmprinter.def.json
  3426. msgctxt "cool_min_speed label"
  3427. msgid "Minimum Speed"
  3428. msgstr "最低速度"
  3429. #: fdmprinter.def.json
  3430. msgctxt "cool_min_speed description"
  3431. msgid ""
  3432. "The minimum print speed, despite slowing down due to the minimum layer time. "
  3433. "When the printer would slow down too much, the pressure in the nozzle would "
  3434. "be too low and result in bad print quality."
  3435. msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。"
  3436. #: fdmprinter.def.json
  3437. msgctxt "cool_lift_head label"
  3438. msgid "Lift Head"
  3439. msgstr "ヘッド持ち上げ"
  3440. #: fdmprinter.def.json
  3441. msgctxt "cool_lift_head description"
  3442. msgid ""
  3443. "When the minimum speed is hit because of minimum layer time, lift the head "
  3444. "away from the print and wait the extra time until the minimum layer time is "
  3445. "reached."
  3446. msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。"
  3447. #: fdmprinter.def.json
  3448. msgctxt "support label"
  3449. msgid "Support"
  3450. msgstr "サポート"
  3451. #: fdmprinter.def.json
  3452. msgctxt "support description"
  3453. msgid "Support"
  3454. msgstr "サポート"
  3455. #: fdmprinter.def.json
  3456. msgctxt "support_enable label"
  3457. msgid "Generate Support"
  3458. msgstr "サポート開始"
  3459. #: fdmprinter.def.json
  3460. msgctxt "support_enable description"
  3461. msgid ""
  3462. "Generate structures to support parts of the model which have overhangs. "
  3463. "Without these structures, such parts would collapse during printing."
  3464. msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。"
  3465. #: fdmprinter.def.json
  3466. msgctxt "support_extruder_nr label"
  3467. msgid "Support Extruder"
  3468. msgstr "サポート用エクストルーダー"
  3469. #: fdmprinter.def.json
  3470. msgctxt "support_extruder_nr description"
  3471. msgid ""
  3472. "The extruder train to use for printing the support. This is used in multi-"
  3473. "extrusion."
  3474. msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3475. #: fdmprinter.def.json
  3476. msgctxt "support_infill_extruder_nr label"
  3477. msgid "Support Infill Extruder"
  3478. msgstr "サポート用インフィルエクストルーダー"
  3479. #: fdmprinter.def.json
  3480. msgctxt "support_infill_extruder_nr description"
  3481. msgid ""
  3482. "The extruder train to use for printing the infill of the support. This is "
  3483. "used in multi-extrusion."
  3484. msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3485. #: fdmprinter.def.json
  3486. msgctxt "support_extruder_nr_layer_0 label"
  3487. msgid "First Layer Support Extruder"
  3488. msgstr "最初のレイヤー用サポートエクストルーダー"
  3489. #: fdmprinter.def.json
  3490. msgctxt "support_extruder_nr_layer_0 description"
  3491. msgid ""
  3492. "The extruder train to use for printing the first layer of support infill. "
  3493. "This is used in multi-extrusion."
  3494. msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3495. #: fdmprinter.def.json
  3496. msgctxt "support_interface_extruder_nr label"
  3497. msgid "Support Interface Extruder"
  3498. msgstr "サポートインタフェースエクストルーダー"
  3499. #: fdmprinter.def.json
  3500. msgctxt "support_interface_extruder_nr description"
  3501. msgid ""
  3502. "The extruder train to use for printing the roofs and floors of the support. "
  3503. "This is used in multi-extrusion."
  3504. msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。"
  3505. #: fdmprinter.def.json
  3506. msgctxt "support_roof_extruder_nr label"
  3507. msgid "Support Roof Extruder"
  3508. msgstr "サポートルーフエクストルーダー"
  3509. #: fdmprinter.def.json
  3510. msgctxt "support_roof_extruder_nr description"
  3511. msgid ""
  3512. "The extruder train to use for printing the roofs of the support. This is "
  3513. "used in multi-extrusion."
  3514. msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。"
  3515. #: fdmprinter.def.json
  3516. msgctxt "support_bottom_extruder_nr label"
  3517. msgid "Support Floor Extruder"
  3518. msgstr "サポートフロアエクストルーダー"
  3519. #: fdmprinter.def.json
  3520. msgctxt "support_bottom_extruder_nr description"
  3521. msgid ""
  3522. "The extruder train to use for printing the floors of the support. This is "
  3523. "used in multi-extrusion."
  3524. msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。"
  3525. #: fdmprinter.def.json
  3526. msgctxt "support_structure label"
  3527. msgid "Support Structure"
  3528. msgstr "サポート構造"
  3529. #: fdmprinter.def.json
  3530. msgctxt "support_structure description"
  3531. msgid ""
  3532. "Chooses between the techniques available to generate support. \"Normal\" "
  3533. "support creates a support structure directly below the overhanging parts and "
  3534. "drops those areas straight down. \"Tree\" support creates branches towards "
  3535. "the overhanging areas that support the model on the tips of those branches, "
  3536. "and allows the branches to crawl around the model to support it from the "
  3537. "build plate as much as possible."
  3538. msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。"
  3539. #: fdmprinter.def.json
  3540. msgctxt "support_structure option normal"
  3541. msgid "Normal"
  3542. msgstr "標準"
  3543. #: fdmprinter.def.json
  3544. msgctxt "support_structure option tree"
  3545. msgid "Tree"
  3546. msgstr "ツリー"
  3547. #: fdmprinter.def.json
  3548. msgctxt "support_tree_angle label"
  3549. msgid "Tree Support Branch Angle"
  3550. msgstr "ツリーサポート枝角度"
  3551. #: fdmprinter.def.json
  3552. msgctxt "support_tree_angle description"
  3553. msgid ""
  3554. "The angle of the branches. Use a lower angle to make them more vertical and "
  3555. "more stable. Use a higher angle to be able to have more reach."
  3556. msgstr "枝の角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。"
  3557. #: fdmprinter.def.json
  3558. msgctxt "support_tree_branch_distance label"
  3559. msgid "Tree Support Branch Distance"
  3560. msgstr "ツリーサポート枝間隔"
  3561. #: fdmprinter.def.json
  3562. msgctxt "support_tree_branch_distance description"
  3563. msgid ""
  3564. "How far apart the branches need to be when they touch the model. Making this "
  3565. "distance small will cause the tree support to touch the model at more "
  3566. "points, causing better overhang but making support harder to remove."
  3567. msgstr "枝がモデルに接触するところで確保する枝の間隔。この間隔を小さくするとツリーサポートがモデルに接触する点が増え、支える効果が高まりますが、サポートの取り外しが難しくなります。"
  3568. #: fdmprinter.def.json
  3569. msgctxt "support_tree_branch_diameter label"
  3570. msgid "Tree Support Branch Diameter"
  3571. msgstr "ツリーサポート枝直径"
  3572. #: fdmprinter.def.json
  3573. msgctxt "support_tree_branch_diameter description"
  3574. msgid ""
  3575. "The diameter of the thinnest branches of tree support. Thicker branches are "
  3576. "more sturdy. Branches towards the base will be thicker than this."
  3577. msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。"
  3578. #: fdmprinter.def.json
  3579. msgctxt "support_tree_branch_diameter_angle label"
  3580. msgid "Tree Support Branch Diameter Angle"
  3581. msgstr "ツリーサポート枝直径角度"
  3582. #: fdmprinter.def.json
  3583. msgctxt "support_tree_branch_diameter_angle description"
  3584. msgid ""
  3585. "The angle of the branches' diameter as they gradually become thicker towards "
  3586. "the bottom. An angle of 0 will cause the branches to have uniform thickness "
  3587. "over their length. A bit of an angle can increase stability of the tree "
  3588. "support."
  3589. msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。"
  3590. #: fdmprinter.def.json
  3591. msgctxt "support_tree_collision_resolution label"
  3592. msgid "Tree Support Collision Resolution"
  3593. msgstr "ツリーサポート衝突精細度"
  3594. #: fdmprinter.def.json
  3595. msgctxt "support_tree_collision_resolution description"
  3596. msgid ""
  3597. "Resolution to compute collisions with to avoid hitting the model. Setting "
  3598. "this lower will produce more accurate trees that fail less often, but "
  3599. "increases slicing time dramatically."
  3600. msgstr "モデルに干渉しないようにする衝突計算の精細度。小さい値を設定すると、失敗の少ない正確なツリーが生成されますが、スライス時間は大きく増加します。"
  3601. #: fdmprinter.def.json
  3602. msgctxt "support_type label"
  3603. msgid "Support Placement"
  3604. msgstr "サポート配置"
  3605. #: fdmprinter.def.json
  3606. msgctxt "support_type description"
  3607. msgid ""
  3608. "Adjusts the placement of the support structures. The placement can be set to "
  3609. "touching build plate or everywhere. When set to everywhere the support "
  3610. "structures will also be printed on the model."
  3611. msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。"
  3612. #: fdmprinter.def.json
  3613. msgctxt "support_type option buildplate"
  3614. msgid "Touching Buildplate"
  3615. msgstr "ビルドプレートにタッチ"
  3616. #: fdmprinter.def.json
  3617. msgctxt "support_type option everywhere"
  3618. msgid "Everywhere"
  3619. msgstr "全対象"
  3620. #: fdmprinter.def.json
  3621. msgctxt "support_angle label"
  3622. msgid "Support Overhang Angle"
  3623. msgstr "サポートオーバーハング角度"
  3624. #: fdmprinter.def.json
  3625. msgctxt "support_angle description"
  3626. msgid ""
  3627. "The minimum angle of overhangs for which support is added. At a value of 0° "
  3628. "all overhangs are supported, 90° will not provide any support."
  3629. msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。"
  3630. #: fdmprinter.def.json
  3631. msgctxt "support_pattern label"
  3632. msgid "Support Pattern"
  3633. msgstr "サポートパターン"
  3634. #: fdmprinter.def.json
  3635. msgctxt "support_pattern description"
  3636. msgid ""
  3637. "The pattern of the support structures of the print. The different options "
  3638. "available result in sturdy or easy to remove support."
  3639. msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。"
  3640. #: fdmprinter.def.json
  3641. msgctxt "support_pattern option lines"
  3642. msgid "Lines"
  3643. msgstr "ライン"
  3644. #: fdmprinter.def.json
  3645. msgctxt "support_pattern option grid"
  3646. msgid "Grid"
  3647. msgstr "グリッド"
  3648. #: fdmprinter.def.json
  3649. msgctxt "support_pattern option triangles"
  3650. msgid "Triangles"
  3651. msgstr "トライアングル"
  3652. #: fdmprinter.def.json
  3653. msgctxt "support_pattern option concentric"
  3654. msgid "Concentric"
  3655. msgstr "同心円"
  3656. #: fdmprinter.def.json
  3657. msgctxt "support_pattern option zigzag"
  3658. msgid "Zig Zag"
  3659. msgstr "ジグザグ"
  3660. #: fdmprinter.def.json
  3661. msgctxt "support_pattern option cross"
  3662. msgid "Cross"
  3663. msgstr "クロス"
  3664. #: fdmprinter.def.json
  3665. msgctxt "support_pattern option gyroid"
  3666. msgid "Gyroid"
  3667. msgstr "ジャイロイド"
  3668. #: fdmprinter.def.json
  3669. msgctxt "support_wall_count label"
  3670. msgid "Support Wall Line Count"
  3671. msgstr "サポートウォールライン数"
  3672. #: fdmprinter.def.json
  3673. msgctxt "support_wall_count description"
  3674. msgid ""
  3675. "The number of walls with which to surround support infill. Adding a wall can "
  3676. "make support print more reliably and can support overhangs better, but "
  3677. "increases print time and material used."
  3678. msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  3679. #: fdmprinter.def.json
  3680. msgctxt "zig_zaggify_support label"
  3681. msgid "Connect Support Lines"
  3682. msgstr "サポートライン接続"
  3683. #: fdmprinter.def.json
  3684. msgctxt "zig_zaggify_support description"
  3685. msgid ""
  3686. "Connect the ends of the support lines together. Enabling this setting can "
  3687. "make your support more sturdy and reduce underextrusion, but it will cost "
  3688. "more material."
  3689. msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。"
  3690. #: fdmprinter.def.json
  3691. msgctxt "support_connect_zigzags label"
  3692. msgid "Connect Support ZigZags"
  3693. msgstr "サポートジグザグ接続"
  3694. #: fdmprinter.def.json
  3695. msgctxt "support_connect_zigzags description"
  3696. msgid ""
  3697. "Connect the ZigZags. This will increase the strength of the zig zag support "
  3698. "structure."
  3699. msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。"
  3700. #: fdmprinter.def.json
  3701. msgctxt "support_infill_rate label"
  3702. msgid "Support Density"
  3703. msgstr "サポート密度"
  3704. #: fdmprinter.def.json
  3705. msgctxt "support_infill_rate description"
  3706. msgid ""
  3707. "Adjusts the density of the support structure. A higher value results in "
  3708. "better overhangs, but the supports are harder to remove."
  3709. msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。"
  3710. #: fdmprinter.def.json
  3711. msgctxt "support_line_distance label"
  3712. msgid "Support Line Distance"
  3713. msgstr "サポートライン距離"
  3714. #: fdmprinter.def.json
  3715. msgctxt "support_line_distance description"
  3716. msgid ""
  3717. "Distance between the printed support structure lines. This setting is "
  3718. "calculated by the support density."
  3719. msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。"
  3720. #: fdmprinter.def.json
  3721. msgctxt "support_initial_layer_line_distance label"
  3722. msgid "Initial Layer Support Line Distance"
  3723. msgstr "初期層サポートラインの距離"
  3724. #: fdmprinter.def.json
  3725. msgctxt "support_initial_layer_line_distance description"
  3726. msgid ""
  3727. "Distance between the printed initial layer support structure lines. This "
  3728. "setting is calculated by the support density."
  3729. msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。"
  3730. #: fdmprinter.def.json
  3731. msgctxt "support_infill_angles label"
  3732. msgid "Support Infill Line Directions"
  3733. msgstr "サポートインフィルラインの向き"
  3734. #: fdmprinter.def.json
  3735. msgctxt "support_infill_angles description"
  3736. msgid ""
  3737. "A list of integer line directions to use. Elements from the list are used "
  3738. "sequentially as the layers progress and when the end of the list is reached, "
  3739. "it starts at the beginning again. The list items are separated by commas and "
  3740. "the whole list is contained in square brackets. Default is an empty list "
  3741. "which means use the default angle 0 degrees."
  3742. msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。"
  3743. #: fdmprinter.def.json
  3744. msgctxt "support_brim_enable label"
  3745. msgid "Enable Support Brim"
  3746. msgstr "サポートブリムを有効にする"
  3747. #: fdmprinter.def.json
  3748. msgctxt "support_brim_enable description"
  3749. msgid ""
  3750. "Generate a brim within the support infill regions of the first layer. This "
  3751. "brim is printed underneath the support, not around it. Enabling this setting "
  3752. "increases the adhesion of support to the build plate."
  3753. msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。"
  3754. #: fdmprinter.def.json
  3755. msgctxt "support_brim_width label"
  3756. msgid "Support Brim Width"
  3757. msgstr "サポートブリムの幅"
  3758. #: fdmprinter.def.json
  3759. msgctxt "support_brim_width description"
  3760. msgid ""
  3761. "The width of the brim to print underneath the support. A larger brim "
  3762. "enhances adhesion to the build plate, at the cost of some extra material."
  3763. msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。"
  3764. #: fdmprinter.def.json
  3765. msgctxt "support_brim_line_count label"
  3766. msgid "Support Brim Line Count"
  3767. msgstr "サポートブリムのライン数"
  3768. #: fdmprinter.def.json
  3769. msgctxt "support_brim_line_count description"
  3770. msgid ""
  3771. "The number of lines used for the support brim. More brim lines enhance "
  3772. "adhesion to the build plate, at the cost of some extra material."
  3773. msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。"
  3774. #: fdmprinter.def.json
  3775. msgctxt "support_z_distance label"
  3776. msgid "Support Z Distance"
  3777. msgstr "サポートZ距離"
  3778. #: fdmprinter.def.json
  3779. msgctxt "support_z_distance description"
  3780. msgid ""
  3781. "Distance from the top/bottom of the support structure to the print. This gap "
  3782. "provides clearance to remove the supports after the model is printed. This "
  3783. "value is rounded up to a multiple of the layer height."
  3784. msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。"
  3785. #: fdmprinter.def.json
  3786. msgctxt "support_top_distance label"
  3787. msgid "Support Top Distance"
  3788. msgstr "サポート上部距離"
  3789. #: fdmprinter.def.json
  3790. msgctxt "support_top_distance description"
  3791. msgid "Distance from the top of the support to the print."
  3792. msgstr "サポートの上部から印刷物までの距離。"
  3793. #: fdmprinter.def.json
  3794. msgctxt "support_bottom_distance label"
  3795. msgid "Support Bottom Distance"
  3796. msgstr "サポート底部距離"
  3797. #: fdmprinter.def.json
  3798. msgctxt "support_bottom_distance description"
  3799. msgid "Distance from the print to the bottom of the support."
  3800. msgstr "印刷物とサポート材底部までの距離。"
  3801. #: fdmprinter.def.json
  3802. msgctxt "support_xy_distance label"
  3803. msgid "Support X/Y Distance"
  3804. msgstr "サポートX/Y距離"
  3805. #: fdmprinter.def.json
  3806. msgctxt "support_xy_distance description"
  3807. msgid "Distance of the support structure from the print in the X/Y directions."
  3808. msgstr "印刷物からX/Y方向へのサポート材との距離。"
  3809. #: fdmprinter.def.json
  3810. msgctxt "support_xy_overrides_z label"
  3811. msgid "Support Distance Priority"
  3812. msgstr "サポート距離優先順位"
  3813. #: fdmprinter.def.json
  3814. msgctxt "support_xy_overrides_z description"
  3815. msgid ""
  3816. "Whether the Support X/Y Distance overrides the Support Z Distance or vice "
  3817. "versa. When X/Y overrides Z the X/Y distance can push away the support from "
  3818. "the model, influencing the actual Z distance to the overhang. We can disable "
  3819. "this by not applying the X/Y distance around overhangs."
  3820. msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。"
  3821. #: fdmprinter.def.json
  3822. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3823. msgid "X/Y overrides Z"
  3824. msgstr "X/YがZを上書き"
  3825. #: fdmprinter.def.json
  3826. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3827. msgid "Z overrides X/Y"
  3828. msgstr "ZがX/Yを上書き"
  3829. #: fdmprinter.def.json
  3830. msgctxt "support_xy_distance_overhang label"
  3831. msgid "Minimum Support X/Y Distance"
  3832. msgstr "最小サポートX/Y距離"
  3833. #: fdmprinter.def.json
  3834. msgctxt "support_xy_distance_overhang description"
  3835. msgid ""
  3836. "Distance of the support structure from the overhang in the X/Y directions."
  3837. msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。"
  3838. #: fdmprinter.def.json
  3839. msgctxt "support_bottom_stair_step_height label"
  3840. msgid "Support Stair Step Height"
  3841. msgstr "サポート階段高さ"
  3842. #: fdmprinter.def.json
  3843. msgctxt "support_bottom_stair_step_height description"
  3844. msgid ""
  3845. "The height of the steps of the stair-like bottom of support resting on the "
  3846. "model. A low value makes the support harder to remove, but too high values "
  3847. "can lead to unstable support structures. Set to zero to turn off the stair-"
  3848. "like behaviour."
  3849. msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。"
  3850. #: fdmprinter.def.json
  3851. msgctxt "support_bottom_stair_step_width label"
  3852. msgid "Support Stair Step Maximum Width"
  3853. msgstr "サポート階段最大幅"
  3854. #: fdmprinter.def.json
  3855. msgctxt "support_bottom_stair_step_width description"
  3856. msgid ""
  3857. "The maximum width of the steps of the stair-like bottom of support resting "
  3858. "on the model. A low value makes the support harder to remove, but too high "
  3859. "values can lead to unstable support structures."
  3860. msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。"
  3861. #: fdmprinter.def.json
  3862. msgctxt "support_bottom_stair_step_min_slope label"
  3863. msgid "Support Stair Step Minimum Slope Angle"
  3864. msgstr "サポートステアステップ最小傾斜角度"
  3865. #: fdmprinter.def.json
  3866. msgctxt "support_bottom_stair_step_min_slope description"
  3867. msgid ""
  3868. "The minimum slope of the area for stair-stepping to take effect. Low values "
  3869. "should make support easier to remove on shallower slopes, but really low "
  3870. "values may result in some very counter-intuitive results on other parts of "
  3871. "the model."
  3872. msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。"
  3873. #: fdmprinter.def.json
  3874. msgctxt "support_join_distance label"
  3875. msgid "Support Join Distance"
  3876. msgstr "サポート接合距離"
  3877. #: fdmprinter.def.json
  3878. msgctxt "support_join_distance description"
  3879. msgid ""
  3880. "The maximum distance between support structures in the X/Y directions. When "
  3881. "separate structures are closer together than this value, the structures "
  3882. "merge into one."
  3883. msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。"
  3884. #: fdmprinter.def.json
  3885. msgctxt "support_offset label"
  3886. msgid "Support Horizontal Expansion"
  3887. msgstr "サポート水平展開"
  3888. #: fdmprinter.def.json
  3889. msgctxt "support_offset description"
  3890. msgid ""
  3891. "Amount of offset applied to all support polygons in each layer. Positive "
  3892. "values can smooth out the support areas and result in more sturdy support."
  3893. msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。"
  3894. #: fdmprinter.def.json
  3895. msgctxt "support_infill_sparse_thickness label"
  3896. msgid "Support Infill Layer Thickness"
  3897. msgstr "サポートインフィルレイヤー厚さ"
  3898. #: fdmprinter.def.json
  3899. msgctxt "support_infill_sparse_thickness description"
  3900. msgid ""
  3901. "The thickness per layer of support infill material. This value should always "
  3902. "be a multiple of the layer height and is otherwise rounded."
  3903. msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。"
  3904. #: fdmprinter.def.json
  3905. msgctxt "gradual_support_infill_steps label"
  3906. msgid "Gradual Support Infill Steps"
  3907. msgstr "サポートインフィル半減回数"
  3908. #: fdmprinter.def.json
  3909. msgctxt "gradual_support_infill_steps description"
  3910. msgid ""
  3911. "Number of times to reduce the support infill density by half when getting "
  3912. "further below top surfaces. Areas which are closer to top surfaces get a "
  3913. "higher density, up to the Support Infill Density."
  3914. msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。"
  3915. #: fdmprinter.def.json
  3916. msgctxt "gradual_support_infill_step_height label"
  3917. msgid "Gradual Support Infill Step Height"
  3918. msgstr "サポートインフィル半減前の高さ"
  3919. #: fdmprinter.def.json
  3920. msgctxt "gradual_support_infill_step_height description"
  3921. msgid ""
  3922. "The height of support infill of a given density before switching to half the "
  3923. "density."
  3924. msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。"
  3925. #: fdmprinter.def.json
  3926. msgctxt "minimum_support_area label"
  3927. msgid "Minimum Support Area"
  3928. msgstr "最小サポート領域"
  3929. #: fdmprinter.def.json
  3930. msgctxt "minimum_support_area description"
  3931. msgid ""
  3932. "Minimum area size for support polygons. Polygons which have an area smaller "
  3933. "than this value will not be generated."
  3934. msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  3935. #: fdmprinter.def.json
  3936. msgctxt "support_interface_enable label"
  3937. msgid "Enable Support Interface"
  3938. msgstr "サポートインタフェースを有効にする"
  3939. #: fdmprinter.def.json
  3940. msgctxt "support_interface_enable description"
  3941. msgid ""
  3942. "Generate a dense interface between the model and the support. This will "
  3943. "create a skin at the top of the support on which the model is printed and at "
  3944. "the bottom of the support, where it rests on the model."
  3945. msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。"
  3946. #: fdmprinter.def.json
  3947. msgctxt "support_roof_enable label"
  3948. msgid "Enable Support Roof"
  3949. msgstr "サポートルーフを有効にする"
  3950. #: fdmprinter.def.json
  3951. msgctxt "support_roof_enable description"
  3952. msgid ""
  3953. "Generate a dense slab of material between the top of support and the model. "
  3954. "This will create a skin between the model and support."
  3955. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  3956. #: fdmprinter.def.json
  3957. msgctxt "support_bottom_enable label"
  3958. msgid "Enable Support Floor"
  3959. msgstr "サポートフロアを有効にする"
  3960. #: fdmprinter.def.json
  3961. msgctxt "support_bottom_enable description"
  3962. msgid ""
  3963. "Generate a dense slab of material between the bottom of the support and the "
  3964. "model. This will create a skin between the model and support."
  3965. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  3966. #: fdmprinter.def.json
  3967. msgctxt "support_interface_height label"
  3968. msgid "Support Interface Thickness"
  3969. msgstr "サポートインタフェース厚さ"
  3970. #: fdmprinter.def.json
  3971. msgctxt "support_interface_height description"
  3972. msgid ""
  3973. "The thickness of the interface of the support where it touches with the "
  3974. "model on the bottom or the top."
  3975. msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。"
  3976. #: fdmprinter.def.json
  3977. msgctxt "support_roof_height label"
  3978. msgid "Support Roof Thickness"
  3979. msgstr "サポートルーフ厚さ"
  3980. #: fdmprinter.def.json
  3981. msgctxt "support_roof_height description"
  3982. msgid ""
  3983. "The thickness of the support roofs. This controls the amount of dense layers "
  3984. "at the top of the support on which the model rests."
  3985. msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。"
  3986. #: fdmprinter.def.json
  3987. msgctxt "support_bottom_height label"
  3988. msgid "Support Floor Thickness"
  3989. msgstr "サポートフロア厚さ"
  3990. #: fdmprinter.def.json
  3991. msgctxt "support_bottom_height description"
  3992. msgid ""
  3993. "The thickness of the support floors. This controls the number of dense "
  3994. "layers that are printed on top of places of a model on which support rests."
  3995. msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。"
  3996. #: fdmprinter.def.json
  3997. msgctxt "support_interface_skip_height label"
  3998. msgid "Support Interface Resolution"
  3999. msgstr "サポートインタフェース解像度"
  4000. #: fdmprinter.def.json
  4001. msgctxt "support_interface_skip_height description"
  4002. msgid ""
  4003. "When checking where there's model above and below the support, take steps of "
  4004. "the given height. Lower values will slice slower, while higher values may "
  4005. "cause normal support to be printed in some places where there should have "
  4006. "been support interface."
  4007. msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。"
  4008. #: fdmprinter.def.json
  4009. msgctxt "support_interface_density label"
  4010. msgid "Support Interface Density"
  4011. msgstr "サポートインタフェース密度"
  4012. #: fdmprinter.def.json
  4013. msgctxt "support_interface_density description"
  4014. msgid ""
  4015. "Adjusts the density of the roofs and floors of the support structure. A "
  4016. "higher value results in better overhangs, but the supports are harder to "
  4017. "remove."
  4018. msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。"
  4019. #: fdmprinter.def.json
  4020. msgctxt "support_roof_density label"
  4021. msgid "Support Roof Density"
  4022. msgstr "サポートルーフ密度"
  4023. #: fdmprinter.def.json
  4024. msgctxt "support_roof_density description"
  4025. msgid ""
  4026. "The density of the roofs of the support structure. A higher value results in "
  4027. "better overhangs, but the supports are harder to remove."
  4028. msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。"
  4029. #: fdmprinter.def.json
  4030. msgctxt "support_roof_line_distance label"
  4031. msgid "Support Roof Line Distance"
  4032. msgstr "サポートルーフライン距離"
  4033. #: fdmprinter.def.json
  4034. msgctxt "support_roof_line_distance description"
  4035. msgid ""
  4036. "Distance between the printed support roof lines. This setting is calculated "
  4037. "by the Support Roof Density, but can be adjusted separately."
  4038. msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。"
  4039. #: fdmprinter.def.json
  4040. msgctxt "support_bottom_density label"
  4041. msgid "Support Floor Density"
  4042. msgstr "サポートフロア密度"
  4043. #: fdmprinter.def.json
  4044. msgctxt "support_bottom_density description"
  4045. msgid ""
  4046. "The density of the floors of the support structure. A higher value results "
  4047. "in better adhesion of the support on top of the model."
  4048. msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。"
  4049. #: fdmprinter.def.json
  4050. msgctxt "support_bottom_line_distance label"
  4051. msgid "Support Floor Line Distance"
  4052. msgstr "サポートフロアライン距離"
  4053. #: fdmprinter.def.json
  4054. msgctxt "support_bottom_line_distance description"
  4055. msgid ""
  4056. "Distance between the printed support floor lines. This setting is calculated "
  4057. "by the Support Floor Density, but can be adjusted separately."
  4058. msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。"
  4059. #: fdmprinter.def.json
  4060. msgctxt "support_interface_pattern label"
  4061. msgid "Support Interface Pattern"
  4062. msgstr "サポートインタフェースパターン"
  4063. #: fdmprinter.def.json
  4064. msgctxt "support_interface_pattern description"
  4065. msgid ""
  4066. "The pattern with which the interface of the support with the model is "
  4067. "printed."
  4068. msgstr "モデルとサポートのインタフェースが印刷されるパターン。"
  4069. #: fdmprinter.def.json
  4070. msgctxt "support_interface_pattern option lines"
  4071. msgid "Lines"
  4072. msgstr "ライン"
  4073. #: fdmprinter.def.json
  4074. msgctxt "support_interface_pattern option grid"
  4075. msgid "Grid"
  4076. msgstr "グリッド"
  4077. #: fdmprinter.def.json
  4078. msgctxt "support_interface_pattern option triangles"
  4079. msgid "Triangles"
  4080. msgstr "トライアングル"
  4081. #: fdmprinter.def.json
  4082. msgctxt "support_interface_pattern option concentric"
  4083. msgid "Concentric"
  4084. msgstr "同心円"
  4085. #: fdmprinter.def.json
  4086. msgctxt "support_interface_pattern option zigzag"
  4087. msgid "Zig Zag"
  4088. msgstr "ジグザグ"
  4089. #: fdmprinter.def.json
  4090. msgctxt "support_roof_pattern label"
  4091. msgid "Support Roof Pattern"
  4092. msgstr "サポートルーフパターン"
  4093. #: fdmprinter.def.json
  4094. msgctxt "support_roof_pattern description"
  4095. msgid "The pattern with which the roofs of the support are printed."
  4096. msgstr "サポートのルーフが印刷されるパターン。"
  4097. #: fdmprinter.def.json
  4098. msgctxt "support_roof_pattern option lines"
  4099. msgid "Lines"
  4100. msgstr "ライン"
  4101. #: fdmprinter.def.json
  4102. msgctxt "support_roof_pattern option grid"
  4103. msgid "Grid"
  4104. msgstr "グリッド"
  4105. #: fdmprinter.def.json
  4106. msgctxt "support_roof_pattern option triangles"
  4107. msgid "Triangles"
  4108. msgstr "トライアングル"
  4109. #: fdmprinter.def.json
  4110. msgctxt "support_roof_pattern option concentric"
  4111. msgid "Concentric"
  4112. msgstr "同心円"
  4113. #: fdmprinter.def.json
  4114. msgctxt "support_roof_pattern option zigzag"
  4115. msgid "Zig Zag"
  4116. msgstr "ジグザグ"
  4117. #: fdmprinter.def.json
  4118. msgctxt "support_bottom_pattern label"
  4119. msgid "Support Floor Pattern"
  4120. msgstr "サポートフロアパターン"
  4121. #: fdmprinter.def.json
  4122. msgctxt "support_bottom_pattern description"
  4123. msgid "The pattern with which the floors of the support are printed."
  4124. msgstr "サポートのフロアが印刷されるパターン。"
  4125. #: fdmprinter.def.json
  4126. msgctxt "support_bottom_pattern option lines"
  4127. msgid "Lines"
  4128. msgstr "ライン"
  4129. #: fdmprinter.def.json
  4130. msgctxt "support_bottom_pattern option grid"
  4131. msgid "Grid"
  4132. msgstr "グリッド"
  4133. #: fdmprinter.def.json
  4134. msgctxt "support_bottom_pattern option triangles"
  4135. msgid "Triangles"
  4136. msgstr "トライアングル"
  4137. #: fdmprinter.def.json
  4138. msgctxt "support_bottom_pattern option concentric"
  4139. msgid "Concentric"
  4140. msgstr "同心円"
  4141. #: fdmprinter.def.json
  4142. msgctxt "support_bottom_pattern option zigzag"
  4143. msgid "Zig Zag"
  4144. msgstr "ジグザグ"
  4145. #: fdmprinter.def.json
  4146. msgctxt "minimum_interface_area label"
  4147. msgid "Minimum Support Interface Area"
  4148. msgstr "最小サポートインターフェイス領域"
  4149. #: fdmprinter.def.json
  4150. msgctxt "minimum_interface_area description"
  4151. msgid ""
  4152. "Minimum area size for support interface polygons. Polygons which have an "
  4153. "area smaller than this value will be printed as normal support."
  4154. msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  4155. #: fdmprinter.def.json
  4156. msgctxt "minimum_roof_area label"
  4157. msgid "Minimum Support Roof Area"
  4158. msgstr "最小サポートルーフ領域"
  4159. #: fdmprinter.def.json
  4160. msgctxt "minimum_roof_area description"
  4161. msgid ""
  4162. "Minimum area size for the roofs of the support. Polygons which have an area "
  4163. "smaller than this value will be printed as normal support."
  4164. msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  4165. #: fdmprinter.def.json
  4166. msgctxt "minimum_bottom_area label"
  4167. msgid "Minimum Support Floor Area"
  4168. msgstr "最小サポートフロア領域"
  4169. #: fdmprinter.def.json
  4170. msgctxt "minimum_bottom_area description"
  4171. msgid ""
  4172. "Minimum area size for the floors of the support. Polygons which have an area "
  4173. "smaller than this value will be printed as normal support."
  4174. msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  4175. #: fdmprinter.def.json
  4176. msgctxt "support_interface_offset label"
  4177. msgid "Support Interface Horizontal Expansion"
  4178. msgstr "サポートインターフェイス水平展開"
  4179. #: fdmprinter.def.json
  4180. msgctxt "support_interface_offset description"
  4181. msgid "Amount of offset applied to the support interface polygons."
  4182. msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。"
  4183. #: fdmprinter.def.json
  4184. msgctxt "support_roof_offset label"
  4185. msgid "Support Roof Horizontal Expansion"
  4186. msgstr "サポートルーフ水平展開"
  4187. #: fdmprinter.def.json
  4188. msgctxt "support_roof_offset description"
  4189. msgid "Amount of offset applied to the roofs of the support."
  4190. msgstr "サポートのルーフに適用されるオフセット量。"
  4191. #: fdmprinter.def.json
  4192. msgctxt "support_bottom_offset label"
  4193. msgid "Support Floor Horizontal Expansion"
  4194. msgstr "サポートフロア水平展開"
  4195. #: fdmprinter.def.json
  4196. msgctxt "support_bottom_offset description"
  4197. msgid "Amount of offset applied to the floors of the support."
  4198. msgstr "サポートのフロアに適用されるオフセット量。"
  4199. #: fdmprinter.def.json
  4200. msgctxt "support_interface_angles label"
  4201. msgid "Support Interface Line Directions"
  4202. msgstr "サポート面のライン方向"
  4203. #: fdmprinter.def.json
  4204. msgctxt "support_interface_angles description"
  4205. msgid ""
  4206. "A list of integer line directions to use. Elements from the list are used "
  4207. "sequentially as the layers progress and when the end of the list is reached, "
  4208. "it starts at the beginning again. The list items are separated by commas and "
  4209. "the whole list is contained in square brackets. Default is an empty list "
  4210. "which means use the default angles (alternates between 45 and 135 degrees if "
  4211. "interfaces are quite thick or 90 degrees)."
  4212. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  4213. #: fdmprinter.def.json
  4214. msgctxt "support_roof_angles label"
  4215. msgid "Support Roof Line Directions"
  4216. msgstr "サポートルーフライン方向"
  4217. #: fdmprinter.def.json
  4218. msgctxt "support_roof_angles description"
  4219. msgid ""
  4220. "A list of integer line directions to use. Elements from the list are used "
  4221. "sequentially as the layers progress and when the end of the list is reached, "
  4222. "it starts at the beginning again. The list items are separated by commas and "
  4223. "the whole list is contained in square brackets. Default is an empty list "
  4224. "which means use the default angles (alternates between 45 and 135 degrees if "
  4225. "interfaces are quite thick or 90 degrees)."
  4226. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  4227. #: fdmprinter.def.json
  4228. msgctxt "support_bottom_angles label"
  4229. msgid "Support Floor Line Directions"
  4230. msgstr "サポートフロアライン方向"
  4231. #: fdmprinter.def.json
  4232. msgctxt "support_bottom_angles description"
  4233. msgid ""
  4234. "A list of integer line directions to use. Elements from the list are used "
  4235. "sequentially as the layers progress and when the end of the list is reached, "
  4236. "it starts at the beginning again. The list items are separated by commas and "
  4237. "the whole list is contained in square brackets. Default is an empty list "
  4238. "which means use the default angles (alternates between 45 and 135 degrees if "
  4239. "interfaces are quite thick or 90 degrees)."
  4240. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  4241. #: fdmprinter.def.json
  4242. msgctxt "support_fan_enable label"
  4243. msgid "Fan Speed Override"
  4244. msgstr "ファン速度上書き"
  4245. #: fdmprinter.def.json
  4246. msgctxt "support_fan_enable description"
  4247. msgid ""
  4248. "When enabled, the print cooling fan speed is altered for the skin regions "
  4249. "immediately above the support."
  4250. msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。"
  4251. #: fdmprinter.def.json
  4252. msgctxt "support_supported_skin_fan_speed label"
  4253. msgid "Supported Skin Fan Speed"
  4254. msgstr "サポート対象スキンファン速度"
  4255. #: fdmprinter.def.json
  4256. msgctxt "support_supported_skin_fan_speed description"
  4257. msgid ""
  4258. "Percentage fan speed to use when printing the skin regions immediately above "
  4259. "the support. Using a high fan speed can make the support easier to remove."
  4260. msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。"
  4261. #: fdmprinter.def.json
  4262. msgctxt "support_use_towers label"
  4263. msgid "Use Towers"
  4264. msgstr "使用タワー"
  4265. #: fdmprinter.def.json
  4266. msgctxt "support_use_towers description"
  4267. msgid ""
  4268. "Use specialized towers to support tiny overhang areas. These towers have a "
  4269. "larger diameter than the region they support. Near the overhang the towers' "
  4270. "diameter decreases, forming a roof."
  4271. msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。"
  4272. #: fdmprinter.def.json
  4273. msgctxt "support_tower_diameter label"
  4274. msgid "Tower Diameter"
  4275. msgstr "タワー直径"
  4276. #: fdmprinter.def.json
  4277. msgctxt "support_tower_diameter description"
  4278. msgid "The diameter of a special tower."
  4279. msgstr "特別な塔の直径。"
  4280. #: fdmprinter.def.json
  4281. msgctxt "support_tower_maximum_supported_diameter label"
  4282. msgid "Maximum Tower-Supported Diameter"
  4283. msgstr "最大タワーサポート直径"
  4284. #: fdmprinter.def.json
  4285. msgctxt "support_tower_maximum_supported_diameter description"
  4286. msgid ""
  4287. "Maximum diameter in the X/Y directions of a small area which is to be "
  4288. "supported by a specialized support tower."
  4289. msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。"
  4290. #: fdmprinter.def.json
  4291. msgctxt "support_tower_roof_angle label"
  4292. msgid "Tower Roof Angle"
  4293. msgstr "タワールーフ角度"
  4294. #: fdmprinter.def.json
  4295. msgctxt "support_tower_roof_angle description"
  4296. msgid ""
  4297. "The angle of a rooftop of a tower. A higher value results in pointed tower "
  4298. "roofs, a lower value results in flattened tower roofs."
  4299. msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。"
  4300. #: fdmprinter.def.json
  4301. msgctxt "support_mesh_drop_down label"
  4302. msgid "Drop Down Support Mesh"
  4303. msgstr "サポートメッシュの下処理"
  4304. #: fdmprinter.def.json
  4305. msgctxt "support_mesh_drop_down description"
  4306. msgid ""
  4307. "Make support everywhere below the support mesh, so that there's no overhang "
  4308. "in the support mesh."
  4309. msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。"
  4310. #: fdmprinter.def.json
  4311. msgctxt "support_meshes_present label"
  4312. msgid "Scene Has Support Meshes"
  4313. msgstr "シーンにサポートメッシュがある"
  4314. #: fdmprinter.def.json
  4315. msgctxt "support_meshes_present description"
  4316. msgid ""
  4317. "There are support meshes present in the scene. This setting is controlled by "
  4318. "Cura."
  4319. msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。"
  4320. #: fdmprinter.def.json
  4321. msgctxt "platform_adhesion label"
  4322. msgid "Build Plate Adhesion"
  4323. msgstr "ビルドプレート密着性"
  4324. #: fdmprinter.def.json
  4325. msgctxt "platform_adhesion description"
  4326. msgid "Adhesion"
  4327. msgstr "密着性"
  4328. #: fdmprinter.def.json
  4329. msgctxt "prime_blob_enable label"
  4330. msgid "Enable Prime Blob"
  4331. msgstr "プライムボルブを有効にする"
  4332. #: fdmprinter.def.json
  4333. msgctxt "prime_blob_enable description"
  4334. msgid ""
  4335. "Whether to prime the filament with a blob before printing. Turning this "
  4336. "setting on will ensure that the extruder will have material ready at the "
  4337. "nozzle before printing. Printing Brim or Skirt can act like priming too, in "
  4338. "which case turning this setting off saves some time."
  4339. msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。"
  4340. #: fdmprinter.def.json
  4341. msgctxt "extruder_prime_pos_x label"
  4342. msgid "Extruder Prime X Position"
  4343. msgstr "エクストルーダープライムX位置"
  4344. #: fdmprinter.def.json
  4345. msgctxt "extruder_prime_pos_x description"
  4346. msgid ""
  4347. "The X coordinate of the position where the nozzle primes at the start of "
  4348. "printing."
  4349. msgstr "プリント開始時のノズルの位置を表すX座標。"
  4350. #: fdmprinter.def.json
  4351. msgctxt "extruder_prime_pos_y label"
  4352. msgid "Extruder Prime Y Position"
  4353. msgstr "エクストルーダープライムY位置"
  4354. #: fdmprinter.def.json
  4355. msgctxt "extruder_prime_pos_y description"
  4356. msgid ""
  4357. "The Y coordinate of the position where the nozzle primes at the start of "
  4358. "printing."
  4359. msgstr "プリント開始時にノズル位置を表すY座標。"
  4360. #: fdmprinter.def.json
  4361. msgctxt "adhesion_type label"
  4362. msgid "Build Plate Adhesion Type"
  4363. msgstr "ビルドプレート接着タイプ"
  4364. #: fdmprinter.def.json
  4365. msgctxt "adhesion_type description"
  4366. msgid ""
  4367. "Different options that help to improve both priming your extrusion and "
  4368. "adhesion to the build plate. Brim adds a single layer flat area around the "
  4369. "base of your model to prevent warping. Raft adds a thick grid with a roof "
  4370. "below the model. Skirt is a line printed around the model, but not connected "
  4371. "to the model."
  4372. msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。"
  4373. #: fdmprinter.def.json
  4374. msgctxt "adhesion_type option skirt"
  4375. msgid "Skirt"
  4376. msgstr "スカート"
  4377. #: fdmprinter.def.json
  4378. msgctxt "adhesion_type option brim"
  4379. msgid "Brim"
  4380. msgstr "ブリム"
  4381. #: fdmprinter.def.json
  4382. msgctxt "adhesion_type option raft"
  4383. msgid "Raft"
  4384. msgstr "ラフト"
  4385. #: fdmprinter.def.json
  4386. msgctxt "adhesion_type option none"
  4387. msgid "None"
  4388. msgstr "なし"
  4389. #: fdmprinter.def.json
  4390. msgctxt "adhesion_extruder_nr label"
  4391. msgid "Build Plate Adhesion Extruder"
  4392. msgstr "ビルドプレート接着エクストルーダー"
  4393. #: fdmprinter.def.json
  4394. msgctxt "adhesion_extruder_nr description"
  4395. msgid ""
  4396. "The extruder train to use for printing the skirt/brim/raft. This is used in "
  4397. "multi-extrusion."
  4398. msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。"
  4399. #: fdmprinter.def.json
  4400. msgctxt "skirt_brim_extruder_nr label"
  4401. msgid "Skirt/Brim Extruder"
  4402. msgstr "スカート/ブリムエクストルーダー"
  4403. #: fdmprinter.def.json
  4404. msgctxt "skirt_brim_extruder_nr description"
  4405. msgid ""
  4406. "The extruder train to use for printing the skirt or brim. This is used in "
  4407. "multi-extrusion."
  4408. msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  4409. #: fdmprinter.def.json
  4410. msgctxt "raft_base_extruder_nr label"
  4411. msgid "Raft Base Extruder"
  4412. msgstr "ラフトベースエクストルーダー"
  4413. #: fdmprinter.def.json
  4414. msgctxt "raft_base_extruder_nr description"
  4415. msgid ""
  4416. "The extruder train to use for printing the first layer of the raft. This is "
  4417. "used in multi-extrusion."
  4418. msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  4419. #: fdmprinter.def.json
  4420. msgctxt "raft_interface_extruder_nr label"
  4421. msgid "Raft Middle Extruder"
  4422. msgstr "ラフト中間エクストルーダー"
  4423. #: fdmprinter.def.json
  4424. msgctxt "raft_interface_extruder_nr description"
  4425. msgid ""
  4426. "The extruder train to use for printing the middle layer of the raft. This is "
  4427. "used in multi-extrusion."
  4428. msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  4429. #: fdmprinter.def.json
  4430. msgctxt "raft_surface_extruder_nr label"
  4431. msgid "Raft Top Extruder"
  4432. msgstr "ラフトトップエクストルーダー"
  4433. #: fdmprinter.def.json
  4434. msgctxt "raft_surface_extruder_nr description"
  4435. msgid ""
  4436. "The extruder train to use for printing the top layer(s) of the raft. This is "
  4437. "used in multi-extrusion."
  4438. msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  4439. #: fdmprinter.def.json
  4440. msgctxt "skirt_line_count label"
  4441. msgid "Skirt Line Count"
  4442. msgstr "スカートライン数"
  4443. #: fdmprinter.def.json
  4444. msgctxt "skirt_line_count description"
  4445. msgid ""
  4446. "Multiple skirt lines help to prime your extrusion better for small models. "
  4447. "Setting this to 0 will disable the skirt."
  4448. msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。"
  4449. #: fdmprinter.def.json
  4450. msgctxt "skirt_gap label"
  4451. msgid "Skirt Distance"
  4452. msgstr "スカート距離"
  4453. #: fdmprinter.def.json
  4454. msgctxt "skirt_gap description"
  4455. msgid ""
  4456. "The horizontal distance between the skirt and the first layer of the print.\n"
  4457. "This is the minimum distance. Multiple skirt lines will extend outwards from "
  4458. "this distance."
  4459. msgstr "スカートと印刷の最初の層の間の水平距離。\nこれは最小距離です。複数のスカートラインがこの距離から外側に展開されます。"
  4460. #: fdmprinter.def.json
  4461. msgctxt "skirt_brim_minimal_length label"
  4462. msgid "Skirt/Brim Minimum Length"
  4463. msgstr "スカート/ブリム最小長さ"
  4464. #: fdmprinter.def.json
  4465. msgctxt "skirt_brim_minimal_length description"
  4466. msgid ""
  4467. "The minimum length of the skirt or brim. If this length is not reached by "
  4468. "all skirt or brim lines together, more skirt or brim lines will be added "
  4469. "until the minimum length is reached. Note: If the line count is set to 0 "
  4470. "this is ignored."
  4471. msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。"
  4472. #: fdmprinter.def.json
  4473. msgctxt "brim_width label"
  4474. msgid "Brim Width"
  4475. msgstr "ブリム幅"
  4476. #: fdmprinter.def.json
  4477. msgctxt "brim_width description"
  4478. msgid ""
  4479. "The distance from the model to the outermost brim line. A larger brim "
  4480. "enhances adhesion to the build plate, but also reduces the effective print "
  4481. "area."
  4482. msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。"
  4483. #: fdmprinter.def.json
  4484. msgctxt "brim_line_count label"
  4485. msgid "Brim Line Count"
  4486. msgstr "ブリムライン数"
  4487. #: fdmprinter.def.json
  4488. msgctxt "brim_line_count description"
  4489. msgid ""
  4490. "The number of lines used for a brim. More brim lines enhance adhesion to the "
  4491. "build plate, but also reduces the effective print area."
  4492. msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。"
  4493. #: fdmprinter.def.json
  4494. msgctxt "brim_gap label"
  4495. msgid "Brim Distance"
  4496. msgstr "ブリム距離"
  4497. #: fdmprinter.def.json
  4498. msgctxt "brim_gap description"
  4499. msgid ""
  4500. "The horizontal distance between the first brim line and the outline of the "
  4501. "first layer of the print. A small gap can make the brim easier to remove "
  4502. "while still providing the thermal benefits."
  4503. msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。"
  4504. #: fdmprinter.def.json
  4505. msgctxt "brim_replaces_support label"
  4506. msgid "Brim Replaces Support"
  4507. msgstr "ブリム交換サポート"
  4508. #: fdmprinter.def.json
  4509. msgctxt "brim_replaces_support description"
  4510. msgid ""
  4511. "Enforce brim to be printed around the model even if that space would "
  4512. "otherwise be occupied by support. This replaces some regions of the first "
  4513. "layer of support by brim regions."
  4514. msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。"
  4515. #: fdmprinter.def.json
  4516. msgctxt "brim_outside_only label"
  4517. msgid "Brim Only on Outside"
  4518. msgstr "外側にブリムのみ印刷"
  4519. #: fdmprinter.def.json
  4520. msgctxt "brim_outside_only description"
  4521. msgid ""
  4522. "Only print the brim on the outside of the model. This reduces the amount of "
  4523. "brim you need to remove afterwards, while it doesn't reduce the bed adhesion "
  4524. "that much."
  4525. msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。"
  4526. #: fdmprinter.def.json
  4527. msgctxt "raft_margin label"
  4528. msgid "Raft Extra Margin"
  4529. msgstr "ラフトの余分なマージン"
  4530. #: fdmprinter.def.json
  4531. msgctxt "raft_margin description"
  4532. msgid ""
  4533. "If the raft is enabled, this is the extra raft area around the model which "
  4534. "is also given a raft. Increasing this margin will create a stronger raft "
  4535. "while using more material and leaving less area for your print."
  4536. msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。"
  4537. #: fdmprinter.def.json
  4538. msgctxt "raft_smoothing label"
  4539. msgid "Raft Smoothing"
  4540. msgstr "ラフト補整"
  4541. #: fdmprinter.def.json
  4542. msgctxt "raft_smoothing description"
  4543. msgid ""
  4544. "This setting controls how much inner corners in the raft outline are "
  4545. "rounded. Inward corners are rounded to a semi circle with a radius equal to "
  4546. "the value given here. This setting also removes holes in the raft outline "
  4547. "which are smaller than such a circle."
  4548. msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。"
  4549. #: fdmprinter.def.json
  4550. msgctxt "raft_airgap label"
  4551. msgid "Raft Air Gap"
  4552. msgstr "ラフト間のラップ"
  4553. #: fdmprinter.def.json
  4554. msgctxt "raft_airgap description"
  4555. msgid ""
  4556. "The gap between the final raft layer and the first layer of the model. Only "
  4557. "the first layer is raised by this amount to lower the bonding between the "
  4558. "raft layer and the model. Makes it easier to peel off the raft."
  4559. msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。"
  4560. #: fdmprinter.def.json
  4561. msgctxt "layer_0_z_overlap label"
  4562. msgid "Initial Layer Z Overlap"
  4563. msgstr "初期レイヤーZのオーバーラップ"
  4564. #: fdmprinter.def.json
  4565. msgctxt "layer_0_z_overlap description"
  4566. msgid ""
  4567. "Make the first and second layer of the model overlap in the Z direction to "
  4568. "compensate for the filament lost in the airgap. All models above the first "
  4569. "model layer will be shifted down by this amount."
  4570. msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。"
  4571. #: fdmprinter.def.json
  4572. msgctxt "raft_surface_layers label"
  4573. msgid "Raft Top Layers"
  4574. msgstr "ラフト最上層"
  4575. #: fdmprinter.def.json
  4576. msgctxt "raft_surface_layers description"
  4577. msgid ""
  4578. "The number of top layers on top of the 2nd raft layer. These are fully "
  4579. "filled layers that the model sits on. 2 layers result in a smoother top "
  4580. "surface than 1."
  4581. msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。"
  4582. #: fdmprinter.def.json
  4583. msgctxt "raft_surface_thickness label"
  4584. msgid "Raft Top Layer Thickness"
  4585. msgstr "ラフト最上層厚さ"
  4586. #: fdmprinter.def.json
  4587. msgctxt "raft_surface_thickness description"
  4588. msgid "Layer thickness of the top raft layers."
  4589. msgstr "トップラフト層の層厚。"
  4590. #: fdmprinter.def.json
  4591. msgctxt "raft_surface_line_width label"
  4592. msgid "Raft Top Line Width"
  4593. msgstr "ラフト最上ライン幅"
  4594. #: fdmprinter.def.json
  4595. msgctxt "raft_surface_line_width description"
  4596. msgid ""
  4597. "Width of the lines in the top surface of the raft. These can be thin lines "
  4598. "so that the top of the raft becomes smooth."
  4599. msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。"
  4600. #: fdmprinter.def.json
  4601. msgctxt "raft_surface_line_spacing label"
  4602. msgid "Raft Top Spacing"
  4603. msgstr "ラフト最上面スペース"
  4604. #: fdmprinter.def.json
  4605. msgctxt "raft_surface_line_spacing description"
  4606. msgid ""
  4607. "The distance between the raft lines for the top raft layers. The spacing "
  4608. "should be equal to the line width, so that the surface is solid."
  4609. msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。"
  4610. #: fdmprinter.def.json
  4611. msgctxt "raft_interface_layers label"
  4612. msgid "Raft Middle Layers"
  4613. msgstr "ラフト中間レイヤー"
  4614. #: fdmprinter.def.json
  4615. msgctxt "raft_interface_layers description"
  4616. msgid ""
  4617. "The number of layers between the base and the surface of the raft. These "
  4618. "comprise the main thickness of the raft. Increasing this creates a thicker, "
  4619. "sturdier raft."
  4620. msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。"
  4621. #: fdmprinter.def.json
  4622. msgctxt "raft_interface_thickness label"
  4623. msgid "Raft Middle Thickness"
  4624. msgstr "ラフト中央厚さ"
  4625. #: fdmprinter.def.json
  4626. msgctxt "raft_interface_thickness description"
  4627. msgid "Layer thickness of the middle raft layer."
  4628. msgstr "中間のラフト層の層の厚さ。"
  4629. #: fdmprinter.def.json
  4630. msgctxt "raft_interface_line_width label"
  4631. msgid "Raft Middle Line Width"
  4632. msgstr "ラフト中央ライン幅"
  4633. #: fdmprinter.def.json
  4634. msgctxt "raft_interface_line_width description"
  4635. msgid ""
  4636. "Width of the lines in the middle raft layer. Making the second layer extrude "
  4637. "more causes the lines to stick to the build plate."
  4638. msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。"
  4639. #: fdmprinter.def.json
  4640. msgctxt "raft_interface_line_spacing label"
  4641. msgid "Raft Middle Spacing"
  4642. msgstr "ラフト中間スペース"
  4643. #: fdmprinter.def.json
  4644. msgctxt "raft_interface_line_spacing description"
  4645. msgid ""
  4646. "The distance between the raft lines for the middle raft layer. The spacing "
  4647. "of the middle should be quite wide, while being dense enough to support the "
  4648. "top raft layers."
  4649. msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。"
  4650. #: fdmprinter.def.json
  4651. msgctxt "raft_base_thickness label"
  4652. msgid "Raft Base Thickness"
  4653. msgstr "ラフトベース厚さ"
  4654. #: fdmprinter.def.json
  4655. msgctxt "raft_base_thickness description"
  4656. msgid ""
  4657. "Layer thickness of the base raft layer. This should be a thick layer which "
  4658. "sticks firmly to the printer build plate."
  4659. msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。"
  4660. #: fdmprinter.def.json
  4661. msgctxt "raft_base_line_width label"
  4662. msgid "Raft Base Line Width"
  4663. msgstr "ラフトベースライン幅"
  4664. #: fdmprinter.def.json
  4665. msgctxt "raft_base_line_width description"
  4666. msgid ""
  4667. "Width of the lines in the base raft layer. These should be thick lines to "
  4668. "assist in build plate adhesion."
  4669. msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。"
  4670. #: fdmprinter.def.json
  4671. msgctxt "raft_base_line_spacing label"
  4672. msgid "Raft Base Line Spacing"
  4673. msgstr "ラフトベースラインスペース"
  4674. #: fdmprinter.def.json
  4675. msgctxt "raft_base_line_spacing description"
  4676. msgid ""
  4677. "The distance between the raft lines for the base raft layer. Wide spacing "
  4678. "makes for easy removal of the raft from the build plate."
  4679. msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。"
  4680. #: fdmprinter.def.json
  4681. msgctxt "raft_speed label"
  4682. msgid "Raft Print Speed"
  4683. msgstr "ラフト印刷速度"
  4684. #: fdmprinter.def.json
  4685. msgctxt "raft_speed description"
  4686. msgid "The speed at which the raft is printed."
  4687. msgstr "ラフトが印刷される速度。"
  4688. #: fdmprinter.def.json
  4689. msgctxt "raft_surface_speed label"
  4690. msgid "Raft Top Print Speed"
  4691. msgstr "ラフト上層印刷速度"
  4692. #: fdmprinter.def.json
  4693. msgctxt "raft_surface_speed description"
  4694. msgid ""
  4695. "The speed at which the top raft layers are printed. These should be printed "
  4696. "a bit slower, so that the nozzle can slowly smooth out adjacent surface "
  4697. "lines."
  4698. msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。"
  4699. #: fdmprinter.def.json
  4700. msgctxt "raft_interface_speed label"
  4701. msgid "Raft Middle Print Speed"
  4702. msgstr "ラフト中間印刷速度"
  4703. #: fdmprinter.def.json
  4704. msgctxt "raft_interface_speed description"
  4705. msgid ""
  4706. "The speed at which the middle raft layer is printed. This should be printed "
  4707. "quite slowly, as the volume of material coming out of the nozzle is quite "
  4708. "high."
  4709. msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  4710. #: fdmprinter.def.json
  4711. msgctxt "raft_base_speed label"
  4712. msgid "Raft Base Print Speed"
  4713. msgstr "ラフトベース印刷速度"
  4714. #: fdmprinter.def.json
  4715. msgctxt "raft_base_speed description"
  4716. msgid ""
  4717. "The speed at which the base raft layer is printed. This should be printed "
  4718. "quite slowly, as the volume of material coming out of the nozzle is quite "
  4719. "high."
  4720. msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  4721. #: fdmprinter.def.json
  4722. msgctxt "raft_acceleration label"
  4723. msgid "Raft Print Acceleration"
  4724. msgstr "ラフト印刷加速度"
  4725. #: fdmprinter.def.json
  4726. msgctxt "raft_acceleration description"
  4727. msgid "The acceleration with which the raft is printed."
  4728. msgstr "ラフト印刷時の加速度。"
  4729. #: fdmprinter.def.json
  4730. msgctxt "raft_surface_acceleration label"
  4731. msgid "Raft Top Print Acceleration"
  4732. msgstr "ラフト上層層印刷加速度"
  4733. #: fdmprinter.def.json
  4734. msgctxt "raft_surface_acceleration description"
  4735. msgid "The acceleration with which the top raft layers are printed."
  4736. msgstr "ラフトのトップ印刷時の加速度。"
  4737. #: fdmprinter.def.json
  4738. msgctxt "raft_interface_acceleration label"
  4739. msgid "Raft Middle Print Acceleration"
  4740. msgstr "ラフト中間層印刷加速度"
  4741. #: fdmprinter.def.json
  4742. msgctxt "raft_interface_acceleration description"
  4743. msgid "The acceleration with which the middle raft layer is printed."
  4744. msgstr "ラフトの中間層印刷時の加速度。"
  4745. #: fdmprinter.def.json
  4746. msgctxt "raft_base_acceleration label"
  4747. msgid "Raft Base Print Acceleration"
  4748. msgstr "ラフトベース印刷加速度"
  4749. #: fdmprinter.def.json
  4750. msgctxt "raft_base_acceleration description"
  4751. msgid "The acceleration with which the base raft layer is printed."
  4752. msgstr "ラフトの底面印刷時の加速度。"
  4753. #: fdmprinter.def.json
  4754. msgctxt "raft_jerk label"
  4755. msgid "Raft Print Jerk"
  4756. msgstr "ラフト印刷ジャーク"
  4757. #: fdmprinter.def.json
  4758. msgctxt "raft_jerk description"
  4759. msgid "The jerk with which the raft is printed."
  4760. msgstr "ラフトが印刷時のジャーク。"
  4761. #: fdmprinter.def.json
  4762. msgctxt "raft_surface_jerk label"
  4763. msgid "Raft Top Print Jerk"
  4764. msgstr "ラフト上層印刷ジャーク"
  4765. #: fdmprinter.def.json
  4766. msgctxt "raft_surface_jerk description"
  4767. msgid "The jerk with which the top raft layers are printed."
  4768. msgstr "トップラフト層印刷時のジャーク。"
  4769. #: fdmprinter.def.json
  4770. msgctxt "raft_interface_jerk label"
  4771. msgid "Raft Middle Print Jerk"
  4772. msgstr "ラフト中間層印刷ジャーク"
  4773. #: fdmprinter.def.json
  4774. msgctxt "raft_interface_jerk description"
  4775. msgid "The jerk with which the middle raft layer is printed."
  4776. msgstr "ミドルラフト層印刷時のジャーク。"
  4777. #: fdmprinter.def.json
  4778. msgctxt "raft_base_jerk label"
  4779. msgid "Raft Base Print Jerk"
  4780. msgstr "ラフトベース印刷ジャーク"
  4781. #: fdmprinter.def.json
  4782. msgctxt "raft_base_jerk description"
  4783. msgid "The jerk with which the base raft layer is printed."
  4784. msgstr "ベースラフト層印刷時のジャーク。"
  4785. #: fdmprinter.def.json
  4786. msgctxt "raft_fan_speed label"
  4787. msgid "Raft Fan Speed"
  4788. msgstr "ラフトファン速度"
  4789. #: fdmprinter.def.json
  4790. msgctxt "raft_fan_speed description"
  4791. msgid "The fan speed for the raft."
  4792. msgstr "ラフト印刷時のファンの速度。"
  4793. #: fdmprinter.def.json
  4794. msgctxt "raft_surface_fan_speed label"
  4795. msgid "Raft Top Fan Speed"
  4796. msgstr "ラフト上層ファン速度"
  4797. #: fdmprinter.def.json
  4798. msgctxt "raft_surface_fan_speed description"
  4799. msgid "The fan speed for the top raft layers."
  4800. msgstr "トップラフト印刷時のファンの速度。"
  4801. #: fdmprinter.def.json
  4802. msgctxt "raft_interface_fan_speed label"
  4803. msgid "Raft Middle Fan Speed"
  4804. msgstr "ラフト中間層ファン速度"
  4805. #: fdmprinter.def.json
  4806. msgctxt "raft_interface_fan_speed description"
  4807. msgid "The fan speed for the middle raft layer."
  4808. msgstr "ミドルラフト印刷時のファンの速度。"
  4809. #: fdmprinter.def.json
  4810. msgctxt "raft_base_fan_speed label"
  4811. msgid "Raft Base Fan Speed"
  4812. msgstr "ラフトベースファン速度"
  4813. #: fdmprinter.def.json
  4814. msgctxt "raft_base_fan_speed description"
  4815. msgid "The fan speed for the base raft layer."
  4816. msgstr "ベースラフト層印刷時のファン速度。"
  4817. #: fdmprinter.def.json
  4818. msgctxt "dual label"
  4819. msgid "Dual Extrusion"
  4820. msgstr "デュアルエクストルーダー"
  4821. #: fdmprinter.def.json
  4822. msgctxt "dual description"
  4823. msgid "Settings used for printing with multiple extruders."
  4824. msgstr "デュアルエクストルーダーで印刷するための設定。"
  4825. #: fdmprinter.def.json
  4826. msgctxt "prime_tower_enable label"
  4827. msgid "Enable Prime Tower"
  4828. msgstr "プライムタワーを有効にする"
  4829. #: fdmprinter.def.json
  4830. msgctxt "prime_tower_enable description"
  4831. msgid ""
  4832. "Print a tower next to the print which serves to prime the material after "
  4833. "each nozzle switch."
  4834. msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。"
  4835. #: fdmprinter.def.json
  4836. msgctxt "prime_tower_size label"
  4837. msgid "Prime Tower Size"
  4838. msgstr "プライムタワーのサイズ"
  4839. #: fdmprinter.def.json
  4840. msgctxt "prime_tower_size description"
  4841. msgid "The width of the prime tower."
  4842. msgstr "プライムタワーの幅。"
  4843. #: fdmprinter.def.json
  4844. msgctxt "prime_tower_min_volume label"
  4845. msgid "Prime Tower Minimum Volume"
  4846. msgstr "プライムタワー最小容積"
  4847. #: fdmprinter.def.json
  4848. msgctxt "prime_tower_min_volume description"
  4849. msgid ""
  4850. "The minimum volume for each layer of the prime tower in order to purge "
  4851. "enough material."
  4852. msgstr "プライムタワーの各層の最小容積。"
  4853. #: fdmprinter.def.json
  4854. msgctxt "prime_tower_position_x label"
  4855. msgid "Prime Tower X Position"
  4856. msgstr "プライムタワーX位置"
  4857. #: fdmprinter.def.json
  4858. msgctxt "prime_tower_position_x description"
  4859. msgid "The x coordinate of the position of the prime tower."
  4860. msgstr "プライムタワーの位置のx座標。"
  4861. #: fdmprinter.def.json
  4862. msgctxt "prime_tower_position_y label"
  4863. msgid "Prime Tower Y Position"
  4864. msgstr "プライムタワーY位置"
  4865. #: fdmprinter.def.json
  4866. msgctxt "prime_tower_position_y description"
  4867. msgid "The y coordinate of the position of the prime tower."
  4868. msgstr "プライムタワーの位置のy座標。"
  4869. #: fdmprinter.def.json
  4870. msgctxt "prime_tower_wipe_enabled label"
  4871. msgid "Wipe Inactive Nozzle on Prime Tower"
  4872. msgstr "プライムタワーノズル拭き取り"
  4873. #: fdmprinter.def.json
  4874. msgctxt "prime_tower_wipe_enabled description"
  4875. msgid ""
  4876. "After printing the prime tower with one nozzle, wipe the oozed material from "
  4877. "the other nozzle off on the prime tower."
  4878. msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。"
  4879. #: fdmprinter.def.json
  4880. msgctxt "prime_tower_brim_enable label"
  4881. msgid "Prime Tower Brim"
  4882. msgstr "プライムタワーブリム"
  4883. #: fdmprinter.def.json
  4884. msgctxt "prime_tower_brim_enable description"
  4885. msgid ""
  4886. "Prime-towers might need the extra adhesion afforded by a brim even if the "
  4887. "model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  4888. msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。"
  4889. #: fdmprinter.def.json
  4890. msgctxt "ooze_shield_enabled label"
  4891. msgid "Enable Ooze Shield"
  4892. msgstr "Ooze Shieldを有効にする"
  4893. #: fdmprinter.def.json
  4894. msgctxt "ooze_shield_enabled description"
  4895. msgid ""
  4896. "Enable exterior ooze shield. This will create a shell around the model which "
  4897. "is likely to wipe a second nozzle if it's at the same height as the first "
  4898. "nozzle."
  4899. msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。"
  4900. #: fdmprinter.def.json
  4901. msgctxt "ooze_shield_angle label"
  4902. msgid "Ooze Shield Angle"
  4903. msgstr "Ooze Shield角度"
  4904. #: fdmprinter.def.json
  4905. msgctxt "ooze_shield_angle description"
  4906. msgid ""
  4907. "The maximum angle a part in the ooze shield will have. With 0 degrees being "
  4908. "vertical, and 90 degrees being horizontal. A smaller angle leads to less "
  4909. "failed ooze shields, but more material."
  4910. msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。"
  4911. #: fdmprinter.def.json
  4912. msgctxt "ooze_shield_dist label"
  4913. msgid "Ooze Shield Distance"
  4914. msgstr "Ooze Shield距離"
  4915. #: fdmprinter.def.json
  4916. msgctxt "ooze_shield_dist description"
  4917. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  4918. msgstr "壁(ooze shield)の造形物からの距離。"
  4919. #: fdmprinter.def.json
  4920. msgctxt "switch_extruder_retraction_amount label"
  4921. msgid "Nozzle Switch Retraction Distance"
  4922. msgstr "ノズルスイッチ引き戻し距離"
  4923. #: fdmprinter.def.json
  4924. msgctxt "switch_extruder_retraction_amount description"
  4925. msgid ""
  4926. "The amount of retraction when switching extruders. Set to 0 for no "
  4927. "retraction at all. This should generally be the same as the length of the "
  4928. "heat zone."
  4929. msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
  4930. #: fdmprinter.def.json
  4931. msgctxt "switch_extruder_retraction_speeds label"
  4932. msgid "Nozzle Switch Retraction Speed"
  4933. msgstr "ノズルスイッチ引き戻し速度"
  4934. #: fdmprinter.def.json
  4935. msgctxt "switch_extruder_retraction_speeds description"
  4936. msgid ""
  4937. "The speed at which the filament is retracted. A higher retraction speed "
  4938. "works better, but a very high retraction speed can lead to filament grinding."
  4939. msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。"
  4940. #: fdmprinter.def.json
  4941. msgctxt "switch_extruder_retraction_speed label"
  4942. msgid "Nozzle Switch Retract Speed"
  4943. msgstr "ノズルスイッチ引き込み速度"
  4944. #: fdmprinter.def.json
  4945. msgctxt "switch_extruder_retraction_speed description"
  4946. msgid ""
  4947. "The speed at which the filament is retracted during a nozzle switch retract."
  4948. msgstr "ノズル切り替え中のフィラメントの引き込み速度。"
  4949. #: fdmprinter.def.json
  4950. msgctxt "switch_extruder_prime_speed label"
  4951. msgid "Nozzle Switch Prime Speed"
  4952. msgstr "ノズルスイッチ押し戻し速度"
  4953. #: fdmprinter.def.json
  4954. msgctxt "switch_extruder_prime_speed description"
  4955. msgid ""
  4956. "The speed at which the filament is pushed back after a nozzle switch "
  4957. "retraction."
  4958. msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。"
  4959. #: fdmprinter.def.json
  4960. msgctxt "switch_extruder_extra_prime_amount label"
  4961. msgid "Nozzle Switch Extra Prime Amount"
  4962. msgstr "ノズル切替え後のプライムに必要な余剰量"
  4963. #: fdmprinter.def.json
  4964. msgctxt "switch_extruder_extra_prime_amount description"
  4965. msgid "Extra material to prime after nozzle switching."
  4966. msgstr "ノズル切替え後のプライムに必要な余剰材料。"
  4967. #: fdmprinter.def.json
  4968. msgctxt "meshfix label"
  4969. msgid "Mesh Fixes"
  4970. msgstr "メッシュ修正"
  4971. #: fdmprinter.def.json
  4972. msgctxt "meshfix description"
  4973. msgid "Make the meshes more suited for 3D printing."
  4974. msgstr "3Dプリンティングにさらに適したメッシュを作成します。"
  4975. #: fdmprinter.def.json
  4976. msgctxt "meshfix_union_all label"
  4977. msgid "Union Overlapping Volumes"
  4978. msgstr "重複量"
  4979. #: fdmprinter.def.json
  4980. msgctxt "meshfix_union_all description"
  4981. msgid ""
  4982. "Ignore the internal geometry arising from overlapping volumes within a mesh "
  4983. "and print the volumes as one. This may cause unintended internal cavities to "
  4984. "disappear."
  4985. msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。"
  4986. #: fdmprinter.def.json
  4987. msgctxt "meshfix_union_all_remove_holes label"
  4988. msgid "Remove All Holes"
  4989. msgstr "全穴除去"
  4990. #: fdmprinter.def.json
  4991. msgctxt "meshfix_union_all_remove_holes description"
  4992. msgid ""
  4993. "Remove the holes in each layer and keep only the outside shape. This will "
  4994. "ignore any invisible internal geometry. However, it also ignores layer holes "
  4995. "which can be viewed from above or below."
  4996. msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。"
  4997. #: fdmprinter.def.json
  4998. msgctxt "meshfix_extensive_stitching label"
  4999. msgid "Extensive Stitching"
  5000. msgstr "強めのスティッチング"
  5001. #: fdmprinter.def.json
  5002. msgctxt "meshfix_extensive_stitching description"
  5003. msgid ""
  5004. "Extensive stitching tries to stitch up open holes in the mesh by closing the "
  5005. "hole with touching polygons. This option can introduce a lot of processing "
  5006. "time."
  5007. msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。"
  5008. #: fdmprinter.def.json
  5009. msgctxt "meshfix_keep_open_polygons label"
  5010. msgid "Keep Disconnected Faces"
  5011. msgstr "スティッチできない部分を保持"
  5012. #: fdmprinter.def.json
  5013. msgctxt "meshfix_keep_open_polygons description"
  5014. msgid ""
  5015. "Normally Cura tries to stitch up small holes in the mesh and remove parts of "
  5016. "a layer with big holes. Enabling this option keeps those parts which cannot "
  5017. "be stitched. This option should be used as a last resort option when "
  5018. "everything else fails to produce proper g-code."
  5019. msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。"
  5020. #: fdmprinter.def.json
  5021. msgctxt "multiple_mesh_overlap label"
  5022. msgid "Merged Meshes Overlap"
  5023. msgstr "重複メッシュのマージ"
  5024. #: fdmprinter.def.json
  5025. msgctxt "multiple_mesh_overlap description"
  5026. msgid ""
  5027. "Make meshes which are touching each other overlap a bit. This makes them "
  5028. "bond together better."
  5029. msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。"
  5030. #: fdmprinter.def.json
  5031. msgctxt "carve_multiple_volumes label"
  5032. msgid "Remove Mesh Intersection"
  5033. msgstr "重複メッシュの削除"
  5034. #: fdmprinter.def.json
  5035. msgctxt "carve_multiple_volumes description"
  5036. msgid ""
  5037. "Remove areas where multiple meshes are overlapping with each other. This may "
  5038. "be used if merged dual material objects overlap with each other."
  5039. msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。"
  5040. #: fdmprinter.def.json
  5041. msgctxt "alternate_carve_order label"
  5042. msgid "Alternate Mesh Removal"
  5043. msgstr "代替メッシュの削除"
  5044. #: fdmprinter.def.json
  5045. msgctxt "alternate_carve_order description"
  5046. msgid ""
  5047. "Switch to which mesh intersecting volumes will belong with every layer, so "
  5048. "that the overlapping meshes become interwoven. Turning this setting off will "
  5049. "cause one of the meshes to obtain all of the volume in the overlap, while it "
  5050. "is removed from the other meshes."
  5051. msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。"
  5052. #: fdmprinter.def.json
  5053. msgctxt "remove_empty_first_layers label"
  5054. msgid "Remove Empty First Layers"
  5055. msgstr "空の最初のメッシュの削除"
  5056. #: fdmprinter.def.json
  5057. msgctxt "remove_empty_first_layers description"
  5058. msgid ""
  5059. "Remove empty layers beneath the first printed layer if they are present. "
  5060. "Disabling this setting can cause empty first layers if the Slicing Tolerance "
  5061. "setting is set to Exclusive or Middle."
  5062. msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。"
  5063. #: fdmprinter.def.json
  5064. msgctxt "meshfix_maximum_resolution label"
  5065. msgid "Maximum Resolution"
  5066. msgstr "最大解像度"
  5067. #: fdmprinter.def.json
  5068. msgctxt "meshfix_maximum_resolution description"
  5069. msgid ""
  5070. "The minimum size of a line segment after slicing. If you increase this, the "
  5071. "mesh will have a lower resolution. This may allow the printer to keep up "
  5072. "with the speed it has to process g-code and will increase slice speed by "
  5073. "removing details of the mesh that it can't process anyway."
  5074. msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。"
  5075. #: fdmprinter.def.json
  5076. msgctxt "meshfix_maximum_travel_resolution label"
  5077. msgid "Maximum Travel Resolution"
  5078. msgstr "最大移動解像度"
  5079. #: fdmprinter.def.json
  5080. msgctxt "meshfix_maximum_travel_resolution description"
  5081. msgid ""
  5082. "The minimum size of a travel line segment after slicing. If you increase "
  5083. "this, the travel moves will have less smooth corners. This may allow the "
  5084. "printer to keep up with the speed it has to process g-code, but it may cause "
  5085. "model avoidance to become less accurate."
  5086. msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。"
  5087. #: fdmprinter.def.json
  5088. msgctxt "meshfix_maximum_deviation label"
  5089. msgid "Maximum Deviation"
  5090. msgstr "最大偏差"
  5091. #: fdmprinter.def.json
  5092. msgctxt "meshfix_maximum_deviation description"
  5093. msgid ""
  5094. "The maximum deviation allowed when reducing the resolution for the Maximum "
  5095. "Resolution setting. If you increase this, the print will be less accurate, "
  5096. "but the g-code will be smaller. Maximum Deviation is a limit for Maximum "
  5097. "Resolution, so if the two conflict the Maximum Deviation will always be held "
  5098. "true."
  5099. msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。"
  5100. #: fdmprinter.def.json
  5101. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  5102. msgid "Maximum Extrusion Area Deviation"
  5103. msgstr "最大押出領域偏差"
  5104. #: fdmprinter.def.json
  5105. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  5106. msgid ""
  5107. "The maximum extrusion area deviation allowed when removing intermediate "
  5108. "points from a straight line. An intermediate point may serve as width-"
  5109. "changing point in a long straight line. Therefore, if it is removed, it will "
  5110. "cause the line to have a uniform width and, as a result, lose (or gain) a "
  5111. "bit of extrusion area. If you increase this you may notice slight under- (or "
  5112. "over-) extrusion in between straight parallel walls, as more intermediate "
  5113. "width-changing points will be allowed to be removed. Your print will be less "
  5114. "accurate, but the g-code will be smaller."
  5115. msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。"
  5116. #: fdmprinter.def.json
  5117. msgctxt "blackmagic label"
  5118. msgid "Special Modes"
  5119. msgstr "特別モード"
  5120. #: fdmprinter.def.json
  5121. msgctxt "blackmagic description"
  5122. msgid "Non-traditional ways to print your models."
  5123. msgstr "これまでにないモデルの印刷方法です。"
  5124. #: fdmprinter.def.json
  5125. msgctxt "print_sequence label"
  5126. msgid "Print Sequence"
  5127. msgstr "印刷頻度"
  5128. #: fdmprinter.def.json
  5129. msgctxt "print_sequence description"
  5130. msgid ""
  5131. "Whether to print all models one layer at a time or to wait for one model to "
  5132. "finish, before moving on to the next. One at a time mode is possible if a) "
  5133. "only one extruder is enabled and b) all models are separated in such a way "
  5134. "that the whole print head can move in between and all models are lower than "
  5135. "the distance between the nozzle and the X/Y axes."
  5136. msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。"
  5137. #: fdmprinter.def.json
  5138. msgctxt "print_sequence option all_at_once"
  5139. msgid "All at Once"
  5140. msgstr "一度にすべて"
  5141. #: fdmprinter.def.json
  5142. msgctxt "print_sequence option one_at_a_time"
  5143. msgid "One at a Time"
  5144. msgstr "1つずつ"
  5145. #: fdmprinter.def.json
  5146. msgctxt "infill_mesh label"
  5147. msgid "Infill Mesh"
  5148. msgstr "インフィルメッシュ"
  5149. #: fdmprinter.def.json
  5150. msgctxt "infill_mesh description"
  5151. msgid ""
  5152. "Use this mesh to modify the infill of other meshes with which it overlaps. "
  5153. "Replaces infill regions of other meshes with regions for this mesh. It's "
  5154. "suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  5155. msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。"
  5156. #: fdmprinter.def.json
  5157. msgctxt "infill_mesh_order label"
  5158. msgid "Mesh Processing Rank"
  5159. msgstr "メッシュ処理ランク"
  5160. #: fdmprinter.def.json
  5161. msgctxt "infill_mesh_order description"
  5162. msgid ""
  5163. "Determines the priority of this mesh when considering multiple overlapping "
  5164. "infill meshes. Areas where multiple infill meshes overlap will take on the "
  5165. "settings of the mesh with the highest rank. An infill mesh with a higher "
  5166. "rank will modify the infill of infill meshes with lower rank and normal "
  5167. "meshes."
  5168. msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。"
  5169. #: fdmprinter.def.json
  5170. msgctxt "cutting_mesh label"
  5171. msgid "Cutting Mesh"
  5172. msgstr "メッシュ切断"
  5173. #: fdmprinter.def.json
  5174. msgctxt "cutting_mesh description"
  5175. msgid ""
  5176. "Limit the volume of this mesh to within other meshes. You can use this to "
  5177. "make certain areas of one mesh print with different settings and with a "
  5178. "whole different extruder."
  5179. msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。"
  5180. #: fdmprinter.def.json
  5181. msgctxt "mold_enabled label"
  5182. msgid "Mold"
  5183. msgstr "型"
  5184. #: fdmprinter.def.json
  5185. msgctxt "mold_enabled description"
  5186. msgid ""
  5187. "Print models as a mold, which can be cast in order to get a model which "
  5188. "resembles the models on the build plate."
  5189. msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。"
  5190. #: fdmprinter.def.json
  5191. msgctxt "mold_width label"
  5192. msgid "Minimal Mold Width"
  5193. msgstr "最小型幅"
  5194. #: fdmprinter.def.json
  5195. msgctxt "mold_width description"
  5196. msgid ""
  5197. "The minimal distance between the outside of the mold and the outside of the "
  5198. "model."
  5199. msgstr "型の外側とモデルの外側との間の最小距離です。"
  5200. #: fdmprinter.def.json
  5201. msgctxt "mold_roof_height label"
  5202. msgid "Mold Roof Height"
  5203. msgstr "型ルーフ高さ"
  5204. #: fdmprinter.def.json
  5205. msgctxt "mold_roof_height description"
  5206. msgid "The height above horizontal parts in your model which to print mold."
  5207. msgstr "型を印刷するためのモデルの水平部分上の高さ。"
  5208. #: fdmprinter.def.json
  5209. msgctxt "mold_angle label"
  5210. msgid "Mold Angle"
  5211. msgstr "型角度"
  5212. #: fdmprinter.def.json
  5213. msgctxt "mold_angle description"
  5214. msgid ""
  5215. "The angle of overhang of the outer walls created for the mold. 0° will make "
  5216. "the outer shell of the mold vertical, while 90° will make the outside of the "
  5217. "model follow the contour of the model."
  5218. msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。"
  5219. #: fdmprinter.def.json
  5220. msgctxt "support_mesh label"
  5221. msgid "Support Mesh"
  5222. msgstr "サポートメッシュ"
  5223. #: fdmprinter.def.json
  5224. msgctxt "support_mesh description"
  5225. msgid ""
  5226. "Use this mesh to specify support areas. This can be used to generate support "
  5227. "structure."
  5228. msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。"
  5229. #: fdmprinter.def.json
  5230. msgctxt "anti_overhang_mesh label"
  5231. msgid "Anti Overhang Mesh"
  5232. msgstr "メッシュオーバーハング例外"
  5233. #: fdmprinter.def.json
  5234. msgctxt "anti_overhang_mesh description"
  5235. msgid ""
  5236. "Use this mesh to specify where no part of the model should be detected as "
  5237. "overhang. This can be used to remove unwanted support structure."
  5238. msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。"
  5239. #: fdmprinter.def.json
  5240. msgctxt "magic_mesh_surface_mode label"
  5241. msgid "Surface Mode"
  5242. msgstr "表面モード"
  5243. #: fdmprinter.def.json
  5244. msgctxt "magic_mesh_surface_mode description"
  5245. msgid ""
  5246. "Treat the model as a surface only, a volume, or volumes with loose surfaces. "
  5247. "The normal print mode only prints enclosed volumes. \"Surface\" prints a "
  5248. "single wall tracing the mesh surface with no infill and no top/bottom skin. "
  5249. "\"Both\" prints enclosed volumes like normal and any remaining polygons as "
  5250. "surfaces."
  5251. msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。"
  5252. #: fdmprinter.def.json
  5253. msgctxt "magic_mesh_surface_mode option normal"
  5254. msgid "Normal"
  5255. msgstr "標準"
  5256. #: fdmprinter.def.json
  5257. msgctxt "magic_mesh_surface_mode option surface"
  5258. msgid "Surface"
  5259. msgstr "表面"
  5260. #: fdmprinter.def.json
  5261. msgctxt "magic_mesh_surface_mode option both"
  5262. msgid "Both"
  5263. msgstr "両方"
  5264. #: fdmprinter.def.json
  5265. msgctxt "magic_spiralize label"
  5266. msgid "Spiralize Outer Contour"
  5267. msgstr "滑らかな外側輪郭"
  5268. #: fdmprinter.def.json
  5269. msgctxt "magic_spiralize description"
  5270. msgid ""
  5271. "Spiralize smooths out the Z move of the outer edge. This will create a "
  5272. "steady Z increase over the whole print. This feature turns a solid model "
  5273. "into a single walled print with a solid bottom. This feature should only be "
  5274. "enabled when each layer only contains a single part."
  5275. msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。"
  5276. #: fdmprinter.def.json
  5277. msgctxt "smooth_spiralized_contours label"
  5278. msgid "Smooth Spiralized Contours"
  5279. msgstr "滑らかな輪郭"
  5280. #: fdmprinter.def.json
  5281. msgctxt "smooth_spiralized_contours description"
  5282. msgid ""
  5283. "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z "
  5284. "seam should be barely visible on the print but will still be visible in the "
  5285. "layer view). Note that smoothing will tend to blur fine surface details."
  5286. msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。"
  5287. #: fdmprinter.def.json
  5288. msgctxt "relative_extrusion label"
  5289. msgid "Relative Extrusion"
  5290. msgstr "相対押出"
  5291. #: fdmprinter.def.json
  5292. msgctxt "relative_extrusion description"
  5293. msgid ""
  5294. "Use relative extrusion rather than absolute extrusion. Using relative E-"
  5295. "steps makes for easier post-processing of the g-code. However, it's not "
  5296. "supported by all printers and it may produce very slight deviations in the "
  5297. "amount of deposited material compared to absolute E-steps. Irrespective of "
  5298. "this setting, the extrusion mode will always be set to absolute before any g-"
  5299. "code script is output."
  5300. msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。"
  5301. #: fdmprinter.def.json
  5302. msgctxt "experimental label"
  5303. msgid "Experimental"
  5304. msgstr "実験"
  5305. #: fdmprinter.def.json
  5306. msgctxt "experimental description"
  5307. msgid "Features that haven't completely been fleshed out yet."
  5308. msgstr "これからもっと充実させていく機能です。"
  5309. #: fdmprinter.def.json
  5310. msgctxt "slicing_tolerance label"
  5311. msgid "Slicing Tolerance"
  5312. msgstr "スライス公差"
  5313. #: fdmprinter.def.json
  5314. msgctxt "slicing_tolerance description"
  5315. msgid ""
  5316. "Vertical tolerance in the sliced layers. The contours of a layer are "
  5317. "normally generated by taking cross sections through the middle of each "
  5318. "layer's thickness (Middle). Alternatively each layer can have the areas "
  5319. "which fall inside of the volume throughout the entire thickness of the layer "
  5320. "(Exclusive) or a layer has the areas which fall inside anywhere within the "
  5321. "layer (Inclusive). Inclusive retains the most details, Exclusive makes for "
  5322. "the best fit and Middle stays closest to the original surface."
  5323. msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。"
  5324. #: fdmprinter.def.json
  5325. msgctxt "slicing_tolerance option middle"
  5326. msgid "Middle"
  5327. msgstr "中間"
  5328. #: fdmprinter.def.json
  5329. msgctxt "slicing_tolerance option exclusive"
  5330. msgid "Exclusive"
  5331. msgstr "排他"
  5332. #: fdmprinter.def.json
  5333. msgctxt "slicing_tolerance option inclusive"
  5334. msgid "Inclusive"
  5335. msgstr "包括"
  5336. #: fdmprinter.def.json
  5337. msgctxt "roofing_line_width label"
  5338. msgid "Top Surface Skin Line Width"
  5339. msgstr "最上面のライン幅"
  5340. #: fdmprinter.def.json
  5341. msgctxt "roofing_line_width description"
  5342. msgid "Width of a single line of the areas at the top of the print."
  5343. msgstr "プリントの上部の 線の幅。"
  5344. #: fdmprinter.def.json
  5345. msgctxt "roofing_pattern label"
  5346. msgid "Top Surface Skin Pattern"
  5347. msgstr "上部表面パターン"
  5348. #: fdmprinter.def.json
  5349. msgctxt "roofing_pattern description"
  5350. msgid "The pattern of the top most layers."
  5351. msgstr "上層のパターン。"
  5352. #: fdmprinter.def.json
  5353. msgctxt "roofing_pattern option lines"
  5354. msgid "Lines"
  5355. msgstr "直線"
  5356. #: fdmprinter.def.json
  5357. msgctxt "roofing_pattern option concentric"
  5358. msgid "Concentric"
  5359. msgstr "同心円"
  5360. #: fdmprinter.def.json
  5361. msgctxt "roofing_pattern option zigzag"
  5362. msgid "Zig Zag"
  5363. msgstr "ジグザグ"
  5364. #: fdmprinter.def.json
  5365. msgctxt "roofing_monotonic label"
  5366. msgid "Monotonic Top Surface Order"
  5367. msgstr "上面方向一貫性"
  5368. #: fdmprinter.def.json
  5369. msgctxt "roofing_monotonic description"
  5370. msgid ""
  5371. "Print top surface lines in an ordering that causes them to always overlap "
  5372. "with adjacent lines in a single direction. This takes slightly more time to "
  5373. "print, but makes flat surfaces look more consistent."
  5374. msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  5375. #: fdmprinter.def.json
  5376. msgctxt "roofing_angles label"
  5377. msgid "Top Surface Skin Line Directions"
  5378. msgstr "最上面のラインの向き"
  5379. #: fdmprinter.def.json
  5380. msgctxt "roofing_angles description"
  5381. msgid ""
  5382. "A list of integer line directions to use when the top surface skin layers "
  5383. "use the lines or zig zag pattern. Elements from the list are used "
  5384. "sequentially as the layers progress and when the end of the list is reached, "
  5385. "it starts at the beginning again. The list items are separated by commas and "
  5386. "the whole list is contained in square brackets. Default is an empty list "
  5387. "which means use the traditional default angles (45 and 135 degrees)."
  5388. msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。"
  5389. #: fdmprinter.def.json
  5390. msgctxt "infill_enable_travel_optimization label"
  5391. msgid "Infill Travel Optimization"
  5392. msgstr "インフィル移動最適化"
  5393. #: fdmprinter.def.json
  5394. msgctxt "infill_enable_travel_optimization description"
  5395. msgid ""
  5396. "When enabled, the order in which the infill lines are printed is optimized "
  5397. "to reduce the distance travelled. The reduction in travel time achieved very "
  5398. "much depends on the model being sliced, infill pattern, density, etc. Note "
  5399. "that, for some models that have many small areas of infill, the time to "
  5400. "slice the model may be greatly increased."
  5401. msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。"
  5402. #: fdmprinter.def.json
  5403. msgctxt "material_flow_dependent_temperature label"
  5404. msgid "Auto Temperature"
  5405. msgstr "自動温度"
  5406. #: fdmprinter.def.json
  5407. msgctxt "material_flow_dependent_temperature description"
  5408. msgid ""
  5409. "Change the temperature for each layer automatically with the average flow "
  5410. "speed of that layer."
  5411. msgstr "その画層の平均流速で自動的にレイヤーごとに温度を変更します。"
  5412. #: fdmprinter.def.json
  5413. msgctxt "material_flow_temp_graph label"
  5414. msgid "Flow Temperature Graph"
  5415. msgstr "フロー温度グラフ"
  5416. #: fdmprinter.def.json
  5417. msgctxt "material_flow_temp_graph description"
  5418. msgid ""
  5419. "Data linking material flow (in mm3 per second) to temperature (degrees "
  5420. "Celsius)."
  5421. msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。"
  5422. #: fdmprinter.def.json
  5423. msgctxt "minimum_polygon_circumference label"
  5424. msgid "Minimum Polygon Circumference"
  5425. msgstr "最小ポリゴン円周"
  5426. #: fdmprinter.def.json
  5427. msgctxt "minimum_polygon_circumference description"
  5428. msgid ""
  5429. "Polygons in sliced layers that have a circumference smaller than this amount "
  5430. "will be filtered out. Lower values lead to higher resolution mesh at the "
  5431. "cost of slicing time. It is meant mostly for high resolution SLA printers "
  5432. "and very tiny 3D models with a lot of details."
  5433. msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。"
  5434. #: fdmprinter.def.json
  5435. msgctxt "support_skip_some_zags label"
  5436. msgid "Break Up Support In Chunks"
  5437. msgstr "接続部分のサポート分割"
  5438. #: fdmprinter.def.json
  5439. msgctxt "support_skip_some_zags description"
  5440. msgid ""
  5441. "Skip some support line connections to make the support structure easier to "
  5442. "break away. This setting is applicable to the Zig Zag support infill pattern."
  5443. msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。"
  5444. #: fdmprinter.def.json
  5445. msgctxt "support_skip_zag_per_mm label"
  5446. msgid "Support Chunk Size"
  5447. msgstr "サポート分割サイズ"
  5448. #: fdmprinter.def.json
  5449. msgctxt "support_skip_zag_per_mm description"
  5450. msgid ""
  5451. "Leave out a connection between support lines once every N millimeter to make "
  5452. "the support structure easier to break away."
  5453. msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。"
  5454. #: fdmprinter.def.json
  5455. msgctxt "support_zag_skip_count label"
  5456. msgid "Support Chunk Line Count"
  5457. msgstr "サポート分割ライン数"
  5458. #: fdmprinter.def.json
  5459. msgctxt "support_zag_skip_count description"
  5460. msgid ""
  5461. "Skip one in every N connection lines to make the support structure easier to "
  5462. "break away."
  5463. msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。"
  5464. #: fdmprinter.def.json
  5465. msgctxt "draft_shield_enabled label"
  5466. msgid "Enable Draft Shield"
  5467. msgstr "ドラフトシールドを有効にする"
  5468. #: fdmprinter.def.json
  5469. msgctxt "draft_shield_enabled description"
  5470. msgid ""
  5471. "This will create a wall around the model, which traps (hot) air and shields "
  5472. "against exterior airflow. Especially useful for materials which warp easily."
  5473. msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。"
  5474. #: fdmprinter.def.json
  5475. msgctxt "draft_shield_dist label"
  5476. msgid "Draft Shield X/Y Distance"
  5477. msgstr "ドラフトシールドとX/Yの距離"
  5478. #: fdmprinter.def.json
  5479. msgctxt "draft_shield_dist description"
  5480. msgid "Distance of the draft shield from the print, in the X/Y directions."
  5481. msgstr "ドラフトシールドと造形物のX / Y方向の距離。"
  5482. #: fdmprinter.def.json
  5483. msgctxt "draft_shield_height_limitation label"
  5484. msgid "Draft Shield Limitation"
  5485. msgstr "ドラフトシールドの制限"
  5486. #: fdmprinter.def.json
  5487. msgctxt "draft_shield_height_limitation description"
  5488. msgid ""
  5489. "Set the height of the draft shield. Choose to print the draft shield at the "
  5490. "full height of the model or at a limited height."
  5491. msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。"
  5492. #: fdmprinter.def.json
  5493. msgctxt "draft_shield_height_limitation option full"
  5494. msgid "Full"
  5495. msgstr "制限なし"
  5496. #: fdmprinter.def.json
  5497. msgctxt "draft_shield_height_limitation option limited"
  5498. msgid "Limited"
  5499. msgstr "制限あり"
  5500. #: fdmprinter.def.json
  5501. msgctxt "draft_shield_height label"
  5502. msgid "Draft Shield Height"
  5503. msgstr "ドラフトシールドの高さ"
  5504. #: fdmprinter.def.json
  5505. msgctxt "draft_shield_height description"
  5506. msgid ""
  5507. "Height limitation of the draft shield. Above this height no draft shield "
  5508. "will be printed."
  5509. msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。"
  5510. #: fdmprinter.def.json
  5511. msgctxt "conical_overhang_enabled label"
  5512. msgid "Make Overhang Printable"
  5513. msgstr "オーバーハング印刷可能"
  5514. #: fdmprinter.def.json
  5515. msgctxt "conical_overhang_enabled description"
  5516. msgid ""
  5517. "Change the geometry of the printed model such that minimal support is "
  5518. "required. Steep overhangs will become shallow overhangs. Overhanging areas "
  5519. "will drop down to become more vertical."
  5520. msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。"
  5521. #: fdmprinter.def.json
  5522. msgctxt "conical_overhang_angle label"
  5523. msgid "Maximum Model Angle"
  5524. msgstr "最大モデル角度"
  5525. #: fdmprinter.def.json
  5526. msgctxt "conical_overhang_angle description"
  5527. msgid ""
  5528. "The maximum angle of overhangs after the they have been made printable. At a "
  5529. "value of 0° all overhangs are replaced by a piece of model connected to the "
  5530. "build plate, 90° will not change the model in any way."
  5531. msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。"
  5532. #: fdmprinter.def.json
  5533. msgctxt "conical_overhang_hole_size label"
  5534. msgid "Maximum Overhang Hole Area"
  5535. msgstr "オーバーハングした穴の最大領域"
  5536. #: fdmprinter.def.json
  5537. msgctxt "conical_overhang_hole_size description"
  5538. msgid ""
  5539. "The maximum area of a hole in the base of the model before it's removed by "
  5540. "Make Overhang Printable. Holes smaller than this will be retained. A value "
  5541. "of 0 mm² will fill all holes in the models base."
  5542. msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。"
  5543. #: fdmprinter.def.json
  5544. msgctxt "coasting_enable label"
  5545. msgid "Enable Coasting"
  5546. msgstr "コースティングを有効にする"
  5547. #: fdmprinter.def.json
  5548. msgctxt "coasting_enable description"
  5549. msgid ""
  5550. "Coasting replaces the last part of an extrusion path with a travel path. The "
  5551. "oozed material is used to print the last piece of the extrusion path in "
  5552. "order to reduce stringing."
  5553. msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。"
  5554. #: fdmprinter.def.json
  5555. msgctxt "coasting_volume label"
  5556. msgid "Coasting Volume"
  5557. msgstr "コースティングのボリューム"
  5558. #: fdmprinter.def.json
  5559. msgctxt "coasting_volume description"
  5560. msgid ""
  5561. "The volume otherwise oozed. This value should generally be close to the "
  5562. "nozzle diameter cubed."
  5563. msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。"
  5564. #: fdmprinter.def.json
  5565. msgctxt "coasting_min_volume label"
  5566. msgid "Minimum Volume Before Coasting"
  5567. msgstr "コースティング前の最小ボリューム"
  5568. #: fdmprinter.def.json
  5569. msgctxt "coasting_min_volume description"
  5570. msgid ""
  5571. "The smallest volume an extrusion path should have before allowing coasting. "
  5572. "For smaller extrusion paths, less pressure has been built up in the bowden "
  5573. "tube and so the coasted volume is scaled linearly. This value should always "
  5574. "be larger than the Coasting Volume."
  5575. msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。"
  5576. #: fdmprinter.def.json
  5577. msgctxt "coasting_speed label"
  5578. msgid "Coasting Speed"
  5579. msgstr "コースティング速度"
  5580. #: fdmprinter.def.json
  5581. msgctxt "coasting_speed description"
  5582. msgid ""
  5583. "The speed by which to move during coasting, relative to the speed of the "
  5584. "extrusion path. A value slightly under 100% is advised, since during the "
  5585. "coasting move the pressure in the bowden tube drops."
  5586. msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。"
  5587. #: fdmprinter.def.json
  5588. msgctxt "cross_infill_pocket_size label"
  5589. msgid "Cross 3D Pocket Size"
  5590. msgstr "3Dクロスポケットのサイズ"
  5591. #: fdmprinter.def.json
  5592. msgctxt "cross_infill_pocket_size description"
  5593. msgid ""
  5594. "The size of pockets at four-way crossings in the cross 3D pattern at heights "
  5595. "where the pattern is touching itself."
  5596. msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。"
  5597. #: fdmprinter.def.json
  5598. msgctxt "cross_infill_density_image label"
  5599. msgid "Cross Infill Density Image"
  5600. msgstr "クロス画像のインフィル密度"
  5601. #: fdmprinter.def.json
  5602. msgctxt "cross_infill_density_image description"
  5603. msgid ""
  5604. "The file location of an image of which the brightness values determine the "
  5605. "minimal density at the corresponding location in the infill of the print."
  5606. msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。"
  5607. #: fdmprinter.def.json
  5608. msgctxt "cross_support_density_image label"
  5609. msgid "Cross Fill Density Image for Support"
  5610. msgstr "サポート用クロス画像のインフィル密度"
  5611. #: fdmprinter.def.json
  5612. msgctxt "cross_support_density_image description"
  5613. msgid ""
  5614. "The file location of an image of which the brightness values determine the "
  5615. "minimal density at the corresponding location in the support."
  5616. msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。"
  5617. #: fdmprinter.def.json
  5618. msgctxt "support_conical_enabled label"
  5619. msgid "Enable Conical Support"
  5620. msgstr "円錐サポートを有効にする"
  5621. #: fdmprinter.def.json
  5622. msgctxt "support_conical_enabled description"
  5623. msgid "Make support areas smaller at the bottom than at the overhang."
  5624. msgstr "オーバーハング部分よりも底面の支持領域を小さくする。"
  5625. #: fdmprinter.def.json
  5626. msgctxt "support_conical_angle label"
  5627. msgid "Conical Support Angle"
  5628. msgstr "円錐サポートの角度"
  5629. #: fdmprinter.def.json
  5630. msgctxt "support_conical_angle description"
  5631. msgid ""
  5632. "The angle of the tilt of conical support. With 0 degrees being vertical, and "
  5633. "90 degrees being horizontal. Smaller angles cause the support to be more "
  5634. "sturdy, but consist of more material. Negative angles cause the base of the "
  5635. "support to be wider than the top."
  5636. msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。"
  5637. #: fdmprinter.def.json
  5638. msgctxt "support_conical_min_width label"
  5639. msgid "Conical Support Minimum Width"
  5640. msgstr "円錐サポートの最大幅"
  5641. #: fdmprinter.def.json
  5642. msgctxt "support_conical_min_width description"
  5643. msgid ""
  5644. "Minimum width to which the base of the conical support area is reduced. "
  5645. "Small widths can lead to unstable support structures."
  5646. msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。"
  5647. #: fdmprinter.def.json
  5648. msgctxt "magic_fuzzy_skin_enabled label"
  5649. msgid "Fuzzy Skin"
  5650. msgstr "ファジースキン"
  5651. #: fdmprinter.def.json
  5652. msgctxt "magic_fuzzy_skin_enabled description"
  5653. msgid ""
  5654. "Randomly jitter while printing the outer wall, so that the surface has a "
  5655. "rough and fuzzy look."
  5656. msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。"
  5657. #: fdmprinter.def.json
  5658. msgctxt "magic_fuzzy_skin_outside_only label"
  5659. msgid "Fuzzy Skin Outside Only"
  5660. msgstr "ファジースキン外のみ"
  5661. #: fdmprinter.def.json
  5662. msgctxt "magic_fuzzy_skin_outside_only description"
  5663. msgid "Jitter only the parts' outlines and not the parts' holes."
  5664. msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。"
  5665. #: fdmprinter.def.json
  5666. msgctxt "magic_fuzzy_skin_thickness label"
  5667. msgid "Fuzzy Skin Thickness"
  5668. msgstr "ファジースキンの厚さ"
  5669. #: fdmprinter.def.json
  5670. msgctxt "magic_fuzzy_skin_thickness description"
  5671. msgid ""
  5672. "The width within which to jitter. It's advised to keep this below the outer "
  5673. "wall width, since the inner walls are unaltered."
  5674. msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。"
  5675. #: fdmprinter.def.json
  5676. msgctxt "magic_fuzzy_skin_point_density label"
  5677. msgid "Fuzzy Skin Density"
  5678. msgstr "ファジースキンの密度"
  5679. #: fdmprinter.def.json
  5680. msgctxt "magic_fuzzy_skin_point_density description"
  5681. msgid ""
  5682. "The average density of points introduced on each polygon in a layer. Note "
  5683. "that the original points of the polygon are discarded, so a low density "
  5684. "results in a reduction of the resolution."
  5685. msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。"
  5686. #: fdmprinter.def.json
  5687. msgctxt "magic_fuzzy_skin_point_dist label"
  5688. msgid "Fuzzy Skin Point Distance"
  5689. msgstr "ファジースキン点間距離"
  5690. #: fdmprinter.def.json
  5691. msgctxt "magic_fuzzy_skin_point_dist description"
  5692. msgid ""
  5693. "The average distance between the random points introduced on each line "
  5694. "segment. Note that the original points of the polygon are discarded, so a "
  5695. "high smoothness results in a reduction of the resolution. This value must be "
  5696. "higher than half the Fuzzy Skin Thickness."
  5697. msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。"
  5698. #: fdmprinter.def.json
  5699. msgctxt "flow_rate_max_extrusion_offset label"
  5700. msgid "Flow Rate Compensation Max Extrusion Offset"
  5701. msgstr "流量補正時の最大抽出オフセット"
  5702. #: fdmprinter.def.json
  5703. msgctxt "flow_rate_max_extrusion_offset description"
  5704. msgid ""
  5705. "The maximum distance in mm to move the filament to compensate for changes in "
  5706. "flow rate."
  5707. msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。"
  5708. #: fdmprinter.def.json
  5709. msgctxt "flow_rate_extrusion_offset_factor label"
  5710. msgid "Flow Rate Compensation Factor"
  5711. msgstr "流量補正要因"
  5712. #: fdmprinter.def.json
  5713. msgctxt "flow_rate_extrusion_offset_factor description"
  5714. msgid ""
  5715. "How far to move the filament in order to compensate for changes in flow "
  5716. "rate, as a percentage of how far the filament would move in one second of "
  5717. "extrusion."
  5718. msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。"
  5719. #: fdmprinter.def.json
  5720. msgctxt "wireframe_enabled label"
  5721. msgid "Wire Printing"
  5722. msgstr "ワイヤ印刷"
  5723. #: fdmprinter.def.json
  5724. msgctxt "wireframe_enabled description"
  5725. msgid ""
  5726. "Print only the outside surface with a sparse webbed structure, printing 'in "
  5727. "thin air'. This is realized by horizontally printing the contours of the "
  5728. "model at given Z intervals which are connected via upward and diagonally "
  5729. "downward lines."
  5730. msgstr "薄い空気中に印刷し、疎なウエブ構造で外面のみを印刷します。これは、上向きおよび斜め下向きの線を介して接続された所定のZ間隔でモデルの輪郭を水平に印刷することによって実現される。"
  5731. #: fdmprinter.def.json
  5732. msgctxt "wireframe_height label"
  5733. msgid "WP Connection Height"
  5734. msgstr "WPの高さ"
  5735. #: fdmprinter.def.json
  5736. msgctxt "wireframe_height description"
  5737. msgid ""
  5738. "The height of the upward and diagonally downward lines between two "
  5739. "horizontal parts. This determines the overall density of the net structure. "
  5740. "Only applies to Wire Printing."
  5741. msgstr "2つの水平なパーツ間の、上向きおよび斜め下向きの線の高さ。これは、ネット構造の全体密度を決定します。ワイヤ印刷のみに適用されます。"
  5742. #: fdmprinter.def.json
  5743. msgctxt "wireframe_roof_inset label"
  5744. msgid "WP Roof Inset Distance"
  5745. msgstr "WPルーフ距離のオフセット"
  5746. #: fdmprinter.def.json
  5747. msgctxt "wireframe_roof_inset description"
  5748. msgid ""
  5749. "The distance covered when making a connection from a roof outline inward. "
  5750. "Only applies to Wire Printing."
  5751. msgstr "ルーフから内側に輪郭を描くときの距離。ワイヤ印刷のみに適用されます。"
  5752. #: fdmprinter.def.json
  5753. msgctxt "wireframe_printspeed label"
  5754. msgid "WP Speed"
  5755. msgstr "WP速度"
  5756. #: fdmprinter.def.json
  5757. msgctxt "wireframe_printspeed description"
  5758. msgid ""
  5759. "Speed at which the nozzle moves when extruding material. Only applies to "
  5760. "Wire Printing."
  5761. msgstr "マテリアルを押し出すときにノズルが動く速度。ワイヤ印刷のみに適用されます。"
  5762. #: fdmprinter.def.json
  5763. msgctxt "wireframe_printspeed_bottom label"
  5764. msgid "WP Bottom Printing Speed"
  5765. msgstr "WP底面印字速度"
  5766. #: fdmprinter.def.json
  5767. msgctxt "wireframe_printspeed_bottom description"
  5768. msgid ""
  5769. "Speed of printing the first layer, which is the only layer touching the "
  5770. "build platform. Only applies to Wire Printing."
  5771. msgstr "ブルドプラットフォームに接触する第1層の印刷速度。ワイヤ印刷のみに適用されます。"
  5772. #: fdmprinter.def.json
  5773. msgctxt "wireframe_printspeed_up label"
  5774. msgid "WP Upward Printing Speed"
  5775. msgstr "WP上向き印字速度"
  5776. #: fdmprinter.def.json
  5777. msgctxt "wireframe_printspeed_up description"
  5778. msgid ""
  5779. "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  5780. msgstr "薄い空気の中で上向きに線を印刷する速度。ワイヤ印刷のみに適用されます。"
  5781. #: fdmprinter.def.json
  5782. msgctxt "wireframe_printspeed_down label"
  5783. msgid "WP Downward Printing Speed"
  5784. msgstr "WP下向き印字速度"
  5785. #: fdmprinter.def.json
  5786. msgctxt "wireframe_printspeed_down description"
  5787. msgid ""
  5788. "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  5789. msgstr "斜め下方に線を印刷する速度。ワイヤ印刷のみに適用されます。"
  5790. #: fdmprinter.def.json
  5791. msgctxt "wireframe_printspeed_flat label"
  5792. msgid "WP Horizontal Printing Speed"
  5793. msgstr "WP水平印字速度"
  5794. #: fdmprinter.def.json
  5795. msgctxt "wireframe_printspeed_flat description"
  5796. msgid ""
  5797. "Speed of printing the horizontal contours of the model. Only applies to Wire "
  5798. "Printing."
  5799. msgstr "モデルの水平輪郭を印刷する速度。ワイヤ印刷のみに適用されます。"
  5800. #: fdmprinter.def.json
  5801. msgctxt "wireframe_flow label"
  5802. msgid "WP Flow"
  5803. msgstr "WPフロー"
  5804. #: fdmprinter.def.json
  5805. msgctxt "wireframe_flow description"
  5806. msgid ""
  5807. "Flow compensation: the amount of material extruded is multiplied by this "
  5808. "value. Only applies to Wire Printing."
  5809. msgstr "流れ補正:押出されたマテリアルの量はこの値の乗算になります。ワイヤ印刷のみに適用されます。"
  5810. #: fdmprinter.def.json
  5811. msgctxt "wireframe_flow_connection label"
  5812. msgid "WP Connection Flow"
  5813. msgstr "WP接続フロー"
  5814. #: fdmprinter.def.json
  5815. msgctxt "wireframe_flow_connection description"
  5816. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  5817. msgstr "上下に動くときの吐出補正。ワイヤ印刷のみに適用されます。"
  5818. #: fdmprinter.def.json
  5819. msgctxt "wireframe_flow_flat label"
  5820. msgid "WP Flat Flow"
  5821. msgstr "WPフラットフロー"
  5822. #: fdmprinter.def.json
  5823. msgctxt "wireframe_flow_flat description"
  5824. msgid ""
  5825. "Flow compensation when printing flat lines. Only applies to Wire Printing."
  5826. msgstr "フラットラインを印刷する際の吐出補正。ワイヤ印刷のみに適用されます。"
  5827. #: fdmprinter.def.json
  5828. msgctxt "wireframe_top_delay label"
  5829. msgid "WP Top Delay"
  5830. msgstr "WP上面遅延"
  5831. #: fdmprinter.def.json
  5832. msgctxt "wireframe_top_delay description"
  5833. msgid ""
  5834. "Delay time after an upward move, so that the upward line can harden. Only "
  5835. "applies to Wire Printing."
  5836. msgstr "上向きの線が硬くなるように、上向きの動きの後の時間を遅らせる。ワイヤ印刷のみに適用されます。"
  5837. #: fdmprinter.def.json
  5838. msgctxt "wireframe_bottom_delay label"
  5839. msgid "WP Bottom Delay"
  5840. msgstr "WP底面遅延"
  5841. #: fdmprinter.def.json
  5842. msgctxt "wireframe_bottom_delay description"
  5843. msgid "Delay time after a downward move. Only applies to Wire Printing."
  5844. msgstr "下降後の遅延時間。ワイヤ印刷のみに適用されます。"
  5845. #: fdmprinter.def.json
  5846. msgctxt "wireframe_flat_delay label"
  5847. msgid "WP Flat Delay"
  5848. msgstr "WP水平遅延"
  5849. #: fdmprinter.def.json
  5850. msgctxt "wireframe_flat_delay description"
  5851. msgid ""
  5852. "Delay time between two horizontal segments. Introducing such a delay can "
  5853. "cause better adhesion to previous layers at the connection points, while too "
  5854. "long delays cause sagging. Only applies to Wire Printing."
  5855. msgstr "2つの水平セグメント間の遅延時間。このような遅延を挿入すると、前のレイヤーとの接着性が向上することがありますが、遅延が長すぎると垂れ下がりが発生します。ワイヤ印刷のみに適用されます。"
  5856. #: fdmprinter.def.json
  5857. msgctxt "wireframe_up_half_speed label"
  5858. msgid "WP Ease Upward"
  5859. msgstr "WP低速移動距離"
  5860. #: fdmprinter.def.json
  5861. msgctxt "wireframe_up_half_speed description"
  5862. msgid ""
  5863. "Distance of an upward move which is extruded with half speed.\n"
  5864. "This can cause better adhesion to previous layers, while not heating the "
  5865. "material in those layers too much. Only applies to Wire Printing."
  5866. msgstr "半分の速度で押出される上方への移動距離。過度にマテリアルを加熱することなく、前の層とのより良い接着を作ります。ワイヤ印刷のみに適用されます。"
  5867. #: fdmprinter.def.json
  5868. msgctxt "wireframe_top_jump label"
  5869. msgid "WP Knot Size"
  5870. msgstr "WPノットサイズ"
  5871. #: fdmprinter.def.json
  5872. msgctxt "wireframe_top_jump description"
  5873. msgid ""
  5874. "Creates a small knot at the top of an upward line, so that the consecutive "
  5875. "horizontal layer has a better chance to connect to it. Only applies to Wire "
  5876. "Printing."
  5877. msgstr "上向きの線の上端に小さな結び目を作成し、連続する水平レイヤーを接着力を高めます。ワイヤ印刷のみに適用されます。"
  5878. #: fdmprinter.def.json
  5879. msgctxt "wireframe_fall_down label"
  5880. msgid "WP Fall Down"
  5881. msgstr "WP落下距離"
  5882. #: fdmprinter.def.json
  5883. msgctxt "wireframe_fall_down description"
  5884. msgid ""
  5885. "Distance with which the material falls down after an upward extrusion. This "
  5886. "distance is compensated for. Only applies to Wire Printing."
  5887. msgstr "上向き押出後にマテリアルが落下する距離。この距離は補正される。ワイヤ印刷のみに適用されます。"
  5888. #: fdmprinter.def.json
  5889. msgctxt "wireframe_drag_along label"
  5890. msgid "WP Drag Along"
  5891. msgstr "WP引きづり距離"
  5892. #: fdmprinter.def.json
  5893. msgctxt "wireframe_drag_along description"
  5894. msgid ""
  5895. "Distance with which the material of an upward extrusion is dragged along "
  5896. "with the diagonally downward extrusion. This distance is compensated for. "
  5897. "Only applies to Wire Printing."
  5898. msgstr "斜め下方への押出に伴い上向き押出しているマテリアルが引きずられる距離。この距離は補正される。ワイヤ印刷のみに適用されます。"
  5899. #: fdmprinter.def.json
  5900. msgctxt "wireframe_strategy label"
  5901. msgid "WP Strategy"
  5902. msgstr "WPストラテジー"
  5903. #: fdmprinter.def.json
  5904. msgctxt "wireframe_strategy description"
  5905. msgid ""
  5906. "Strategy for making sure two consecutive layers connect at each connection "
  5907. "point. Retraction lets the upward lines harden in the right position, but "
  5908. "may cause filament grinding. A knot can be made at the end of an upward line "
  5909. "to heighten the chance of connecting to it and to let the line cool; "
  5910. "however, it may require slow printing speeds. Another strategy is to "
  5911. "compensate for the sagging of the top of an upward line; however, the lines "
  5912. "won't always fall down as predicted."
  5913. msgstr "各接続ポイントで2つの連続したレイヤーが密着していることを確認するためのストラテジー。収縮すると上向きの線が正しい位置で硬化しますが、フィラメントの研削が行われる可能性があります。上向きの線の終わりに結び目をつけて接続する機会を増やし、線を冷やすことができます。ただし、印刷速度が遅くなることがあります。別の方法は、上向きの線の上端のたるみを補償することである。しかし、予測どおりにラインが必ずしも落ちるとは限りません。"
  5914. #: fdmprinter.def.json
  5915. msgctxt "wireframe_strategy option compensate"
  5916. msgid "Compensate"
  5917. msgstr "補正"
  5918. #: fdmprinter.def.json
  5919. msgctxt "wireframe_strategy option knot"
  5920. msgid "Knot"
  5921. msgstr "ノット"
  5922. #: fdmprinter.def.json
  5923. msgctxt "wireframe_strategy option retract"
  5924. msgid "Retract"
  5925. msgstr "引き戻し"
  5926. #: fdmprinter.def.json
  5927. msgctxt "wireframe_straight_before_down label"
  5928. msgid "WP Straighten Downward Lines"
  5929. msgstr "WP下向き直線ライン"
  5930. #: fdmprinter.def.json
  5931. msgctxt "wireframe_straight_before_down description"
  5932. msgid ""
  5933. "Percentage of a diagonally downward line which is covered by a horizontal "
  5934. "line piece. This can prevent sagging of the top most point of upward lines. "
  5935. "Only applies to Wire Printing."
  5936. msgstr "水平方向の直線部分で覆われた斜めに下降線の割合です。これは上向きラインのほとんどのポイント、上部のたるみを防ぐことができます。ワイヤ印刷にのみ適用されます。"
  5937. #: fdmprinter.def.json
  5938. msgctxt "wireframe_roof_fall_down label"
  5939. msgid "WP Roof Fall Down"
  5940. msgstr "WPルーフ落下距離"
  5941. #: fdmprinter.def.json
  5942. msgctxt "wireframe_roof_fall_down description"
  5943. msgid ""
  5944. "The distance which horizontal roof lines printed 'in thin air' fall down "
  5945. "when being printed. This distance is compensated for. Only applies to Wire "
  5946. "Printing."
  5947. msgstr "水平ルーフが ”薄い空気”に印刷され落ちる距離。この距離は補正されています。ワイヤ印刷に適用されます。"
  5948. #: fdmprinter.def.json
  5949. msgctxt "wireframe_roof_drag_along label"
  5950. msgid "WP Roof Drag Along"
  5951. msgstr "WPルーフ引きずり距離"
  5952. #: fdmprinter.def.json
  5953. msgctxt "wireframe_roof_drag_along description"
  5954. msgid ""
  5955. "The distance of the end piece of an inward line which gets dragged along "
  5956. "when going back to the outer outline of the roof. This distance is "
  5957. "compensated for. Only applies to Wire Printing."
  5958. msgstr "ルーフの外側の輪郭に戻る際に引きずる内側ラインの終わり部分の距離。この距離は補正されていてワイヤ印刷のみ適用されます。"
  5959. #: fdmprinter.def.json
  5960. msgctxt "wireframe_roof_outer_delay label"
  5961. msgid "WP Roof Outer Delay"
  5962. msgstr "WPルーフ外側処理時間"
  5963. #: fdmprinter.def.json
  5964. msgctxt "wireframe_roof_outer_delay description"
  5965. msgid ""
  5966. "Time spent at the outer perimeters of hole which is to become a roof. Longer "
  5967. "times can ensure a better connection. Only applies to Wire Printing."
  5968. msgstr "トップレイヤーにある穴の外側に掛ける時間。長い時間の方はより良い密着を得られます。ワイヤ印刷にのみ適用されます。"
  5969. #: fdmprinter.def.json
  5970. msgctxt "wireframe_nozzle_clearance label"
  5971. msgid "WP Nozzle Clearance"
  5972. msgstr "WPノズル隙間"
  5973. #: fdmprinter.def.json
  5974. msgctxt "wireframe_nozzle_clearance description"
  5975. msgid ""
  5976. "Distance between the nozzle and horizontally downward lines. Larger "
  5977. "clearance results in diagonally downward lines with a less steep angle, "
  5978. "which in turn results in less upward connections with the next layer. Only "
  5979. "applies to Wire Printing."
  5980. msgstr "ノズルと水平方向に下向きの線間の距離。大きな隙間がある場合、急な角度で斜め下方線となり、次の層が上方接続しずらくなる。ワイヤ印刷にのみ適用されます。"
  5981. #: fdmprinter.def.json
  5982. msgctxt "adaptive_layer_height_enabled label"
  5983. msgid "Use Adaptive Layers"
  5984. msgstr "適応レイヤーの使用"
  5985. #: fdmprinter.def.json
  5986. msgctxt "adaptive_layer_height_enabled description"
  5987. msgid ""
  5988. "Adaptive layers computes the layer heights depending on the shape of the "
  5989. "model."
  5990. msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。"
  5991. #: fdmprinter.def.json
  5992. msgctxt "adaptive_layer_height_variation label"
  5993. msgid "Adaptive Layers Maximum Variation"
  5994. msgstr "適応レイヤー最大差分"
  5995. #: fdmprinter.def.json
  5996. msgctxt "adaptive_layer_height_variation description"
  5997. msgid "The maximum allowed height different from the base layer height."
  5998. msgstr "基準レイヤー高さと比較して許容される最大の高さ。"
  5999. #: fdmprinter.def.json
  6000. msgctxt "adaptive_layer_height_variation_step label"
  6001. msgid "Adaptive Layers Variation Step Size"
  6002. msgstr "適応レイヤー差分ステップサイズ"
  6003. #: fdmprinter.def.json
  6004. msgctxt "adaptive_layer_height_variation_step description"
  6005. msgid ""
  6006. "The difference in height of the next layer height compared to the previous "
  6007. "one."
  6008. msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。"
  6009. #: fdmprinter.def.json
  6010. msgctxt "adaptive_layer_height_threshold label"
  6011. msgid "Adaptive Layers Topography Size"
  6012. msgstr "適応レイヤーのトポグラフィーサイズ"
  6013. #: fdmprinter.def.json
  6014. msgctxt "adaptive_layer_height_threshold description"
  6015. msgid ""
  6016. "Target horizontal distance between two adjacent layers. Reducing this "
  6017. "setting causes thinner layers to be used to bring the edges of the layers "
  6018. "closer together."
  6019. msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。"
  6020. #: fdmprinter.def.json
  6021. msgctxt "wall_overhang_angle label"
  6022. msgid "Overhanging Wall Angle"
  6023. msgstr "張り出し壁アングル"
  6024. #: fdmprinter.def.json
  6025. msgctxt "wall_overhang_angle description"
  6026. msgid ""
  6027. "Walls that overhang more than this angle will be printed using overhanging "
  6028. "wall settings. When the value is 90, no walls will be treated as "
  6029. "overhanging. Overhang that gets supported by support will not be treated as "
  6030. "overhang either."
  6031. msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。"
  6032. #: fdmprinter.def.json
  6033. msgctxt "wall_overhang_speed_factor label"
  6034. msgid "Overhanging Wall Speed"
  6035. msgstr "張り出し壁速度"
  6036. #: fdmprinter.def.json
  6037. msgctxt "wall_overhang_speed_factor description"
  6038. msgid ""
  6039. "Overhanging walls will be printed at this percentage of their normal print "
  6040. "speed."
  6041. msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。"
  6042. #: fdmprinter.def.json
  6043. msgctxt "bridge_settings_enabled label"
  6044. msgid "Enable Bridge Settings"
  6045. msgstr "ブリッジ設定を有効にする"
  6046. #: fdmprinter.def.json
  6047. msgctxt "bridge_settings_enabled description"
  6048. msgid ""
  6049. "Detect bridges and modify print speed, flow and fan settings while bridges "
  6050. "are printed."
  6051. msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。"
  6052. #: fdmprinter.def.json
  6053. msgctxt "bridge_wall_min_length label"
  6054. msgid "Minimum Bridge Wall Length"
  6055. msgstr "ブリッジ壁の最小長さ"
  6056. #: fdmprinter.def.json
  6057. msgctxt "bridge_wall_min_length description"
  6058. msgid ""
  6059. "Unsupported walls shorter than this will be printed using the normal wall "
  6060. "settings. Longer unsupported walls will be printed using the bridge wall "
  6061. "settings."
  6062. msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。"
  6063. #: fdmprinter.def.json
  6064. msgctxt "bridge_skin_support_threshold label"
  6065. msgid "Bridge Skin Support Threshold"
  6066. msgstr "ブリッジスキンサポートのしきい値"
  6067. #: fdmprinter.def.json
  6068. msgctxt "bridge_skin_support_threshold description"
  6069. msgid ""
  6070. "If a skin region is supported for less than this percentage of its area, "
  6071. "print it using the bridge settings. Otherwise it is printed using the normal "
  6072. "skin settings."
  6073. msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。"
  6074. #: fdmprinter.def.json
  6075. msgctxt "bridge_sparse_infill_max_density label"
  6076. msgid "Bridge Sparse Infill Max Density"
  6077. msgstr "ブリッジスパースインフィル最大密度"
  6078. #: fdmprinter.def.json
  6079. msgctxt "bridge_sparse_infill_max_density description"
  6080. msgid ""
  6081. "Maximum density of infill considered to be sparse. Skin over sparse infill "
  6082. "is considered to be unsupported and so may be treated as a bridge skin."
  6083. msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。"
  6084. #: fdmprinter.def.json
  6085. msgctxt "bridge_wall_coast label"
  6086. msgid "Bridge Wall Coasting"
  6087. msgstr "ブリッジ壁コースティング"
  6088. #: fdmprinter.def.json
  6089. msgctxt "bridge_wall_coast description"
  6090. msgid ""
  6091. "This controls the distance the extruder should coast immediately before a "
  6092. "bridge wall begins. Coasting before the bridge starts can reduce the "
  6093. "pressure in the nozzle and may produce a flatter bridge."
  6094. msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。"
  6095. #: fdmprinter.def.json
  6096. msgctxt "bridge_wall_speed label"
  6097. msgid "Bridge Wall Speed"
  6098. msgstr "ブリッジ壁速度"
  6099. #: fdmprinter.def.json
  6100. msgctxt "bridge_wall_speed description"
  6101. msgid "The speed at which the bridge walls are printed."
  6102. msgstr "ブリッジ壁を印刷する速度。"
  6103. #: fdmprinter.def.json
  6104. msgctxt "bridge_wall_material_flow label"
  6105. msgid "Bridge Wall Flow"
  6106. msgstr "ブリッジ壁フロー"
  6107. #: fdmprinter.def.json
  6108. msgctxt "bridge_wall_material_flow description"
  6109. msgid ""
  6110. "When printing bridge walls, the amount of material extruded is multiplied by "
  6111. "this value."
  6112. msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。"
  6113. #: fdmprinter.def.json
  6114. msgctxt "bridge_skin_speed label"
  6115. msgid "Bridge Skin Speed"
  6116. msgstr "ブリッジスキン速度"
  6117. #: fdmprinter.def.json
  6118. msgctxt "bridge_skin_speed description"
  6119. msgid "The speed at which bridge skin regions are printed."
  6120. msgstr "ブリッジスキン領域が印刷される速度。"
  6121. #: fdmprinter.def.json
  6122. msgctxt "bridge_skin_material_flow label"
  6123. msgid "Bridge Skin Flow"
  6124. msgstr "ブリッジスキンフロー"
  6125. #: fdmprinter.def.json
  6126. msgctxt "bridge_skin_material_flow description"
  6127. msgid ""
  6128. "When printing bridge skin regions, the amount of material extruded is "
  6129. "multiplied by this value."
  6130. msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。"
  6131. #: fdmprinter.def.json
  6132. msgctxt "bridge_skin_density label"
  6133. msgid "Bridge Skin Density"
  6134. msgstr "ブリッジスキンの密度"
  6135. #: fdmprinter.def.json
  6136. msgctxt "bridge_skin_density description"
  6137. msgid ""
  6138. "The density of the bridge skin layer. Values less than 100 will increase the "
  6139. "gaps between the skin lines."
  6140. msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  6141. #: fdmprinter.def.json
  6142. msgctxt "bridge_fan_speed label"
  6143. msgid "Bridge Fan Speed"
  6144. msgstr "ブリッジファン速度"
  6145. #: fdmprinter.def.json
  6146. msgctxt "bridge_fan_speed description"
  6147. msgid "Percentage fan speed to use when printing bridge walls and skin."
  6148. msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。"
  6149. #: fdmprinter.def.json
  6150. msgctxt "bridge_enable_more_layers label"
  6151. msgid "Bridge Has Multiple Layers"
  6152. msgstr "ブリッジを構成する多重レイヤー"
  6153. #: fdmprinter.def.json
  6154. msgctxt "bridge_enable_more_layers description"
  6155. msgid ""
  6156. "If enabled, the second and third layers above the air are printed using the "
  6157. "following settings. Otherwise, those layers are printed using the normal "
  6158. "settings."
  6159. msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。"
  6160. #: fdmprinter.def.json
  6161. msgctxt "bridge_skin_speed_2 label"
  6162. msgid "Bridge Second Skin Speed"
  6163. msgstr "ブリッジセカンドスキンの速度"
  6164. #: fdmprinter.def.json
  6165. msgctxt "bridge_skin_speed_2 description"
  6166. msgid "Print speed to use when printing the second bridge skin layer."
  6167. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  6168. #: fdmprinter.def.json
  6169. msgctxt "bridge_skin_material_flow_2 label"
  6170. msgid "Bridge Second Skin Flow"
  6171. msgstr "ブリッジセカンドスキンのフロー"
  6172. #: fdmprinter.def.json
  6173. msgctxt "bridge_skin_material_flow_2 description"
  6174. msgid ""
  6175. "When printing the second bridge skin layer, the amount of material extruded "
  6176. "is multiplied by this value."
  6177. msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  6178. #: fdmprinter.def.json
  6179. msgctxt "bridge_skin_density_2 label"
  6180. msgid "Bridge Second Skin Density"
  6181. msgstr "ブリッジセカンドスキンの密度"
  6182. #: fdmprinter.def.json
  6183. msgctxt "bridge_skin_density_2 description"
  6184. msgid ""
  6185. "The density of the second bridge skin layer. Values less than 100 will "
  6186. "increase the gaps between the skin lines."
  6187. msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  6188. #: fdmprinter.def.json
  6189. msgctxt "bridge_fan_speed_2 label"
  6190. msgid "Bridge Second Skin Fan Speed"
  6191. msgstr "ブリッジセカンドスキンのファン速度"
  6192. #: fdmprinter.def.json
  6193. msgctxt "bridge_fan_speed_2 description"
  6194. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  6195. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  6196. #: fdmprinter.def.json
  6197. msgctxt "bridge_skin_speed_3 label"
  6198. msgid "Bridge Third Skin Speed"
  6199. msgstr "ブリッジサードスキンの速度"
  6200. #: fdmprinter.def.json
  6201. msgctxt "bridge_skin_speed_3 description"
  6202. msgid "Print speed to use when printing the third bridge skin layer."
  6203. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  6204. #: fdmprinter.def.json
  6205. msgctxt "bridge_skin_material_flow_3 label"
  6206. msgid "Bridge Third Skin Flow"
  6207. msgstr "ブリッジサードスキンのフロー"
  6208. #: fdmprinter.def.json
  6209. msgctxt "bridge_skin_material_flow_3 description"
  6210. msgid ""
  6211. "When printing the third bridge skin layer, the amount of material extruded "
  6212. "is multiplied by this value."
  6213. msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  6214. #: fdmprinter.def.json
  6215. msgctxt "bridge_skin_density_3 label"
  6216. msgid "Bridge Third Skin Density"
  6217. msgstr "ブリッジサードスキンの密度"
  6218. #: fdmprinter.def.json
  6219. msgctxt "bridge_skin_density_3 description"
  6220. msgid ""
  6221. "The density of the third bridge skin layer. Values less than 100 will "
  6222. "increase the gaps between the skin lines."
  6223. msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  6224. #: fdmprinter.def.json
  6225. msgctxt "bridge_fan_speed_3 label"
  6226. msgid "Bridge Third Skin Fan Speed"
  6227. msgstr "ブリッジサードスキンのファン速度"
  6228. #: fdmprinter.def.json
  6229. msgctxt "bridge_fan_speed_3 description"
  6230. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  6231. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  6232. #: fdmprinter.def.json
  6233. msgctxt "clean_between_layers label"
  6234. msgid "Wipe Nozzle Between Layers"
  6235. msgstr "レイヤー間のノズル拭き取り"
  6236. #: fdmprinter.def.json
  6237. msgctxt "clean_between_layers description"
  6238. msgid ""
  6239. "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). "
  6240. "Enabling this setting could influence behavior of retract at layer change. "
  6241. "Please use Wipe Retraction settings to control retraction at layers where "
  6242. "the wipe script will be working."
  6243. msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。"
  6244. #: fdmprinter.def.json
  6245. msgctxt "max_extrusion_before_wipe label"
  6246. msgid "Material Volume Between Wipes"
  6247. msgstr "ワイプ間の材料の量"
  6248. #: fdmprinter.def.json
  6249. msgctxt "max_extrusion_before_wipe description"
  6250. msgid ""
  6251. "Maximum material that can be extruded before another nozzle wipe is "
  6252. "initiated. If this value is less than the volume of material required in a "
  6253. "layer, the setting has no effect in this layer, i.e. it is limited to one "
  6254. "wipe per layer."
  6255. msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。"
  6256. #: fdmprinter.def.json
  6257. msgctxt "wipe_retraction_enable label"
  6258. msgid "Wipe Retraction Enable"
  6259. msgstr "ワイプリトラクト有効"
  6260. #: fdmprinter.def.json
  6261. msgctxt "wipe_retraction_enable description"
  6262. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  6263. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  6264. #: fdmprinter.def.json
  6265. msgctxt "wipe_retraction_amount label"
  6266. msgid "Wipe Retraction Distance"
  6267. msgstr "ワイプリトラクト無効"
  6268. #: fdmprinter.def.json
  6269. msgctxt "wipe_retraction_amount description"
  6270. msgid ""
  6271. "Amount to retract the filament so it does not ooze during the wipe sequence."
  6272. msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。"
  6273. #: fdmprinter.def.json
  6274. msgctxt "wipe_retraction_extra_prime_amount label"
  6275. msgid "Wipe Retraction Extra Prime Amount"
  6276. msgstr "ワイプ引き戻し時の余分押し戻し量"
  6277. #: fdmprinter.def.json
  6278. msgctxt "wipe_retraction_extra_prime_amount description"
  6279. msgid ""
  6280. "Some material can ooze away during a wipe travel moves, which can be "
  6281. "compensated for here."
  6282. msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。"
  6283. #: fdmprinter.def.json
  6284. msgctxt "wipe_retraction_speed label"
  6285. msgid "Wipe Retraction Speed"
  6286. msgstr "ワイプリトラクト速度"
  6287. #: fdmprinter.def.json
  6288. msgctxt "wipe_retraction_speed description"
  6289. msgid ""
  6290. "The speed at which the filament is retracted and primed during a wipe "
  6291. "retraction move."
  6292. msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。"
  6293. #: fdmprinter.def.json
  6294. msgctxt "wipe_retraction_retract_speed label"
  6295. msgid "Wipe Retraction Retract Speed"
  6296. msgstr "ワイプ引き戻し速度"
  6297. #: fdmprinter.def.json
  6298. msgctxt "wipe_retraction_retract_speed description"
  6299. msgid ""
  6300. "The speed at which the filament is retracted during a wipe retraction move."
  6301. msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。"
  6302. #: fdmprinter.def.json
  6303. msgctxt "wipe_retraction_prime_speed label"
  6304. msgid "Wipe Retraction Prime Speed"
  6305. msgstr "ワイプ引き戻し下準備速度"
  6306. #: fdmprinter.def.json
  6307. msgctxt "wipe_retraction_prime_speed description"
  6308. msgid ""
  6309. "The speed at which the filament is primed during a wipe retraction move."
  6310. msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。"
  6311. #: fdmprinter.def.json
  6312. msgctxt "wipe_pause label"
  6313. msgid "Wipe Pause"
  6314. msgstr "ワイプ一時停止"
  6315. #: fdmprinter.def.json
  6316. msgctxt "wipe_pause description"
  6317. msgid "Pause after the unretract."
  6318. msgstr "引き戻し前に一時停止します。"
  6319. #: fdmprinter.def.json
  6320. msgctxt "wipe_hop_enable label"
  6321. msgid "Wipe Z Hop"
  6322. msgstr "ワイプZホップ"
  6323. #: fdmprinter.def.json
  6324. msgctxt "wipe_hop_enable description"
  6325. msgid ""
  6326. "When wiping, the build plate is lowered to create clearance between the "
  6327. "nozzle and the print. It prevents the nozzle from hitting the print during "
  6328. "travel moves, reducing the chance to knock the print from the build plate."
  6329. msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。"
  6330. #: fdmprinter.def.json
  6331. msgctxt "wipe_hop_amount label"
  6332. msgid "Wipe Z Hop Height"
  6333. msgstr "ワイプZホップ高さ"
  6334. #: fdmprinter.def.json
  6335. msgctxt "wipe_hop_amount description"
  6336. msgid "The height difference when performing a Z Hop."
  6337. msgstr "Zホップを実行するときの高さ。"
  6338. #: fdmprinter.def.json
  6339. msgctxt "wipe_hop_speed label"
  6340. msgid "Wipe Hop Speed"
  6341. msgstr "ワイプホップ速度"
  6342. #: fdmprinter.def.json
  6343. msgctxt "wipe_hop_speed description"
  6344. msgid "Speed to move the z-axis during the hop."
  6345. msgstr "ホップ中に z 軸を移動する速度。"
  6346. #: fdmprinter.def.json
  6347. msgctxt "wipe_brush_pos_x label"
  6348. msgid "Wipe Brush X Position"
  6349. msgstr "ワイプブラシXの位置"
  6350. #: fdmprinter.def.json
  6351. msgctxt "wipe_brush_pos_x description"
  6352. msgid "X location where wipe script will start."
  6353. msgstr "ワイプスクリプトを開始するX位置。"
  6354. #: fdmprinter.def.json
  6355. msgctxt "wipe_repeat_count label"
  6356. msgid "Wipe Repeat Count"
  6357. msgstr "ワイプ繰り返し回数"
  6358. #: fdmprinter.def.json
  6359. msgctxt "wipe_repeat_count description"
  6360. msgid "Number of times to move the nozzle across the brush."
  6361. msgstr "ブラシ全体をノズルが移動する回数。"
  6362. #: fdmprinter.def.json
  6363. msgctxt "wipe_move_distance label"
  6364. msgid "Wipe Move Distance"
  6365. msgstr "ワイプ移動距離"
  6366. #: fdmprinter.def.json
  6367. msgctxt "wipe_move_distance description"
  6368. msgid "The distance to move the head back and forth across the brush."
  6369. msgstr "ブラシ全体でヘッド前後に動かす距離。"
  6370. #: fdmprinter.def.json
  6371. msgctxt "small_hole_max_size label"
  6372. msgid "Small Hole Max Size"
  6373. msgstr "小さい穴の最大サイズ"
  6374. #: fdmprinter.def.json
  6375. msgctxt "small_hole_max_size description"
  6376. msgid ""
  6377. "Holes and part outlines with a diameter smaller than this will be printed "
  6378. "using Small Feature Speed."
  6379. msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。"
  6380. #: fdmprinter.def.json
  6381. msgctxt "small_feature_max_length label"
  6382. msgid "Small Feature Max Length"
  6383. msgstr "小型形体の最大長さ"
  6384. #: fdmprinter.def.json
  6385. msgctxt "small_feature_max_length description"
  6386. msgid ""
  6387. "Feature outlines that are shorter than this length will be printed using "
  6388. "Small Feature Speed."
  6389. msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。"
  6390. #: fdmprinter.def.json
  6391. msgctxt "small_feature_speed_factor label"
  6392. msgid "Small Feature Speed"
  6393. msgstr "Small Feature Speed"
  6394. #: fdmprinter.def.json
  6395. msgctxt "small_feature_speed_factor description"
  6396. msgid ""
  6397. "Small features will be printed at this percentage of their normal print "
  6398. "speed. Slower printing can help with adhesion and accuracy."
  6399. msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  6400. #: fdmprinter.def.json
  6401. msgctxt "small_feature_speed_factor_0 label"
  6402. msgid "Small Feature Initial Layer Speed"
  6403. msgstr "小型形体の初期レイヤー速度"
  6404. #: fdmprinter.def.json
  6405. msgctxt "small_feature_speed_factor_0 description"
  6406. msgid ""
  6407. "Small features on the first layer will be printed at this percentage of "
  6408. "their normal print speed. Slower printing can help with adhesion and "
  6409. "accuracy."
  6410. msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  6411. #: fdmprinter.def.json
  6412. msgctxt "material_alternate_walls label"
  6413. msgid "Alternate Wall Directions"
  6414. msgstr "ウォールの代替の向き"
  6415. #: fdmprinter.def.json
  6416. msgctxt "material_alternate_walls description"
  6417. msgid ""
  6418. "Alternate wall directions every other layer and inset. Useful for materials "
  6419. "that can build up stress, like for metal printing."
  6420. msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。"
  6421. #: fdmprinter.def.json
  6422. msgctxt "raft_remove_inside_corners label"
  6423. msgid "Remove Raft Inside Corners"
  6424. msgstr "ラフト内側コーナーの削除"
  6425. #: fdmprinter.def.json
  6426. msgctxt "raft_remove_inside_corners description"
  6427. msgid "Remove inside corners from the raft, causing the raft to become convex."
  6428. msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。"
  6429. #: fdmprinter.def.json
  6430. msgctxt "raft_base_wall_count label"
  6431. msgid "Raft Base Wall Count"
  6432. msgstr "ラフトベースウォール数"
  6433. #: fdmprinter.def.json
  6434. msgctxt "raft_base_wall_count description"
  6435. msgid ""
  6436. "The number of contours to print around the linear pattern in the base layer "
  6437. "of the raft."
  6438. msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。"
  6439. #: fdmprinter.def.json
  6440. msgctxt "command_line_settings label"
  6441. msgid "Command Line Settings"
  6442. msgstr "コマンドライン設定"
  6443. #: fdmprinter.def.json
  6444. msgctxt "command_line_settings description"
  6445. msgid ""
  6446. "Settings which are only used if CuraEngine isn't called from the Cura "
  6447. "frontend."
  6448. msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。"
  6449. #: fdmprinter.def.json
  6450. msgctxt "center_object label"
  6451. msgid "Center Object"
  6452. msgstr "オブジェクト中心配置"
  6453. #: fdmprinter.def.json
  6454. msgctxt "center_object description"
  6455. msgid ""
  6456. "Whether to center the object on the middle of the build platform (0,0), "
  6457. "instead of using the coordinate system in which the object was saved."
  6458. msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。"
  6459. #: fdmprinter.def.json
  6460. msgctxt "mesh_position_x label"
  6461. msgid "Mesh Position X"
  6462. msgstr "メッシュ位置X"
  6463. #: fdmprinter.def.json
  6464. msgctxt "mesh_position_x description"
  6465. msgid "Offset applied to the object in the x direction."
  6466. msgstr "オブジェクトの X 方向に適用されたオフセット。"
  6467. #: fdmprinter.def.json
  6468. msgctxt "mesh_position_y label"
  6469. msgid "Mesh Position Y"
  6470. msgstr "メッシュ位置Y"
  6471. #: fdmprinter.def.json
  6472. msgctxt "mesh_position_y description"
  6473. msgid "Offset applied to the object in the y direction."
  6474. msgstr "オブジェクトのY 方向適用されたオフセット。"
  6475. #: fdmprinter.def.json
  6476. msgctxt "mesh_position_z label"
  6477. msgid "Mesh Position Z"
  6478. msgstr "メッシュ位置Z"
  6479. #: fdmprinter.def.json
  6480. msgctxt "mesh_position_z description"
  6481. msgid ""
  6482. "Offset applied to the object in the z direction. With this you can perform "
  6483. "what was used to be called 'Object Sink'."
  6484. msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。"
  6485. #: fdmprinter.def.json
  6486. msgctxt "mesh_rotation_matrix label"
  6487. msgid "Mesh Rotation Matrix"
  6488. msgstr "メッシュ回転マトリックス"
  6489. #: fdmprinter.def.json
  6490. msgctxt "mesh_rotation_matrix description"
  6491. msgid ""
  6492. "Transformation matrix to be applied to the model when loading it from file."
  6493. msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。"
  6494. #~ msgctxt "machine_head_with_fans_polygon description"
  6495. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  6496. #~ msgstr "プリントヘッドの2Dシルエット(ファンキャップが含まれています)。"
  6497. #~ msgctxt "outer_inset_first label"
  6498. #~ msgid "Outer Before Inner Walls"
  6499. #~ msgstr "外壁優先"
  6500. #~ msgctxt "outer_inset_first description"
  6501. #~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  6502. #~ msgstr "有効にすると、壁は外側から内側に順番に印刷します。これは、ABSのような高粘度のプラスチックを使用する際、XとYの寸法精度を改善するのに役立ちます。しかし、特にオーバーハング時に、外面の印刷品質を低下させる可能性があります。"
  6503. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  6504. #~ msgid "Compensate Wall Overlaps"
  6505. #~ msgstr "壁補正"
  6506. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  6507. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  6508. #~ msgstr "すでに壁が設置されている部品の壁の流れを補正します。"
  6509. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  6510. #~ msgid "Compensate Outer Wall Overlaps"
  6511. #~ msgstr "外壁補正"
  6512. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  6513. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  6514. #~ msgstr "すでに壁が設置されている場所にプリントされている外壁の部分の流れを補う。"
  6515. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  6516. #~ msgid "Compensate Inner Wall Overlaps"
  6517. #~ msgstr "内壁補正"
  6518. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  6519. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  6520. #~ msgstr "すでに壁が設置されている場所にプリントされている内壁の部分の流れを補正します。"
  6521. #~ msgctxt "wall_min_flow label"
  6522. #~ msgid "Minimum Wall Flow"
  6523. #~ msgstr "最小壁フロー"
  6524. #~ msgctxt "wall_min_flow description"
  6525. #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  6526. #~ msgstr "ウォールラインに対する流れを最小割合にします。既存の壁に近い場合に、壁補正により壁の流れが減少します。壁の流れがこの値より低い場合は、移動に置き換えられます。この設定を使用する場合は、壁補正を有効にして、内装の前に外装を印刷する必要があります。"
  6527. #~ msgctxt "wall_min_flow_retract label"
  6528. #~ msgid "Prefer Retract"
  6529. #~ msgstr "引き戻し優先"
  6530. #~ msgctxt "wall_min_flow_retract description"
  6531. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  6532. #~ msgstr "有効にすると、フローが最小フローしきい値を下回っている壁を置き換える移動量より多い場合は、引き戻しを使用します。"
  6533. #~ msgctxt "fill_perimeter_gaps label"
  6534. #~ msgid "Fill Gaps Between Walls"
  6535. #~ msgstr "隙間充填"
  6536. #~ msgctxt "fill_perimeter_gaps description"
  6537. #~ msgid "Fills the gaps between walls where no walls fit."
  6538. #~ msgstr "壁が入らない壁の隙間を埋める。"
  6539. #~ msgctxt "fill_perimeter_gaps option nowhere"
  6540. #~ msgid "Nowhere"
  6541. #~ msgstr "対象外"
  6542. #~ msgctxt "fill_perimeter_gaps option everywhere"
  6543. #~ msgid "Everywhere"
  6544. #~ msgstr "全対象"
  6545. #~ msgctxt "filter_out_tiny_gaps label"
  6546. #~ msgid "Filter Out Tiny Gaps"
  6547. #~ msgstr "小さなギャップのフィルターアウト"
  6548. #~ msgctxt "filter_out_tiny_gaps description"
  6549. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  6550. #~ msgstr "モデル外部の塊を減らすために小さなギャップをフィルターアウトします。"
  6551. #~ msgctxt "speed_equalize_flow_enabled label"
  6552. #~ msgid "Equalize Filament Flow"
  6553. #~ msgstr "フィラメント均一速度"
  6554. #~ msgctxt "speed_equalize_flow_enabled description"
  6555. #~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  6556. #~ msgstr "通常より細いラインを高速プリントするので、時間当たりのフィラメント押出量は同じです。薄いモデル部品は、設定よりも細い線幅でプリントすることが要求される場合があり、本設定はそのような線の速度を変更します。"
  6557. #~ msgctxt "speed_equalize_flow_max label"
  6558. #~ msgid "Maximum Speed for Flow Equalization"
  6559. #~ msgstr "均一フローの最大速度"
  6560. #~ msgctxt "speed_equalize_flow_max description"
  6561. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  6562. #~ msgstr "吐出を均一にするための調整時の最高スピード。"
  6563. #~ msgctxt "machine_start_gcode description"
  6564. #~ msgid "G-code commands to be executed at the very start - separated by \\n."
  6565. #~ msgstr "最初に実行するG-codeコマンドは、\\n で区切ります。"
  6566. #~ msgctxt "machine_end_gcode description"
  6567. #~ msgid "G-code commands to be executed at the very end - separated by \\n."
  6568. #~ msgstr "最後に実行するG-codeコマンドは、\\n で区切ります。"
  6569. #~ msgctxt "machine_max_feedrate_e label"
  6570. #~ msgid "Maximum Feedrate"
  6571. #~ msgstr "最大送り速度"
  6572. #~ msgctxt "infill_pattern description"
  6573. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model."
  6574. #~ msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の(内部)ルーフのみを支えることで、インフィルを最低限にするよう試みます。そのため、インフィル率はモデル内で支える必要がある物の1つ下のレイヤーでのみ有効です。"
  6575. #~ msgctxt "lightning_infill_prune_angle description"
  6576. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness."
  6577. #~ msgstr "ツリーの外側末端の刈り込みに関して、ライトニングインフィルレイヤーとそのすぐ上にあるレイヤーとの間に存在することのできる差異です。厚さを考慮して角度で指定されます。"
  6578. #~ msgctxt "lightning_infill_straightening_angle description"
  6579. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness."
  6580. #~ msgstr "ツリーのスムージングに関して、ライトニングインフィルレイヤーとそのすぐ上にあるレイヤーとの間に存在することのできる差異です。厚さを考慮して角度で指定されます。"
  6581. #~ msgctxt "infill_pattern description"
  6582. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  6583. #~ msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。ジャイロイド、キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。"
  6584. # msgstr "最小のモールド幅"
  6585. #~ msgctxt "mold_width description"
  6586. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  6587. #~ msgstr "型用とモデルの外側の最短距離。"
  6588. #~ msgctxt "machine_steps_per_mm_e description"
  6589. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  6590. #~ msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。"
  6591. #~ msgctxt "retraction_combing_max_distance description"
  6592. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  6593. #~ msgstr "ゼロ以外の場合、この距離より移動量が多い場合は、引き戻しを使用します。"
  6594. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  6595. #~ msgid "Apply the extruder offset to the coordinate system."
  6596. #~ msgstr "エクストルーダーのオフセットを座標システムに適用します。"
  6597. #~ msgctxt "shell label"
  6598. #~ msgid "Shell"
  6599. #~ msgstr "外郭"
  6600. #~ msgctxt "max_skin_angle_for_expansion description"
  6601. #~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  6602. #~ msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面、その表面のスキンはを拡大しません。これは、モデルのサーフェスに近い垂直斜面がある場合に作成される狭いスキン領域の拡大を回避します。0 ° の角度は水平方向、90 ° の角度が垂直方向です。"
  6603. #~ msgctxt "speed_layer_0 description"
  6604. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  6605. #~ msgstr "一層目での速度。ビルトプレートへの接着を向上するため低速を推奨します。"
  6606. #~ msgctxt "infill_mesh_order description"
  6607. #~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  6608. #~ msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが低いメッシュの設定になります。順序が高いインフィルメッシュは、順序が低いインフィルメッシュのインフィルと通常のメッシュを変更します。"
  6609. #~ msgctxt "material_bed_temperature description"
  6610. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  6611. #~ msgstr "加熱式ビルドプレート温度。これが 0 の場合、ベッド温度は調整されません。"
  6612. #~ msgctxt "material_bed_temperature_layer_0 description"
  6613. #~ msgid "The temperature used for the heated build plate at the first layer."
  6614. #~ msgstr "最初のレイヤー印刷時のビルドプレートの温度。"
  6615. #~ msgctxt "material_shrinkage_percentage label"
  6616. #~ msgid "Shrinkage Ratio"
  6617. #~ msgstr "収縮率"
  6618. #~ msgctxt "material_shrinkage_percentage description"
  6619. #~ msgid "Shrinkage ratio in percentage."
  6620. #~ msgstr "収縮率をパーセントで示す。"
  6621. #~ msgctxt "infill_mesh_order description"
  6622. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  6623. #~ msgstr "ボリュームの重なりが生じた場合のこのメッシュの優先度を決定します。複数のメッシュがあるエリアでは、ランクが低いメッシュが優先されます。順序が高いインフィルメッシュは、順序が低いインフィルメッシュのインフィルと通常のメッシュを変更します。"
  6624. #~ msgctxt "print_sequence description"
  6625. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
  6626. #~ msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。 "
  6627. #~ msgctxt "infill_mesh_order label"
  6628. #~ msgid "Infill Mesh Order"
  6629. #~ msgstr "インフィルメッシュの順序"
  6630. #~ msgctxt "infill_mesh_order description"
  6631. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  6632. #~ msgstr "他のインフィルメッシュのインフィル内にあるインフィルメッシュを決定します。優先度の高いのインフィルメッシュは、低いメッシュと通常のメッシュのインフィルを変更します。"
  6633. #~ msgctxt "support_tree_enable label"
  6634. #~ msgid "Tree Support"
  6635. #~ msgstr "ツリーサポート"
  6636. #~ msgctxt "support_tree_enable description"
  6637. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  6638. #~ msgstr "プリントを支えるために枝のついた木のようなサポートを生成します。材料とプリント時間が減る可能性がありますが、スライス時間が大きく増加します。"
  6639. #~ msgctxt "slicing_tolerance description"
  6640. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  6641. #~ msgstr "表面を斜めにスライスする方法を指定します。レイヤーの領域は、レイヤーの中央がサーフェス(中央)と交差する位置に基づいて生成できます。また、各層は、レイヤーの高さを通してボリュームの内側に収まる領域を持つ(排他)か、またはレイヤー内の任意の場所内に収まる領域を持っています(包括)。排他は最も細かく、包括は最もフィットし、中間は時間がかかります。"
  6642. #~ msgctxt "spaghetti_infill_enabled label"
  6643. #~ msgid "Spaghetti Infill"
  6644. #~ msgstr "スパゲッティインフィル"
  6645. # msgstr "スパゲッティ・インフィル"
  6646. #~ msgctxt "spaghetti_infill_enabled description"
  6647. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  6648. #~ msgstr "時々インフィルを印刷してください、オブジェクト内でフィラメントがぐちゃぐちゃに巻き上がります。印刷時間は短縮できるが、フィラメントの動きは予想不可能となります。"
  6649. #~ msgctxt "spaghetti_infill_stepped label"
  6650. #~ msgid "Spaghetti Infill Stepping"
  6651. #~ msgstr "スパゲッティインフィルの手順"
  6652. # msgstr "スパゲッティのインフィルステッピング"
  6653. #~ msgctxt "spaghetti_infill_stepped description"
  6654. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  6655. #~ msgstr "スパゲッティインフィルをプリントするか印刷の最後に全てのインフィルフィラメントを押し出すか。"
  6656. #~ msgctxt "spaghetti_max_infill_angle label"
  6657. #~ msgid "Spaghetti Maximum Infill Angle"
  6658. #~ msgstr "スパゲッティインフィル最大角度"
  6659. # msgstr "スパゲッティの最大のインフィルの角度"
  6660. #~ msgctxt "spaghetti_max_infill_angle description"
  6661. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  6662. #~ msgstr "最大角度 w.r.t.-印刷範囲内がスパゲッティ・インフィルで埋まるZ軸。この値を下げることでモデルの斜め部分にインフィルが各レイヤーに付着します。"
  6663. #~ msgctxt "spaghetti_max_height label"
  6664. #~ msgid "Spaghetti Infill Maximum Height"
  6665. #~ msgstr "スパゲッティインフィル最大高さ"
  6666. # msgstr "スパゲッティインフィルの最大高さ"
  6667. #~ msgctxt "spaghetti_max_height description"
  6668. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  6669. #~ msgstr "内部空間の上から結合して埋め込むことができる最大の高さ。"
  6670. #~ msgctxt "spaghetti_inset label"
  6671. #~ msgid "Spaghetti Inset"
  6672. #~ msgstr "スパゲッティインフィルのオフセット"
  6673. # msgstr "スパゲティをセットする"
  6674. #~ msgctxt "spaghetti_inset description"
  6675. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  6676. #~ msgstr "スパゲッティ・インフィルがプリントされる壁からのオフセット。"
  6677. #~ msgctxt "spaghetti_flow label"
  6678. #~ msgid "Spaghetti Flow"
  6679. #~ msgstr "スパゲッティインフィルフロー"
  6680. # msgstr "スパゲッティのフロー"
  6681. #~ msgctxt "spaghetti_flow description"
  6682. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  6683. #~ msgstr "スパゲッティ・インフィルの密度を調整します。インフィルの密度は、行間枠のパターンを決めるだけで、スパゲッティ・インフィルの押出量は制御しないことにご注意ください。"
  6684. #~ msgctxt "spaghetti_infill_extra_volume label"
  6685. #~ msgid "Spaghetti Infill Extra Volume"
  6686. #~ msgstr "スパゲッティインフィル余剰調整"
  6687. # msgstr "スパゲッティ・インフィルの余分量"
  6688. #~ msgctxt "spaghetti_infill_extra_volume description"
  6689. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  6690. #~ msgstr "スパゲッティをプリントする際に毎回行なう吐出量の調整。"
  6691. # msgstr "マテリアルGUID"
  6692. #~ msgctxt "material_guid description"
  6693. #~ msgid "GUID of the material. This is set automatically. "
  6694. #~ msgstr "マテリアルのGUID。これは自動的に設定されます。 "
  6695. #~ msgctxt "machine_filament_park_distance label"
  6696. #~ msgid "Filament Park Distance"
  6697. #~ msgstr "フィラメント留め位置"
  6698. #~ msgctxt "machine_filament_park_distance description"
  6699. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  6700. #~ msgstr "エクストルーダーが使用していない時、フィラメントを留めている場所からノズルまでの距離。"
  6701. #~ msgctxt "material_flush_purge_speed description"
  6702. #~ msgid "Material Station internal value"
  6703. #~ msgstr "Material Station内部値"
  6704. #~ msgctxt "material_flush_purge_length description"
  6705. #~ msgid "Material Station internal value"
  6706. #~ msgstr "Material Station内部値"
  6707. #~ msgctxt "material_end_of_filament_purge_speed label"
  6708. #~ msgid "End Of Filament Purge Speed"
  6709. #~ msgstr "フィラメント端パージ速度"
  6710. #~ msgctxt "material_end_of_filament_purge_speed description"
  6711. #~ msgid "Material Station internal value"
  6712. #~ msgstr "Material Station内部値"
  6713. #~ msgctxt "material_end_of_filament_purge_length label"
  6714. #~ msgid "End Of Filament Purge Length"
  6715. #~ msgstr "フィラメント端パージ長さ"
  6716. #~ msgctxt "material_end_of_filament_purge_length description"
  6717. #~ msgid "Material Station internal value"
  6718. #~ msgstr "Material Station内部値"
  6719. #~ msgctxt "material_maximum_park_duration description"
  6720. #~ msgid "Material Station internal value"
  6721. #~ msgstr "Material Station内部値"
  6722. #~ msgctxt "material_no_load_move_factor description"
  6723. #~ msgid "Material Station internal value"
  6724. #~ msgstr "Material Station内部値"
  6725. #~ msgctxt "retraction_enable description"
  6726. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  6727. #~ msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。 "
  6728. #~ msgctxt "support_xy_distance_overhang description"
  6729. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  6730. #~ msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。 "
  6731. #~ msgctxt "meshfix description"
  6732. #~ msgid "category_fixes"
  6733. #~ msgstr "カテゴリー_メッシュ修正"
  6734. #~ msgctxt "blackmagic description"
  6735. #~ msgid "category_blackmagic"
  6736. #~ msgstr "カテゴリー_ブラックマジック"
  6737. #~ msgctxt "experimental description"
  6738. #~ msgid "experimental!"
  6739. #~ msgstr "実験的!"
  6740. #~ msgctxt "machine_head_polygon label"
  6741. #~ msgid "Machine Head Polygon"
  6742. #~ msgstr "プリントヘッドポリゴン"
  6743. #~ msgctxt "machine_head_polygon description"
  6744. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  6745. #~ msgstr "プリントヘッドの2Dシルエット(ファンキャップは除く)。"
  6746. #~ msgctxt "print_sequence description"
  6747. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  6748. #~ msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。造形物の間にヘッドが通るだけのスペースがある場合のみ、一つずつ印刷する事が出来ます。"
  6749. #~ msgctxt "support_tree_wall_thickness label"
  6750. #~ msgid "Tree Support Wall Thickness"
  6751. #~ msgstr "ツリーサポート壁厚"
  6752. #~ msgctxt "support_tree_wall_thickness description"
  6753. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  6754. #~ msgstr "ツリーサポートの枝の壁の厚さ。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
  6755. #~ msgctxt "support_tree_wall_count label"
  6756. #~ msgid "Tree Support Wall Line Count"
  6757. #~ msgstr "ツリーサポートウォールライン数"
  6758. #~ msgctxt "support_tree_wall_count description"
  6759. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  6760. #~ msgstr "ツリーサポートの枝の壁の数。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
  6761. #~ msgctxt "clean_between_layers description"
  6762. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  6763. #~ msgstr "レイヤー間にノズル拭き取り G-Code を含むかどうか指定します。この設定を有効にすると、レイヤ変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤでの押し戻しを制御するには、ワイプリトラクト設定を使用してください。"
  6764. #~ msgctxt "max_extrusion_before_wipe description"
  6765. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  6766. #~ msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。"
  6767. #~ msgctxt "wipe_retraction_prime_speed label"
  6768. #~ msgid "Retraction Prime Speed"
  6769. #~ msgstr "押し戻し速度の取り消し"
  6770. #~ msgctxt "wipe_hop_enable label"
  6771. #~ msgid "Wipe Z Hop When Retracted"
  6772. #~ msgstr "引き戻し時のワイプZホップ"
  6773. #~ msgctxt "wipe_hop_enable description"
  6774. #~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  6775. #~ msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
  6776. #~ msgctxt "minimum_interface_area description"
  6777. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  6778. #~ msgstr "インターフェイスポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  6779. #~ msgctxt "minimum_roof_area description"
  6780. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  6781. #~ msgstr "サポートのルーフに対する最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  6782. #~ msgctxt "minimum_bottom_area description"
  6783. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  6784. #~ msgstr "サポートのフロアに対する最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  6785. #~ msgctxt "skin_alternate_rotation label"
  6786. #~ msgid "Alternate Skin Rotation"
  6787. #~ msgstr "レイヤー回転変更"
  6788. #~ msgctxt "skin_alternate_rotation description"
  6789. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  6790. #~ msgstr "トップ/ボトムのレイヤーが印刷される方向を変更します。通常、それらは斜めに印刷されます。この設定では、X方向のみとY方向のみが追加されます。"
  6791. #~ msgctxt "flow_rate_max_extrusion_offset label"
  6792. #~ msgid "Flow rate compensation max extrusion offset"
  6793. #~ msgstr "流量補正時の最大抽出オフセット"
  6794. #~ msgctxt "flow_rate_max_extrusion_offset description"
  6795. #~ msgid "The maximum distance in mm to compensate."
  6796. #~ msgstr "補正の最大距離をミリ単位で指定します。"
  6797. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  6798. #~ msgid "Flow rate compensation factor"
  6799. #~ msgstr "流量補正要因"
  6800. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  6801. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  6802. #~ msgstr "流量を距離に変換する際の要因。"
  6803. #~ msgctxt "adaptive_layer_height_threshold label"
  6804. #~ msgid "Adaptive Layers Threshold"
  6805. #~ msgstr "適応レイヤーしきい値"
  6806. #~ msgctxt "adaptive_layer_height_threshold description"
  6807. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  6808. #~ msgstr "小さいレイヤーを使用するかどうかの閾値。この値が、レイヤー中の最も急な斜面のタンジェントと比較されます。"
  6809. #~ msgctxt "wall_overhang_angle description"
  6810. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  6811. #~ msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用して印刷されます。値が 90 の場合は、オーバーハング壁として処理されません。"
  6812. #~ msgctxt "small_feature_speed_factor description"
  6813. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  6814. #~ msgstr "小型形体は通常の印刷速度よりこの割合で印刷されます。低速の印刷によって、接着と精度が向上します。"
  6815. #~ msgctxt "small_feature_speed_factor_0 label"
  6816. #~ msgid "First Layer Speed"
  6817. #~ msgstr "最初のレイヤー速度"
  6818. #~ msgctxt "small_feature_speed_factor_0 description"
  6819. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  6820. #~ msgstr "小型形体の最初のレイヤーは通常の印刷速度よりこの割合で印刷されます。低速の印刷によって、接着と精度が向上します。"
  6821. # msgstr "アイロンを有効にする"
  6822. #~ msgctxt "ironing_enabled description"
  6823. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  6824. #~ msgstr "ノズルから吐出せずに上部表面を再度動く機能。表面を溶かしてよりスムースにします。"
  6825. #~ msgctxt "start_layers_at_same_position label"
  6826. #~ msgid "Start Layers with the Same Part"
  6827. #~ msgstr "同じパーツでレイヤーを開始する"
  6828. #, fuzzy
  6829. #~ msgctxt "start_layers_at_same_position description"
  6830. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  6831. #~ msgstr "各レイヤーの印刷は決まった場所近い距離のポイントにて印刷を始めます。そのため、前のレイヤーが終わった部分から新しいレイヤーのプリントを開始しません。これによりオーバーハングや小さなパーツの印刷改善されますが、その代わり印刷時間が長くなります。"
  6832. #~ msgctxt "support_infill_angles description"
  6833. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  6834. #~ msgstr "対応するインフィルラインの向きです。サポートインフィルパターンは平面で回転します。"
  6835. #~ msgctxt "meshfix_maximum_deviation description"
  6836. #~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller."
  6837. #~ msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると、印刷の精度は低くなりますが、g-code は小さくなります。"
  6838. #~ msgctxt "machine_gcode_flavor label"
  6839. #~ msgid "G-code Flavour"
  6840. #~ msgstr "G-codeフレーバー"
  6841. # msgstr "薄層のプレファレンス"
  6842. #~ msgctxt "z_seam_corner description"
  6843. #~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner."
  6844. #~ msgstr "モデル輪郭のコーナーがシーム(縫い目)の位置に影響するかどうかを制御します。 Noneはコーナーがシームの位置に影響を与えないことを意味します。 Seam(縫い目)を非表示にすると、内側のコーナーでシームが発生しやすくなります。 Seamを表示すると、外側の角にシームが発生する可能性が高くなります。 シームを隠す、または表示するを選択することにより、内側または外側コーナーでシームを発生させる可能性が高くなります。"
  6845. #~ msgctxt "skin_no_small_gaps_heuristic label"
  6846. #~ msgid "Ignore Small Z Gaps"
  6847. #~ msgstr "小さいZギャップは無視"
  6848. # msgstr "小さなZギャップを無視する"
  6849. #~ msgctxt "skin_no_small_gaps_heuristic description"
  6850. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  6851. #~ msgstr "モデルに垂直方向のギャップが小さくある場合、これらの狭いスペースにおいて上部および下部スキンを生成するために、約5%の計算時間が追加されます。そのような場合は、設定を無効にしてください。"
  6852. #~ msgctxt "build_volume_temperature description"
  6853. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  6854. #~ msgstr "造形に使用した温度。これがゼロ (0) の場合、造形温度は調整できません。"
  6855. #~ msgctxt "limit_support_retractions description"
  6856. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  6857. #~ msgstr "サポートからサポートに直線移動する場合は、引き戻しを省略します。この設定を有効にすると、印刷時間が短縮されますが、サポート構造内部の糸引きが多くなります。"
  6858. #~ msgctxt "max_feedrate_z_override label"
  6859. #~ msgid "Maximum Z Speed"
  6860. #~ msgstr "最大Z速度"
  6861. #~ msgctxt "max_feedrate_z_override description"
  6862. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  6863. #~ msgstr "ビルトプレートが移動する最高速度 この値を0に設定すると、ファームウェアのデフォルト値のZの最高速度が適用されます。"
  6864. #~ msgctxt "support_join_distance description"
  6865. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  6866. #~ msgstr "X/Y方向のサポート構造間の最大距離。別の構造がこの値より近づいた場合、構造は 1 つにマージします。"
  6867. #~ msgctxt "support_minimal_diameter label"
  6868. #~ msgid "Minimum Diameter"
  6869. #~ msgstr "最小直径"
  6870. #~ msgctxt "support_minimal_diameter description"
  6871. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  6872. #~ msgstr "特殊なサポート塔によって支持される小さな領域のX / Y方向の最小直径。"
  6873. #~ msgctxt "prime_tower_circular label"
  6874. #~ msgid "Circular Prime Tower"
  6875. #~ msgstr "円形プライムタワー"
  6876. #~ msgctxt "prime_tower_circular description"
  6877. #~ msgid "Make the prime tower as a circular shape."
  6878. #~ msgstr "プライムタワーを円形にします。"
  6879. #~ msgctxt "prime_tower_flow description"
  6880. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  6881. #~ msgstr "吐出量: マテリアルの吐出量はこの値の乗算で計算されます。"
  6882. # msgstr "滑らかならせん状の輪郭"
  6883. #~ msgctxt "smooth_spiralized_contours description"
  6884. #~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  6885. #~ msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます(Zシームは印刷物上でほとんどみえませんが、レイヤービューでは確認できます。)スムージングは​​細かいサーフェスの詳細をぼかす傾向があることに注意してください。"
  6886. #~ msgctxt "support_conical_enabled description"
  6887. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  6888. #~ msgstr "実験的機能:オーバーハング部分よりも底面のサポート領域を小さくする。"
  6889. #~ msgctxt "extruders_enabled_count label"
  6890. #~ msgid "Number of Extruders that are enabled"
  6891. #~ msgstr "有効なエクストルーダーの数"
  6892. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  6893. #~ msgid "Outer nozzle diameter"
  6894. #~ msgstr "ノズル外径"
  6895. #~ msgctxt "machine_nozzle_head_distance label"
  6896. #~ msgid "Nozzle length"
  6897. #~ msgstr "ノズル長さ"
  6898. #~ msgctxt "machine_nozzle_expansion_angle label"
  6899. #~ msgid "Nozzle angle"
  6900. #~ msgstr "ノズル角度"
  6901. #~ msgctxt "machine_heat_zone_length label"
  6902. #~ msgid "Heat zone length"
  6903. #~ msgstr "ノズル加熱長さ"
  6904. #~ msgctxt "machine_nozzle_heat_up_speed label"
  6905. #~ msgid "Heat up speed"
  6906. #~ msgstr "加熱速度"
  6907. #~ msgctxt "machine_nozzle_cool_down_speed label"
  6908. #~ msgid "Cool down speed"
  6909. #~ msgstr "冷却速度"
  6910. #~ msgctxt "machine_gcode_flavor label"
  6911. #~ msgid "G-code flavour"
  6912. #~ msgstr "G-codeフレーバー"
  6913. # msgstr "Repetier"
  6914. #~ msgctxt "machine_disallowed_areas label"
  6915. #~ msgid "Disallowed areas"
  6916. #~ msgstr "拒否エリア"
  6917. #~ msgctxt "machine_head_polygon label"
  6918. #~ msgid "Machine head polygon"
  6919. #~ msgstr "プリントヘッドポリゴン"
  6920. #~ msgctxt "machine_head_with_fans_polygon label"
  6921. #~ msgid "Machine head & Fan polygon"
  6922. #~ msgstr "プリントヘッドとファンポリゴン"
  6923. #~ msgctxt "gantry_height label"
  6924. #~ msgid "Gantry height"
  6925. #~ msgstr "ガントリー高さ"
  6926. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  6927. #~ msgid "Offset With Extruder"
  6928. #~ msgstr "エクストルーダーのオフセット"
  6929. #~ msgctxt "adaptive_layer_height_enabled label"
  6930. #~ msgid "Use adaptive layers"
  6931. #~ msgstr "適応レイヤーの使用"
  6932. #~ msgctxt "adaptive_layer_height_variation label"
  6933. #~ msgid "Adaptive layers maximum variation"
  6934. #~ msgstr "適応レイヤー最大差分"
  6935. #~ msgctxt "adaptive_layer_height_variation_step label"
  6936. #~ msgid "Adaptive layers variation step size"
  6937. #~ msgstr "適応レイヤー差分ステップサイズ"
  6938. #~ msgctxt "adaptive_layer_height_threshold label"
  6939. #~ msgid "Adaptive layers threshold"
  6940. #~ msgstr "適応レイヤー閾値"
  6941. #~ msgctxt "skin_overlap description"
  6942. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  6943. #~ msgstr "スキンと壁のオーバーラップ量 (スキンライン幅に対する%)。少しのオーバーラップによって壁がスキンにしっかりつながります。これは、スキンライン幅の平均ライン幅と最内壁の%です。"
  6944. # msgstr "スキンオーバーラップ"
  6945. #~ msgctxt "skin_overlap_mm description"
  6946. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  6947. #~ msgstr "スキンと壁の間の交差した量 わずかなオーバーラップによって壁がスキンにしっかりつながります。"
  6948. #~ msgctxt "switch_extruder_retraction_amount description"
  6949. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  6950. #~ msgstr "引き込み量:引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
  6951. #~ msgctxt "retraction_combing description"
  6952. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  6953. #~ msgstr "コーミングは、移動時に印刷済みエリア内にノズルを保持します。この結果、移動距離が長くなりますが、引き戻しの必要性が軽減されます。コーミングがオフの場合は、材料を引き戻して、ノズルを次のポイントまで直線に移動します。コーミングが上層/底層スキンエリアを超えずに、インフィル内のみコーミングするようにできます。「インフィル内」オプションは、Cura の旧版の「スキン内にない」オプションと全く同じ動作をします。"
  6954. #~ msgctxt "connect_skin_polygons description"
  6955. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  6956. #~ msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。"
  6957. #~ msgctxt "infill_pattern description"
  6958. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  6959. #~ msgstr "印刷用インフィル材料のパターン。代替層のラインとジグザグの面詰めスワップ方向、材料コストを削減します。グリッド、トライアングル、トライ六角、キュービック、オクテット、クォーターキュービック、クロスと同心円のパターンは、すべてのレイヤーを完全に印刷されます。キュービック、クォーターキュービック、オクテットのインフィルは、各レイヤーを変更して各方向の強度をより均等な分布にします。"
  6960. # msgstr "同心円"
  6961. #~ msgctxt "infill_pattern option concentric_3d"
  6962. #~ msgid "Concentric 3D"
  6963. #~ msgstr "3D同心円"
  6964. #~ msgctxt "retraction_combing description"
  6965. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  6966. #~ msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避します。"
  6967. #~ msgctxt "support_pattern option concentric_3d"
  6968. #~ msgid "Concentric 3D"
  6969. #~ msgstr "3D同心円"
  6970. #~ msgctxt "support_interface_pattern option concentric_3d"
  6971. #~ msgid "Concentric 3D"
  6972. #~ msgstr "3D同心円"
  6973. # msgstr "同心"
  6974. #~ msgctxt "support_roof_pattern option concentric_3d"
  6975. #~ msgid "Concentric 3D"
  6976. #~ msgstr "3D同心円"
  6977. # msgstr "同心円"
  6978. #~ msgctxt "support_bottom_pattern option concentric_3d"
  6979. #~ msgid "Concentric 3D"
  6980. #~ msgstr "3D同心円"
  6981. #~ msgctxt "raft_base_line_spacing label"
  6982. #~ msgid "Raft Line Spacing"
  6983. #~ msgstr "ラフトラインスペース"
  6984. #~ msgctxt "prime_tower_wall_thickness label"
  6985. #~ msgid "Prime Tower Thickness"
  6986. #~ msgstr "プライムタワーの厚さ"
  6987. #~ msgctxt "prime_tower_wall_thickness description"
  6988. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  6989. #~ msgstr "中空プライムタワーの厚さ。プライムタワーの半分を超える厚さは、密集したプライムタワーになります。"
  6990. #~ msgctxt "dual_pre_wipe label"
  6991. #~ msgid "Wipe Nozzle After Switch"
  6992. #~ msgstr "スイッチ後のノズル拭き取り"
  6993. #~ msgctxt "dual_pre_wipe description"
  6994. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  6995. #~ msgstr "エクストルーダーを切り替えた後、最初に印刷したものの上にあるノズルから滲み出したマテリアルを拭き取ってください。余分に出たマテリアルがプリントの表面品質に与える影響が最も少ない場所で、ゆっくりと払拭を行います。"
  6996. #~ msgctxt "prime_tower_purge_volume label"
  6997. #~ msgid "Prime Tower Purge Volume"
  6998. #~ msgstr "プライムタワーのパージ量"
  6999. # msgstr "プライムタワーのパージ時のボリューム"
  7000. #~ msgctxt "prime_tower_purge_volume description"
  7001. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  7002. #~ msgstr "プライムタワーの上を拭くときにパージするフィラメントの量。パージは、ノズルの不活動時にじみ出たフィラメントを補修するため便利です。"
  7003. #~ msgctxt "bridge_wall_max_overhang label"
  7004. #~ msgid "Bridge Wall Max Overhang"
  7005. #~ msgstr "ブリッジ壁最大オーバーハング"
  7006. #~ msgctxt "bridge_wall_max_overhang description"
  7007. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  7008. #~ msgstr "ブリッジ設定でウォールを印刷する前に、壁の線の下の空気の領域で可能な最大幅。空気ギャップがこれより広い場合は、壁の線はブリッジ設定で印刷されます。それ以外は、通常の設定で印刷されます。この値より低い場合は、オーバーハング壁線がブリッジ設定で印刷されます。"
  7009. # msgstr "壁のプリントの順番を最適化する"
  7010. #~ msgctxt "optimize_wall_printing_order description"
  7011. #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization."
  7012. #~ msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。"
  7013. #~ msgctxt "retraction_combing option noskin"
  7014. #~ msgid "No Skin"
  7015. #~ msgstr "表面なし"
  7016. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  7017. #~ msgid "Alternate Cross 3D Pockets"
  7018. #~ msgstr "3Dクロスポケットの変更"
  7019. # msgstr "クロス3Dポケットと交差させる"
  7020. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  7021. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  7022. #~ msgstr "四方がクロスする、クロス3Dパターン交差時には半分のみポケットを適用し、パターンが接触している高さとポケットの位置にて交互します。"
  7023. #~ msgctxt "infill_hollow label"
  7024. #~ msgid "Hollow Out Objects"
  7025. #~ msgstr "オブジェクトの空洞化"
  7026. #~ msgctxt "infill_hollow description"
  7027. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  7028. #~ msgstr "すべてのインフィルを取り除き、オブジェクトの内部をサポート可能にします。"
  7029. #~ msgctxt "adaptive_layer_height_variation description"
  7030. #~ msgid "The maximum allowed height different from the base layer height in mm."
  7031. #~ msgstr "基準レイヤー高さと比較して許容される最大の高さ (mm)。"
  7032. #~ msgctxt "center_object label"
  7033. #~ msgid "Center object"
  7034. #~ msgstr "オブジェクト中心配置"
  7035. #~ msgctxt "mesh_position_x label"
  7036. #~ msgid "Mesh position x"
  7037. #~ msgstr "メッシュ位置X"
  7038. #~ msgctxt "mesh_position_y label"
  7039. #~ msgid "Mesh position y"
  7040. #~ msgstr "メッシュ位置Y"
  7041. #~ msgctxt "mesh_position_z label"
  7042. #~ msgid "Mesh position z"
  7043. #~ msgstr "メッシュ位置Z"
  7044. #~ msgctxt "machine_start_gcode label"
  7045. #~ msgid "Start GCode"
  7046. #~ msgstr "GCode開始"
  7047. # msgstr "GCodeを開始する"
  7048. #~ msgctxt "machine_start_gcode description"
  7049. #~ msgid ""
  7050. #~ "Gcode commands to be executed at the very start - separated by \n"
  7051. #~ "."
  7052. #~ msgstr ""
  7053. #~ "Gcodeのコマンドは −で始まり\n"
  7054. #~ "で区切られます。"
  7055. #~ msgctxt "machine_end_gcode label"
  7056. #~ msgid "End GCode"
  7057. #~ msgstr "GCode終了"
  7058. # msgstr "GCodeを終了する"
  7059. #~ msgctxt "machine_end_gcode description"
  7060. #~ msgid ""
  7061. #~ "Gcode commands to be executed at the very end - separated by \n"
  7062. #~ "."
  7063. #~ msgstr ""
  7064. #~ "Gcodeのコマンドは −で始まり\n"
  7065. #~ "で区切られます。"
  7066. #~ msgctxt "machine_gcode_flavor label"
  7067. #~ msgid "Gcode flavour"
  7068. #~ msgstr "Gcodeフレーバー"
  7069. #~ msgctxt "machine_gcode_flavor description"
  7070. #~ msgid "The type of gcode to be generated."
  7071. #~ msgstr "生成するGコードの種類"
  7072. #~ msgctxt "meshfix_keep_open_polygons description"
  7073. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  7074. #~ msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なGCodeを生成できない場合の最後の手段として使用する必要があります。"
  7075. # msgstr "相対エクストルージョン"
  7076. #~ msgctxt "relative_extrusion description"
  7077. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  7078. #~ msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、Gcodeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、Gcodeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。"
  7079. #~ msgctxt "infill_offset_x description"
  7080. #~ msgid "The infill pattern is offset this distance along the X axis."
  7081. #~ msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。"
  7082. #~ msgctxt "infill_offset_y description"
  7083. #~ msgid "The infill pattern is offset this distance along the Y axis."
  7084. #~ msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。"
  7085. # msgstr "インフィルのオーバーラップ率"
  7086. #~ msgctxt "infill_overlap description"
  7087. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  7088. #~ msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。"
  7089. #~ msgctxt "skin_overlap description"
  7090. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  7091. #~ msgstr "表面と壁の交わる量。ラインの幅の%で設定。少しの接触でしっかりと繋がります。表面と内壁の交わる量の平均値になります。"
  7092. #~ msgctxt "material_bed_temperature description"
  7093. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  7094. #~ msgstr "加熱式ビルドプレート温度。これが 0 の場合、ベッドは加熱しません。"
  7095. #~ msgctxt "infill_pattern description"
  7096. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  7097. #~ msgstr "印刷物のインフィルのパターン。線とジグザグのインフィルはレイヤーごとに交互に方向を変え、材料費を削減します。グリッド、三角形、キュービック、オクテット、クォーターキュービック、同心円のパターンは、すべてのレイヤーにて完全に印刷されます。キュービック、クォーターキュービック、オクテットのインフィルは各レイヤーごとに変化し、各方向の強度が均等になるように分布します。"
  7098. # msgstr "インフィルの線をつなげる"
  7099. #~ msgctxt "zig_zaggify_infill description"
  7100. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  7101. #~ msgstr "内壁の形状に沿った線を使用して、インフィルのパターンが内壁と接する端を接続します。この設定を有効にすると、インフィルを壁面に密着させることができ、充填材が垂直面の品質に与える影響を低減できます。この設定を無効にすると、使用される材料の量が減ります。"
  7102. #~ msgctxt "skirt_gap description"
  7103. #~ msgid ""
  7104. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  7105. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  7106. #~ msgstr "スカートとプリントの最初のレイヤーの間の水平距離。これが最小距離であり、複数のスカートラインがこの距離から外側に延びている。"
  7107. # msgstr "初期レイヤーのZオフセット"
  7108. #~ msgctxt "z_offset_layer_0 description"
  7109. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  7110. #~ msgstr "エクストルーダーは、最初のレイヤーの通常の高さからこの値でオフセットされます。それは、正 (上昇) または負 (低下)。エクストルーダーを少しだけ上昇させた方が、フィラメントによってはビルドプレートに付着しやすくなります。"
  7111. # msgstr "Z オフセット テーパーレイヤー"
  7112. #~ msgctxt "z_offset_taper_layers description"
  7113. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  7114. #~ msgstr "0 以外の場合、Z オフセットは多くのレイヤーを介して 0 に減らされます。0 の値は そのZ オフセットがプリント中すべてのレイヤーにてコンスタントを維持することを意味します。"
  7115. # msgstr "ラフトスムージング"
  7116. #~ msgctxt "raft_smoothing description"
  7117. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  7118. #~ msgstr "この設定は、ラフトのアウトラインの内側の角が丸みを帯びているかを制御します。内側のコーナーは、与えられた値と等しい半径の半円に丸められています。この設定では、円よりも小さいラフトアウトラインの穴は削除されます。"
  7119. #~ msgctxt "infill_pattern description"
  7120. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  7121. #~ msgstr "印刷物のインフィルのパターン。ラインとジグザグのインフィルは交互のレイヤー方向をずらし、材料費を削減します。グリッド、三角形、キュービック、四面体、同心円のパターンは、各レイヤーに完全に印刷されます。立方体および四面体のインフィルは各層ごとに変化し、各方向に沿ってより均等な強度分布を提供する。"
  7122. #~ msgctxt "expand_skins_into_infill description"
  7123. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  7124. #~ msgstr "平らな面の上部または底部のスキン部の及びその領域を展開します。既定では、スキンインフィルの周りの壁の線で停止しますが、これはインフィル密度が低いときに現れる穴につながることがあります。この設定は、次の層の面材が皮膚にかかっているので、壁の線を超えてスキンを拡張します。"
  7125. #~ msgctxt "expand_upper_skins description"
  7126. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  7127. #~ msgstr "インフィルをトップの面部分 (空気に触れる領域) を広げることで、上のインフィルを支えます。"
  7128. #~ msgctxt "expand_lower_skins description"
  7129. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  7130. #~ msgstr "下面(下に空気がある領域)を拡大して、上と下のインフィルによって支えるようにします。"
  7131. #~ msgctxt "expand_skins_expand_distance description"
  7132. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  7133. #~ msgstr "スキンがインフィルに展開される距離。デフォルトの距離は、インフィルの密度が低いときにスキンに現れる穴とインフィルの行間とギャップを埋めるのにに十分です。大抵の場合、距離は小さくても問題ありません。"
  7134. #~ msgctxt "support_skip_some_zags description"
  7135. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  7136. #~ msgstr "サポートを取りやすくするため、一部のジグザグ造形をスキップする"
  7137. #~ msgctxt "support_zag_skip_count description"
  7138. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  7139. #~ msgstr "サポートを取りやすくするため、この値毎のラインと壁の接続をスキップする"
  7140. #~ msgctxt "machine_show_variants label"
  7141. #~ msgid "Show machine variants"
  7142. #~ msgstr "プリンターのバリエーションを表示する"
  7143. #~ msgctxt "material_bed_temp_wait label"
  7144. #~ msgid "Wait for build plate heatup"
  7145. #~ msgstr "ビルドプレート加熱時の待機"
  7146. #~ msgctxt "material_print_temp_wait label"
  7147. #~ msgid "Wait for nozzle heatup"
  7148. #~ msgstr "ノズル加熱時の待機"
  7149. #~ msgctxt "material_print_temp_prepend label"
  7150. #~ msgid "Include material temperatures"
  7151. #~ msgstr "ノズル温度設定の挿入"
  7152. #~ msgctxt "material_bed_temp_prepend label"
  7153. #~ msgid "Include build plate temperature"
  7154. #~ msgstr "ビルドプレート温度設定の挿入"
  7155. #~ msgctxt "machine_width label"
  7156. #~ msgid "Machine width"
  7157. #~ msgstr "造形サイズ(X)"
  7158. #~ msgctxt "machine_depth label"
  7159. #~ msgid "Machine depth"
  7160. #~ msgstr "造形サイズ(Y)"
  7161. #~ msgctxt "machine_shape label"
  7162. #~ msgid "Build plate shape"
  7163. #~ msgstr "ビルドプレートの形"
  7164. #~ msgctxt "machine_height label"
  7165. #~ msgid "Machine height"
  7166. #~ msgstr "造形サイズ(Z)"
  7167. #~ msgctxt "machine_heated_bed label"
  7168. #~ msgid "Has heated build plate"
  7169. #~ msgstr "ヒートベッドの有無"
  7170. #~ msgctxt "machine_center_is_zero label"
  7171. #~ msgid "Is center origin"
  7172. #~ msgstr "原点"
  7173. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  7174. #~ msgid "RepRap (Marlin/Sprinter)"
  7175. #~ msgstr "RepRap (Marlin/Sprinter)"
  7176. #~ msgctxt "wall_thickness description"
  7177. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  7178. #~ msgstr "水平方向の外壁厚さ この値をウォールライン幅で割ることで、ウォール数を定義します。"
  7179. #~ msgctxt "skin_overlap description"
  7180. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  7181. #~ msgstr "スキンと壁の間のオーバーラップ量 わずかなオーバーラップによって壁がスキンにしっかりつながります。"
  7182. #~ msgctxt "support_interface_line_width description"
  7183. #~ msgid "Width of a single support interface line."
  7184. #~ msgstr "単一のサポートインタフェースラインの幅。"
  7185. #~ msgctxt "sub_div_rad_mult description"
  7186. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  7187. #~ msgstr "各立方体の中心からの半径上の乗数で、モデルの境界をチェックし、この立方体を細分するかどうかを決定します。値を大きくすると細分化が増えます。つまり、より小さなキューブになります。"
  7188. #~ msgctxt "expand_upper_skins description"
  7189. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  7190. #~ msgstr "上部のインフィルをサポートするので、スキン面 (上記の空気を含んだ領域) を展開します。"
  7191. #~ msgctxt "expand_lower_skins description"
  7192. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  7193. #~ msgstr "彼らは上と下の面材のレイヤーによって固定されますので、低い肌の部分 (空気を含んだ領域) を展開します。"
  7194. #~ msgctxt "speed_support_interface description"
  7195. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  7196. #~ msgstr "天井と底面のサポート材をプリントする速度 これらを低速でプリントするとオーバーハング部分の品質を向上できます。"
  7197. #~ msgctxt "acceleration_support_interface description"
  7198. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  7199. #~ msgstr "サポート材の上面と底面が印刷されるスピード 低速度で印刷するとオーバーハングの品質が向上します。"
  7200. #~ msgctxt "jerk_support_interface description"
  7201. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  7202. #~ msgstr "サポート材の屋根とボトムのプリント時、最大瞬間速度の変更。"
  7203. #~ msgctxt "support_enable description"
  7204. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7205. #~ msgstr "サポート材を印刷可能にします。これは、モデル上のオーバーハング部分にサポート材を構築します。"
  7206. #~ msgctxt "support_interface_extruder_nr description"
  7207. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  7208. #~ msgstr "サポートの天井とボトム部分を印刷する際のエクストルーダー。複数のエクストルーダーがある場合に使用される。"
  7209. #~ msgctxt "support_bottom_stair_step_height description"
  7210. #~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  7211. #~ msgstr "モデルにかかる階段形サポートの下部の高さです。低い値のサポートの除去は難しく、高すぎる値は不安定なサポート構造につながります。"
  7212. #~ msgctxt "support_bottom_height description"
  7213. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  7214. #~ msgstr "サポート材の底部の厚さ。これは、サモデルの上に印刷されるサポートの積層密度を制御します。"
  7215. #~ msgctxt "support_interface_skip_height description"
  7216. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  7217. #~ msgstr "サポート上にモデルがあることを確認するときは、指定された高さのステップを実行します。値が小さいほどスライスが遅くなりますが、値が大きくなるとサポートインターフェイスが必要な場所で通常のサポートが印刷されることがあります。"
  7218. #~ msgctxt "support_interface_density description"
  7219. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  7220. #~ msgstr "サポート材の屋根と底部の密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります"
  7221. #~ msgctxt "support_interface_line_distance description"
  7222. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  7223. #~ msgstr "印刷されたサポートインタフェースラインの間隔。この設定はSupport Interface Densityで計算されますが、個別に調整することができます。"
  7224. #~ msgctxt "magic_spiralize description"
  7225. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  7226. #~ msgstr "Spiralizeは外縁のZ移動を平滑化します。これにより、プリント全体にわたって安定したZ値が得られます。この機能は、ソリッドモデルを単一のウォールプリントに変換し、底面と側面のみ印刷します。この機能は以前のバージョンではJorisと呼ばれていました。"