fdmprinter.def.json.po 324 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910
  1. #, fuzzy
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: Uranium json setting files\n"
  5. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  6. "POT-Creation-Date: 2023-04-28 10:03+0000\n"
  7. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  8. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  9. "Language-Team: LANGUAGE\n"
  10. "Language: \n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. #: fdmprinter.def.json
  15. msgctxt "ironing_inset description"
  16. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  17. msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。"
  18. #: fdmprinter.def.json
  19. msgctxt "material_no_load_move_factor description"
  20. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  21. msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。"
  22. #: fdmprinter.def.json
  23. msgctxt "roofing_angles description"
  24. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  25. msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。"
  26. #: fdmprinter.def.json
  27. msgctxt "skin_angles description"
  28. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  29. msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。"
  30. #: fdmprinter.def.json
  31. msgctxt "support_infill_angles description"
  32. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  33. msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。"
  34. #: fdmprinter.def.json
  35. msgctxt "support_bottom_angles description"
  36. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  37. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  38. #: fdmprinter.def.json
  39. msgctxt "support_interface_angles description"
  40. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  41. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  42. #: fdmprinter.def.json
  43. msgctxt "support_roof_angles description"
  44. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  45. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  46. #: fdmprinter.def.json
  47. msgctxt "infill_angles description"
  48. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  49. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。"
  50. #: fdmprinter.def.json
  51. msgctxt "nozzle_disallowed_areas description"
  52. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  53. msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。"
  54. #: fdmprinter.def.json
  55. msgctxt "machine_disallowed_areas description"
  56. msgid "A list of polygons with areas the print head is not allowed to enter."
  57. msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。"
  58. #: fdmprinter.def.json
  59. msgctxt "brim_inside_margin description"
  60. msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  61. msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。"
  62. #: fdmprinter.def.json
  63. msgctxt "support_tree_branch_reach_limit description"
  64. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  65. msgstr ""
  66. #: fdmprinter.def.json
  67. msgctxt "extruder_prime_pos_abs label"
  68. msgid "Absolute Extruder Prime Position"
  69. msgstr "エクストルーダーの絶対位置"
  70. #: fdmprinter.def.json
  71. msgctxt "adaptive_layer_height_variation label"
  72. msgid "Adaptive Layers Maximum Variation"
  73. msgstr "適応レイヤー最大差分"
  74. #: fdmprinter.def.json
  75. msgctxt "adaptive_layer_height_threshold label"
  76. msgid "Adaptive Layers Topography Size"
  77. msgstr "適応レイヤーのトポグラフィーサイズ"
  78. #: fdmprinter.def.json
  79. msgctxt "adaptive_layer_height_variation_step label"
  80. msgid "Adaptive Layers Variation Step Size"
  81. msgstr "適応レイヤー差分ステップサイズ"
  82. #: fdmprinter.def.json
  83. msgctxt "adaptive_layer_height_enabled description"
  84. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  85. msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。"
  86. #: fdmprinter.def.json
  87. msgctxt "infill_wall_line_count description"
  88. msgid ""
  89. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  90. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  91. msgstr ""
  92. "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\n"
  93. "この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。"
  94. #: fdmprinter.def.json
  95. msgctxt "platform_adhesion description"
  96. msgid "Adhesion"
  97. msgstr "密着性"
  98. #: fdmprinter.def.json
  99. msgctxt "material_adhesion_tendency label"
  100. msgid "Adhesion Tendency"
  101. msgstr "接着傾向"
  102. #: fdmprinter.def.json
  103. msgctxt "skin_overlap description"
  104. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  105. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  106. #: fdmprinter.def.json
  107. msgctxt "skin_overlap_mm description"
  108. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  109. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  110. #: fdmprinter.def.json
  111. msgctxt "infill_sparse_density description"
  112. msgid "Adjusts the density of infill of the print."
  113. msgstr "プリントのインフィルの密度を調整します。"
  114. #: fdmprinter.def.json
  115. msgctxt "support_interface_density description"
  116. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  117. msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。"
  118. #: fdmprinter.def.json
  119. msgctxt "support_tree_top_rate description"
  120. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  121. msgstr ""
  122. #: fdmprinter.def.json
  123. msgctxt "support_infill_rate description"
  124. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  125. msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。"
  126. #: fdmprinter.def.json
  127. msgctxt "material_diameter description"
  128. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  129. msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。"
  130. #: fdmprinter.def.json
  131. msgctxt "support_type description"
  132. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  133. msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。"
  134. #: fdmprinter.def.json
  135. msgctxt "prime_tower_wipe_enabled description"
  136. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  137. msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。"
  138. #: fdmprinter.def.json
  139. msgctxt "retraction_hop_after_extruder_switch description"
  140. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  141. msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。"
  142. #: fdmprinter.def.json
  143. msgctxt "retraction_combing option all"
  144. msgid "All"
  145. msgstr "すべて"
  146. #: fdmprinter.def.json
  147. msgctxt "print_sequence option all_at_once"
  148. msgid "All at Once"
  149. msgstr "一度にすべて"
  150. #: fdmprinter.def.json
  151. msgctxt "resolution description"
  152. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  153. msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。"
  154. #: fdmprinter.def.json
  155. msgctxt "alternate_extra_perimeter label"
  156. msgid "Alternate Extra Wall"
  157. msgstr "代替予備壁"
  158. #: fdmprinter.def.json
  159. msgctxt "alternate_carve_order label"
  160. msgid "Alternate Mesh Removal"
  161. msgstr "代替メッシュの削除"
  162. #: fdmprinter.def.json
  163. msgctxt "material_alternate_walls label"
  164. msgid "Alternate Wall Directions"
  165. msgstr "ウォールの代替の向き"
  166. #: fdmprinter.def.json
  167. msgctxt "material_alternate_walls description"
  168. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  169. msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。"
  170. #: fdmprinter.def.json
  171. msgctxt "machine_buildplate_type option aluminum"
  172. msgid "Aluminum"
  173. msgstr "アルミニウム"
  174. #: fdmprinter.def.json
  175. msgctxt "machine_always_write_active_tool label"
  176. msgid "Always Write Active Tool"
  177. msgstr "常にアクティブなツールを書き込む"
  178. #: fdmprinter.def.json
  179. msgctxt "travel_retract_before_outer_wall description"
  180. msgid "Always retract when moving to start an outer wall."
  181. msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。"
  182. #: fdmprinter.def.json
  183. msgctxt "hole_xy_offset description"
  184. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  185. msgstr "各穴のすべてのポリゴンに適用されるオフセットの量。正の値は穴のサイズを大きくします。負の値は穴のサイズを小さくします。"
  186. #: fdmprinter.def.json
  187. msgctxt "xy_offset description"
  188. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  189. msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。"
  190. #: fdmprinter.def.json
  191. msgctxt "xy_offset_layer_0 description"
  192. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  193. msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。"
  194. #: fdmprinter.def.json
  195. msgctxt "support_offset description"
  196. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  197. msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。"
  198. #: fdmprinter.def.json
  199. msgctxt "support_bottom_offset description"
  200. msgid "Amount of offset applied to the floors of the support."
  201. msgstr "サポートのフロアに適用されるオフセット量。"
  202. #: fdmprinter.def.json
  203. msgctxt "support_roof_offset description"
  204. msgid "Amount of offset applied to the roofs of the support."
  205. msgstr "サポートのルーフに適用されるオフセット量。"
  206. #: fdmprinter.def.json
  207. msgctxt "support_interface_offset description"
  208. msgid "Amount of offset applied to the support interface polygons."
  209. msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。"
  210. #: fdmprinter.def.json
  211. msgctxt "wipe_retraction_amount description"
  212. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  213. msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。"
  214. #: fdmprinter.def.json
  215. msgctxt "sub_div_rad_add description"
  216. msgid "An addition to 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 a thicker shell of small cubes near the boundary of the model."
  217. msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。"
  218. #: fdmprinter.def.json
  219. msgctxt "anti_overhang_mesh label"
  220. msgid "Anti Overhang Mesh"
  221. msgstr "メッシュオーバーハング例外"
  222. #: fdmprinter.def.json
  223. msgctxt "material_anti_ooze_retracted_position label"
  224. msgid "Anti-ooze Retracted Position"
  225. msgstr "滲出防止引戻し位置"
  226. #: fdmprinter.def.json
  227. msgctxt "material_anti_ooze_retraction_speed label"
  228. msgid "Anti-ooze Retraction Speed"
  229. msgstr "滲出防止引戻し速度"
  230. #: fdmprinter.def.json
  231. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  232. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  233. msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。"
  234. #: fdmprinter.def.json
  235. msgctxt "interlocking_enable description"
  236. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  237. msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。"
  238. #: fdmprinter.def.json
  239. msgctxt "travel_avoid_other_parts label"
  240. msgid "Avoid Printed Parts When Traveling"
  241. msgstr "移動は印刷したパーツを回避する"
  242. #: fdmprinter.def.json
  243. msgctxt "travel_avoid_supports label"
  244. msgid "Avoid Supports When Traveling"
  245. msgstr "移動はサポートを回避する"
  246. #: fdmprinter.def.json
  247. msgctxt "z_seam_position option back"
  248. msgid "Back"
  249. msgstr "戻る"
  250. #: fdmprinter.def.json
  251. msgctxt "z_seam_position option backleft"
  252. msgid "Back Left"
  253. msgstr "後方左"
  254. #: fdmprinter.def.json
  255. msgctxt "z_seam_position option backright"
  256. msgid "Back Right"
  257. msgstr "後方右"
  258. #: fdmprinter.def.json
  259. msgctxt "machine_gcode_flavor option BFB"
  260. msgid "Bits from Bytes"
  261. msgstr "Bits from Bytes"
  262. #: fdmprinter.def.json
  263. msgctxt "magic_mesh_surface_mode option both"
  264. msgid "Both"
  265. msgstr "両方"
  266. #: fdmprinter.def.json
  267. msgctxt "support_interface_priority option nothing"
  268. msgid "Both overlap"
  269. msgstr ""
  270. #: fdmprinter.def.json
  271. msgctxt "bottom_layers label"
  272. msgid "Bottom Layers"
  273. msgstr "底面レイヤー"
  274. #: fdmprinter.def.json
  275. msgctxt "top_bottom_pattern_0 label"
  276. msgid "Bottom Pattern Initial Layer"
  277. msgstr "底層初期レイヤー"
  278. #: fdmprinter.def.json
  279. msgctxt "bottom_skin_expand_distance label"
  280. msgid "Bottom Skin Expand Distance"
  281. msgstr "底面展開距離"
  282. #: fdmprinter.def.json
  283. msgctxt "bottom_skin_preshrink label"
  284. msgid "Bottom Skin Removal Width"
  285. msgstr "底面除去幅"
  286. #: fdmprinter.def.json
  287. msgctxt "bottom_thickness label"
  288. msgid "Bottom Thickness"
  289. msgstr "底面厚さ"
  290. #: fdmprinter.def.json
  291. msgctxt "support_tree_top_rate label"
  292. msgid "Branch Density"
  293. msgstr ""
  294. #: fdmprinter.def.json
  295. msgctxt "support_tree_branch_diameter label"
  296. msgid "Branch Diameter"
  297. msgstr ""
  298. #: fdmprinter.def.json
  299. msgctxt "support_tree_branch_diameter_angle label"
  300. msgid "Branch Diameter Angle"
  301. msgstr ""
  302. #: fdmprinter.def.json
  303. msgctxt "material_break_preparation_retracted_position label"
  304. msgid "Break Preparation Retracted Position"
  305. msgstr "フィラメントの引き出し準備引戻し位置"
  306. #: fdmprinter.def.json
  307. msgctxt "material_break_preparation_speed label"
  308. msgid "Break Preparation Retraction Speed"
  309. msgstr "フィラメント引き出し準備引戻し速度"
  310. #: fdmprinter.def.json
  311. msgctxt "material_break_preparation_temperature label"
  312. msgid "Break Preparation Temperature"
  313. msgstr "フィラメント引き出し準備温度"
  314. #: fdmprinter.def.json
  315. msgctxt "material_break_retracted_position label"
  316. msgid "Break Retracted Position"
  317. msgstr "フィラメント引き出しの引戻し位置"
  318. #: fdmprinter.def.json
  319. msgctxt "material_break_speed label"
  320. msgid "Break Retraction Speed"
  321. msgstr "フィラメント引き出しの引戻し速度"
  322. #: fdmprinter.def.json
  323. msgctxt "material_break_temperature label"
  324. msgid "Break Temperature"
  325. msgstr "フィラメント引き出し温度"
  326. #: fdmprinter.def.json
  327. msgctxt "support_skip_some_zags label"
  328. msgid "Break Up Support In Chunks"
  329. msgstr "接続部分のサポート分割"
  330. #: fdmprinter.def.json
  331. msgctxt "bridge_fan_speed label"
  332. msgid "Bridge Fan Speed"
  333. msgstr "ブリッジファン速度"
  334. #: fdmprinter.def.json
  335. msgctxt "bridge_enable_more_layers label"
  336. msgid "Bridge Has Multiple Layers"
  337. msgstr "ブリッジを構成する多重レイヤー"
  338. #: fdmprinter.def.json
  339. msgctxt "bridge_skin_density_2 label"
  340. msgid "Bridge Second Skin Density"
  341. msgstr "ブリッジセカンドスキンの密度"
  342. #: fdmprinter.def.json
  343. msgctxt "bridge_fan_speed_2 label"
  344. msgid "Bridge Second Skin Fan Speed"
  345. msgstr "ブリッジセカンドスキンのファン速度"
  346. #: fdmprinter.def.json
  347. msgctxt "bridge_skin_material_flow_2 label"
  348. msgid "Bridge Second Skin Flow"
  349. msgstr "ブリッジセカンドスキンのフロー"
  350. #: fdmprinter.def.json
  351. msgctxt "bridge_skin_speed_2 label"
  352. msgid "Bridge Second Skin Speed"
  353. msgstr "ブリッジセカンドスキンの速度"
  354. #: fdmprinter.def.json
  355. msgctxt "bridge_skin_density label"
  356. msgid "Bridge Skin Density"
  357. msgstr "ブリッジスキンの密度"
  358. #: fdmprinter.def.json
  359. msgctxt "bridge_skin_material_flow label"
  360. msgid "Bridge Skin Flow"
  361. msgstr "ブリッジスキンフロー"
  362. #: fdmprinter.def.json
  363. msgctxt "bridge_skin_speed label"
  364. msgid "Bridge Skin Speed"
  365. msgstr "ブリッジスキン速度"
  366. #: fdmprinter.def.json
  367. msgctxt "bridge_skin_support_threshold label"
  368. msgid "Bridge Skin Support Threshold"
  369. msgstr "ブリッジスキンサポートのしきい値"
  370. #: fdmprinter.def.json
  371. msgctxt "bridge_sparse_infill_max_density label"
  372. msgid "Bridge Sparse Infill Max Density"
  373. msgstr "ブリッジスパースインフィル最大密度"
  374. #: fdmprinter.def.json
  375. msgctxt "bridge_skin_density_3 label"
  376. msgid "Bridge Third Skin Density"
  377. msgstr "ブリッジサードスキンの密度"
  378. #: fdmprinter.def.json
  379. msgctxt "bridge_fan_speed_3 label"
  380. msgid "Bridge Third Skin Fan Speed"
  381. msgstr "ブリッジサードスキンのファン速度"
  382. #: fdmprinter.def.json
  383. msgctxt "bridge_skin_material_flow_3 label"
  384. msgid "Bridge Third Skin Flow"
  385. msgstr "ブリッジサードスキンのフロー"
  386. #: fdmprinter.def.json
  387. msgctxt "bridge_skin_speed_3 label"
  388. msgid "Bridge Third Skin Speed"
  389. msgstr "ブリッジサードスキンの速度"
  390. #: fdmprinter.def.json
  391. msgctxt "bridge_wall_coast label"
  392. msgid "Bridge Wall Coasting"
  393. msgstr "ブリッジ壁コースティング"
  394. #: fdmprinter.def.json
  395. msgctxt "bridge_wall_material_flow label"
  396. msgid "Bridge Wall Flow"
  397. msgstr "ブリッジ壁フロー"
  398. #: fdmprinter.def.json
  399. msgctxt "bridge_wall_speed label"
  400. msgid "Bridge Wall Speed"
  401. msgstr "ブリッジ壁速度"
  402. #: fdmprinter.def.json
  403. msgctxt "adhesion_type option brim"
  404. msgid "Brim"
  405. msgstr "ブリム"
  406. #: fdmprinter.def.json
  407. msgctxt "brim_gap label"
  408. msgid "Brim Distance"
  409. msgstr "ブリム距離"
  410. #: fdmprinter.def.json
  411. msgctxt "brim_inside_margin label"
  412. msgid "Brim Inside Avoid Margin"
  413. msgstr "内側縁がマージンに接触しないようにする"
  414. #: fdmprinter.def.json
  415. msgctxt "brim_line_count label"
  416. msgid "Brim Line Count"
  417. msgstr "ブリムライン数"
  418. #: fdmprinter.def.json
  419. msgctxt "brim_outside_only label"
  420. msgid "Brim Only on Outside"
  421. msgstr "外側にブリムのみ印刷"
  422. #: fdmprinter.def.json
  423. msgctxt "brim_replaces_support label"
  424. msgid "Brim Replaces Support"
  425. msgstr "ブリム交換サポート"
  426. #: fdmprinter.def.json
  427. msgctxt "brim_width label"
  428. msgid "Brim Width"
  429. msgstr "ブリム幅"
  430. #: fdmprinter.def.json
  431. msgctxt "platform_adhesion label"
  432. msgid "Build Plate Adhesion"
  433. msgstr "ビルドプレート密着性"
  434. #: fdmprinter.def.json
  435. msgctxt "adhesion_extruder_nr label"
  436. msgid "Build Plate Adhesion Extruder"
  437. msgstr "ビルドプレート接着エクストルーダー"
  438. #: fdmprinter.def.json
  439. msgctxt "adhesion_type label"
  440. msgid "Build Plate Adhesion Type"
  441. msgstr "ビルドプレート接着タイプ"
  442. #: fdmprinter.def.json
  443. msgctxt "machine_buildplate_type label"
  444. msgid "Build Plate Material"
  445. msgstr "ビルドプレートの材料"
  446. #: fdmprinter.def.json
  447. msgctxt "machine_shape label"
  448. msgid "Build Plate Shape"
  449. msgstr "ビルドプレートの形状"
  450. #: fdmprinter.def.json
  451. msgctxt "material_bed_temperature label"
  452. msgid "Build Plate Temperature"
  453. msgstr "ビルドプレート温度"
  454. #: fdmprinter.def.json
  455. msgctxt "material_bed_temperature_layer_0 label"
  456. msgid "Build Plate Temperature Initial Layer"
  457. msgstr "初期レイヤーのビルドプレート温度"
  458. #: fdmprinter.def.json
  459. msgctxt "build_volume_temperature label"
  460. msgid "Build Volume Temperature"
  461. msgstr "造形温度"
  462. #: fdmprinter.def.json
  463. msgctxt "center_object label"
  464. msgid "Center Object"
  465. msgstr "オブジェクト中心配置"
  466. #: fdmprinter.def.json
  467. msgctxt "conical_overhang_enabled description"
  468. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  469. msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。"
  470. #: fdmprinter.def.json
  471. msgctxt "support_structure description"
  472. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  473. msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。"
  474. #: fdmprinter.def.json
  475. msgctxt "coasting_speed label"
  476. msgid "Coasting Speed"
  477. msgstr "コースティング速度"
  478. #: fdmprinter.def.json
  479. msgctxt "coasting_volume label"
  480. msgid "Coasting Volume"
  481. msgstr "コースティングのボリューム"
  482. #: fdmprinter.def.json
  483. msgctxt "coasting_enable description"
  484. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  485. msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。"
  486. #: fdmprinter.def.json
  487. msgctxt "retraction_combing label"
  488. msgid "Combing Mode"
  489. msgstr "コーミングモード"
  490. #: fdmprinter.def.json
  491. msgctxt "retraction_combing description"
  492. 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 or to only comb within the infill."
  493. msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。"
  494. #: fdmprinter.def.json
  495. msgctxt "command_line_settings label"
  496. msgid "Command Line Settings"
  497. msgstr "コマンドライン設定"
  498. #: fdmprinter.def.json
  499. msgctxt "infill_pattern option concentric"
  500. msgid "Concentric"
  501. msgstr "同心円"
  502. #: fdmprinter.def.json
  503. msgctxt "ironing_pattern option concentric"
  504. msgid "Concentric"
  505. msgstr "同心円"
  506. #: fdmprinter.def.json
  507. msgctxt "roofing_pattern option concentric"
  508. msgid "Concentric"
  509. msgstr "同心円"
  510. #: fdmprinter.def.json
  511. msgctxt "support_bottom_pattern option concentric"
  512. msgid "Concentric"
  513. msgstr "同心円"
  514. #: fdmprinter.def.json
  515. msgctxt "support_interface_pattern option concentric"
  516. msgid "Concentric"
  517. msgstr "同心円"
  518. #: fdmprinter.def.json
  519. msgctxt "support_pattern option concentric"
  520. msgid "Concentric"
  521. msgstr "同心円"
  522. #: fdmprinter.def.json
  523. msgctxt "support_roof_pattern option concentric"
  524. msgid "Concentric"
  525. msgstr "同心円"
  526. #: fdmprinter.def.json
  527. msgctxt "top_bottom_pattern option concentric"
  528. msgid "Concentric"
  529. msgstr "同心円"
  530. #: fdmprinter.def.json
  531. msgctxt "top_bottom_pattern_0 option concentric"
  532. msgid "Concentric"
  533. msgstr "同心円"
  534. #: fdmprinter.def.json
  535. msgctxt "support_conical_angle label"
  536. msgid "Conical Support Angle"
  537. msgstr "円錐サポートの角度"
  538. #: fdmprinter.def.json
  539. msgctxt "support_conical_min_width label"
  540. msgid "Conical Support Minimum Width"
  541. msgstr "円錐サポートの最大幅"
  542. #: fdmprinter.def.json
  543. msgctxt "zig_zaggify_infill label"
  544. msgid "Connect Infill Lines"
  545. msgstr "インフィルライン接合"
  546. #: fdmprinter.def.json
  547. msgctxt "connect_infill_polygons label"
  548. msgid "Connect Infill Polygons"
  549. msgstr "インフィルポリゴン接合"
  550. #: fdmprinter.def.json
  551. msgctxt "zig_zaggify_support label"
  552. msgid "Connect Support Lines"
  553. msgstr "サポートライン接続"
  554. #: fdmprinter.def.json
  555. msgctxt "support_connect_zigzags label"
  556. msgid "Connect Support ZigZags"
  557. msgstr "サポートジグザグ接続"
  558. #: fdmprinter.def.json
  559. msgctxt "connect_skin_polygons label"
  560. msgid "Connect Top/Bottom Polygons"
  561. msgstr "上層/底層ポリゴンに接合"
  562. #: fdmprinter.def.json
  563. msgctxt "connect_infill_polygons description"
  564. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  565. msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。"
  566. #: fdmprinter.def.json
  567. msgctxt "support_connect_zigzags description"
  568. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  569. msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。"
  570. #: fdmprinter.def.json
  571. msgctxt "zig_zaggify_support description"
  572. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  573. msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。"
  574. #: fdmprinter.def.json
  575. msgctxt "zig_zaggify_infill description"
  576. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  577. msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。"
  578. #: fdmprinter.def.json
  579. msgctxt "connect_skin_polygons description"
  580. 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 happen midway over infill this feature can reduce the top surface quality."
  581. msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。"
  582. #: fdmprinter.def.json
  583. msgctxt "z_seam_corner description"
  584. 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. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  585. msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。"
  586. #: fdmprinter.def.json
  587. msgctxt "infill_multiplier description"
  588. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  589. msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。"
  590. #: fdmprinter.def.json
  591. msgctxt "machine_nozzle_cool_down_speed label"
  592. msgid "Cool Down Speed"
  593. msgstr "冷却速度"
  594. #: fdmprinter.def.json
  595. msgctxt "cooling description"
  596. msgid "Cooling"
  597. msgstr "冷却"
  598. #: fdmprinter.def.json
  599. msgctxt "cooling label"
  600. msgid "Cooling"
  601. msgstr "冷却"
  602. #: fdmprinter.def.json
  603. msgctxt "infill_pattern option cross"
  604. msgid "Cross"
  605. msgstr "クロス"
  606. #: fdmprinter.def.json
  607. msgctxt "support_pattern option cross"
  608. msgid "Cross"
  609. msgstr "クロス"
  610. #: fdmprinter.def.json
  611. msgctxt "infill_pattern option cross_3d"
  612. msgid "Cross 3D"
  613. msgstr "3Dクロス"
  614. #: fdmprinter.def.json
  615. msgctxt "cross_infill_pocket_size label"
  616. msgid "Cross 3D Pocket Size"
  617. msgstr "3Dクロスポケットのサイズ"
  618. #: fdmprinter.def.json
  619. msgctxt "cross_support_density_image label"
  620. msgid "Cross Fill Density Image for Support"
  621. msgstr "サポート用クロス画像のインフィル密度"
  622. #: fdmprinter.def.json
  623. msgctxt "cross_infill_density_image label"
  624. msgid "Cross Infill Density Image"
  625. msgstr "クロス画像のインフィル密度"
  626. #: fdmprinter.def.json
  627. msgctxt "material_crystallinity label"
  628. msgid "Crystalline Material"
  629. msgstr "結晶性材料"
  630. #: fdmprinter.def.json
  631. msgctxt "infill_pattern option cubic"
  632. msgid "Cubic"
  633. msgstr "キュービック"
  634. #: fdmprinter.def.json
  635. msgctxt "infill_pattern option cubicsubdiv"
  636. msgid "Cubic Subdivision"
  637. msgstr "キュービックサブディビジョン"
  638. #: fdmprinter.def.json
  639. msgctxt "sub_div_rad_add label"
  640. msgid "Cubic Subdivision Shell"
  641. msgstr "キュービックサブディビジョンシェル"
  642. #: fdmprinter.def.json
  643. msgctxt "cutting_mesh label"
  644. msgid "Cutting Mesh"
  645. msgstr "メッシュ切断"
  646. #: fdmprinter.def.json
  647. msgctxt "material_flow_temp_graph description"
  648. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  649. msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。"
  650. #: fdmprinter.def.json
  651. msgctxt "machine_acceleration label"
  652. msgid "Default Acceleration"
  653. msgstr "デフォルト加速度"
  654. #: fdmprinter.def.json
  655. msgctxt "default_material_bed_temperature label"
  656. msgid "Default Build Plate Temperature"
  657. msgstr "ビルドプレートのデフォルト温度"
  658. #: fdmprinter.def.json
  659. msgctxt "machine_max_jerk_e label"
  660. msgid "Default Filament Jerk"
  661. msgstr "フィラメントデフォルトジャーク"
  662. #: fdmprinter.def.json
  663. msgctxt "default_material_print_temperature label"
  664. msgid "Default Printing Temperature"
  665. msgstr "デフォルト印刷温度"
  666. #: fdmprinter.def.json
  667. msgctxt "machine_max_jerk_xy label"
  668. msgid "Default X-Y Jerk"
  669. msgstr "X-Yデフォルトジャーク"
  670. #: fdmprinter.def.json
  671. msgctxt "machine_max_jerk_z label"
  672. msgid "Default Z Jerk"
  673. msgstr "Zデフォルトジャーク"
  674. #: fdmprinter.def.json
  675. msgctxt "machine_max_jerk_xy description"
  676. msgid "Default jerk for movement in the horizontal plane."
  677. msgstr "水平面内での移動のデフォルトジャーク。"
  678. #: fdmprinter.def.json
  679. msgctxt "machine_max_jerk_z description"
  680. msgid "Default jerk for the motor of the Z-direction."
  681. msgstr "Z方向のモーターのデフォルトジャーク。"
  682. #: fdmprinter.def.json
  683. msgctxt "machine_max_jerk_e description"
  684. msgid "Default jerk for the motor of the filament."
  685. msgstr "フィラメントのモーターのデフォルトジャーク。"
  686. #: fdmprinter.def.json
  687. msgctxt "bridge_settings_enabled description"
  688. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  689. msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。"
  690. #: fdmprinter.def.json
  691. msgctxt "inset_direction description"
  692. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  693. msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。"
  694. #: fdmprinter.def.json
  695. msgctxt "infill_mesh_order description"
  696. 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 highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  697. msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。"
  698. #: fdmprinter.def.json
  699. msgctxt "lightning_infill_support_angle description"
  700. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  701. msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。"
  702. #: fdmprinter.def.json
  703. msgctxt "lightning_infill_overhang_angle description"
  704. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  705. msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。"
  706. #: fdmprinter.def.json
  707. msgctxt "material_diameter label"
  708. msgid "Diameter"
  709. msgstr "直径"
  710. #: fdmprinter.def.json
  711. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  712. msgid "Diameter Increase To Model"
  713. msgstr ""
  714. #: fdmprinter.def.json
  715. msgctxt "support_tree_bp_diameter description"
  716. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  717. msgstr ""
  718. #: fdmprinter.def.json
  719. msgctxt "adhesion_type description"
  720. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  721. msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。"
  722. #: fdmprinter.def.json
  723. msgctxt "machine_disallowed_areas label"
  724. msgid "Disallowed Areas"
  725. msgstr "拒否エリア"
  726. #: fdmprinter.def.json
  727. msgctxt "infill_line_distance description"
  728. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  729. msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。"
  730. #: fdmprinter.def.json
  731. msgctxt "support_initial_layer_line_distance description"
  732. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  733. msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。"
  734. #: fdmprinter.def.json
  735. msgctxt "support_bottom_line_distance description"
  736. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  737. msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。"
  738. #: fdmprinter.def.json
  739. msgctxt "support_roof_line_distance description"
  740. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  741. msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。"
  742. #: fdmprinter.def.json
  743. msgctxt "support_line_distance description"
  744. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  745. msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。"
  746. #: fdmprinter.def.json
  747. msgctxt "support_bottom_distance description"
  748. msgid "Distance from the print to the bottom of the support."
  749. msgstr "印刷物とサポート材底部までの距離。"
  750. #: fdmprinter.def.json
  751. msgctxt "support_top_distance description"
  752. msgid "Distance from the top of the support to the print."
  753. msgstr "サポートの上部から印刷物までの距離。"
  754. #: fdmprinter.def.json
  755. msgctxt "support_z_distance description"
  756. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  757. msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。"
  758. #: fdmprinter.def.json
  759. msgctxt "infill_wipe_dist description"
  760. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  761. msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。"
  762. #: fdmprinter.def.json
  763. msgctxt "wall_0_wipe_dist description"
  764. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  765. msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。"
  766. #: fdmprinter.def.json
  767. msgctxt "draft_shield_dist description"
  768. msgid "Distance of the draft shield from the print, in the X/Y directions."
  769. msgstr "ドラフトシールドと造形物のX / Y方向の距離。"
  770. #: fdmprinter.def.json
  771. msgctxt "ooze_shield_dist description"
  772. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  773. msgstr "壁(ooze shield)の造形物からの距離。"
  774. #: fdmprinter.def.json
  775. msgctxt "support_xy_distance_overhang description"
  776. msgid "Distance of the support structure from the overhang in the X/Y directions."
  777. msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。"
  778. #: fdmprinter.def.json
  779. msgctxt "support_xy_distance description"
  780. msgid "Distance of the support structure from the print in the X/Y directions."
  781. msgstr "印刷物からX/Y方向へのサポート材との距離。"
  782. #: fdmprinter.def.json
  783. msgctxt "min_infill_area description"
  784. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  785. msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。"
  786. #: fdmprinter.def.json
  787. msgctxt "draft_shield_height label"
  788. msgid "Draft Shield Height"
  789. msgstr "ドラフトシールドの高さ"
  790. #: fdmprinter.def.json
  791. msgctxt "draft_shield_height_limitation label"
  792. msgid "Draft Shield Limitation"
  793. msgstr "ドラフトシールドの制限"
  794. #: fdmprinter.def.json
  795. msgctxt "draft_shield_dist label"
  796. msgid "Draft Shield X/Y Distance"
  797. msgstr "ドラフトシールドとX/Yの距離"
  798. #: fdmprinter.def.json
  799. msgctxt "support_mesh_drop_down label"
  800. msgid "Drop Down Support Mesh"
  801. msgstr "サポートメッシュの下処理"
  802. #: fdmprinter.def.json
  803. msgctxt "dual label"
  804. msgid "Dual Extrusion"
  805. msgstr "デュアルエクストルーダー"
  806. #: fdmprinter.def.json
  807. msgctxt "machine_shape option elliptic"
  808. msgid "Elliptic"
  809. msgstr "楕円形"
  810. #: fdmprinter.def.json
  811. msgctxt "acceleration_enabled label"
  812. msgid "Enable Acceleration Control"
  813. msgstr "加速度制御を有効にする"
  814. #: fdmprinter.def.json
  815. msgctxt "bridge_settings_enabled label"
  816. msgid "Enable Bridge Settings"
  817. msgstr "ブリッジ設定を有効にする"
  818. #: fdmprinter.def.json
  819. msgctxt "coasting_enable label"
  820. msgid "Enable Coasting"
  821. msgstr "コースティングを有効にする"
  822. #: fdmprinter.def.json
  823. msgctxt "support_conical_enabled label"
  824. msgid "Enable Conical Support"
  825. msgstr "円錐サポートを有効にする"
  826. #: fdmprinter.def.json
  827. msgctxt "draft_shield_enabled label"
  828. msgid "Enable Draft Shield"
  829. msgstr "ドラフトシールドを有効にする"
  830. #: fdmprinter.def.json
  831. msgctxt "ironing_enabled label"
  832. msgid "Enable Ironing"
  833. msgstr "アイロン有効"
  834. #: fdmprinter.def.json
  835. msgctxt "jerk_enabled label"
  836. msgid "Enable Jerk Control"
  837. msgstr "ジャーク制御を有効にする"
  838. #: fdmprinter.def.json
  839. msgctxt "machine_nozzle_temp_enabled label"
  840. msgid "Enable Nozzle Temperature Control"
  841. msgstr "ノズルの温度管理を有効にする"
  842. #: fdmprinter.def.json
  843. msgctxt "ooze_shield_enabled label"
  844. msgid "Enable Ooze Shield"
  845. msgstr "Ooze Shieldを有効にする"
  846. #: fdmprinter.def.json
  847. msgctxt "prime_blob_enable label"
  848. msgid "Enable Prime Blob"
  849. msgstr "プライムボルブを有効にする"
  850. #: fdmprinter.def.json
  851. msgctxt "prime_tower_enable label"
  852. msgid "Enable Prime Tower"
  853. msgstr "プライムタワーを有効にする"
  854. #: fdmprinter.def.json
  855. msgctxt "cool_fan_enabled label"
  856. msgid "Enable Print Cooling"
  857. msgstr "印刷中の冷却を有効にする"
  858. #: fdmprinter.def.json
  859. msgctxt "retraction_enable label"
  860. msgid "Enable Retraction"
  861. msgstr "引き戻し有効"
  862. #: fdmprinter.def.json
  863. msgctxt "support_brim_enable label"
  864. msgid "Enable Support Brim"
  865. msgstr "サポートブリムを有効にする"
  866. #: fdmprinter.def.json
  867. msgctxt "support_bottom_enable label"
  868. msgid "Enable Support Floor"
  869. msgstr "サポートフロアを有効にする"
  870. #: fdmprinter.def.json
  871. msgctxt "support_interface_enable label"
  872. msgid "Enable Support Interface"
  873. msgstr "サポートインタフェースを有効にする"
  874. #: fdmprinter.def.json
  875. msgctxt "support_roof_enable label"
  876. msgid "Enable Support Roof"
  877. msgstr "サポートルーフを有効にする"
  878. #: fdmprinter.def.json
  879. msgctxt "acceleration_travel_enabled label"
  880. msgid "Enable Travel Acceleration"
  881. msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする"
  882. #: fdmprinter.def.json
  883. msgctxt "jerk_travel_enabled label"
  884. msgid "Enable Travel Jerk"
  885. msgstr "トラベルジャークを有効にする"
  886. #: fdmprinter.def.json
  887. msgctxt "ooze_shield_enabled description"
  888. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  889. msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。"
  890. #: fdmprinter.def.json
  891. msgctxt "jerk_enabled description"
  892. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  893. msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。"
  894. #: fdmprinter.def.json
  895. msgctxt "acceleration_enabled description"
  896. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  897. msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。"
  898. #: fdmprinter.def.json
  899. msgctxt "cool_fan_enabled description"
  900. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  901. msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。"
  902. #: fdmprinter.def.json
  903. msgctxt "machine_end_gcode label"
  904. msgid "End G-code"
  905. msgstr "G-codeの終了"
  906. #: fdmprinter.def.json
  907. msgctxt "material_end_of_filament_purge_length label"
  908. msgid "End of Filament Purge Length"
  909. msgstr "フィラメントパージ長さの後"
  910. #: fdmprinter.def.json
  911. msgctxt "material_end_of_filament_purge_speed label"
  912. msgid "End of Filament Purge Speed"
  913. msgstr "フィラメントパージ速度の後"
  914. #: fdmprinter.def.json
  915. msgctxt "brim_replaces_support description"
  916. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  917. msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。"
  918. #: fdmprinter.def.json
  919. msgctxt "support_type option everywhere"
  920. msgid "Everywhere"
  921. msgstr "全対象"
  922. #: fdmprinter.def.json
  923. msgctxt "slicing_tolerance option exclusive"
  924. msgid "Exclusive"
  925. msgstr "排他"
  926. #: fdmprinter.def.json
  927. msgctxt "experimental label"
  928. msgid "Experimental"
  929. msgstr "実験"
  930. #: fdmprinter.def.json
  931. msgctxt "z_seam_corner option z_seam_corner_outer"
  932. msgid "Expose Seam"
  933. msgstr "シーム表示"
  934. #: fdmprinter.def.json
  935. msgctxt "meshfix_extensive_stitching label"
  936. msgid "Extensive Stitching"
  937. msgstr "強めのスティッチング"
  938. #: fdmprinter.def.json
  939. msgctxt "meshfix_extensive_stitching description"
  940. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  941. msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。"
  942. #: fdmprinter.def.json
  943. msgctxt "infill_wall_line_count label"
  944. msgid "Extra Infill Wall Count"
  945. msgstr "外側インフィル壁の数"
  946. #: fdmprinter.def.json
  947. msgctxt "skin_outline_count label"
  948. msgid "Extra Skin Wall Count"
  949. msgstr "外側表面の数"
  950. #: fdmprinter.def.json
  951. msgctxt "switch_extruder_extra_prime_amount description"
  952. msgid "Extra material to prime after nozzle switching."
  953. msgstr "ノズル切替え後のプライムに必要な余剰材料。"
  954. #: fdmprinter.def.json
  955. msgctxt "extruder_prime_pos_x label"
  956. msgid "Extruder Prime X Position"
  957. msgstr "エクストルーダープライムX位置"
  958. #: fdmprinter.def.json
  959. msgctxt "extruder_prime_pos_y label"
  960. msgid "Extruder Prime Y Position"
  961. msgstr "エクストルーダープライムY位置"
  962. #: fdmprinter.def.json
  963. msgctxt "extruder_prime_pos_z label"
  964. msgid "Extruder Prime Z Position"
  965. msgstr "エクストルーダーのZ座標"
  966. #: fdmprinter.def.json
  967. msgctxt "machine_extruders_share_heater label"
  968. msgid "Extruders Share Heater"
  969. msgstr "エクストルーダーのヒーター共有"
  970. #: fdmprinter.def.json
  971. msgctxt "machine_extruders_share_nozzle label"
  972. msgid "Extruders Share Nozzle"
  973. msgstr "エクストルーダーの共有ノズル"
  974. #: fdmprinter.def.json
  975. msgctxt "material_extrusion_cool_down_speed label"
  976. msgid "Extrusion Cool Down Speed Modifier"
  977. msgstr "押出クールダウン速度修飾子"
  978. #: fdmprinter.def.json
  979. msgctxt "speed_equalize_flow_width_factor description"
  980. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  981. msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。"
  982. #: fdmprinter.def.json
  983. msgctxt "cool_fan_speed label"
  984. msgid "Fan Speed"
  985. msgstr "ファン速度"
  986. #: fdmprinter.def.json
  987. msgctxt "support_fan_enable label"
  988. msgid "Fan Speed Override"
  989. msgstr "ファン速度上書き"
  990. #: fdmprinter.def.json
  991. msgctxt "small_feature_max_length description"
  992. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  993. msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。"
  994. #: fdmprinter.def.json
  995. msgctxt "experimental description"
  996. msgid "Features that haven't completely been fleshed out yet."
  997. msgstr "これからもっと充実させていく機能です。"
  998. #: fdmprinter.def.json
  999. msgctxt "machine_feeder_wheel_diameter label"
  1000. msgid "Feeder Wheel Diameter"
  1001. msgstr "フィーダーホイール直径"
  1002. #: fdmprinter.def.json
  1003. msgctxt "material_final_print_temperature label"
  1004. msgid "Final Printing Temperature"
  1005. msgstr "最終印刷温度"
  1006. #: fdmprinter.def.json
  1007. msgctxt "machine_firmware_retract label"
  1008. msgid "Firmware Retraction"
  1009. msgstr "ファームウェア引き戻し"
  1010. #: fdmprinter.def.json
  1011. msgctxt "support_extruder_nr_layer_0 label"
  1012. msgid "First Layer Support Extruder"
  1013. msgstr "最初のレイヤー用サポートエクストルーダー"
  1014. #: fdmprinter.def.json
  1015. msgctxt "material_flow label"
  1016. msgid "Flow"
  1017. msgstr "フロー"
  1018. #: fdmprinter.def.json
  1019. msgctxt "speed_equalize_flow_width_factor label"
  1020. msgid "Flow Equalization Ratio"
  1021. msgstr "フロー均一化率"
  1022. #: fdmprinter.def.json
  1023. msgctxt "flow_rate_extrusion_offset_factor label"
  1024. msgid "Flow Rate Compensation Factor"
  1025. msgstr "流量補正要因"
  1026. #: fdmprinter.def.json
  1027. msgctxt "flow_rate_max_extrusion_offset label"
  1028. msgid "Flow Rate Compensation Max Extrusion Offset"
  1029. msgstr "流量補正時の最大抽出オフセット"
  1030. #: fdmprinter.def.json
  1031. msgctxt "material_flow_temp_graph label"
  1032. msgid "Flow Temperature Graph"
  1033. msgstr "フロー温度グラフ"
  1034. #: fdmprinter.def.json
  1035. msgctxt "material_flow_layer_0 description"
  1036. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1037. msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。"
  1038. #: fdmprinter.def.json
  1039. msgctxt "skin_material_flow_layer_0 description"
  1040. msgid "Flow compensation on bottom lines of the first layer"
  1041. msgstr "最初のレイヤーの底面ラインのフロー補正"
  1042. #: fdmprinter.def.json
  1043. msgctxt "infill_material_flow description"
  1044. msgid "Flow compensation on infill lines."
  1045. msgstr "インフィルのフロー補正。"
  1046. #: fdmprinter.def.json
  1047. msgctxt "support_interface_material_flow description"
  1048. msgid "Flow compensation on lines of support roof or floor."
  1049. msgstr "支持材の天井面または床面のフロー補正。"
  1050. #: fdmprinter.def.json
  1051. msgctxt "roofing_material_flow description"
  1052. msgid "Flow compensation on lines of the areas at the top of the print."
  1053. msgstr "印刷物の上部表面のフロー補正。"
  1054. #: fdmprinter.def.json
  1055. msgctxt "prime_tower_flow description"
  1056. msgid "Flow compensation on prime tower lines."
  1057. msgstr "プライムタワーのフロー補正。"
  1058. #: fdmprinter.def.json
  1059. msgctxt "skirt_brim_material_flow description"
  1060. msgid "Flow compensation on skirt or brim lines."
  1061. msgstr "スカートまたはブリムのフロー補正。"
  1062. #: fdmprinter.def.json
  1063. msgctxt "support_bottom_material_flow description"
  1064. msgid "Flow compensation on support floor lines."
  1065. msgstr "支持材床面のフロー補正。"
  1066. #: fdmprinter.def.json
  1067. msgctxt "support_roof_material_flow description"
  1068. msgid "Flow compensation on support roof lines."
  1069. msgstr "支持材天井面のフロー補正。"
  1070. #: fdmprinter.def.json
  1071. msgctxt "support_material_flow description"
  1072. msgid "Flow compensation on support structure lines."
  1073. msgstr "支持材のフロー補正。"
  1074. #: fdmprinter.def.json
  1075. msgctxt "wall_0_material_flow_layer_0 description"
  1076. msgid "Flow compensation on the outermost wall line of the first layer."
  1077. msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。"
  1078. #: fdmprinter.def.json
  1079. msgctxt "wall_0_material_flow description"
  1080. msgid "Flow compensation on the outermost wall line."
  1081. msgstr "最外壁のフロー補正。"
  1082. #: fdmprinter.def.json
  1083. msgctxt "skin_material_flow description"
  1084. msgid "Flow compensation on top/bottom lines."
  1085. msgstr "上面/下面のフロー補正。"
  1086. #: fdmprinter.def.json
  1087. msgctxt "wall_x_material_flow_layer_0 description"
  1088. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1089. msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)"
  1090. #: fdmprinter.def.json
  1091. msgctxt "wall_x_material_flow description"
  1092. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1093. msgstr "最外壁以外の壁のフロー補正。"
  1094. #: fdmprinter.def.json
  1095. msgctxt "wall_material_flow description"
  1096. msgid "Flow compensation on wall lines."
  1097. msgstr "壁のフロー補正。"
  1098. #: fdmprinter.def.json
  1099. msgctxt "material_flow description"
  1100. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1101. msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。"
  1102. #: fdmprinter.def.json
  1103. msgctxt "material_flush_purge_length label"
  1104. msgid "Flush Purge Length"
  1105. msgstr "フラッシュパージ長さ"
  1106. #: fdmprinter.def.json
  1107. msgctxt "material_flush_purge_speed label"
  1108. msgid "Flush Purge Speed"
  1109. msgstr "フラッシュパージ速度"
  1110. #: fdmprinter.def.json
  1111. msgctxt "min_wall_line_width description"
  1112. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  1113. msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。"
  1114. #: fdmprinter.def.json
  1115. msgctxt "support_tree_rest_preference option buildplate"
  1116. msgid "Force Only Buildplate"
  1117. msgstr ""
  1118. #: fdmprinter.def.json
  1119. msgctxt "z_seam_position option front"
  1120. msgid "Front"
  1121. msgstr "前"
  1122. #: fdmprinter.def.json
  1123. msgctxt "z_seam_position option frontleft"
  1124. msgid "Front Left"
  1125. msgstr "前左"
  1126. #: fdmprinter.def.json
  1127. msgctxt "z_seam_position option frontright"
  1128. msgid "Front Right"
  1129. msgstr "前方右"
  1130. #: fdmprinter.def.json
  1131. msgctxt "draft_shield_height_limitation option full"
  1132. msgid "Full"
  1133. msgstr "制限なし"
  1134. #: fdmprinter.def.json
  1135. msgctxt "magic_fuzzy_skin_enabled label"
  1136. msgid "Fuzzy Skin"
  1137. msgstr "ファジースキン"
  1138. #: fdmprinter.def.json
  1139. msgctxt "magic_fuzzy_skin_point_density label"
  1140. msgid "Fuzzy Skin Density"
  1141. msgstr "ファジースキンの密度"
  1142. #: fdmprinter.def.json
  1143. msgctxt "magic_fuzzy_skin_outside_only label"
  1144. msgid "Fuzzy Skin Outside Only"
  1145. msgstr "ファジースキン外のみ"
  1146. #: fdmprinter.def.json
  1147. msgctxt "magic_fuzzy_skin_point_dist label"
  1148. msgid "Fuzzy Skin Point Distance"
  1149. msgstr "ファジースキン点間距離"
  1150. #: fdmprinter.def.json
  1151. msgctxt "magic_fuzzy_skin_thickness label"
  1152. msgid "Fuzzy Skin Thickness"
  1153. msgstr "ファジースキンの厚さ"
  1154. #: fdmprinter.def.json
  1155. msgctxt "machine_gcode_flavor label"
  1156. msgid "G-code Flavor"
  1157. msgstr "G-codeフレーバー"
  1158. #: fdmprinter.def.json
  1159. msgctxt "machine_end_gcode description"
  1160. msgid ""
  1161. "G-code commands to be executed at the very end - separated by \n"
  1162. "."
  1163. msgstr ""
  1164. "最後に実行するG-codeコマンドは、\n"
  1165. "で区切ります。"
  1166. #: fdmprinter.def.json
  1167. msgctxt "machine_start_gcode description"
  1168. msgid ""
  1169. "G-code commands to be executed at the very start - separated by \n"
  1170. "."
  1171. msgstr ""
  1172. "最初に実行するG-codeコマンドは、\n"
  1173. "で区切ります。"
  1174. #: fdmprinter.def.json
  1175. msgctxt "material_guid description"
  1176. msgid "GUID of the material. This is set automatically."
  1177. msgstr "マテリアルのGUID。これは自動的に設定されます。"
  1178. #: fdmprinter.def.json
  1179. msgctxt "gantry_height label"
  1180. msgid "Gantry Height"
  1181. msgstr "ガントリーの高さ"
  1182. #: fdmprinter.def.json
  1183. msgctxt "interlocking_enable label"
  1184. msgid "Generate Interlocking Structure"
  1185. msgstr "インターロック構造の生成"
  1186. #: fdmprinter.def.json
  1187. msgctxt "support_enable label"
  1188. msgid "Generate Support"
  1189. msgstr "サポート開始"
  1190. #: fdmprinter.def.json
  1191. msgctxt "support_brim_enable description"
  1192. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  1193. msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。"
  1194. #: fdmprinter.def.json
  1195. msgctxt "support_interface_enable description"
  1196. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  1197. msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。"
  1198. #: fdmprinter.def.json
  1199. msgctxt "support_bottom_enable description"
  1200. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  1201. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  1202. #: fdmprinter.def.json
  1203. msgctxt "support_roof_enable description"
  1204. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  1205. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  1206. #: fdmprinter.def.json
  1207. msgctxt "support_enable description"
  1208. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1209. msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。"
  1210. #: fdmprinter.def.json
  1211. msgctxt "machine_buildplate_type option glass"
  1212. msgid "Glass"
  1213. msgstr "ガラス"
  1214. #: fdmprinter.def.json
  1215. msgctxt "ironing_enabled description"
  1216. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1217. msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。"
  1218. #: fdmprinter.def.json
  1219. msgctxt "gradual_infill_step_height label"
  1220. msgid "Gradual Infill Step Height"
  1221. msgstr "インフィル半減高さ"
  1222. #: fdmprinter.def.json
  1223. msgctxt "gradual_infill_steps label"
  1224. msgid "Gradual Infill Steps"
  1225. msgstr "インフィル半減回数"
  1226. #: fdmprinter.def.json
  1227. msgctxt "gradual_support_infill_step_height label"
  1228. msgid "Gradual Support Infill Step Height"
  1229. msgstr "サポートインフィル半減前の高さ"
  1230. #: fdmprinter.def.json
  1231. msgctxt "gradual_support_infill_steps label"
  1232. msgid "Gradual Support Infill Steps"
  1233. msgstr "サポートインフィル半減回数"
  1234. #: fdmprinter.def.json
  1235. msgctxt "cool_min_temperature description"
  1236. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  1237. msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。"
  1238. #: fdmprinter.def.json
  1239. msgctxt "infill_pattern option grid"
  1240. msgid "Grid"
  1241. msgstr "グリッド"
  1242. #: fdmprinter.def.json
  1243. msgctxt "support_bottom_pattern option grid"
  1244. msgid "Grid"
  1245. msgstr "グリッド"
  1246. #: fdmprinter.def.json
  1247. msgctxt "support_interface_pattern option grid"
  1248. msgid "Grid"
  1249. msgstr "グリッド"
  1250. #: fdmprinter.def.json
  1251. msgctxt "support_pattern option grid"
  1252. msgid "Grid"
  1253. msgstr "グリッド"
  1254. #: fdmprinter.def.json
  1255. msgctxt "support_roof_pattern option grid"
  1256. msgid "Grid"
  1257. msgstr "グリッド"
  1258. #: fdmprinter.def.json
  1259. msgctxt "machine_gcode_flavor option Griffin"
  1260. msgid "Griffin"
  1261. msgstr "Griffin"
  1262. #: fdmprinter.def.json
  1263. msgctxt "infill_pattern option gyroid"
  1264. msgid "Gyroid"
  1265. msgstr "ジャイロイド"
  1266. #: fdmprinter.def.json
  1267. msgctxt "support_pattern option gyroid"
  1268. msgid "Gyroid"
  1269. msgstr "ジャイロイド"
  1270. #: fdmprinter.def.json
  1271. msgctxt "machine_heated_build_volume label"
  1272. msgid "Has Build Volume Temperature Stabilization"
  1273. msgstr "造形温度安定化処理有り"
  1274. #: fdmprinter.def.json
  1275. msgctxt "machine_heated_bed label"
  1276. msgid "Has Heated Build Plate"
  1277. msgstr "加熱式ビルドプレートあり"
  1278. #: fdmprinter.def.json
  1279. msgctxt "machine_nozzle_heat_up_speed label"
  1280. msgid "Heat Up Speed"
  1281. msgstr "加熱速度"
  1282. #: fdmprinter.def.json
  1283. msgctxt "machine_heat_zone_length label"
  1284. msgid "Heat Zone Length"
  1285. msgstr "ノズル加熱長さ"
  1286. #: fdmprinter.def.json
  1287. msgctxt "draft_shield_height description"
  1288. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1289. msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。"
  1290. #: fdmprinter.def.json
  1291. msgctxt "z_seam_corner option z_seam_corner_inner"
  1292. msgid "Hide Seam"
  1293. msgstr "シーム非表示"
  1294. #: fdmprinter.def.json
  1295. msgctxt "z_seam_corner option z_seam_corner_any"
  1296. msgid "Hide or Expose Seam"
  1297. msgstr "シーム表示/非表示"
  1298. #: fdmprinter.def.json
  1299. msgctxt "hole_xy_offset label"
  1300. msgid "Hole Horizontal Expansion"
  1301. msgstr "穴の水平展開"
  1302. #: fdmprinter.def.json
  1303. msgctxt "hole_xy_offset_max_diameter label"
  1304. msgid "Hole Horizontal Expansion Max Diameter"
  1305. msgstr ""
  1306. #: fdmprinter.def.json
  1307. msgctxt "small_hole_max_size description"
  1308. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1309. msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。"
  1310. #: fdmprinter.def.json
  1311. msgctxt "xy_offset label"
  1312. msgid "Horizontal Expansion"
  1313. msgstr "水平展開"
  1314. #: fdmprinter.def.json
  1315. msgctxt "material_shrinkage_percentage_xy label"
  1316. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1317. msgstr "水平スケールファクタ収縮補正"
  1318. #: fdmprinter.def.json
  1319. msgctxt "material_break_preparation_retracted_position description"
  1320. msgid "How far the filament can be stretched before it breaks, while heated."
  1321. msgstr "加熱中にフィラメントの引き出しが生じる距離。"
  1322. #: fdmprinter.def.json
  1323. msgctxt "material_anti_ooze_retracted_position description"
  1324. msgid "How far the material needs to be retracted before it stops oozing."
  1325. msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。"
  1326. #: fdmprinter.def.json
  1327. msgctxt "flow_rate_extrusion_offset_factor description"
  1328. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  1329. msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。"
  1330. #: fdmprinter.def.json
  1331. msgctxt "material_break_retracted_position description"
  1332. msgid "How far to retract the filament in order to break it cleanly."
  1333. msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。"
  1334. #: fdmprinter.def.json
  1335. msgctxt "material_break_preparation_speed description"
  1336. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1337. msgstr "フィラメントの引き出しが起こるための引き戻しの距離。"
  1338. #: fdmprinter.def.json
  1339. msgctxt "material_anti_ooze_retraction_speed description"
  1340. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1341. msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。"
  1342. #: fdmprinter.def.json
  1343. msgctxt "material_end_of_filament_purge_speed description"
  1344. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1345. msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。"
  1346. #: fdmprinter.def.json
  1347. msgctxt "material_flush_purge_speed description"
  1348. msgid "How fast to prime the material after switching to a different material."
  1349. msgstr "材料を切り替えた後に、材料の下準備をする速度。"
  1350. #: fdmprinter.def.json
  1351. msgctxt "material_maximum_park_duration description"
  1352. msgid "How long the material can be kept out of dry storage safely."
  1353. msgstr "材料を乾燥保管容器の外に置くことができる期間。"
  1354. #: fdmprinter.def.json
  1355. msgctxt "machine_steps_per_mm_x description"
  1356. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1357. msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  1358. #: fdmprinter.def.json
  1359. msgctxt "machine_steps_per_mm_y description"
  1360. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1361. msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  1362. #: fdmprinter.def.json
  1363. msgctxt "machine_steps_per_mm_z description"
  1364. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1365. msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  1366. #: fdmprinter.def.json
  1367. msgctxt "machine_steps_per_mm_e description"
  1368. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1369. msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。"
  1370. #: fdmprinter.def.json
  1371. msgctxt "material_end_of_filament_purge_length description"
  1372. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1373. msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  1374. #: fdmprinter.def.json
  1375. msgctxt "material_flush_purge_length description"
  1376. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1377. msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  1378. #: fdmprinter.def.json
  1379. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1380. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  1381. msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。"
  1382. #: fdmprinter.def.json
  1383. msgctxt "support_interface_priority description"
  1384. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1385. msgstr ""
  1386. #: fdmprinter.def.json
  1387. msgctxt "support_tree_min_height_to_model description"
  1388. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1389. msgstr ""
  1390. #: fdmprinter.def.json
  1391. msgctxt "bridge_skin_support_threshold description"
  1392. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  1393. msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。"
  1394. #: fdmprinter.def.json
  1395. msgctxt "bridge_enable_more_layers description"
  1396. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  1397. msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。"
  1398. #: fdmprinter.def.json
  1399. msgctxt "wall_transition_filter_distance description"
  1400. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  1401. msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。"
  1402. #: fdmprinter.def.json
  1403. msgctxt "raft_margin description"
  1404. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1405. msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。"
  1406. #: fdmprinter.def.json
  1407. msgctxt "meshfix_union_all description"
  1408. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  1409. msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。"
  1410. #: fdmprinter.def.json
  1411. msgctxt "material_bed_temp_prepend label"
  1412. msgid "Include Build Plate Temperature"
  1413. msgstr "ビルドプレート温度を含む"
  1414. #: fdmprinter.def.json
  1415. msgctxt "material_print_temp_prepend label"
  1416. msgid "Include Material Temperatures"
  1417. msgstr "マテリアル温度を含む"
  1418. #: fdmprinter.def.json
  1419. msgctxt "slicing_tolerance option inclusive"
  1420. msgid "Inclusive"
  1421. msgstr "包括"
  1422. #: fdmprinter.def.json
  1423. msgctxt "infill description"
  1424. msgid "Infill"
  1425. msgstr "インフィル"
  1426. #: fdmprinter.def.json
  1427. msgctxt "infill label"
  1428. msgid "Infill"
  1429. msgstr "インフィル"
  1430. #: fdmprinter.def.json
  1431. msgctxt "acceleration_infill label"
  1432. msgid "Infill Acceleration"
  1433. msgstr "インフィル加速度"
  1434. #: fdmprinter.def.json
  1435. msgctxt "infill_before_walls label"
  1436. msgid "Infill Before Walls"
  1437. msgstr "インフィル優先"
  1438. #: fdmprinter.def.json
  1439. msgctxt "infill_sparse_density label"
  1440. msgid "Infill Density"
  1441. msgstr "インフィル密度"
  1442. #: fdmprinter.def.json
  1443. msgctxt "infill_extruder_nr label"
  1444. msgid "Infill Extruder"
  1445. msgstr "インフィルエクストルーダー"
  1446. #: fdmprinter.def.json
  1447. msgctxt "infill_material_flow label"
  1448. msgid "Infill Flow"
  1449. msgstr "インフィルフロー"
  1450. #: fdmprinter.def.json
  1451. msgctxt "jerk_infill label"
  1452. msgid "Infill Jerk"
  1453. msgstr "インフィルジャーク"
  1454. #: fdmprinter.def.json
  1455. msgctxt "infill_sparse_thickness label"
  1456. msgid "Infill Layer Thickness"
  1457. msgstr "インフィル層の厚さ"
  1458. #: fdmprinter.def.json
  1459. msgctxt "infill_angles label"
  1460. msgid "Infill Line Directions"
  1461. msgstr "インフィルラインの向き"
  1462. #: fdmprinter.def.json
  1463. msgctxt "infill_line_distance label"
  1464. msgid "Infill Line Distance"
  1465. msgstr "インフィルライン距離"
  1466. #: fdmprinter.def.json
  1467. msgctxt "infill_multiplier label"
  1468. msgid "Infill Line Multiplier"
  1469. msgstr "インフィルライン乗算"
  1470. #: fdmprinter.def.json
  1471. msgctxt "infill_line_width label"
  1472. msgid "Infill Line Width"
  1473. msgstr "インフィルラインの幅"
  1474. #: fdmprinter.def.json
  1475. msgctxt "infill_mesh label"
  1476. msgid "Infill Mesh"
  1477. msgstr "インフィルメッシュ"
  1478. #: fdmprinter.def.json
  1479. msgctxt "infill_support_angle label"
  1480. msgid "Infill Overhang Angle"
  1481. msgstr "インフィルオーバーハング角度"
  1482. #: fdmprinter.def.json
  1483. msgctxt "infill_overlap_mm label"
  1484. msgid "Infill Overlap"
  1485. msgstr "インフィル公差"
  1486. #: fdmprinter.def.json
  1487. msgctxt "infill_overlap label"
  1488. msgid "Infill Overlap Percentage"
  1489. msgstr "インフィル公差量"
  1490. #: fdmprinter.def.json
  1491. msgctxt "infill_pattern label"
  1492. msgid "Infill Pattern"
  1493. msgstr "インフィルパターン"
  1494. #: fdmprinter.def.json
  1495. msgctxt "speed_infill label"
  1496. msgid "Infill Speed"
  1497. msgstr "インフィル速度"
  1498. #: fdmprinter.def.json
  1499. msgctxt "infill_support_enabled label"
  1500. msgid "Infill Support"
  1501. msgstr "インフィルサポート"
  1502. #: fdmprinter.def.json
  1503. msgctxt "infill_enable_travel_optimization label"
  1504. msgid "Infill Travel Optimization"
  1505. msgstr "インフィル移動最適化"
  1506. #: fdmprinter.def.json
  1507. msgctxt "infill_wipe_dist label"
  1508. msgid "Infill Wipe Distance"
  1509. msgstr "インフィル移動距離"
  1510. #: fdmprinter.def.json
  1511. msgctxt "infill_offset_x label"
  1512. msgid "Infill X Offset"
  1513. msgstr "インフィルXオフセット"
  1514. #: fdmprinter.def.json
  1515. msgctxt "infill_offset_y label"
  1516. msgid "Infill Y Offset"
  1517. msgstr "インフィルYオフセット"
  1518. #: fdmprinter.def.json
  1519. msgctxt "initial_bottom_layers label"
  1520. msgid "Initial Bottom Layers"
  1521. msgstr "初期底面レイヤー"
  1522. #: fdmprinter.def.json
  1523. msgctxt "cool_fan_speed_0 label"
  1524. msgid "Initial Fan Speed"
  1525. msgstr "初期ファン速度"
  1526. #: fdmprinter.def.json
  1527. msgctxt "acceleration_layer_0 label"
  1528. msgid "Initial Layer Acceleration"
  1529. msgstr "初期レイヤー加速度"
  1530. #: fdmprinter.def.json
  1531. msgctxt "skin_material_flow_layer_0 label"
  1532. msgid "Initial Layer Bottom Flow"
  1533. msgstr "初期レイヤーの底面フロー"
  1534. #: fdmprinter.def.json
  1535. msgctxt "support_tree_bp_diameter label"
  1536. msgid "Initial Layer Diameter"
  1537. msgstr ""
  1538. #: fdmprinter.def.json
  1539. msgctxt "material_flow_layer_0 label"
  1540. msgid "Initial Layer Flow"
  1541. msgstr "初期レイヤーフロー"
  1542. #: fdmprinter.def.json
  1543. msgctxt "layer_height_0 label"
  1544. msgid "Initial Layer Height"
  1545. msgstr "初期レイヤー高さ"
  1546. #: fdmprinter.def.json
  1547. msgctxt "xy_offset_layer_0 label"
  1548. msgid "Initial Layer Horizontal Expansion"
  1549. msgstr "初期層水平展開"
  1550. #: fdmprinter.def.json
  1551. msgctxt "wall_x_material_flow_layer_0 label"
  1552. msgid "Initial Layer Inner Wall Flow"
  1553. msgstr "初期レイヤーインナーウォールのフロー"
  1554. #: fdmprinter.def.json
  1555. msgctxt "jerk_layer_0 label"
  1556. msgid "Initial Layer Jerk"
  1557. msgstr "初期レイヤージャーク"
  1558. #: fdmprinter.def.json
  1559. msgctxt "initial_layer_line_width_factor label"
  1560. msgid "Initial Layer Line Width"
  1561. msgstr "初期レイヤーのライン幅"
  1562. #: fdmprinter.def.json
  1563. msgctxt "wall_0_material_flow_layer_0 label"
  1564. msgid "Initial Layer Outer Wall Flow"
  1565. msgstr "初期レイヤーアウターウォールのフロー"
  1566. #: fdmprinter.def.json
  1567. msgctxt "acceleration_print_layer_0 label"
  1568. msgid "Initial Layer Print Acceleration"
  1569. msgstr "初期レイヤー印刷加速度"
  1570. #: fdmprinter.def.json
  1571. msgctxt "jerk_print_layer_0 label"
  1572. msgid "Initial Layer Print Jerk"
  1573. msgstr "初期レイヤー印刷ジャーク"
  1574. #: fdmprinter.def.json
  1575. msgctxt "speed_print_layer_0 label"
  1576. msgid "Initial Layer Print Speed"
  1577. msgstr "初期レイヤー印刷速度"
  1578. #: fdmprinter.def.json
  1579. msgctxt "speed_layer_0 label"
  1580. msgid "Initial Layer Speed"
  1581. msgstr "初期レイヤー速度"
  1582. #: fdmprinter.def.json
  1583. msgctxt "support_initial_layer_line_distance label"
  1584. msgid "Initial Layer Support Line Distance"
  1585. msgstr "初期層サポートラインの距離"
  1586. #: fdmprinter.def.json
  1587. msgctxt "acceleration_travel_layer_0 label"
  1588. msgid "Initial Layer Travel Acceleration"
  1589. msgstr "初期レイヤー移動加速度"
  1590. #: fdmprinter.def.json
  1591. msgctxt "jerk_travel_layer_0 label"
  1592. msgid "Initial Layer Travel Jerk"
  1593. msgstr "初期レイヤー移動ジャーク"
  1594. #: fdmprinter.def.json
  1595. msgctxt "speed_travel_layer_0 label"
  1596. msgid "Initial Layer Travel Speed"
  1597. msgstr "初期レイヤー移動速度"
  1598. #: fdmprinter.def.json
  1599. msgctxt "layer_0_z_overlap label"
  1600. msgid "Initial Layer Z Overlap"
  1601. msgstr "初期レイヤーZのオーバーラップ"
  1602. #: fdmprinter.def.json
  1603. msgctxt "material_initial_print_temperature label"
  1604. msgid "Initial Printing Temperature"
  1605. msgstr "初期印刷温度"
  1606. #: fdmprinter.def.json
  1607. msgctxt "acceleration_wall_x label"
  1608. msgid "Inner Wall Acceleration"
  1609. msgstr "内壁加速度"
  1610. #: fdmprinter.def.json
  1611. msgctxt "wall_x_extruder_nr label"
  1612. msgid "Inner Wall Extruder"
  1613. msgstr "内壁用エクストルーダー"
  1614. #: fdmprinter.def.json
  1615. msgctxt "jerk_wall_x label"
  1616. msgid "Inner Wall Jerk"
  1617. msgstr "内壁ジャーク"
  1618. #: fdmprinter.def.json
  1619. msgctxt "speed_wall_x label"
  1620. msgid "Inner Wall Speed"
  1621. msgstr "内壁速度"
  1622. #: fdmprinter.def.json
  1623. msgctxt "wall_x_material_flow label"
  1624. msgid "Inner Wall(s) Flow"
  1625. msgstr "内壁のフロー"
  1626. #: fdmprinter.def.json
  1627. msgctxt "wall_line_width_x label"
  1628. msgid "Inner Wall(s) Line Width"
  1629. msgstr "内側ウォールライン幅"
  1630. #: fdmprinter.def.json
  1631. msgctxt "wall_0_inset description"
  1632. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  1633. msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。"
  1634. #: fdmprinter.def.json
  1635. msgctxt "inset_direction option inside_out"
  1636. msgid "Inside To Outside"
  1637. msgstr "内側から外側へ"
  1638. #: fdmprinter.def.json
  1639. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1640. msgid "Interface lines preferred"
  1641. msgstr ""
  1642. #: fdmprinter.def.json
  1643. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1644. msgid "Interface preferred"
  1645. msgstr ""
  1646. #: fdmprinter.def.json
  1647. msgctxt "interlocking_beam_layer_count label"
  1648. msgid "Interlocking Beam Layer Count"
  1649. msgstr "インターロックビームレイヤー数"
  1650. #: fdmprinter.def.json
  1651. msgctxt "interlocking_beam_width label"
  1652. msgid "Interlocking Beam Width"
  1653. msgstr "インターロックビーム幅"
  1654. #: fdmprinter.def.json
  1655. msgctxt "interlocking_boundary_avoidance label"
  1656. msgid "Interlocking Boundary Avoidance"
  1657. msgstr "インターロック境界回避"
  1658. #: fdmprinter.def.json
  1659. msgctxt "interlocking_depth label"
  1660. msgid "Interlocking Depth"
  1661. msgstr "インターロックの奥行"
  1662. #: fdmprinter.def.json
  1663. msgctxt "interlocking_orientation label"
  1664. msgid "Interlocking Structure Orientation"
  1665. msgstr "インターロック構造の向き"
  1666. #: fdmprinter.def.json
  1667. msgctxt "ironing_only_highest_layer label"
  1668. msgid "Iron Only Highest Layer"
  1669. msgstr "最上層のみアイロン"
  1670. #: fdmprinter.def.json
  1671. msgctxt "acceleration_ironing label"
  1672. msgid "Ironing Acceleration"
  1673. msgstr "アイロン加速度"
  1674. #: fdmprinter.def.json
  1675. msgctxt "ironing_flow label"
  1676. msgid "Ironing Flow"
  1677. msgstr "アイロンフロー"
  1678. #: fdmprinter.def.json
  1679. msgctxt "ironing_inset label"
  1680. msgid "Ironing Inset"
  1681. msgstr "アイロンインセット"
  1682. #: fdmprinter.def.json
  1683. msgctxt "jerk_ironing label"
  1684. msgid "Ironing Jerk"
  1685. msgstr "アイロンジャーク"
  1686. #: fdmprinter.def.json
  1687. msgctxt "ironing_line_spacing label"
  1688. msgid "Ironing Line Spacing"
  1689. msgstr "アイロン線のスペース"
  1690. #: fdmprinter.def.json
  1691. msgctxt "ironing_pattern label"
  1692. msgid "Ironing Pattern"
  1693. msgstr "アイロンパターン"
  1694. #: fdmprinter.def.json
  1695. msgctxt "speed_ironing label"
  1696. msgid "Ironing Speed"
  1697. msgstr "アイロン速度"
  1698. #: fdmprinter.def.json
  1699. msgctxt "machine_center_is_zero label"
  1700. msgid "Is Center Origin"
  1701. msgstr "中心位置"
  1702. #: fdmprinter.def.json
  1703. msgctxt "material_crystallinity description"
  1704. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1705. msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?"
  1706. #: fdmprinter.def.json
  1707. msgctxt "magic_fuzzy_skin_outside_only description"
  1708. msgid "Jitter only the parts' outlines and not the parts' holes."
  1709. msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。"
  1710. #: fdmprinter.def.json
  1711. msgctxt "meshfix_keep_open_polygons label"
  1712. msgid "Keep Disconnected Faces"
  1713. msgstr "スティッチできない部分を保持"
  1714. #: fdmprinter.def.json
  1715. msgctxt "layer_height label"
  1716. msgid "Layer Height"
  1717. msgstr "レイヤー高さ"
  1718. #: fdmprinter.def.json
  1719. msgctxt "layer_start_x label"
  1720. msgid "Layer Start X"
  1721. msgstr "レイヤー始点X"
  1722. #: fdmprinter.def.json
  1723. msgctxt "layer_start_y label"
  1724. msgid "Layer Start Y"
  1725. msgstr "レイヤー始点Y"
  1726. #: fdmprinter.def.json
  1727. msgctxt "raft_base_thickness description"
  1728. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1729. msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。"
  1730. #: fdmprinter.def.json
  1731. msgctxt "raft_interface_thickness description"
  1732. msgid "Layer thickness of the middle raft layer."
  1733. msgstr "中間のラフト層の層の厚さ。"
  1734. #: fdmprinter.def.json
  1735. msgctxt "raft_surface_thickness description"
  1736. msgid "Layer thickness of the top raft layers."
  1737. msgstr "トップラフト層の層厚。"
  1738. #: fdmprinter.def.json
  1739. msgctxt "support_skip_zag_per_mm description"
  1740. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1741. msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。"
  1742. #: fdmprinter.def.json
  1743. msgctxt "z_seam_position option left"
  1744. msgid "Left"
  1745. msgstr "左"
  1746. #: fdmprinter.def.json
  1747. msgctxt "cool_lift_head label"
  1748. msgid "Lift Head"
  1749. msgstr "ヘッド持ち上げ"
  1750. #: fdmprinter.def.json
  1751. msgctxt "infill_pattern option lightning"
  1752. msgid "Lightning"
  1753. msgstr "ライトニング"
  1754. #: fdmprinter.def.json
  1755. msgctxt "lightning_infill_overhang_angle label"
  1756. msgid "Lightning Infill Overhang Angle"
  1757. msgstr "ライトニングインフィルオーバーハング角度"
  1758. #: fdmprinter.def.json
  1759. msgctxt "lightning_infill_prune_angle label"
  1760. msgid "Lightning Infill Prune Angle"
  1761. msgstr "ライトニングインフィル刈り込み角度"
  1762. #: fdmprinter.def.json
  1763. msgctxt "lightning_infill_straightening_angle label"
  1764. msgid "Lightning Infill Straightening Angle"
  1765. msgstr "ライトニングインフィル矯正角度"
  1766. #: fdmprinter.def.json
  1767. msgctxt "lightning_infill_support_angle label"
  1768. msgid "Lightning Infill Support Angle"
  1769. msgstr "ライトニングインフィルサポート角度"
  1770. #: fdmprinter.def.json
  1771. msgctxt "support_tree_limit_branch_reach label"
  1772. msgid "Limit Branch Reach"
  1773. msgstr ""
  1774. #: fdmprinter.def.json
  1775. msgctxt "support_tree_limit_branch_reach description"
  1776. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1777. msgstr ""
  1778. #: fdmprinter.def.json
  1779. msgctxt "cutting_mesh description"
  1780. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  1781. msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。"
  1782. #: fdmprinter.def.json
  1783. msgctxt "draft_shield_height_limitation option limited"
  1784. msgid "Limited"
  1785. msgstr "制限あり"
  1786. #: fdmprinter.def.json
  1787. msgctxt "line_width label"
  1788. msgid "Line Width"
  1789. msgstr "ライン幅"
  1790. #: fdmprinter.def.json
  1791. msgctxt "infill_pattern option lines"
  1792. msgid "Lines"
  1793. msgstr "ライン"
  1794. #: fdmprinter.def.json
  1795. msgctxt "roofing_pattern option lines"
  1796. msgid "Lines"
  1797. msgstr "直線"
  1798. #: fdmprinter.def.json
  1799. msgctxt "support_bottom_pattern option lines"
  1800. msgid "Lines"
  1801. msgstr "ライン"
  1802. #: fdmprinter.def.json
  1803. msgctxt "support_interface_pattern option lines"
  1804. msgid "Lines"
  1805. msgstr "ライン"
  1806. #: fdmprinter.def.json
  1807. msgctxt "support_pattern option lines"
  1808. msgid "Lines"
  1809. msgstr "ライン"
  1810. #: fdmprinter.def.json
  1811. msgctxt "support_roof_pattern option lines"
  1812. msgid "Lines"
  1813. msgstr "ライン"
  1814. #: fdmprinter.def.json
  1815. msgctxt "top_bottom_pattern option lines"
  1816. msgid "Lines"
  1817. msgstr "直線"
  1818. #: fdmprinter.def.json
  1819. msgctxt "top_bottom_pattern_0 option lines"
  1820. msgid "Lines"
  1821. msgstr "直線"
  1822. #: fdmprinter.def.json
  1823. msgctxt "machine_gcode_flavor option MACH3"
  1824. msgid "Mach3"
  1825. msgstr "Mach3"
  1826. #: fdmprinter.def.json
  1827. msgctxt "machine_settings label"
  1828. msgid "Machine"
  1829. msgstr "プリンター"
  1830. #: fdmprinter.def.json
  1831. msgctxt "machine_depth label"
  1832. msgid "Machine Depth"
  1833. msgstr "プリンターの奥行"
  1834. #: fdmprinter.def.json
  1835. msgctxt "machine_head_with_fans_polygon label"
  1836. msgid "Machine Head & Fan Polygon"
  1837. msgstr "プリントヘッドとファンポリゴン"
  1838. #: fdmprinter.def.json
  1839. msgctxt "machine_height label"
  1840. msgid "Machine Height"
  1841. msgstr "プリンターの高さ"
  1842. #: fdmprinter.def.json
  1843. msgctxt "machine_name label"
  1844. msgid "Machine Type"
  1845. msgstr "プリンターのタイプ"
  1846. #: fdmprinter.def.json
  1847. msgctxt "machine_width label"
  1848. msgid "Machine Width"
  1849. msgstr "プリンターの幅"
  1850. #: fdmprinter.def.json
  1851. msgctxt "machine_settings description"
  1852. msgid "Machine specific settings"
  1853. msgstr "プリンター詳細設定"
  1854. #: fdmprinter.def.json
  1855. msgctxt "conical_overhang_enabled label"
  1856. msgid "Make Overhang Printable"
  1857. msgstr "オーバーハング印刷可能"
  1858. #: fdmprinter.def.json
  1859. msgctxt "multiple_mesh_overlap description"
  1860. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1861. msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。"
  1862. #: fdmprinter.def.json
  1863. msgctxt "support_conical_enabled description"
  1864. msgid "Make support areas smaller at the bottom than at the overhang."
  1865. msgstr "オーバーハング部分よりも底面の支持領域を小さくする。"
  1866. #: fdmprinter.def.json
  1867. msgctxt "support_mesh_drop_down description"
  1868. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1869. msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。"
  1870. #: fdmprinter.def.json
  1871. msgctxt "extruder_prime_pos_abs description"
  1872. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1873. msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。"
  1874. #: fdmprinter.def.json
  1875. msgctxt "layer_0_z_overlap description"
  1876. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  1877. msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。"
  1878. #: fdmprinter.def.json
  1879. msgctxt "meshfix description"
  1880. msgid "Make the meshes more suited for 3D printing."
  1881. msgstr "3Dプリンティングにさらに適したメッシュを作成します。"
  1882. #: fdmprinter.def.json
  1883. msgctxt "machine_gcode_flavor option Makerbot"
  1884. msgid "Makerbot"
  1885. msgstr "Makerbot"
  1886. #: fdmprinter.def.json
  1887. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1888. msgid "Marlin"
  1889. msgstr "Marlin"
  1890. #: fdmprinter.def.json
  1891. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1892. msgid "Marlin (Volumetric)"
  1893. msgstr "Marlin (Volumetric)"
  1894. #: fdmprinter.def.json
  1895. msgctxt "material description"
  1896. msgid "Material"
  1897. msgstr "マテリアル"
  1898. #: fdmprinter.def.json
  1899. msgctxt "material label"
  1900. msgid "Material"
  1901. msgstr "マテリアル"
  1902. #: fdmprinter.def.json
  1903. msgctxt "material_guid label"
  1904. msgid "Material GUID"
  1905. msgstr "マテリアルGUID"
  1906. #: fdmprinter.def.json
  1907. msgctxt "max_extrusion_before_wipe label"
  1908. msgid "Material Volume Between Wipes"
  1909. msgstr "ワイプ間の材料の量"
  1910. #: fdmprinter.def.json
  1911. msgctxt "retraction_combing_max_distance label"
  1912. msgid "Max Comb Distance With No Retract"
  1913. msgstr "引き戻しのない最大コム距離"
  1914. #: fdmprinter.def.json
  1915. msgctxt "machine_max_acceleration_x label"
  1916. msgid "Maximum Acceleration X"
  1917. msgstr "最大加速度X"
  1918. #: fdmprinter.def.json
  1919. msgctxt "machine_max_acceleration_y label"
  1920. msgid "Maximum Acceleration Y"
  1921. msgstr "最大加速度Y"
  1922. #: fdmprinter.def.json
  1923. msgctxt "machine_max_acceleration_z label"
  1924. msgid "Maximum Acceleration Z"
  1925. msgstr "最大加速度Z"
  1926. #: fdmprinter.def.json
  1927. msgctxt "support_tree_angle label"
  1928. msgid "Maximum Branch Angle"
  1929. msgstr ""
  1930. #: fdmprinter.def.json
  1931. msgctxt "meshfix_maximum_deviation label"
  1932. msgid "Maximum Deviation"
  1933. msgstr "最大偏差"
  1934. #: fdmprinter.def.json
  1935. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1936. msgid "Maximum Extrusion Area Deviation"
  1937. msgstr "最大押出領域偏差"
  1938. #: fdmprinter.def.json
  1939. msgctxt "cool_fan_speed_max label"
  1940. msgid "Maximum Fan Speed"
  1941. msgstr "最大ファン速度"
  1942. #: fdmprinter.def.json
  1943. msgctxt "machine_max_acceleration_e label"
  1944. msgid "Maximum Filament Acceleration"
  1945. msgstr "フィラメント最大加速度"
  1946. #: fdmprinter.def.json
  1947. msgctxt "conical_overhang_angle label"
  1948. msgid "Maximum Model Angle"
  1949. msgstr "最大モデル角度"
  1950. #: fdmprinter.def.json
  1951. msgctxt "conical_overhang_hole_size label"
  1952. msgid "Maximum Overhang Hole Area"
  1953. msgstr "オーバーハングした穴の最大領域"
  1954. #: fdmprinter.def.json
  1955. msgctxt "material_maximum_park_duration label"
  1956. msgid "Maximum Park Duration"
  1957. msgstr "最大留め期間"
  1958. #: fdmprinter.def.json
  1959. msgctxt "meshfix_maximum_resolution label"
  1960. msgid "Maximum Resolution"
  1961. msgstr "最大解像度"
  1962. #: fdmprinter.def.json
  1963. msgctxt "retraction_count_max label"
  1964. msgid "Maximum Retraction Count"
  1965. msgstr "最大引き戻し回数"
  1966. #: fdmprinter.def.json
  1967. msgctxt "max_skin_angle_for_expansion label"
  1968. msgid "Maximum Skin Angle for Expansion"
  1969. msgstr "表面展開最大角"
  1970. #: fdmprinter.def.json
  1971. msgctxt "machine_max_feedrate_e label"
  1972. msgid "Maximum Speed E"
  1973. msgstr "最大速度E"
  1974. #: fdmprinter.def.json
  1975. msgctxt "machine_max_feedrate_x label"
  1976. msgid "Maximum Speed X"
  1977. msgstr "最大速度X"
  1978. #: fdmprinter.def.json
  1979. msgctxt "machine_max_feedrate_y label"
  1980. msgid "Maximum Speed Y"
  1981. msgstr "最大速度Y"
  1982. #: fdmprinter.def.json
  1983. msgctxt "machine_max_feedrate_z label"
  1984. msgid "Maximum Speed Z"
  1985. msgstr "最大速度Z"
  1986. #: fdmprinter.def.json
  1987. msgctxt "support_tower_maximum_supported_diameter label"
  1988. msgid "Maximum Tower-Supported Diameter"
  1989. msgstr "最大タワーサポート直径"
  1990. #: fdmprinter.def.json
  1991. msgctxt "meshfix_maximum_travel_resolution label"
  1992. msgid "Maximum Travel Resolution"
  1993. msgstr "最大移動解像度"
  1994. #: fdmprinter.def.json
  1995. msgctxt "machine_max_acceleration_x description"
  1996. msgid "Maximum acceleration for the motor of the X-direction"
  1997. msgstr "X方向のモーターの最大速度"
  1998. #: fdmprinter.def.json
  1999. msgctxt "machine_max_acceleration_y description"
  2000. msgid "Maximum acceleration for the motor of the Y-direction."
  2001. msgstr "Y方向のモーターの最大加速度。"
  2002. #: fdmprinter.def.json
  2003. msgctxt "machine_max_acceleration_z description"
  2004. msgid "Maximum acceleration for the motor of the Z-direction."
  2005. msgstr "Z方向のモーターの最大加速度。"
  2006. #: fdmprinter.def.json
  2007. msgctxt "machine_max_acceleration_e description"
  2008. msgid "Maximum acceleration for the motor of the filament."
  2009. msgstr "フィラメントのモーターの最大加速度。"
  2010. #: fdmprinter.def.json
  2011. msgctxt "bridge_sparse_infill_max_density description"
  2012. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  2013. msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。"
  2014. #: fdmprinter.def.json
  2015. msgctxt "support_tower_maximum_supported_diameter description"
  2016. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2017. msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。"
  2018. #: fdmprinter.def.json
  2019. msgctxt "max_extrusion_before_wipe description"
  2020. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  2021. msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。"
  2022. #: fdmprinter.def.json
  2023. msgctxt "multiple_mesh_overlap label"
  2024. msgid "Merged Meshes Overlap"
  2025. msgstr "重複メッシュのマージ"
  2026. #: fdmprinter.def.json
  2027. msgctxt "meshfix label"
  2028. msgid "Mesh Fixes"
  2029. msgstr "メッシュ修正"
  2030. #: fdmprinter.def.json
  2031. msgctxt "mesh_position_x label"
  2032. msgid "Mesh Position X"
  2033. msgstr "メッシュ位置X"
  2034. #: fdmprinter.def.json
  2035. msgctxt "mesh_position_y label"
  2036. msgid "Mesh Position Y"
  2037. msgstr "メッシュ位置Y"
  2038. #: fdmprinter.def.json
  2039. msgctxt "mesh_position_z label"
  2040. msgid "Mesh Position Z"
  2041. msgstr "メッシュ位置Z"
  2042. #: fdmprinter.def.json
  2043. msgctxt "infill_mesh_order label"
  2044. msgid "Mesh Processing Rank"
  2045. msgstr "メッシュ処理ランク"
  2046. #: fdmprinter.def.json
  2047. msgctxt "mesh_rotation_matrix label"
  2048. msgid "Mesh Rotation Matrix"
  2049. msgstr "メッシュ回転マトリックス"
  2050. #: fdmprinter.def.json
  2051. msgctxt "slicing_tolerance option middle"
  2052. msgid "Middle"
  2053. msgstr "中間"
  2054. #: fdmprinter.def.json
  2055. msgctxt "mold_width label"
  2056. msgid "Minimal Mold Width"
  2057. msgstr "最小型幅"
  2058. #: fdmprinter.def.json
  2059. msgctxt "machine_min_cool_heat_time_window label"
  2060. msgid "Minimal Time Standby Temperature"
  2061. msgstr "スタンバイ温度までの最短時間"
  2062. #: fdmprinter.def.json
  2063. msgctxt "bridge_wall_min_length label"
  2064. msgid "Minimum Bridge Wall Length"
  2065. msgstr "ブリッジ壁の最小長さ"
  2066. #: fdmprinter.def.json
  2067. msgctxt "min_even_wall_line_width label"
  2068. msgid "Minimum Even Wall Line Width"
  2069. msgstr "最小偶数ウォールライン幅"
  2070. #: fdmprinter.def.json
  2071. msgctxt "retraction_extrusion_window label"
  2072. msgid "Minimum Extrusion Distance Window"
  2073. msgstr "最小抽出距離範囲"
  2074. #: fdmprinter.def.json
  2075. msgctxt "min_feature_size label"
  2076. msgid "Minimum Feature Size"
  2077. msgstr "最小フィーチャーサイズ"
  2078. #: fdmprinter.def.json
  2079. msgctxt "machine_minimum_feedrate label"
  2080. msgid "Minimum Feedrate"
  2081. msgstr "最小送り速度"
  2082. #: fdmprinter.def.json
  2083. msgctxt "support_tree_min_height_to_model label"
  2084. msgid "Minimum Height To Model"
  2085. msgstr ""
  2086. #: fdmprinter.def.json
  2087. msgctxt "min_infill_area label"
  2088. msgid "Minimum Infill Area"
  2089. msgstr "最小インフィル領域"
  2090. #: fdmprinter.def.json
  2091. msgctxt "cool_min_layer_time label"
  2092. msgid "Minimum Layer Time"
  2093. msgstr "最小レイヤー時間"
  2094. #: fdmprinter.def.json
  2095. msgctxt "min_odd_wall_line_width label"
  2096. msgid "Minimum Odd Wall Line Width"
  2097. msgstr "最小奇数ウォールライン幅"
  2098. #: fdmprinter.def.json
  2099. msgctxt "minimum_polygon_circumference label"
  2100. msgid "Minimum Polygon Circumference"
  2101. msgstr "最小ポリゴン円周"
  2102. #: fdmprinter.def.json
  2103. msgctxt "min_skin_width_for_expansion label"
  2104. msgid "Minimum Skin Width for Expansion"
  2105. msgstr "表面展開最小角"
  2106. #: fdmprinter.def.json
  2107. msgctxt "cool_min_speed label"
  2108. msgid "Minimum Speed"
  2109. msgstr "最低速度"
  2110. #: fdmprinter.def.json
  2111. msgctxt "minimum_support_area label"
  2112. msgid "Minimum Support Area"
  2113. msgstr "最小サポート領域"
  2114. #: fdmprinter.def.json
  2115. msgctxt "minimum_bottom_area label"
  2116. msgid "Minimum Support Floor Area"
  2117. msgstr "最小サポートフロア領域"
  2118. #: fdmprinter.def.json
  2119. msgctxt "minimum_interface_area label"
  2120. msgid "Minimum Support Interface Area"
  2121. msgstr "最小サポートインターフェイス領域"
  2122. #: fdmprinter.def.json
  2123. msgctxt "minimum_roof_area label"
  2124. msgid "Minimum Support Roof Area"
  2125. msgstr "最小サポートルーフ領域"
  2126. #: fdmprinter.def.json
  2127. msgctxt "support_xy_distance_overhang label"
  2128. msgid "Minimum Support X/Y Distance"
  2129. msgstr "最小サポートX/Y距離"
  2130. #: fdmprinter.def.json
  2131. msgctxt "min_bead_width label"
  2132. msgid "Minimum Thin Wall Line Width"
  2133. msgstr "最小薄肉ウォールライン幅"
  2134. #: fdmprinter.def.json
  2135. msgctxt "coasting_min_volume label"
  2136. msgid "Minimum Volume Before Coasting"
  2137. msgstr "コースティング前の最小ボリューム"
  2138. #: fdmprinter.def.json
  2139. msgctxt "min_wall_line_width label"
  2140. msgid "Minimum Wall Line Width"
  2141. msgstr "最小ウォールライン幅"
  2142. #: fdmprinter.def.json
  2143. msgctxt "minimum_interface_area description"
  2144. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2145. msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2146. #: fdmprinter.def.json
  2147. msgctxt "minimum_support_area description"
  2148. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2149. msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  2150. #: fdmprinter.def.json
  2151. msgctxt "minimum_bottom_area description"
  2152. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2153. msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2154. #: fdmprinter.def.json
  2155. msgctxt "minimum_roof_area description"
  2156. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2157. msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2158. #: fdmprinter.def.json
  2159. msgctxt "min_feature_size description"
  2160. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  2161. msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。"
  2162. #: fdmprinter.def.json
  2163. msgctxt "support_conical_min_width description"
  2164. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2165. msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。"
  2166. #: fdmprinter.def.json
  2167. msgctxt "mold_enabled label"
  2168. msgid "Mold"
  2169. msgstr "型"
  2170. #: fdmprinter.def.json
  2171. msgctxt "mold_angle label"
  2172. msgid "Mold Angle"
  2173. msgstr "型角度"
  2174. #: fdmprinter.def.json
  2175. msgctxt "mold_roof_height label"
  2176. msgid "Mold Roof Height"
  2177. msgstr "型ルーフ高さ"
  2178. #: fdmprinter.def.json
  2179. msgctxt "ironing_monotonic label"
  2180. msgid "Monotonic Ironing Order"
  2181. msgstr "アイロン方向一貫性"
  2182. #: fdmprinter.def.json
  2183. msgctxt "roofing_monotonic label"
  2184. msgid "Monotonic Top Surface Order"
  2185. msgstr "上面方向一貫性"
  2186. #: fdmprinter.def.json
  2187. msgctxt "skin_monotonic label"
  2188. msgid "Monotonic Top/Bottom Order"
  2189. msgstr "上面/底面の方向一貫性"
  2190. #: fdmprinter.def.json
  2191. msgctxt "skirt_line_count description"
  2192. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2193. msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。"
  2194. #: fdmprinter.def.json
  2195. msgctxt "initial_layer_line_width_factor description"
  2196. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2197. msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。"
  2198. #: fdmprinter.def.json
  2199. msgctxt "material_no_load_move_factor label"
  2200. msgid "No Load Move Factor"
  2201. msgstr "無負荷移動係数"
  2202. #: fdmprinter.def.json
  2203. msgctxt "skin_no_small_gaps_heuristic label"
  2204. msgid "No Skin in Z Gaps"
  2205. msgstr "Z 軸ギャップにスキンなし"
  2206. #: fdmprinter.def.json
  2207. msgctxt "blackmagic description"
  2208. msgid "Non-traditional ways to print your models."
  2209. msgstr "これまでにないモデルの印刷方法です。"
  2210. #: fdmprinter.def.json
  2211. msgctxt "adhesion_type option none"
  2212. msgid "None"
  2213. msgstr "なし"
  2214. #: fdmprinter.def.json
  2215. msgctxt "z_seam_corner option z_seam_corner_none"
  2216. msgid "None"
  2217. msgstr "なし"
  2218. #: fdmprinter.def.json
  2219. msgctxt "magic_mesh_surface_mode option normal"
  2220. msgid "Normal"
  2221. msgstr "標準"
  2222. #: fdmprinter.def.json
  2223. msgctxt "support_structure option normal"
  2224. msgid "Normal"
  2225. msgstr "標準"
  2226. #: fdmprinter.def.json
  2227. msgctxt "meshfix_keep_open_polygons description"
  2228. 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 g-code."
  2229. msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。"
  2230. #: fdmprinter.def.json
  2231. msgctxt "retraction_combing option noskin"
  2232. msgid "Not in Skin"
  2233. msgstr "スキン内にない"
  2234. #: fdmprinter.def.json
  2235. msgctxt "retraction_combing option no_outer_surfaces"
  2236. msgid "Not on Outer Surface"
  2237. msgstr "外側表面には適用しない"
  2238. #: fdmprinter.def.json
  2239. msgctxt "machine_nozzle_expansion_angle label"
  2240. msgid "Nozzle Angle"
  2241. msgstr "ノズル角度"
  2242. #: fdmprinter.def.json
  2243. msgctxt "machine_nozzle_size label"
  2244. msgid "Nozzle Diameter"
  2245. msgstr "ノズル内径"
  2246. #: fdmprinter.def.json
  2247. msgctxt "nozzle_disallowed_areas label"
  2248. msgid "Nozzle Disallowed Areas"
  2249. msgstr "ノズル拒否エリア"
  2250. #: fdmprinter.def.json
  2251. msgctxt "machine_nozzle_id label"
  2252. msgid "Nozzle ID"
  2253. msgstr "ノズルID"
  2254. #: fdmprinter.def.json
  2255. msgctxt "machine_nozzle_head_distance label"
  2256. msgid "Nozzle Length"
  2257. msgstr "ノズル長さ"
  2258. #: fdmprinter.def.json
  2259. msgctxt "switch_extruder_extra_prime_amount label"
  2260. msgid "Nozzle Switch Extra Prime Amount"
  2261. msgstr "ノズル切替え後のプライムに必要な余剰量"
  2262. #: fdmprinter.def.json
  2263. msgctxt "switch_extruder_prime_speed label"
  2264. msgid "Nozzle Switch Prime Speed"
  2265. msgstr "ノズルスイッチ押し戻し速度"
  2266. #: fdmprinter.def.json
  2267. msgctxt "switch_extruder_retraction_speed label"
  2268. msgid "Nozzle Switch Retract Speed"
  2269. msgstr "ノズルスイッチ引き込み速度"
  2270. #: fdmprinter.def.json
  2271. msgctxt "switch_extruder_retraction_amount label"
  2272. msgid "Nozzle Switch Retraction Distance"
  2273. msgstr "ノズルスイッチ引き戻し距離"
  2274. #: fdmprinter.def.json
  2275. msgctxt "switch_extruder_retraction_speeds label"
  2276. msgid "Nozzle Switch Retraction Speed"
  2277. msgstr "ノズルスイッチ引き戻し速度"
  2278. #: fdmprinter.def.json
  2279. msgctxt "machine_extruder_count label"
  2280. msgid "Number of Extruders"
  2281. msgstr "エクストルーダーの数"
  2282. #: fdmprinter.def.json
  2283. msgctxt "extruders_enabled_count label"
  2284. msgid "Number of Extruders That Are Enabled"
  2285. msgstr "有効なエクストルーダーの数"
  2286. #: fdmprinter.def.json
  2287. msgctxt "speed_slowdown_layers label"
  2288. msgid "Number of Slower Layers"
  2289. msgstr "遅いレイヤーの数"
  2290. #: fdmprinter.def.json
  2291. msgctxt "extruders_enabled_count description"
  2292. msgid "Number of extruder trains that are enabled; automatically set in software"
  2293. msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)"
  2294. #: fdmprinter.def.json
  2295. msgctxt "machine_extruder_count description"
  2296. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2297. msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。"
  2298. #: fdmprinter.def.json
  2299. msgctxt "wipe_repeat_count description"
  2300. msgid "Number of times to move the nozzle across the brush."
  2301. msgstr "ブラシ全体をノズルが移動する回数。"
  2302. #: fdmprinter.def.json
  2303. msgctxt "gradual_infill_steps description"
  2304. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  2305. msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。"
  2306. #: fdmprinter.def.json
  2307. msgctxt "gradual_support_infill_steps description"
  2308. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  2309. msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。"
  2310. #: fdmprinter.def.json
  2311. msgctxt "infill_pattern option tetrahedral"
  2312. msgid "Octet"
  2313. msgstr "オクテット"
  2314. #: fdmprinter.def.json
  2315. msgctxt "retraction_combing option off"
  2316. msgid "Off"
  2317. msgstr "オフ"
  2318. #: fdmprinter.def.json
  2319. msgctxt "mesh_position_x description"
  2320. msgid "Offset applied to the object in the x direction."
  2321. msgstr "オブジェクトの X 方向に適用されたオフセット。"
  2322. #: fdmprinter.def.json
  2323. msgctxt "mesh_position_y description"
  2324. msgid "Offset applied to the object in the y direction."
  2325. msgstr "オブジェクトのY 方向適用されたオフセット。"
  2326. #: fdmprinter.def.json
  2327. msgctxt "mesh_position_z description"
  2328. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2329. msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。"
  2330. #: fdmprinter.def.json
  2331. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2332. msgid "Offset with Extruder"
  2333. msgstr "エクストルーダーのオフセット"
  2334. #: fdmprinter.def.json
  2335. msgctxt "support_tree_rest_preference option graceful"
  2336. msgid "On Model If Necessary"
  2337. msgstr ""
  2338. #: fdmprinter.def.json
  2339. msgctxt "print_sequence option one_at_a_time"
  2340. msgid "One at a Time"
  2341. msgstr "1つずつ"
  2342. #: fdmprinter.def.json
  2343. msgctxt "retraction_hop_only_when_collides description"
  2344. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2345. msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。"
  2346. #: fdmprinter.def.json
  2347. msgctxt "ironing_only_highest_layer description"
  2348. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  2349. msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。"
  2350. #: fdmprinter.def.json
  2351. msgctxt "brim_outside_only description"
  2352. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  2353. msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。"
  2354. #: fdmprinter.def.json
  2355. msgctxt "ooze_shield_angle label"
  2356. msgid "Ooze Shield Angle"
  2357. msgstr "Ooze Shield角度"
  2358. #: fdmprinter.def.json
  2359. msgctxt "ooze_shield_dist label"
  2360. msgid "Ooze Shield Distance"
  2361. msgstr "Ooze Shield距離"
  2362. #: fdmprinter.def.json
  2363. msgctxt "support_tree_branch_reach_limit label"
  2364. msgid "Optimal Branch Range"
  2365. msgstr ""
  2366. #: fdmprinter.def.json
  2367. msgctxt "optimize_wall_printing_order label"
  2368. msgid "Optimize Wall Printing Order"
  2369. msgstr "壁印刷順序の最適化"
  2370. #: fdmprinter.def.json
  2371. msgctxt "optimize_wall_printing_order description"
  2372. 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. First layer is not optimized when choosing brim as build plate adhesion type."
  2373. msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。"
  2374. #: fdmprinter.def.json
  2375. msgctxt "machine_nozzle_tip_outer_diameter label"
  2376. msgid "Outer Nozzle Diameter"
  2377. msgstr "ノズル外径"
  2378. #: fdmprinter.def.json
  2379. msgctxt "acceleration_wall_0 label"
  2380. msgid "Outer Wall Acceleration"
  2381. msgstr "外壁加速度"
  2382. #: fdmprinter.def.json
  2383. msgctxt "wall_0_extruder_nr label"
  2384. msgid "Outer Wall Extruder"
  2385. msgstr "外壁用エクストルーダー"
  2386. #: fdmprinter.def.json
  2387. msgctxt "wall_0_material_flow label"
  2388. msgid "Outer Wall Flow"
  2389. msgstr "外壁のフロー"
  2390. #: fdmprinter.def.json
  2391. msgctxt "wall_0_inset label"
  2392. msgid "Outer Wall Inset"
  2393. msgstr "外壁はめ込み"
  2394. #: fdmprinter.def.json
  2395. msgctxt "jerk_wall_0 label"
  2396. msgid "Outer Wall Jerk"
  2397. msgstr "外壁ジャーク"
  2398. #: fdmprinter.def.json
  2399. msgctxt "wall_line_width_0 label"
  2400. msgid "Outer Wall Line Width"
  2401. msgstr "外側ウォールライン幅"
  2402. #: fdmprinter.def.json
  2403. msgctxt "speed_wall_0 label"
  2404. msgid "Outer Wall Speed"
  2405. msgstr "外壁速度"
  2406. #: fdmprinter.def.json
  2407. msgctxt "wall_0_wipe_dist label"
  2408. msgid "Outer Wall Wipe Distance"
  2409. msgstr "外壁移動距離"
  2410. #: fdmprinter.def.json
  2411. msgctxt "inset_direction option outside_in"
  2412. msgid "Outside To Inside"
  2413. msgstr "外側から内側へ"
  2414. #: fdmprinter.def.json
  2415. msgctxt "wall_overhang_angle label"
  2416. msgid "Overhanging Wall Angle"
  2417. msgstr "張り出し壁アングル"
  2418. #: fdmprinter.def.json
  2419. msgctxt "wall_overhang_speed_factor label"
  2420. msgid "Overhanging Wall Speed"
  2421. msgstr "張り出し壁速度"
  2422. #: fdmprinter.def.json
  2423. msgctxt "wall_overhang_speed_factor description"
  2424. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2425. msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。"
  2426. #: fdmprinter.def.json
  2427. msgctxt "wipe_pause description"
  2428. msgid "Pause after the unretract."
  2429. msgstr "引き戻し前に一時停止します。"
  2430. #: fdmprinter.def.json
  2431. msgctxt "bridge_fan_speed description"
  2432. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2433. msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。"
  2434. #: fdmprinter.def.json
  2435. msgctxt "bridge_fan_speed_2 description"
  2436. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2437. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  2438. #: fdmprinter.def.json
  2439. msgctxt "support_supported_skin_fan_speed description"
  2440. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  2441. msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。"
  2442. #: fdmprinter.def.json
  2443. msgctxt "bridge_fan_speed_3 description"
  2444. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2445. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  2446. #: fdmprinter.def.json
  2447. msgctxt "minimum_polygon_circumference description"
  2448. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  2449. msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。"
  2450. #: fdmprinter.def.json
  2451. msgctxt "support_tree_angle_slow label"
  2452. msgid "Preferred Branch Angle"
  2453. msgstr ""
  2454. #: fdmprinter.def.json
  2455. msgctxt "wall_transition_filter_deviation description"
  2456. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  2457. msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。"
  2458. #: fdmprinter.def.json
  2459. msgctxt "acceleration_prime_tower label"
  2460. msgid "Prime Tower Acceleration"
  2461. msgstr "プライムタワー加速度"
  2462. #: fdmprinter.def.json
  2463. msgctxt "prime_tower_brim_enable label"
  2464. msgid "Prime Tower Brim"
  2465. msgstr "プライムタワーブリム"
  2466. #: fdmprinter.def.json
  2467. msgctxt "prime_tower_flow label"
  2468. msgid "Prime Tower Flow"
  2469. msgstr "プライムタワーのフロー"
  2470. #: fdmprinter.def.json
  2471. msgctxt "jerk_prime_tower label"
  2472. msgid "Prime Tower Jerk"
  2473. msgstr "プライムタワージャーク"
  2474. #: fdmprinter.def.json
  2475. msgctxt "prime_tower_line_width label"
  2476. msgid "Prime Tower Line Width"
  2477. msgstr "プライムタワーのライン幅"
  2478. #: fdmprinter.def.json
  2479. msgctxt "prime_tower_min_volume label"
  2480. msgid "Prime Tower Minimum Volume"
  2481. msgstr "プライムタワー最小容積"
  2482. #: fdmprinter.def.json
  2483. msgctxt "prime_tower_size label"
  2484. msgid "Prime Tower Size"
  2485. msgstr "プライムタワーのサイズ"
  2486. #: fdmprinter.def.json
  2487. msgctxt "speed_prime_tower label"
  2488. msgid "Prime Tower Speed"
  2489. msgstr "プライムタワー印刷速度"
  2490. #: fdmprinter.def.json
  2491. msgctxt "prime_tower_position_x label"
  2492. msgid "Prime Tower X Position"
  2493. msgstr "プライムタワーX位置"
  2494. #: fdmprinter.def.json
  2495. msgctxt "prime_tower_position_y label"
  2496. msgid "Prime Tower Y Position"
  2497. msgstr "プライムタワーY位置"
  2498. #: fdmprinter.def.json
  2499. msgctxt "prime_tower_brim_enable description"
  2500. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  2501. msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。"
  2502. #: fdmprinter.def.json
  2503. msgctxt "acceleration_print label"
  2504. msgid "Print Acceleration"
  2505. msgstr "印刷加速度"
  2506. #: fdmprinter.def.json
  2507. msgctxt "jerk_print label"
  2508. msgid "Print Jerk"
  2509. msgstr "印刷ジャーク"
  2510. #: fdmprinter.def.json
  2511. msgctxt "print_sequence label"
  2512. msgid "Print Sequence"
  2513. msgstr "印刷頻度"
  2514. #: fdmprinter.def.json
  2515. msgctxt "speed_print label"
  2516. msgid "Print Speed"
  2517. msgstr "印刷速度"
  2518. #: fdmprinter.def.json
  2519. msgctxt "fill_outline_gaps label"
  2520. msgid "Print Thin Walls"
  2521. msgstr "薄壁印刷"
  2522. #: fdmprinter.def.json
  2523. msgctxt "prime_tower_enable description"
  2524. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2525. msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。"
  2526. #: fdmprinter.def.json
  2527. msgctxt "infill_support_enabled description"
  2528. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  2529. msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。"
  2530. #: fdmprinter.def.json
  2531. msgctxt "ironing_monotonic description"
  2532. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2533. msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  2534. #: fdmprinter.def.json
  2535. msgctxt "mold_enabled description"
  2536. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2537. msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。"
  2538. #: fdmprinter.def.json
  2539. msgctxt "fill_outline_gaps description"
  2540. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2541. msgstr "ノズルサイズよりも細い壁を作ります。"
  2542. #: fdmprinter.def.json
  2543. msgctxt "bridge_skin_speed_2 description"
  2544. msgid "Print speed to use when printing the second bridge skin layer."
  2545. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  2546. #: fdmprinter.def.json
  2547. msgctxt "bridge_skin_speed_3 description"
  2548. msgid "Print speed to use when printing the third bridge skin layer."
  2549. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  2550. #: fdmprinter.def.json
  2551. msgctxt "infill_before_walls description"
  2552. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  2553. msgstr ""
  2554. "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n"
  2555. "はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。"
  2556. #: fdmprinter.def.json
  2557. msgctxt "roofing_monotonic description"
  2558. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2559. msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  2560. #: fdmprinter.def.json
  2561. msgctxt "skin_monotonic description"
  2562. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2563. msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  2564. #: fdmprinter.def.json
  2565. msgctxt "material_print_temperature label"
  2566. msgid "Printing Temperature"
  2567. msgstr "印刷温度"
  2568. #: fdmprinter.def.json
  2569. msgctxt "material_print_temperature_layer_0 label"
  2570. msgid "Printing Temperature Initial Layer"
  2571. msgstr "初期レイヤー印刷温度"
  2572. #: fdmprinter.def.json
  2573. msgctxt "skirt_height description"
  2574. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2575. msgstr ""
  2576. #: fdmprinter.def.json
  2577. msgctxt "alternate_extra_perimeter description"
  2578. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2579. msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。"
  2580. #: fdmprinter.def.json
  2581. msgctxt "resolution label"
  2582. msgid "Quality"
  2583. msgstr "品質"
  2584. #: fdmprinter.def.json
  2585. msgctxt "infill_pattern option quarter_cubic"
  2586. msgid "Quarter Cubic"
  2587. msgstr "クォーターキュービック"
  2588. #: fdmprinter.def.json
  2589. msgctxt "adhesion_type option raft"
  2590. msgid "Raft"
  2591. msgstr "ラフト"
  2592. #: fdmprinter.def.json
  2593. msgctxt "raft_airgap label"
  2594. msgid "Raft Air Gap"
  2595. msgstr "ラフト間のラップ"
  2596. #: fdmprinter.def.json
  2597. msgctxt "raft_base_extruder_nr label"
  2598. msgid "Raft Base Extruder"
  2599. msgstr "ラフトベースエクストルーダー"
  2600. #: fdmprinter.def.json
  2601. msgctxt "raft_base_fan_speed label"
  2602. msgid "Raft Base Fan Speed"
  2603. msgstr "ラフトベースファン速度"
  2604. #: fdmprinter.def.json
  2605. msgctxt "raft_base_line_spacing label"
  2606. msgid "Raft Base Line Spacing"
  2607. msgstr "ラフトベースラインスペース"
  2608. #: fdmprinter.def.json
  2609. msgctxt "raft_base_line_width label"
  2610. msgid "Raft Base Line Width"
  2611. msgstr "ラフトベースライン幅"
  2612. #: fdmprinter.def.json
  2613. msgctxt "raft_base_acceleration label"
  2614. msgid "Raft Base Print Acceleration"
  2615. msgstr "ラフトベース印刷加速度"
  2616. #: fdmprinter.def.json
  2617. msgctxt "raft_base_jerk label"
  2618. msgid "Raft Base Print Jerk"
  2619. msgstr "ラフトベース印刷ジャーク"
  2620. #: fdmprinter.def.json
  2621. msgctxt "raft_base_speed label"
  2622. msgid "Raft Base Print Speed"
  2623. msgstr "ラフトベース印刷速度"
  2624. #: fdmprinter.def.json
  2625. msgctxt "raft_base_thickness label"
  2626. msgid "Raft Base Thickness"
  2627. msgstr "ラフトベース厚さ"
  2628. #: fdmprinter.def.json
  2629. msgctxt "raft_base_wall_count label"
  2630. msgid "Raft Base Wall Count"
  2631. msgstr "ラフトベースウォール数"
  2632. #: fdmprinter.def.json
  2633. msgctxt "raft_margin label"
  2634. msgid "Raft Extra Margin"
  2635. msgstr "ラフトの余分なマージン"
  2636. #: fdmprinter.def.json
  2637. msgctxt "raft_fan_speed label"
  2638. msgid "Raft Fan Speed"
  2639. msgstr "ラフトファン速度"
  2640. #: fdmprinter.def.json
  2641. msgctxt "raft_interface_extruder_nr label"
  2642. msgid "Raft Middle Extruder"
  2643. msgstr "ラフト中間エクストルーダー"
  2644. #: fdmprinter.def.json
  2645. msgctxt "raft_interface_fan_speed label"
  2646. msgid "Raft Middle Fan Speed"
  2647. msgstr "ラフト中間層ファン速度"
  2648. #: fdmprinter.def.json
  2649. msgctxt "raft_interface_layers label"
  2650. msgid "Raft Middle Layers"
  2651. msgstr "ラフト中間レイヤー"
  2652. #: fdmprinter.def.json
  2653. msgctxt "raft_interface_line_width label"
  2654. msgid "Raft Middle Line Width"
  2655. msgstr "ラフト中央ライン幅"
  2656. #: fdmprinter.def.json
  2657. msgctxt "raft_interface_acceleration label"
  2658. msgid "Raft Middle Print Acceleration"
  2659. msgstr "ラフト中間層印刷加速度"
  2660. #: fdmprinter.def.json
  2661. msgctxt "raft_interface_jerk label"
  2662. msgid "Raft Middle Print Jerk"
  2663. msgstr "ラフト中間層印刷ジャーク"
  2664. #: fdmprinter.def.json
  2665. msgctxt "raft_interface_speed label"
  2666. msgid "Raft Middle Print Speed"
  2667. msgstr "ラフト中間印刷速度"
  2668. #: fdmprinter.def.json
  2669. msgctxt "raft_interface_line_spacing label"
  2670. msgid "Raft Middle Spacing"
  2671. msgstr "ラフト中間スペース"
  2672. #: fdmprinter.def.json
  2673. msgctxt "raft_interface_thickness label"
  2674. msgid "Raft Middle Thickness"
  2675. msgstr "ラフト中央厚さ"
  2676. #: fdmprinter.def.json
  2677. msgctxt "raft_acceleration label"
  2678. msgid "Raft Print Acceleration"
  2679. msgstr "ラフト印刷加速度"
  2680. #: fdmprinter.def.json
  2681. msgctxt "raft_jerk label"
  2682. msgid "Raft Print Jerk"
  2683. msgstr "ラフト印刷ジャーク"
  2684. #: fdmprinter.def.json
  2685. msgctxt "raft_speed label"
  2686. msgid "Raft Print Speed"
  2687. msgstr "ラフト印刷速度"
  2688. #: fdmprinter.def.json
  2689. msgctxt "raft_smoothing label"
  2690. msgid "Raft Smoothing"
  2691. msgstr "ラフト補整"
  2692. #: fdmprinter.def.json
  2693. msgctxt "raft_surface_extruder_nr label"
  2694. msgid "Raft Top Extruder"
  2695. msgstr "ラフトトップエクストルーダー"
  2696. #: fdmprinter.def.json
  2697. msgctxt "raft_surface_fan_speed label"
  2698. msgid "Raft Top Fan Speed"
  2699. msgstr "ラフト上層ファン速度"
  2700. #: fdmprinter.def.json
  2701. msgctxt "raft_surface_thickness label"
  2702. msgid "Raft Top Layer Thickness"
  2703. msgstr "ラフト最上層厚さ"
  2704. #: fdmprinter.def.json
  2705. msgctxt "raft_surface_layers label"
  2706. msgid "Raft Top Layers"
  2707. msgstr "ラフト最上層"
  2708. #: fdmprinter.def.json
  2709. msgctxt "raft_surface_line_width label"
  2710. msgid "Raft Top Line Width"
  2711. msgstr "ラフト最上ライン幅"
  2712. #: fdmprinter.def.json
  2713. msgctxt "raft_surface_acceleration label"
  2714. msgid "Raft Top Print Acceleration"
  2715. msgstr "ラフト上層層印刷加速度"
  2716. #: fdmprinter.def.json
  2717. msgctxt "raft_surface_jerk label"
  2718. msgid "Raft Top Print Jerk"
  2719. msgstr "ラフト上層印刷ジャーク"
  2720. #: fdmprinter.def.json
  2721. msgctxt "raft_surface_speed label"
  2722. msgid "Raft Top Print Speed"
  2723. msgstr "ラフト上層印刷速度"
  2724. #: fdmprinter.def.json
  2725. msgctxt "raft_surface_line_spacing label"
  2726. msgid "Raft Top Spacing"
  2727. msgstr "ラフト最上面スペース"
  2728. #: fdmprinter.def.json
  2729. msgctxt "z_seam_type option random"
  2730. msgid "Random"
  2731. msgstr "ランダム"
  2732. #: fdmprinter.def.json
  2733. msgctxt "infill_randomize_start_location label"
  2734. msgid "Randomize Infill Start"
  2735. msgstr "インフィル開始のランダム化"
  2736. #: fdmprinter.def.json
  2737. msgctxt "infill_randomize_start_location description"
  2738. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  2739. msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。"
  2740. #: fdmprinter.def.json
  2741. msgctxt "magic_fuzzy_skin_enabled description"
  2742. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2743. msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。"
  2744. #: fdmprinter.def.json
  2745. msgctxt "machine_shape option rectangular"
  2746. msgid "Rectangular"
  2747. msgstr "長方形"
  2748. #: fdmprinter.def.json
  2749. msgctxt "cool_fan_speed_min label"
  2750. msgid "Regular Fan Speed"
  2751. msgstr "標準ファン速度"
  2752. #: fdmprinter.def.json
  2753. msgctxt "cool_fan_full_at_height label"
  2754. msgid "Regular Fan Speed at Height"
  2755. msgstr "標準ファン速度時の高さ"
  2756. #: fdmprinter.def.json
  2757. msgctxt "cool_fan_full_layer label"
  2758. msgid "Regular Fan Speed at Layer"
  2759. msgstr "標準ファン速度時のレイヤー"
  2760. #: fdmprinter.def.json
  2761. msgctxt "cool_min_layer_time_fan_speed_max label"
  2762. msgid "Regular/Maximum Fan Speed Threshold"
  2763. msgstr "標準/最大ファン速度のしきい値"
  2764. #: fdmprinter.def.json
  2765. msgctxt "relative_extrusion label"
  2766. msgid "Relative Extrusion"
  2767. msgstr "相対押出"
  2768. #: fdmprinter.def.json
  2769. msgctxt "meshfix_union_all_remove_holes label"
  2770. msgid "Remove All Holes"
  2771. msgstr "全穴除去"
  2772. #: fdmprinter.def.json
  2773. msgctxt "remove_empty_first_layers label"
  2774. msgid "Remove Empty First Layers"
  2775. msgstr "空の最初のメッシュの削除"
  2776. #: fdmprinter.def.json
  2777. msgctxt "carve_multiple_volumes label"
  2778. msgid "Remove Mesh Intersection"
  2779. msgstr "重複メッシュの削除"
  2780. #: fdmprinter.def.json
  2781. msgctxt "raft_remove_inside_corners label"
  2782. msgid "Remove Raft Inside Corners"
  2783. msgstr "ラフト内側コーナーの削除"
  2784. #: fdmprinter.def.json
  2785. msgctxt "carve_multiple_volumes description"
  2786. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2787. msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。"
  2788. #: fdmprinter.def.json
  2789. msgctxt "remove_empty_first_layers description"
  2790. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  2791. msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。"
  2792. #: fdmprinter.def.json
  2793. msgctxt "raft_remove_inside_corners description"
  2794. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2795. msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。"
  2796. #: fdmprinter.def.json
  2797. msgctxt "meshfix_union_all_remove_holes description"
  2798. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  2799. msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。"
  2800. #: fdmprinter.def.json
  2801. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2802. msgid "RepRap"
  2803. msgstr "RepRap"
  2804. #: fdmprinter.def.json
  2805. msgctxt "machine_gcode_flavor option Repetier"
  2806. msgid "Repetier"
  2807. msgstr "Repetier"
  2808. #: fdmprinter.def.json
  2809. msgctxt "skin_outline_count description"
  2810. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  2811. msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。"
  2812. #: fdmprinter.def.json
  2813. msgctxt "support_tree_rest_preference label"
  2814. msgid "Rest Preference"
  2815. msgstr ""
  2816. #: fdmprinter.def.json
  2817. msgctxt "travel_retract_before_outer_wall label"
  2818. msgid "Retract Before Outer Wall"
  2819. msgstr "外壁の前に引き戻す"
  2820. #: fdmprinter.def.json
  2821. msgctxt "retract_at_layer_change label"
  2822. msgid "Retract at Layer Change"
  2823. msgstr "レイヤー変更時に引き戻す"
  2824. #: fdmprinter.def.json
  2825. msgctxt "retraction_enable description"
  2826. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2827. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  2828. #: fdmprinter.def.json
  2829. msgctxt "wipe_retraction_enable description"
  2830. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2831. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  2832. #: fdmprinter.def.json
  2833. msgctxt "retract_at_layer_change description"
  2834. msgid "Retract the filament when the nozzle is moving to the next layer."
  2835. msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。"
  2836. #: fdmprinter.def.json
  2837. msgctxt "retraction_amount label"
  2838. msgid "Retraction Distance"
  2839. msgstr "引き戻し距離"
  2840. #: fdmprinter.def.json
  2841. msgctxt "retraction_extra_prime_amount label"
  2842. msgid "Retraction Extra Prime Amount"
  2843. msgstr "余分な押し戻し量の引き戻し"
  2844. #: fdmprinter.def.json
  2845. msgctxt "retraction_min_travel label"
  2846. msgid "Retraction Minimum Travel"
  2847. msgstr "引き戻し最小移動距離"
  2848. #: fdmprinter.def.json
  2849. msgctxt "retraction_prime_speed label"
  2850. msgid "Retraction Prime Speed"
  2851. msgstr "押し戻し速度の取り消し"
  2852. #: fdmprinter.def.json
  2853. msgctxt "retraction_retract_speed label"
  2854. msgid "Retraction Retract Speed"
  2855. msgstr "引き戻し速度の取り消し"
  2856. #: fdmprinter.def.json
  2857. msgctxt "retraction_speed label"
  2858. msgid "Retraction Speed"
  2859. msgstr "引き戻し速度"
  2860. #: fdmprinter.def.json
  2861. msgctxt "z_seam_position option right"
  2862. msgid "Right"
  2863. msgstr "右"
  2864. #: fdmprinter.def.json
  2865. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2866. msgid "Scale Fan Speed To 0-1"
  2867. msgstr "ファン速度を0~1にスケール"
  2868. #: fdmprinter.def.json
  2869. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2870. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2871. msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。"
  2872. #: fdmprinter.def.json
  2873. msgctxt "material_shrinkage_percentage label"
  2874. msgid "Scaling Factor Shrinkage Compensation"
  2875. msgstr "スケールファクタ収縮補正"
  2876. #: fdmprinter.def.json
  2877. msgctxt "support_meshes_present label"
  2878. msgid "Scene Has Support Meshes"
  2879. msgstr "シーンにサポートメッシュがある"
  2880. #: fdmprinter.def.json
  2881. msgctxt "z_seam_corner label"
  2882. msgid "Seam Corner Preference"
  2883. msgstr "シームコーナー設定"
  2884. #: fdmprinter.def.json
  2885. msgctxt "draft_shield_height_limitation description"
  2886. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  2887. msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。"
  2888. #: fdmprinter.def.json
  2889. msgctxt "dual description"
  2890. msgid "Settings used for printing with multiple extruders."
  2891. msgstr "デュアルエクストルーダーで印刷するための設定。"
  2892. #: fdmprinter.def.json
  2893. msgctxt "command_line_settings description"
  2894. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2895. msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。"
  2896. #: fdmprinter.def.json
  2897. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2898. msgid "Shared Nozzle Initial Retraction"
  2899. msgstr "共有ノズルの初期引き戻し"
  2900. #: fdmprinter.def.json
  2901. msgctxt "z_seam_type option sharpest_corner"
  2902. msgid "Sharpest Corner"
  2903. msgstr "鋭い角"
  2904. #: fdmprinter.def.json
  2905. msgctxt "shell description"
  2906. msgid "Shell"
  2907. msgstr "外郭"
  2908. #: fdmprinter.def.json
  2909. msgctxt "z_seam_type option shortest"
  2910. msgid "Shortest"
  2911. msgstr "最短"
  2912. #: fdmprinter.def.json
  2913. msgctxt "machine_show_variants label"
  2914. msgid "Show Machine Variants"
  2915. msgstr "プリンターのバリエーションの表示"
  2916. #: fdmprinter.def.json
  2917. msgctxt "skin_edge_support_layers label"
  2918. msgid "Skin Edge Support Layers"
  2919. msgstr "スキンエッジサポートレイヤー"
  2920. #: fdmprinter.def.json
  2921. msgctxt "skin_edge_support_thickness label"
  2922. msgid "Skin Edge Support Thickness"
  2923. msgstr "スキンエッジサポートの厚さ"
  2924. #: fdmprinter.def.json
  2925. msgctxt "expand_skins_expand_distance label"
  2926. msgid "Skin Expand Distance"
  2927. msgstr "表面展開距離"
  2928. #: fdmprinter.def.json
  2929. msgctxt "skin_overlap_mm label"
  2930. msgid "Skin Overlap"
  2931. msgstr "表面公差"
  2932. #: fdmprinter.def.json
  2933. msgctxt "skin_overlap label"
  2934. msgid "Skin Overlap Percentage"
  2935. msgstr "表面公差量"
  2936. #: fdmprinter.def.json
  2937. msgctxt "skin_preshrink label"
  2938. msgid "Skin Removal Width"
  2939. msgstr "表面除去幅"
  2940. #: fdmprinter.def.json
  2941. msgctxt "min_skin_width_for_expansion description"
  2942. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  2943. msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。"
  2944. #: fdmprinter.def.json
  2945. msgctxt "support_zag_skip_count description"
  2946. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2947. msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。"
  2948. #: fdmprinter.def.json
  2949. msgctxt "support_skip_some_zags description"
  2950. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  2951. msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。"
  2952. #: fdmprinter.def.json
  2953. msgctxt "adhesion_type option skirt"
  2954. msgid "Skirt"
  2955. msgstr "スカート"
  2956. #: fdmprinter.def.json
  2957. msgctxt "skirt_gap label"
  2958. msgid "Skirt Distance"
  2959. msgstr "スカート距離"
  2960. #: fdmprinter.def.json
  2961. msgctxt "skirt_height label"
  2962. msgid "Skirt Height"
  2963. msgstr ""
  2964. #: fdmprinter.def.json
  2965. msgctxt "skirt_line_count label"
  2966. msgid "Skirt Line Count"
  2967. msgstr "スカートライン数"
  2968. #: fdmprinter.def.json
  2969. msgctxt "acceleration_skirt_brim label"
  2970. msgid "Skirt/Brim Acceleration"
  2971. msgstr "スカート/ブリム加速度"
  2972. #: fdmprinter.def.json
  2973. msgctxt "skirt_brim_extruder_nr label"
  2974. msgid "Skirt/Brim Extruder"
  2975. msgstr "スカート/ブリムエクストルーダー"
  2976. #: fdmprinter.def.json
  2977. msgctxt "skirt_brim_material_flow label"
  2978. msgid "Skirt/Brim Flow"
  2979. msgstr "スカート/ブリムのフロー"
  2980. #: fdmprinter.def.json
  2981. msgctxt "jerk_skirt_brim label"
  2982. msgid "Skirt/Brim Jerk"
  2983. msgstr "スカート/ブリムジャーク"
  2984. #: fdmprinter.def.json
  2985. msgctxt "skirt_brim_line_width label"
  2986. msgid "Skirt/Brim Line Width"
  2987. msgstr "スカート/ブリムラインの幅"
  2988. #: fdmprinter.def.json
  2989. msgctxt "skirt_brim_minimal_length label"
  2990. msgid "Skirt/Brim Minimum Length"
  2991. msgstr "スカート/ブリム最小長さ"
  2992. #: fdmprinter.def.json
  2993. msgctxt "skirt_brim_speed label"
  2994. msgid "Skirt/Brim Speed"
  2995. msgstr "スカート/ブリム速度"
  2996. #: fdmprinter.def.json
  2997. msgctxt "slicing_tolerance label"
  2998. msgid "Slicing Tolerance"
  2999. msgstr "スライス公差"
  3000. #: fdmprinter.def.json
  3001. msgctxt "small_feature_speed_factor_0 label"
  3002. msgid "Small Feature Initial Layer Speed"
  3003. msgstr "小型形体の初期レイヤー速度"
  3004. #: fdmprinter.def.json
  3005. msgctxt "small_feature_max_length label"
  3006. msgid "Small Feature Max Length"
  3007. msgstr "小型形体の最大長さ"
  3008. #: fdmprinter.def.json
  3009. msgctxt "small_feature_speed_factor label"
  3010. msgid "Small Feature Speed"
  3011. msgstr ""
  3012. #: fdmprinter.def.json
  3013. msgctxt "small_hole_max_size label"
  3014. msgid "Small Hole Max Size"
  3015. msgstr "小さい穴の最大サイズ"
  3016. #: fdmprinter.def.json
  3017. msgctxt "cool_min_temperature label"
  3018. msgid "Small Layer Printing Temperature"
  3019. msgstr "小さいレイヤーのプリント温度"
  3020. #: fdmprinter.def.json
  3021. msgctxt "small_skin_width label"
  3022. msgid "Small Top/Bottom Width"
  3023. msgstr ""
  3024. #: fdmprinter.def.json
  3025. msgctxt "small_feature_speed_factor_0 description"
  3026. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3027. msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  3028. #: fdmprinter.def.json
  3029. msgctxt "small_feature_speed_factor description"
  3030. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3031. msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  3032. #: fdmprinter.def.json
  3033. msgctxt "small_skin_width description"
  3034. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  3035. msgstr ""
  3036. #: fdmprinter.def.json
  3037. msgctxt "brim_smart_ordering label"
  3038. msgid "Smart Brim"
  3039. msgstr ""
  3040. #: fdmprinter.def.json
  3041. msgctxt "z_seam_corner option z_seam_corner_weighted"
  3042. msgid "Smart Hiding"
  3043. msgstr "スマート・シーム"
  3044. #: fdmprinter.def.json
  3045. msgctxt "smooth_spiralized_contours label"
  3046. msgid "Smooth Spiralized Contours"
  3047. msgstr "滑らかな輪郭"
  3048. #: fdmprinter.def.json
  3049. msgctxt "smooth_spiralized_contours description"
  3050. 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."
  3051. msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。"
  3052. #: fdmprinter.def.json
  3053. msgctxt "retraction_extra_prime_amount description"
  3054. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  3055. msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。"
  3056. #: fdmprinter.def.json
  3057. msgctxt "wipe_retraction_extra_prime_amount description"
  3058. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  3059. msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。"
  3060. #: fdmprinter.def.json
  3061. msgctxt "blackmagic label"
  3062. msgid "Special Modes"
  3063. msgstr "特別モード"
  3064. #: fdmprinter.def.json
  3065. msgctxt "speed description"
  3066. msgid "Speed"
  3067. msgstr "スピード"
  3068. #: fdmprinter.def.json
  3069. msgctxt "speed label"
  3070. msgid "Speed"
  3071. msgstr "スピード"
  3072. #: fdmprinter.def.json
  3073. msgctxt "wipe_hop_speed description"
  3074. msgid "Speed to move the z-axis during the hop."
  3075. msgstr "ホップ中に z 軸を移動する速度。"
  3076. #: fdmprinter.def.json
  3077. msgctxt "magic_spiralize label"
  3078. msgid "Spiralize Outer Contour"
  3079. msgstr "滑らかな外側輪郭"
  3080. #: fdmprinter.def.json
  3081. msgctxt "magic_spiralize description"
  3082. 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 should only be enabled when each layer only contains a single part."
  3083. msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。"
  3084. #: fdmprinter.def.json
  3085. msgctxt "material_standby_temperature label"
  3086. msgid "Standby Temperature"
  3087. msgstr "スタンバイ温度"
  3088. #: fdmprinter.def.json
  3089. msgctxt "machine_start_gcode label"
  3090. msgid "Start G-code"
  3091. msgstr "G-Codeの開始"
  3092. #: fdmprinter.def.json
  3093. msgctxt "z_seam_type description"
  3094. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  3095. msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。"
  3096. #: fdmprinter.def.json
  3097. msgctxt "machine_steps_per_mm_e label"
  3098. msgid "Steps per Millimeter (E)"
  3099. msgstr "ミリメートルあたりのステップ (E)"
  3100. #: fdmprinter.def.json
  3101. msgctxt "machine_steps_per_mm_x label"
  3102. msgid "Steps per Millimeter (X)"
  3103. msgstr "ミリメートルあたりのステップ (X)"
  3104. #: fdmprinter.def.json
  3105. msgctxt "machine_steps_per_mm_y label"
  3106. msgid "Steps per Millimeter (Y)"
  3107. msgstr "ミリメートルあたりのステップ (Y)"
  3108. #: fdmprinter.def.json
  3109. msgctxt "machine_steps_per_mm_z label"
  3110. msgid "Steps per Millimeter (Z)"
  3111. msgstr "ミリメートルあたりのステップ (Z)"
  3112. #: fdmprinter.def.json
  3113. msgctxt "support description"
  3114. msgid "Support"
  3115. msgstr "サポート"
  3116. #: fdmprinter.def.json
  3117. msgctxt "support label"
  3118. msgid "Support"
  3119. msgstr "サポート"
  3120. #: fdmprinter.def.json
  3121. msgctxt "acceleration_support label"
  3122. msgid "Support Acceleration"
  3123. msgstr "サポート加速度"
  3124. #: fdmprinter.def.json
  3125. msgctxt "support_bottom_distance label"
  3126. msgid "Support Bottom Distance"
  3127. msgstr "サポート底部距離"
  3128. #: fdmprinter.def.json
  3129. msgctxt "support_bottom_wall_count label"
  3130. msgid "Support Bottom Wall Line Count"
  3131. msgstr "サポート底面ウォールライン数"
  3132. #: fdmprinter.def.json
  3133. msgctxt "support_brim_line_count label"
  3134. msgid "Support Brim Line Count"
  3135. msgstr "サポートブリムのライン数"
  3136. #: fdmprinter.def.json
  3137. msgctxt "support_brim_width label"
  3138. msgid "Support Brim Width"
  3139. msgstr "サポートブリムの幅"
  3140. #: fdmprinter.def.json
  3141. msgctxt "support_zag_skip_count label"
  3142. msgid "Support Chunk Line Count"
  3143. msgstr "サポート分割ライン数"
  3144. #: fdmprinter.def.json
  3145. msgctxt "support_skip_zag_per_mm label"
  3146. msgid "Support Chunk Size"
  3147. msgstr "サポート分割サイズ"
  3148. #: fdmprinter.def.json
  3149. msgctxt "support_infill_rate label"
  3150. msgid "Support Density"
  3151. msgstr "サポート密度"
  3152. #: fdmprinter.def.json
  3153. msgctxt "support_xy_overrides_z label"
  3154. msgid "Support Distance Priority"
  3155. msgstr "サポート距離優先順位"
  3156. #: fdmprinter.def.json
  3157. msgctxt "support_extruder_nr label"
  3158. msgid "Support Extruder"
  3159. msgstr "サポート用エクストルーダー"
  3160. #: fdmprinter.def.json
  3161. msgctxt "acceleration_support_bottom label"
  3162. msgid "Support Floor Acceleration"
  3163. msgstr "サポートフロア加速度"
  3164. #: fdmprinter.def.json
  3165. msgctxt "support_bottom_density label"
  3166. msgid "Support Floor Density"
  3167. msgstr "サポートフロア密度"
  3168. #: fdmprinter.def.json
  3169. msgctxt "support_bottom_extruder_nr label"
  3170. msgid "Support Floor Extruder"
  3171. msgstr "サポートフロアエクストルーダー"
  3172. #: fdmprinter.def.json
  3173. msgctxt "support_bottom_material_flow label"
  3174. msgid "Support Floor Flow"
  3175. msgstr "支持材床面フロー"
  3176. #: fdmprinter.def.json
  3177. msgctxt "support_bottom_offset label"
  3178. msgid "Support Floor Horizontal Expansion"
  3179. msgstr "サポートフロア水平展開"
  3180. #: fdmprinter.def.json
  3181. msgctxt "jerk_support_bottom label"
  3182. msgid "Support Floor Jerk"
  3183. msgstr "サポートフロアジャーク"
  3184. #: fdmprinter.def.json
  3185. msgctxt "support_bottom_angles label"
  3186. msgid "Support Floor Line Directions"
  3187. msgstr "サポートフロアライン方向"
  3188. #: fdmprinter.def.json
  3189. msgctxt "support_bottom_line_distance label"
  3190. msgid "Support Floor Line Distance"
  3191. msgstr "サポートフロアライン距離"
  3192. #: fdmprinter.def.json
  3193. msgctxt "support_bottom_line_width label"
  3194. msgid "Support Floor Line Width"
  3195. msgstr "サポートフロアのライン幅"
  3196. #: fdmprinter.def.json
  3197. msgctxt "support_bottom_pattern label"
  3198. msgid "Support Floor Pattern"
  3199. msgstr "サポートフロアパターン"
  3200. #: fdmprinter.def.json
  3201. msgctxt "speed_support_bottom label"
  3202. msgid "Support Floor Speed"
  3203. msgstr "サポートフロア速度"
  3204. #: fdmprinter.def.json
  3205. msgctxt "support_bottom_height label"
  3206. msgid "Support Floor Thickness"
  3207. msgstr "サポートフロア厚さ"
  3208. #: fdmprinter.def.json
  3209. msgctxt "support_material_flow label"
  3210. msgid "Support Flow"
  3211. msgstr "支持材のフロー"
  3212. #: fdmprinter.def.json
  3213. msgctxt "support_offset label"
  3214. msgid "Support Horizontal Expansion"
  3215. msgstr "サポート水平展開"
  3216. #: fdmprinter.def.json
  3217. msgctxt "acceleration_support_infill label"
  3218. msgid "Support Infill Acceleration"
  3219. msgstr "サポートインフィル加速度"
  3220. #: fdmprinter.def.json
  3221. msgctxt "support_infill_extruder_nr label"
  3222. msgid "Support Infill Extruder"
  3223. msgstr "サポート用インフィルエクストルーダー"
  3224. #: fdmprinter.def.json
  3225. msgctxt "jerk_support_infill label"
  3226. msgid "Support Infill Jerk"
  3227. msgstr "サポートインフィルジャーク"
  3228. #: fdmprinter.def.json
  3229. msgctxt "support_infill_sparse_thickness label"
  3230. msgid "Support Infill Layer Thickness"
  3231. msgstr "サポートインフィルレイヤー厚さ"
  3232. #: fdmprinter.def.json
  3233. msgctxt "support_infill_angles label"
  3234. msgid "Support Infill Line Directions"
  3235. msgstr "サポートインフィルラインの向き"
  3236. #: fdmprinter.def.json
  3237. msgctxt "speed_support_infill label"
  3238. msgid "Support Infill Speed"
  3239. msgstr "サポートインフィル速度"
  3240. #: fdmprinter.def.json
  3241. msgctxt "acceleration_support_interface label"
  3242. msgid "Support Interface Acceleration"
  3243. msgstr "サポートインタフェース加速度"
  3244. #: fdmprinter.def.json
  3245. msgctxt "support_interface_density label"
  3246. msgid "Support Interface Density"
  3247. msgstr "サポートインタフェース密度"
  3248. #: fdmprinter.def.json
  3249. msgctxt "support_interface_extruder_nr label"
  3250. msgid "Support Interface Extruder"
  3251. msgstr "サポートインタフェースエクストルーダー"
  3252. #: fdmprinter.def.json
  3253. msgctxt "support_interface_material_flow label"
  3254. msgid "Support Interface Flow"
  3255. msgstr "支持材界面フロー"
  3256. #: fdmprinter.def.json
  3257. msgctxt "support_interface_offset label"
  3258. msgid "Support Interface Horizontal Expansion"
  3259. msgstr "サポートインターフェイス水平展開"
  3260. #: fdmprinter.def.json
  3261. msgctxt "jerk_support_interface label"
  3262. msgid "Support Interface Jerk"
  3263. msgstr "サポートインタフェースジャーク"
  3264. #: fdmprinter.def.json
  3265. msgctxt "support_interface_angles label"
  3266. msgid "Support Interface Line Directions"
  3267. msgstr "サポート面のライン方向"
  3268. #: fdmprinter.def.json
  3269. msgctxt "support_interface_line_width label"
  3270. msgid "Support Interface Line Width"
  3271. msgstr "サポート面のライン幅"
  3272. #: fdmprinter.def.json
  3273. msgctxt "support_interface_pattern label"
  3274. msgid "Support Interface Pattern"
  3275. msgstr "サポートインタフェースパターン"
  3276. #: fdmprinter.def.json
  3277. msgctxt "support_interface_priority label"
  3278. msgid "Support Interface Priority"
  3279. msgstr ""
  3280. #: fdmprinter.def.json
  3281. msgctxt "support_interface_skip_height label"
  3282. msgid "Support Interface Resolution"
  3283. msgstr "サポートインタフェース解像度"
  3284. #: fdmprinter.def.json
  3285. msgctxt "speed_support_interface label"
  3286. msgid "Support Interface Speed"
  3287. msgstr "サポートインタフェース速度"
  3288. #: fdmprinter.def.json
  3289. msgctxt "support_interface_height label"
  3290. msgid "Support Interface Thickness"
  3291. msgstr "サポートインタフェース厚さ"
  3292. #: fdmprinter.def.json
  3293. msgctxt "support_interface_wall_count label"
  3294. msgid "Support Interface Wall Line Count"
  3295. msgstr "サポートインターフェースのウォールライン数"
  3296. #: fdmprinter.def.json
  3297. msgctxt "jerk_support label"
  3298. msgid "Support Jerk"
  3299. msgstr "サポートジャーク"
  3300. #: fdmprinter.def.json
  3301. msgctxt "support_join_distance label"
  3302. msgid "Support Join Distance"
  3303. msgstr "サポート接合距離"
  3304. #: fdmprinter.def.json
  3305. msgctxt "support_line_distance label"
  3306. msgid "Support Line Distance"
  3307. msgstr "サポートライン距離"
  3308. #: fdmprinter.def.json
  3309. msgctxt "support_line_width label"
  3310. msgid "Support Line Width"
  3311. msgstr "サポートライン幅"
  3312. #: fdmprinter.def.json
  3313. msgctxt "support_mesh label"
  3314. msgid "Support Mesh"
  3315. msgstr "サポートメッシュ"
  3316. #: fdmprinter.def.json
  3317. msgctxt "support_angle label"
  3318. msgid "Support Overhang Angle"
  3319. msgstr "サポートオーバーハング角度"
  3320. #: fdmprinter.def.json
  3321. msgctxt "support_pattern label"
  3322. msgid "Support Pattern"
  3323. msgstr "サポートパターン"
  3324. #: fdmprinter.def.json
  3325. msgctxt "support_type label"
  3326. msgid "Support Placement"
  3327. msgstr "サポート配置"
  3328. #: fdmprinter.def.json
  3329. msgctxt "acceleration_support_roof label"
  3330. msgid "Support Roof Acceleration"
  3331. msgstr "サポートルーフ加速度"
  3332. #: fdmprinter.def.json
  3333. msgctxt "support_roof_density label"
  3334. msgid "Support Roof Density"
  3335. msgstr "サポートルーフ密度"
  3336. #: fdmprinter.def.json
  3337. msgctxt "support_roof_extruder_nr label"
  3338. msgid "Support Roof Extruder"
  3339. msgstr "サポートルーフエクストルーダー"
  3340. #: fdmprinter.def.json
  3341. msgctxt "support_roof_material_flow label"
  3342. msgid "Support Roof Flow"
  3343. msgstr "支持材天井面フロー"
  3344. #: fdmprinter.def.json
  3345. msgctxt "support_roof_offset label"
  3346. msgid "Support Roof Horizontal Expansion"
  3347. msgstr "サポートルーフ水平展開"
  3348. #: fdmprinter.def.json
  3349. msgctxt "jerk_support_roof label"
  3350. msgid "Support Roof Jerk"
  3351. msgstr "サポートルーフジャーク"
  3352. #: fdmprinter.def.json
  3353. msgctxt "support_roof_angles label"
  3354. msgid "Support Roof Line Directions"
  3355. msgstr "サポートルーフライン方向"
  3356. #: fdmprinter.def.json
  3357. msgctxt "support_roof_line_distance label"
  3358. msgid "Support Roof Line Distance"
  3359. msgstr "サポートルーフライン距離"
  3360. #: fdmprinter.def.json
  3361. msgctxt "support_roof_line_width label"
  3362. msgid "Support Roof Line Width"
  3363. msgstr "サポートルーフのライン幅"
  3364. #: fdmprinter.def.json
  3365. msgctxt "support_roof_pattern label"
  3366. msgid "Support Roof Pattern"
  3367. msgstr "サポートルーフパターン"
  3368. #: fdmprinter.def.json
  3369. msgctxt "speed_support_roof label"
  3370. msgid "Support Roof Speed"
  3371. msgstr "サポートルーフ速度"
  3372. #: fdmprinter.def.json
  3373. msgctxt "support_roof_height label"
  3374. msgid "Support Roof Thickness"
  3375. msgstr "サポートルーフ厚さ"
  3376. #: fdmprinter.def.json
  3377. msgctxt "support_roof_wall_count label"
  3378. msgid "Support Roof Wall Line Count"
  3379. msgstr "サポートルーフウォールライン数"
  3380. #: fdmprinter.def.json
  3381. msgctxt "speed_support label"
  3382. msgid "Support Speed"
  3383. msgstr "サポート速度"
  3384. #: fdmprinter.def.json
  3385. msgctxt "support_bottom_stair_step_height label"
  3386. msgid "Support Stair Step Height"
  3387. msgstr "サポート階段高さ"
  3388. #: fdmprinter.def.json
  3389. msgctxt "support_bottom_stair_step_width label"
  3390. msgid "Support Stair Step Maximum Width"
  3391. msgstr "サポート階段最大幅"
  3392. #: fdmprinter.def.json
  3393. msgctxt "support_bottom_stair_step_min_slope label"
  3394. msgid "Support Stair Step Minimum Slope Angle"
  3395. msgstr "サポートステアステップ最小傾斜角度"
  3396. #: fdmprinter.def.json
  3397. msgctxt "support_structure label"
  3398. msgid "Support Structure"
  3399. msgstr "サポート構造"
  3400. #: fdmprinter.def.json
  3401. msgctxt "support_top_distance label"
  3402. msgid "Support Top Distance"
  3403. msgstr "サポート上部距離"
  3404. #: fdmprinter.def.json
  3405. msgctxt "support_wall_count label"
  3406. msgid "Support Wall Line Count"
  3407. msgstr "サポートウォールライン数"
  3408. #: fdmprinter.def.json
  3409. msgctxt "support_xy_distance label"
  3410. msgid "Support X/Y Distance"
  3411. msgstr "サポートX/Y距離"
  3412. #: fdmprinter.def.json
  3413. msgctxt "support_z_distance label"
  3414. msgid "Support Z Distance"
  3415. msgstr "サポートZ距離"
  3416. #: fdmprinter.def.json
  3417. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  3418. msgid "Support lines preferred"
  3419. msgstr ""
  3420. #: fdmprinter.def.json
  3421. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  3422. msgid "Support preferred"
  3423. msgstr ""
  3424. #: fdmprinter.def.json
  3425. msgctxt "support_supported_skin_fan_speed label"
  3426. msgid "Supported Skin Fan Speed"
  3427. msgstr "サポート対象スキンファン速度"
  3428. #: fdmprinter.def.json
  3429. msgctxt "magic_mesh_surface_mode option surface"
  3430. msgid "Surface"
  3431. msgstr "表面"
  3432. #: fdmprinter.def.json
  3433. msgctxt "material_surface_energy label"
  3434. msgid "Surface Energy"
  3435. msgstr "表面エネルギー"
  3436. #: fdmprinter.def.json
  3437. msgctxt "magic_mesh_surface_mode label"
  3438. msgid "Surface Mode"
  3439. msgstr "表面モード"
  3440. #: fdmprinter.def.json
  3441. msgctxt "material_adhesion_tendency description"
  3442. msgid "Surface adhesion tendency."
  3443. msgstr "表面の接着傾向。"
  3444. #: fdmprinter.def.json
  3445. msgctxt "material_surface_energy description"
  3446. msgid "Surface energy."
  3447. msgstr "表面エネルギー。"
  3448. #: fdmprinter.def.json
  3449. msgctxt "brim_smart_ordering description"
  3450. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3451. msgstr ""
  3452. #: fdmprinter.def.json
  3453. msgctxt "alternate_carve_order description"
  3454. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  3455. msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。"
  3456. #: fdmprinter.def.json
  3457. msgctxt "adaptive_layer_height_threshold description"
  3458. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  3459. msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。"
  3460. #: fdmprinter.def.json
  3461. msgctxt "layer_start_x description"
  3462. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3463. msgstr "各レイヤーのプリントを開始する部分をしめすX座標。"
  3464. #: fdmprinter.def.json
  3465. msgctxt "z_seam_x description"
  3466. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3467. msgstr ""
  3468. "レイヤー内の各印刷を開始するX座\n"
  3469. "標の位置。"
  3470. #: fdmprinter.def.json
  3471. msgctxt "extruder_prime_pos_x description"
  3472. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3473. msgstr "プリント開始時のノズルの位置を表すX座標。"
  3474. #: fdmprinter.def.json
  3475. msgctxt "layer_start_y description"
  3476. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3477. msgstr "各レイヤーのプリントを開始する部分をしめすY座標。"
  3478. #: fdmprinter.def.json
  3479. msgctxt "z_seam_y description"
  3480. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3481. msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。"
  3482. #: fdmprinter.def.json
  3483. msgctxt "extruder_prime_pos_y description"
  3484. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3485. msgstr "プリント開始時にノズル位置を表すY座標。"
  3486. #: fdmprinter.def.json
  3487. msgctxt "extruder_prime_pos_z description"
  3488. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3489. msgstr "印刷開始時にノズルがポジションを確認するZ座標。"
  3490. #: fdmprinter.def.json
  3491. msgctxt "acceleration_print_layer_0 description"
  3492. msgid "The acceleration during the printing of the initial layer."
  3493. msgstr "初期レイヤーの印刷中の加速度。"
  3494. #: fdmprinter.def.json
  3495. msgctxt "acceleration_layer_0 description"
  3496. msgid "The acceleration for the initial layer."
  3497. msgstr "初期レイヤーの加速度。"
  3498. #: fdmprinter.def.json
  3499. msgctxt "acceleration_travel_layer_0 description"
  3500. msgid "The acceleration for travel moves in the initial layer."
  3501. msgstr "最初のレイヤー時の加速度。"
  3502. #: fdmprinter.def.json
  3503. msgctxt "jerk_travel_layer_0 description"
  3504. msgid "The acceleration for travel moves in the initial layer."
  3505. msgstr "移動加速度は最初のレイヤーに適用されます。"
  3506. #: fdmprinter.def.json
  3507. msgctxt "acceleration_wall_x description"
  3508. msgid "The acceleration with which all inner walls are printed."
  3509. msgstr "内側のウォールがが出力される際のスピード。"
  3510. #: fdmprinter.def.json
  3511. msgctxt "acceleration_infill description"
  3512. msgid "The acceleration with which infill is printed."
  3513. msgstr "インフィルの印刷の加速スピード。"
  3514. #: fdmprinter.def.json
  3515. msgctxt "acceleration_ironing description"
  3516. msgid "The acceleration with which ironing is performed."
  3517. msgstr "アイロン時の加速度。"
  3518. #: fdmprinter.def.json
  3519. msgctxt "acceleration_print description"
  3520. msgid "The acceleration with which printing happens."
  3521. msgstr "印刷の加速スピードです。"
  3522. #: fdmprinter.def.json
  3523. msgctxt "raft_base_acceleration description"
  3524. msgid "The acceleration with which the base raft layer is printed."
  3525. msgstr "ラフトの底面印刷時の加速度。"
  3526. #: fdmprinter.def.json
  3527. msgctxt "acceleration_support_bottom description"
  3528. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  3529. msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。"
  3530. #: fdmprinter.def.json
  3531. msgctxt "acceleration_support_infill description"
  3532. msgid "The acceleration with which the infill of support is printed."
  3533. msgstr "インフィルのサポート材のプリント時の加速度。"
  3534. #: fdmprinter.def.json
  3535. msgctxt "raft_interface_acceleration description"
  3536. msgid "The acceleration with which the middle raft layer is printed."
  3537. msgstr "ラフトの中間層印刷時の加速度。"
  3538. #: fdmprinter.def.json
  3539. msgctxt "acceleration_wall_0 description"
  3540. msgid "The acceleration with which the outermost walls are printed."
  3541. msgstr "最も外側の壁をプリントする際の加速度。"
  3542. #: fdmprinter.def.json
  3543. msgctxt "acceleration_prime_tower description"
  3544. msgid "The acceleration with which the prime tower is printed."
  3545. msgstr "プライムタワーの印刷時のスピード。"
  3546. #: fdmprinter.def.json
  3547. msgctxt "raft_acceleration description"
  3548. msgid "The acceleration with which the raft is printed."
  3549. msgstr "ラフト印刷時の加速度。"
  3550. #: fdmprinter.def.json
  3551. msgctxt "acceleration_support_interface description"
  3552. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3553. msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。"
  3554. #: fdmprinter.def.json
  3555. msgctxt "acceleration_support_roof description"
  3556. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3557. msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。"
  3558. #: fdmprinter.def.json
  3559. msgctxt "acceleration_skirt_brim description"
  3560. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  3561. msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。"
  3562. #: fdmprinter.def.json
  3563. msgctxt "acceleration_support description"
  3564. msgid "The acceleration with which the support structure is printed."
  3565. msgstr "サポート材プリント時の加速スピード。"
  3566. #: fdmprinter.def.json
  3567. msgctxt "raft_surface_acceleration description"
  3568. msgid "The acceleration with which the top raft layers are printed."
  3569. msgstr "ラフトのトップ印刷時の加速度。"
  3570. #: fdmprinter.def.json
  3571. msgctxt "acceleration_wall description"
  3572. msgid "The acceleration with which the walls are printed."
  3573. msgstr "ウォールをプリントする際の加速度。"
  3574. #: fdmprinter.def.json
  3575. msgctxt "acceleration_roofing description"
  3576. msgid "The acceleration with which top surface skin layers are printed."
  3577. msgstr "上部表面プリント時の加速度。"
  3578. #: fdmprinter.def.json
  3579. msgctxt "acceleration_topbottom description"
  3580. msgid "The acceleration with which top/bottom layers are printed."
  3581. msgstr "トップとボトムのレイヤーの印刷加速度。"
  3582. #: fdmprinter.def.json
  3583. msgctxt "acceleration_travel description"
  3584. msgid "The acceleration with which travel moves are made."
  3585. msgstr "移動中の加速度。"
  3586. #: fdmprinter.def.json
  3587. msgctxt "ironing_flow description"
  3588. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  3589. msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。"
  3590. #: fdmprinter.def.json
  3591. msgctxt "infill_overlap description"
  3592. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  3593. msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。"
  3594. #: fdmprinter.def.json
  3595. msgctxt "infill_overlap_mm description"
  3596. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3597. msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。"
  3598. #: fdmprinter.def.json
  3599. msgctxt "switch_extruder_retraction_amount description"
  3600. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  3601. msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
  3602. #: fdmprinter.def.json
  3603. msgctxt "machine_nozzle_expansion_angle description"
  3604. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3605. msgstr "水平面とノズル直上の円錐部分との間の角度。"
  3606. #: fdmprinter.def.json
  3607. msgctxt "support_tower_roof_angle description"
  3608. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3609. msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。"
  3610. #: fdmprinter.def.json
  3611. msgctxt "mold_angle description"
  3612. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  3613. msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。"
  3614. #: fdmprinter.def.json
  3615. msgctxt "support_tree_branch_diameter_angle description"
  3616. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  3617. msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。"
  3618. #: fdmprinter.def.json
  3619. msgctxt "support_conical_angle description"
  3620. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  3621. msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。"
  3622. #: fdmprinter.def.json
  3623. msgctxt "magic_fuzzy_skin_point_density description"
  3624. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  3625. msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。"
  3626. #: fdmprinter.def.json
  3627. msgctxt "magic_fuzzy_skin_point_dist description"
  3628. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  3629. msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。"
  3630. #: fdmprinter.def.json
  3631. msgctxt "machine_acceleration description"
  3632. msgid "The default acceleration of print head movement."
  3633. msgstr "プリントヘッド移動のデフォルトの加速度。"
  3634. #: fdmprinter.def.json
  3635. msgctxt "default_material_print_temperature description"
  3636. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  3637. msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります"
  3638. #: fdmprinter.def.json
  3639. msgctxt "default_material_bed_temperature description"
  3640. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  3641. msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります"
  3642. #: fdmprinter.def.json
  3643. msgctxt "bridge_skin_density description"
  3644. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3645. msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3646. #: fdmprinter.def.json
  3647. msgctxt "support_bottom_density description"
  3648. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3649. msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。"
  3650. #: fdmprinter.def.json
  3651. msgctxt "support_roof_density description"
  3652. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3653. msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。"
  3654. #: fdmprinter.def.json
  3655. msgctxt "bridge_skin_density_2 description"
  3656. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3657. msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3658. #: fdmprinter.def.json
  3659. msgctxt "bridge_skin_density_3 description"
  3660. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3661. msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3662. #: fdmprinter.def.json
  3663. msgctxt "machine_depth description"
  3664. msgid "The depth (Y-direction) of the printable area."
  3665. msgstr "造形可能領域の幅(Y方向)。"
  3666. #: fdmprinter.def.json
  3667. msgctxt "support_tower_diameter description"
  3668. msgid "The diameter of a special tower."
  3669. msgstr "特別な塔の直径。"
  3670. #: fdmprinter.def.json
  3671. msgctxt "support_tree_branch_diameter description"
  3672. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3673. msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。"
  3674. #: fdmprinter.def.json
  3675. msgctxt "support_tree_tip_diameter description"
  3676. msgid "The diameter of the top of the tip of the branches of tree support."
  3677. msgstr ""
  3678. #: fdmprinter.def.json
  3679. msgctxt "machine_feeder_wheel_diameter description"
  3680. msgid "The diameter of the wheel that drives the material in the feeder."
  3681. msgstr "材料をフィーダーに送るホイールの直径。"
  3682. #: fdmprinter.def.json
  3683. msgctxt "support_tree_max_diameter description"
  3684. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  3685. msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。"
  3686. #: fdmprinter.def.json
  3687. msgctxt "adaptive_layer_height_variation_step description"
  3688. msgid "The difference in height of the next layer height compared to the previous one."
  3689. msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。"
  3690. #: fdmprinter.def.json
  3691. msgctxt "ironing_line_spacing description"
  3692. msgid "The distance between the lines of ironing."
  3693. msgstr "アイロンライン同士の距離。"
  3694. #: fdmprinter.def.json
  3695. msgctxt "travel_avoid_distance description"
  3696. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3697. msgstr "ノズルが既に印刷された部分を移動する際の間隔。"
  3698. #: fdmprinter.def.json
  3699. msgctxt "raft_base_line_spacing description"
  3700. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3701. msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。"
  3702. #: fdmprinter.def.json
  3703. msgctxt "raft_interface_line_spacing description"
  3704. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3705. msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。"
  3706. #: fdmprinter.def.json
  3707. msgctxt "raft_surface_line_spacing description"
  3708. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3709. msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。"
  3710. #: fdmprinter.def.json
  3711. msgctxt "interlocking_depth description"
  3712. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3713. msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。"
  3714. #: fdmprinter.def.json
  3715. msgctxt "brim_width description"
  3716. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3717. msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。"
  3718. #: fdmprinter.def.json
  3719. msgctxt "interlocking_boundary_avoidance description"
  3720. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3721. msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。"
  3722. #: fdmprinter.def.json
  3723. msgctxt "machine_heat_zone_length description"
  3724. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3725. msgstr "ノズルからの熱がフィラメントに伝達される距離。"
  3726. #: fdmprinter.def.json
  3727. msgctxt "bottom_skin_expand_distance description"
  3728. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  3729. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  3730. #: fdmprinter.def.json
  3731. msgctxt "expand_skins_expand_distance description"
  3732. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  3733. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  3734. #: fdmprinter.def.json
  3735. msgctxt "top_skin_expand_distance description"
  3736. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  3737. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  3738. #: fdmprinter.def.json
  3739. msgctxt "wipe_move_distance description"
  3740. msgid "The distance to move the head back and forth across the brush."
  3741. msgstr "ブラシ全体でヘッド前後に動かす距離。"
  3742. #: fdmprinter.def.json
  3743. msgctxt "lightning_infill_prune_angle description"
  3744. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  3745. msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。"
  3746. #: fdmprinter.def.json
  3747. msgctxt "material_extrusion_cool_down_speed description"
  3748. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  3749. msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。"
  3750. #: fdmprinter.def.json
  3751. msgctxt "support_extruder_nr_layer_0 description"
  3752. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3753. msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3754. #: fdmprinter.def.json
  3755. msgctxt "raft_base_extruder_nr description"
  3756. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3757. msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  3758. #: fdmprinter.def.json
  3759. msgctxt "support_bottom_extruder_nr description"
  3760. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3761. msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。"
  3762. #: fdmprinter.def.json
  3763. msgctxt "support_infill_extruder_nr description"
  3764. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3765. msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3766. #: fdmprinter.def.json
  3767. msgctxt "raft_interface_extruder_nr description"
  3768. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3769. msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  3770. #: fdmprinter.def.json
  3771. msgctxt "support_interface_extruder_nr description"
  3772. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3773. msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。"
  3774. #: fdmprinter.def.json
  3775. msgctxt "support_roof_extruder_nr description"
  3776. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3777. msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。"
  3778. #: fdmprinter.def.json
  3779. msgctxt "skirt_brim_extruder_nr description"
  3780. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3781. msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  3782. #: fdmprinter.def.json
  3783. msgctxt "adhesion_extruder_nr description"
  3784. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3785. msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。"
  3786. #: fdmprinter.def.json
  3787. msgctxt "support_extruder_nr description"
  3788. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3789. msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  3790. #: fdmprinter.def.json
  3791. msgctxt "raft_surface_extruder_nr description"
  3792. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3793. msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  3794. #: fdmprinter.def.json
  3795. msgctxt "infill_extruder_nr description"
  3796. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3797. msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。"
  3798. #: fdmprinter.def.json
  3799. msgctxt "wall_x_extruder_nr description"
  3800. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3801. msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  3802. #: fdmprinter.def.json
  3803. msgctxt "wall_0_extruder_nr description"
  3804. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3805. msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  3806. #: fdmprinter.def.json
  3807. msgctxt "top_bottom_extruder_nr description"
  3808. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3809. msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。"
  3810. #: fdmprinter.def.json
  3811. msgctxt "roofing_extruder_nr description"
  3812. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3813. msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  3814. #: fdmprinter.def.json
  3815. msgctxt "wall_extruder_nr description"
  3816. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3817. msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。"
  3818. #: fdmprinter.def.json
  3819. msgctxt "raft_base_fan_speed description"
  3820. msgid "The fan speed for the base raft layer."
  3821. msgstr "ベースラフト層印刷時のファン速度。"
  3822. #: fdmprinter.def.json
  3823. msgctxt "raft_interface_fan_speed description"
  3824. msgid "The fan speed for the middle raft layer."
  3825. msgstr "ミドルラフト印刷時のファンの速度。"
  3826. #: fdmprinter.def.json
  3827. msgctxt "raft_fan_speed description"
  3828. msgid "The fan speed for the raft."
  3829. msgstr "ラフト印刷時のファンの速度。"
  3830. #: fdmprinter.def.json
  3831. msgctxt "raft_surface_fan_speed description"
  3832. msgid "The fan speed for the top raft layers."
  3833. msgstr "トップラフト印刷時のファンの速度。"
  3834. #: fdmprinter.def.json
  3835. msgctxt "cross_infill_density_image description"
  3836. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3837. msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。"
  3838. #: fdmprinter.def.json
  3839. msgctxt "cross_support_density_image description"
  3840. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3841. msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。"
  3842. #: fdmprinter.def.json
  3843. msgctxt "speed_slowdown_layers description"
  3844. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  3845. msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。"
  3846. #: fdmprinter.def.json
  3847. msgctxt "raft_airgap description"
  3848. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3849. msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。"
  3850. #: fdmprinter.def.json
  3851. msgctxt "machine_height description"
  3852. msgid "The height (Z-direction) of the printable area."
  3853. msgstr "造形可能領域の幅(Z方向)。"
  3854. #: fdmprinter.def.json
  3855. msgctxt "mold_roof_height description"
  3856. msgid "The height above horizontal parts in your model which to print mold."
  3857. msgstr "型を印刷するためのモデルの水平部分上の高さ。"
  3858. #: fdmprinter.def.json
  3859. msgctxt "cool_fan_full_at_height description"
  3860. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  3861. msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。"
  3862. #: fdmprinter.def.json
  3863. msgctxt "gantry_height description"
  3864. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3865. msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。"
  3866. #: fdmprinter.def.json
  3867. msgctxt "machine_nozzle_head_distance description"
  3868. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3869. msgstr "ノズル先端とプリントヘッドの最下部との高さの差。"
  3870. #: fdmprinter.def.json
  3871. msgctxt "retraction_hop_after_extruder_switch_height description"
  3872. msgid "The height difference when performing a Z Hop after extruder switch."
  3873. msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。"
  3874. #: fdmprinter.def.json
  3875. msgctxt "retraction_hop description"
  3876. msgid "The height difference when performing a Z Hop."
  3877. msgstr "Zホップを実行するときの高さ。"
  3878. #: fdmprinter.def.json
  3879. msgctxt "wipe_hop_amount description"
  3880. msgid "The height difference when performing a Z Hop."
  3881. msgstr "Zホップを実行するときの高さ。"
  3882. #: fdmprinter.def.json
  3883. msgctxt "layer_height description"
  3884. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3885. msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。"
  3886. #: fdmprinter.def.json
  3887. msgctxt "gradual_infill_step_height description"
  3888. msgid "The height of infill of a given density before switching to half the density."
  3889. msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。"
  3890. #: fdmprinter.def.json
  3891. msgctxt "gradual_support_infill_step_height description"
  3892. msgid "The height of support infill of a given density before switching to half the density."
  3893. msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。"
  3894. #: fdmprinter.def.json
  3895. msgctxt "interlocking_beam_layer_count description"
  3896. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3897. msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
  3898. #: fdmprinter.def.json
  3899. msgctxt "interlocking_orientation description"
  3900. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3901. msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
  3902. #: fdmprinter.def.json
  3903. msgctxt "layer_height_0 description"
  3904. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3905. msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。"
  3906. #: fdmprinter.def.json
  3907. msgctxt "support_bottom_stair_step_height description"
  3908. 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. Set to zero to turn off the stair-like behaviour."
  3909. msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。"
  3910. #: fdmprinter.def.json
  3911. msgctxt "brim_gap description"
  3912. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3913. msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。"
  3914. #: fdmprinter.def.json
  3915. msgctxt "skirt_gap description"
  3916. msgid ""
  3917. "The horizontal distance between the skirt and the first layer of the print.\n"
  3918. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3919. msgstr ""
  3920. "スカートと印刷の最初の層の間の水平距離。\n"
  3921. "これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。"
  3922. #: fdmprinter.def.json
  3923. msgctxt "lightning_infill_straightening_angle description"
  3924. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  3925. msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。"
  3926. #: fdmprinter.def.json
  3927. msgctxt "infill_offset_x description"
  3928. msgid "The infill pattern is moved this distance along the X axis."
  3929. msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。"
  3930. #: fdmprinter.def.json
  3931. msgctxt "infill_offset_y description"
  3932. msgid "The infill pattern is moved this distance along the Y axis."
  3933. msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。"
  3934. #: fdmprinter.def.json
  3935. msgctxt "machine_nozzle_size description"
  3936. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3937. msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。"
  3938. #: fdmprinter.def.json
  3939. msgctxt "raft_base_jerk description"
  3940. msgid "The jerk with which the base raft layer is printed."
  3941. msgstr "ベースラフト層印刷時のジャーク。"
  3942. #: fdmprinter.def.json
  3943. msgctxt "raft_interface_jerk description"
  3944. msgid "The jerk with which the middle raft layer is printed."
  3945. msgstr "ミドルラフト層印刷時のジャーク。"
  3946. #: fdmprinter.def.json
  3947. msgctxt "raft_jerk description"
  3948. msgid "The jerk with which the raft is printed."
  3949. msgstr "ラフトが印刷時のジャーク。"
  3950. #: fdmprinter.def.json
  3951. msgctxt "raft_surface_jerk description"
  3952. msgid "The jerk with which the top raft layers are printed."
  3953. msgstr "トップラフト層印刷時のジャーク。"
  3954. #: fdmprinter.def.json
  3955. msgctxt "bottom_skin_preshrink description"
  3956. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  3957. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  3958. #: fdmprinter.def.json
  3959. msgctxt "skin_preshrink description"
  3960. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  3961. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  3962. #: fdmprinter.def.json
  3963. msgctxt "top_skin_preshrink description"
  3964. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  3965. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  3966. #: fdmprinter.def.json
  3967. msgctxt "cool_fan_full_layer description"
  3968. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  3969. msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。"
  3970. #: fdmprinter.def.json
  3971. msgctxt "cool_min_layer_time_fan_speed_max description"
  3972. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  3973. msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。"
  3974. #: fdmprinter.def.json
  3975. msgctxt "retraction_amount description"
  3976. msgid "The length of material retracted during a retraction move."
  3977. msgstr "引き戻されるマテリアルの長さ。"
  3978. #: fdmprinter.def.json
  3979. msgctxt "machine_buildplate_type description"
  3980. msgid "The material of the build plate installed on the printer."
  3981. msgstr "プリンターに取り付けられているビルドプレートの材料です。"
  3982. #: fdmprinter.def.json
  3983. msgctxt "adaptive_layer_height_variation description"
  3984. msgid "The maximum allowed height different from the base layer height."
  3985. msgstr "基準レイヤー高さと比較して許容される最大の高さ。"
  3986. #: fdmprinter.def.json
  3987. msgctxt "ooze_shield_angle description"
  3988. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3989. msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。"
  3990. #: fdmprinter.def.json
  3991. msgctxt "conical_overhang_angle description"
  3992. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  3993. msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。"
  3994. #: fdmprinter.def.json
  3995. msgctxt "support_tree_angle description"
  3996. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3997. msgstr ""
  3998. #: fdmprinter.def.json
  3999. msgctxt "conical_overhang_hole_size description"
  4000. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  4001. msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。"
  4002. #: fdmprinter.def.json
  4003. msgctxt "meshfix_maximum_deviation description"
  4004. 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. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  4005. msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。"
  4006. #: fdmprinter.def.json
  4007. msgctxt "support_join_distance description"
  4008. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  4009. msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。"
  4010. #: fdmprinter.def.json
  4011. msgctxt "flow_rate_max_extrusion_offset description"
  4012. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4013. msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。"
  4014. #: fdmprinter.def.json
  4015. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4016. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  4017. msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。"
  4018. #: fdmprinter.def.json
  4019. msgctxt "jerk_print_layer_0 description"
  4020. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  4021. msgstr "初期レイヤー印刷中の最大瞬時速度の変化。"
  4022. #: fdmprinter.def.json
  4023. msgctxt "jerk_print description"
  4024. msgid "The maximum instantaneous velocity change of the print head."
  4025. msgstr "プリントヘッドの最大瞬間速度の変更。"
  4026. #: fdmprinter.def.json
  4027. msgctxt "jerk_ironing description"
  4028. msgid "The maximum instantaneous velocity change while performing ironing."
  4029. msgstr "アイロン時の最大加速度。"
  4030. #: fdmprinter.def.json
  4031. msgctxt "jerk_wall_x description"
  4032. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  4033. msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。"
  4034. #: fdmprinter.def.json
  4035. msgctxt "jerk_infill description"
  4036. msgid "The maximum instantaneous velocity change with which infill is printed."
  4037. msgstr "インフィルの印刷時の瞬間速度の変更。"
  4038. #: fdmprinter.def.json
  4039. msgctxt "jerk_support_bottom description"
  4040. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  4041. msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。"
  4042. #: fdmprinter.def.json
  4043. msgctxt "jerk_support_infill description"
  4044. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  4045. msgstr "サポート材の印刷時、最大瞬間速度の変更。"
  4046. #: fdmprinter.def.json
  4047. msgctxt "jerk_wall_0 description"
  4048. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  4049. msgstr "外側のウォールが出力される際の最大瞬間速度の変更。"
  4050. #: fdmprinter.def.json
  4051. msgctxt "jerk_prime_tower description"
  4052. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  4053. msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。"
  4054. #: fdmprinter.def.json
  4055. msgctxt "jerk_support_interface description"
  4056. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  4057. msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。"
  4058. #: fdmprinter.def.json
  4059. msgctxt "jerk_support_roof description"
  4060. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  4061. msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。"
  4062. #: fdmprinter.def.json
  4063. msgctxt "jerk_skirt_brim description"
  4064. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  4065. msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。"
  4066. #: fdmprinter.def.json
  4067. msgctxt "jerk_support description"
  4068. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  4069. msgstr "サポート材の印刷時の最大瞬間速度の変更。"
  4070. #: fdmprinter.def.json
  4071. msgctxt "jerk_wall description"
  4072. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4073. msgstr "ウォールのプリント時の最大瞬間速度を変更。"
  4074. #: fdmprinter.def.json
  4075. msgctxt "jerk_roofing description"
  4076. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4077. msgstr "上部表面プリント時の最大加速度。"
  4078. #: fdmprinter.def.json
  4079. msgctxt "jerk_topbottom description"
  4080. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4081. msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。"
  4082. #: fdmprinter.def.json
  4083. msgctxt "jerk_travel description"
  4084. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4085. msgstr "移動する際の最大瞬時速度の変更。"
  4086. #: fdmprinter.def.json
  4087. msgctxt "machine_max_feedrate_x description"
  4088. msgid "The maximum speed for the motor of the X-direction."
  4089. msgstr "X方向のモーターの最大速度。"
  4090. #: fdmprinter.def.json
  4091. msgctxt "machine_max_feedrate_y description"
  4092. msgid "The maximum speed for the motor of the Y-direction."
  4093. msgstr "Y方向のモーターの最大速度。"
  4094. #: fdmprinter.def.json
  4095. msgctxt "machine_max_feedrate_z description"
  4096. msgid "The maximum speed for the motor of the Z-direction."
  4097. msgstr "Z方向のモーターの最大速度。"
  4098. #: fdmprinter.def.json
  4099. msgctxt "machine_max_feedrate_e description"
  4100. msgid "The maximum speed of the filament."
  4101. msgstr "フィラメントの最大速度。"
  4102. #: fdmprinter.def.json
  4103. msgctxt "support_bottom_stair_step_width description"
  4104. msgid "The maximum width 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."
  4105. msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。"
  4106. #: fdmprinter.def.json
  4107. msgctxt "mold_width description"
  4108. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4109. msgstr "型の外側とモデルの外側との間の最小距離です。"
  4110. #: fdmprinter.def.json
  4111. msgctxt "machine_minimum_feedrate description"
  4112. msgid "The minimal movement speed of the print head."
  4113. msgstr "プリントヘッドの最小移動速度。"
  4114. #: fdmprinter.def.json
  4115. msgctxt "material_initial_print_temperature description"
  4116. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4117. msgstr "加熱中、印刷を開始することができる最低の温度。"
  4118. #: fdmprinter.def.json
  4119. msgctxt "machine_min_cool_heat_time_window description"
  4120. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  4121. msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。"
  4122. #: fdmprinter.def.json
  4123. msgctxt "infill_support_angle description"
  4124. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  4125. msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。"
  4126. #: fdmprinter.def.json
  4127. msgctxt "support_angle description"
  4128. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  4129. msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。"
  4130. #: fdmprinter.def.json
  4131. msgctxt "retraction_min_travel description"
  4132. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4133. msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。"
  4134. #: fdmprinter.def.json
  4135. msgctxt "skirt_brim_minimal_length description"
  4136. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  4137. msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。"
  4138. #: fdmprinter.def.json
  4139. msgctxt "min_odd_wall_line_width description"
  4140. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  4141. msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。"
  4142. #: fdmprinter.def.json
  4143. msgctxt "min_even_wall_line_width description"
  4144. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  4145. msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。"
  4146. #: fdmprinter.def.json
  4147. msgctxt "cool_min_speed description"
  4148. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  4149. msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。"
  4150. #: fdmprinter.def.json
  4151. msgctxt "meshfix_maximum_resolution description"
  4152. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  4153. msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。"
  4154. #: fdmprinter.def.json
  4155. msgctxt "meshfix_maximum_travel_resolution description"
  4156. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  4157. msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。"
  4158. #: fdmprinter.def.json
  4159. msgctxt "support_bottom_stair_step_min_slope description"
  4160. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  4161. msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。"
  4162. #: fdmprinter.def.json
  4163. msgctxt "cool_min_layer_time description"
  4164. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  4165. msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。"
  4166. #: fdmprinter.def.json
  4167. msgctxt "prime_tower_min_volume description"
  4168. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4169. msgstr "プライムタワーの各層の最小容積。"
  4170. #: fdmprinter.def.json
  4171. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  4172. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  4173. msgstr ""
  4174. #: fdmprinter.def.json
  4175. msgctxt "machine_name description"
  4176. msgid "The name of your 3D printer model."
  4177. msgstr "3Dプリンターの機種名。"
  4178. #: fdmprinter.def.json
  4179. msgctxt "machine_nozzle_id description"
  4180. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4181. msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。"
  4182. #: fdmprinter.def.json
  4183. msgctxt "travel_avoid_other_parts description"
  4184. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4185. msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  4186. #: fdmprinter.def.json
  4187. msgctxt "travel_avoid_supports description"
  4188. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4189. msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  4190. #: fdmprinter.def.json
  4191. msgctxt "bottom_layers description"
  4192. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4193. msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。"
  4194. #: fdmprinter.def.json
  4195. msgctxt "raft_base_wall_count description"
  4196. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4197. msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。"
  4198. #: fdmprinter.def.json
  4199. msgctxt "skin_edge_support_layers description"
  4200. msgid "The number of infill layers that supports skin edges."
  4201. msgstr "スキンエッジをサポートするインフィルレイヤーの数。"
  4202. #: fdmprinter.def.json
  4203. msgctxt "initial_bottom_layers description"
  4204. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  4205. msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。"
  4206. #: fdmprinter.def.json
  4207. msgctxt "raft_interface_layers description"
  4208. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  4209. msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。"
  4210. #: fdmprinter.def.json
  4211. msgctxt "brim_line_count description"
  4212. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  4213. msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。"
  4214. #: fdmprinter.def.json
  4215. msgctxt "support_brim_line_count description"
  4216. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  4217. msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。"
  4218. #: fdmprinter.def.json
  4219. msgctxt "raft_surface_layers description"
  4220. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  4221. msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。"
  4222. #: fdmprinter.def.json
  4223. msgctxt "top_layers description"
  4224. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4225. msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。"
  4226. #: fdmprinter.def.json
  4227. msgctxt "roofing_layer_count description"
  4228. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4229. msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。"
  4230. #: fdmprinter.def.json
  4231. msgctxt "support_wall_count description"
  4232. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4233. msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  4234. #: fdmprinter.def.json
  4235. msgctxt "support_bottom_wall_count description"
  4236. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4237. msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  4238. #: fdmprinter.def.json
  4239. msgctxt "support_roof_wall_count description"
  4240. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4241. msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  4242. #: fdmprinter.def.json
  4243. msgctxt "support_interface_wall_count description"
  4244. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4245. msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  4246. #: fdmprinter.def.json
  4247. msgctxt "wall_distribution_count description"
  4248. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  4249. msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。"
  4250. #: fdmprinter.def.json
  4251. msgctxt "wall_line_count description"
  4252. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4253. msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。"
  4254. #: fdmprinter.def.json
  4255. msgctxt "machine_nozzle_tip_outer_diameter description"
  4256. msgid "The outer diameter of the tip of the nozzle."
  4257. msgstr "ノズルの外径。"
  4258. #: fdmprinter.def.json
  4259. msgctxt "infill_pattern description"
  4260. 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 ceiling of the object."
  4261. msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。"
  4262. #: fdmprinter.def.json
  4263. msgctxt "support_pattern description"
  4264. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4265. msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。"
  4266. #: fdmprinter.def.json
  4267. msgctxt "roofing_pattern description"
  4268. msgid "The pattern of the top most layers."
  4269. msgstr "上層のパターン。"
  4270. #: fdmprinter.def.json
  4271. msgctxt "top_bottom_pattern description"
  4272. msgid "The pattern of the top/bottom layers."
  4273. msgstr "上層/底層のパターン。"
  4274. #: fdmprinter.def.json
  4275. msgctxt "top_bottom_pattern_0 description"
  4276. msgid "The pattern on the bottom of the print on the first layer."
  4277. msgstr "第1層のプリントの底部のパターン。"
  4278. #: fdmprinter.def.json
  4279. msgctxt "ironing_pattern description"
  4280. msgid "The pattern to use for ironing top surfaces."
  4281. msgstr "アイロンのパターン。"
  4282. #: fdmprinter.def.json
  4283. msgctxt "support_bottom_pattern description"
  4284. msgid "The pattern with which the floors of the support are printed."
  4285. msgstr "サポートのフロアが印刷されるパターン。"
  4286. #: fdmprinter.def.json
  4287. msgctxt "support_interface_pattern description"
  4288. msgid "The pattern with which the interface of the support with the model is printed."
  4289. msgstr "モデルとサポートのインタフェースが印刷されるパターン。"
  4290. #: fdmprinter.def.json
  4291. msgctxt "support_roof_pattern description"
  4292. msgid "The pattern with which the roofs of the support are printed."
  4293. msgstr "サポートのルーフが印刷されるパターン。"
  4294. #: fdmprinter.def.json
  4295. msgctxt "z_seam_position description"
  4296. msgid "The position near where to start printing each part in a layer."
  4297. msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。"
  4298. #: fdmprinter.def.json
  4299. msgctxt "support_tree_angle_slow description"
  4300. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  4301. msgstr ""
  4302. #: fdmprinter.def.json
  4303. msgctxt "support_tree_rest_preference description"
  4304. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  4305. msgstr ""
  4306. #: fdmprinter.def.json
  4307. msgctxt "jerk_layer_0 description"
  4308. msgid "The print maximum instantaneous velocity change for the initial layer."
  4309. msgstr "初期レイヤーの最大瞬時速度の変更。"
  4310. #: fdmprinter.def.json
  4311. msgctxt "machine_shape description"
  4312. msgid "The shape of the build plate without taking unprintable areas into account."
  4313. msgstr "造形不可領域を考慮しないビルドプレートの形状。"
  4314. #: fdmprinter.def.json
  4315. msgctxt "machine_head_with_fans_polygon description"
  4316. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  4317. msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。"
  4318. #: fdmprinter.def.json
  4319. msgctxt "cross_infill_pocket_size description"
  4320. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4321. msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。"
  4322. #: fdmprinter.def.json
  4323. msgctxt "coasting_min_volume description"
  4324. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4325. msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。"
  4326. #: fdmprinter.def.json
  4327. msgctxt "machine_nozzle_cool_down_speed description"
  4328. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4329. msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。"
  4330. #: fdmprinter.def.json
  4331. msgctxt "machine_nozzle_heat_up_speed description"
  4332. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4333. msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。"
  4334. #: fdmprinter.def.json
  4335. msgctxt "speed_wall_x description"
  4336. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  4337. msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。"
  4338. #: fdmprinter.def.json
  4339. msgctxt "bridge_skin_speed description"
  4340. msgid "The speed at which bridge skin regions are printed."
  4341. msgstr "ブリッジスキン領域が印刷される速度。"
  4342. #: fdmprinter.def.json
  4343. msgctxt "speed_infill description"
  4344. msgid "The speed at which infill is printed."
  4345. msgstr "インフィルを印刷する速度。"
  4346. #: fdmprinter.def.json
  4347. msgctxt "speed_print description"
  4348. msgid "The speed at which printing happens."
  4349. msgstr "印刷スピード。"
  4350. #: fdmprinter.def.json
  4351. msgctxt "raft_base_speed description"
  4352. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4353. msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  4354. #: fdmprinter.def.json
  4355. msgctxt "bridge_wall_speed description"
  4356. msgid "The speed at which the bridge walls are printed."
  4357. msgstr "ブリッジ壁を印刷する速度。"
  4358. #: fdmprinter.def.json
  4359. msgctxt "cool_fan_speed_0 description"
  4360. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  4361. msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。"
  4362. #: fdmprinter.def.json
  4363. msgctxt "cool_fan_speed_min description"
  4364. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  4365. msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。"
  4366. #: fdmprinter.def.json
  4367. msgctxt "cool_fan_speed_max description"
  4368. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  4369. msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。"
  4370. #: fdmprinter.def.json
  4371. msgctxt "retraction_prime_speed description"
  4372. msgid "The speed at which the filament is primed during a retraction move."
  4373. msgstr "フィラメントが引き戻される時のスピード。"
  4374. #: fdmprinter.def.json
  4375. msgctxt "wipe_retraction_prime_speed description"
  4376. msgid "The speed at which the filament is primed during a wipe retraction move."
  4377. msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。"
  4378. #: fdmprinter.def.json
  4379. msgctxt "switch_extruder_prime_speed description"
  4380. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4381. msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。"
  4382. #: fdmprinter.def.json
  4383. msgctxt "retraction_speed description"
  4384. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4385. msgstr "フィラメントが引き戻される時のスピード。"
  4386. #: fdmprinter.def.json
  4387. msgctxt "wipe_retraction_speed description"
  4388. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4389. msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。"
  4390. #: fdmprinter.def.json
  4391. msgctxt "switch_extruder_retraction_speed description"
  4392. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4393. msgstr "ノズル切り替え中のフィラメントの引き込み速度。"
  4394. #: fdmprinter.def.json
  4395. msgctxt "retraction_retract_speed description"
  4396. msgid "The speed at which the filament is retracted during a retraction move."
  4397. msgstr "フィラメントが引き戻される時のスピード。"
  4398. #: fdmprinter.def.json
  4399. msgctxt "wipe_retraction_retract_speed description"
  4400. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4401. msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。"
  4402. #: fdmprinter.def.json
  4403. msgctxt "switch_extruder_retraction_speeds description"
  4404. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  4405. msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。"
  4406. #: fdmprinter.def.json
  4407. msgctxt "speed_support_bottom description"
  4408. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  4409. msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。"
  4410. #: fdmprinter.def.json
  4411. msgctxt "speed_support_infill description"
  4412. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4413. msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。"
  4414. #: fdmprinter.def.json
  4415. msgctxt "raft_interface_speed description"
  4416. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4417. msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  4418. #: fdmprinter.def.json
  4419. msgctxt "speed_wall_0 description"
  4420. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  4421. msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。"
  4422. #: fdmprinter.def.json
  4423. msgctxt "speed_prime_tower description"
  4424. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  4425. msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。"
  4426. #: fdmprinter.def.json
  4427. msgctxt "cool_fan_speed description"
  4428. msgid "The speed at which the print cooling fans spin."
  4429. msgstr "冷却ファンが回転する速度。"
  4430. #: fdmprinter.def.json
  4431. msgctxt "raft_speed description"
  4432. msgid "The speed at which the raft is printed."
  4433. msgstr "ラフトが印刷される速度。"
  4434. #: fdmprinter.def.json
  4435. msgctxt "speed_support_interface description"
  4436. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4437. msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。"
  4438. #: fdmprinter.def.json
  4439. msgctxt "speed_support_roof description"
  4440. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4441. msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。"
  4442. #: fdmprinter.def.json
  4443. msgctxt "skirt_brim_speed description"
  4444. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  4445. msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。"
  4446. #: fdmprinter.def.json
  4447. msgctxt "speed_support description"
  4448. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  4449. msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。"
  4450. #: fdmprinter.def.json
  4451. msgctxt "raft_surface_speed description"
  4452. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  4453. msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。"
  4454. #: fdmprinter.def.json
  4455. msgctxt "speed_z_hop description"
  4456. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  4457. msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。"
  4458. #: fdmprinter.def.json
  4459. msgctxt "speed_wall description"
  4460. msgid "The speed at which the walls are printed."
  4461. msgstr "ウォールを印刷する速度。"
  4462. #: fdmprinter.def.json
  4463. msgctxt "speed_ironing description"
  4464. msgid "The speed at which to pass over the top surface."
  4465. msgstr "上部表面通過時の速度。"
  4466. #: fdmprinter.def.json
  4467. msgctxt "material_break_speed description"
  4468. msgid "The speed at which to retract the filament in order to break it cleanly."
  4469. msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。"
  4470. #: fdmprinter.def.json
  4471. msgctxt "speed_roofing description"
  4472. msgid "The speed at which top surface skin layers are printed."
  4473. msgstr "上部表面プリント時の速度。"
  4474. #: fdmprinter.def.json
  4475. msgctxt "speed_topbottom description"
  4476. msgid "The speed at which top/bottom layers are printed."
  4477. msgstr "トップ/ボトムのレイヤーのプリント速度。"
  4478. #: fdmprinter.def.json
  4479. msgctxt "speed_travel description"
  4480. msgid "The speed at which travel moves are made."
  4481. msgstr "移動中のスピード。"
  4482. #: fdmprinter.def.json
  4483. msgctxt "coasting_speed description"
  4484. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4485. msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。"
  4486. #: fdmprinter.def.json
  4487. msgctxt "speed_layer_0 description"
  4488. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  4489. msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。"
  4490. #: fdmprinter.def.json
  4491. msgctxt "speed_print_layer_0 description"
  4492. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4493. msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。"
  4494. #: fdmprinter.def.json
  4495. msgctxt "speed_travel_layer_0 description"
  4496. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  4497. msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。"
  4498. #: fdmprinter.def.json
  4499. msgctxt "material_break_temperature description"
  4500. msgid "The temperature at which the filament is broken for a clean break."
  4501. msgstr "フィラメントがきれいに引き出される温度。"
  4502. #: fdmprinter.def.json
  4503. msgctxt "build_volume_temperature description"
  4504. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4505. msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。"
  4506. #: fdmprinter.def.json
  4507. msgctxt "material_standby_temperature description"
  4508. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4509. msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)"
  4510. #: fdmprinter.def.json
  4511. msgctxt "material_final_print_temperature description"
  4512. msgid "The temperature to which to already start cooling down just before the end of printing."
  4513. msgstr "印刷終了直前に冷却を開始する温度。"
  4514. #: fdmprinter.def.json
  4515. msgctxt "material_print_temperature_layer_0 description"
  4516. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4517. msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。"
  4518. #: fdmprinter.def.json
  4519. msgctxt "material_print_temperature description"
  4520. msgid "The temperature used for printing."
  4521. msgstr "印刷中の温度。"
  4522. #: fdmprinter.def.json
  4523. msgctxt "material_bed_temperature_layer_0 description"
  4524. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  4525. msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。"
  4526. #: fdmprinter.def.json
  4527. msgctxt "material_bed_temperature description"
  4528. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4529. msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。"
  4530. #: fdmprinter.def.json
  4531. msgctxt "material_break_preparation_temperature description"
  4532. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4533. msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。"
  4534. #: fdmprinter.def.json
  4535. msgctxt "bottom_thickness description"
  4536. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4537. msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。"
  4538. #: fdmprinter.def.json
  4539. msgctxt "skin_edge_support_thickness description"
  4540. msgid "The thickness of the extra infill that supports skin edges."
  4541. msgstr "スキンエッジをサポートする追加のインフィルの厚さ。"
  4542. #: fdmprinter.def.json
  4543. msgctxt "support_interface_height description"
  4544. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4545. msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。"
  4546. #: fdmprinter.def.json
  4547. msgctxt "support_bottom_height description"
  4548. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  4549. msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。"
  4550. #: fdmprinter.def.json
  4551. msgctxt "support_roof_height description"
  4552. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  4553. msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。"
  4554. #: fdmprinter.def.json
  4555. msgctxt "top_thickness description"
  4556. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4557. msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。"
  4558. #: fdmprinter.def.json
  4559. msgctxt "top_bottom_thickness description"
  4560. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  4561. msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。"
  4562. #: fdmprinter.def.json
  4563. msgctxt "wall_thickness description"
  4564. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4565. msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。"
  4566. #: fdmprinter.def.json
  4567. msgctxt "infill_sparse_thickness description"
  4568. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4569. msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。"
  4570. #: fdmprinter.def.json
  4571. msgctxt "support_infill_sparse_thickness description"
  4572. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4573. msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。"
  4574. #: fdmprinter.def.json
  4575. msgctxt "machine_gcode_flavor description"
  4576. msgid "The type of g-code to be generated."
  4577. msgstr "生成するG-codeの種類です。"
  4578. #: fdmprinter.def.json
  4579. msgctxt "coasting_volume description"
  4580. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4581. msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。"
  4582. #: fdmprinter.def.json
  4583. msgctxt "machine_width description"
  4584. msgid "The width (X-direction) of the printable area."
  4585. msgstr "造形可能領域の幅(X方向)。"
  4586. #: fdmprinter.def.json
  4587. msgctxt "support_brim_width description"
  4588. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  4589. msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。"
  4590. #: fdmprinter.def.json
  4591. msgctxt "interlocking_beam_width description"
  4592. msgid "The width of the interlocking structure beams."
  4593. msgstr "インターロック構造ビームの幅。"
  4594. #: fdmprinter.def.json
  4595. msgctxt "prime_tower_size description"
  4596. msgid "The width of the prime tower."
  4597. msgstr "プライムタワーの幅。"
  4598. #: fdmprinter.def.json
  4599. msgctxt "magic_fuzzy_skin_thickness description"
  4600. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4601. msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。"
  4602. #: fdmprinter.def.json
  4603. msgctxt "retraction_extrusion_window description"
  4604. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  4605. msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。"
  4606. #: fdmprinter.def.json
  4607. msgctxt "prime_tower_position_x description"
  4608. msgid "The x coordinate of the position of the prime tower."
  4609. msgstr "プライムタワーの位置のx座標。"
  4610. #: fdmprinter.def.json
  4611. msgctxt "prime_tower_position_y description"
  4612. msgid "The y coordinate of the position of the prime tower."
  4613. msgstr "プライムタワーの位置のy座標。"
  4614. #: fdmprinter.def.json
  4615. msgctxt "support_meshes_present description"
  4616. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4617. msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。"
  4618. #: fdmprinter.def.json
  4619. msgctxt "bridge_wall_coast description"
  4620. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4621. msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。"
  4622. #: fdmprinter.def.json
  4623. msgctxt "raft_smoothing description"
  4624. msgid "This setting controls 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."
  4625. msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。"
  4626. #: fdmprinter.def.json
  4627. msgctxt "retraction_count_max description"
  4628. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  4629. msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。"
  4630. #: fdmprinter.def.json
  4631. msgctxt "draft_shield_enabled description"
  4632. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4633. msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。"
  4634. #: fdmprinter.def.json
  4635. msgctxt "support_tree_tip_diameter label"
  4636. msgid "Tip Diameter"
  4637. msgstr ""
  4638. #: fdmprinter.def.json
  4639. msgctxt "material_shrinkage_percentage_xy description"
  4640. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  4641. msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。"
  4642. #: fdmprinter.def.json
  4643. msgctxt "material_shrinkage_percentage_z description"
  4644. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  4645. msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。"
  4646. #: fdmprinter.def.json
  4647. msgctxt "material_shrinkage_percentage description"
  4648. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4649. msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。"
  4650. #: fdmprinter.def.json
  4651. msgctxt "top_layers label"
  4652. msgid "Top Layers"
  4653. msgstr "上部レイヤー"
  4654. #: fdmprinter.def.json
  4655. msgctxt "top_skin_expand_distance label"
  4656. msgid "Top Skin Expand Distance"
  4657. msgstr "上面展開距離"
  4658. #: fdmprinter.def.json
  4659. msgctxt "top_skin_preshrink label"
  4660. msgid "Top Skin Removal Width"
  4661. msgstr "上面除去幅"
  4662. #: fdmprinter.def.json
  4663. msgctxt "acceleration_roofing label"
  4664. msgid "Top Surface Skin Acceleration"
  4665. msgstr "最上面加速度"
  4666. #: fdmprinter.def.json
  4667. msgctxt "roofing_extruder_nr label"
  4668. msgid "Top Surface Skin Extruder"
  4669. msgstr "上部表面用エクストルーダー"
  4670. #: fdmprinter.def.json
  4671. msgctxt "roofing_material_flow label"
  4672. msgid "Top Surface Skin Flow"
  4673. msgstr "上部表面スキンフロー"
  4674. #: fdmprinter.def.json
  4675. msgctxt "jerk_roofing label"
  4676. msgid "Top Surface Skin Jerk"
  4677. msgstr "最上面ジャーク"
  4678. #: fdmprinter.def.json
  4679. msgctxt "roofing_layer_count label"
  4680. msgid "Top Surface Skin Layers"
  4681. msgstr "上部表面レイヤー"
  4682. #: fdmprinter.def.json
  4683. msgctxt "roofing_angles label"
  4684. msgid "Top Surface Skin Line Directions"
  4685. msgstr "最上面のラインの向き"
  4686. #: fdmprinter.def.json
  4687. msgctxt "roofing_line_width label"
  4688. msgid "Top Surface Skin Line Width"
  4689. msgstr "最上面のライン幅"
  4690. #: fdmprinter.def.json
  4691. msgctxt "roofing_pattern label"
  4692. msgid "Top Surface Skin Pattern"
  4693. msgstr "上部表面パターン"
  4694. #: fdmprinter.def.json
  4695. msgctxt "speed_roofing label"
  4696. msgid "Top Surface Skin Speed"
  4697. msgstr "最上面速度"
  4698. #: fdmprinter.def.json
  4699. msgctxt "top_thickness label"
  4700. msgid "Top Thickness"
  4701. msgstr "上部厚さ"
  4702. #: fdmprinter.def.json
  4703. msgctxt "max_skin_angle_for_expansion description"
  4704. 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 and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  4705. msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。"
  4706. #: fdmprinter.def.json
  4707. msgctxt "top_bottom description"
  4708. msgid "Top/Bottom"
  4709. msgstr "トップ/ボトム"
  4710. #: fdmprinter.def.json
  4711. msgctxt "top_bottom label"
  4712. msgid "Top/Bottom"
  4713. msgstr "トップ/ボトム"
  4714. #: fdmprinter.def.json
  4715. msgctxt "acceleration_topbottom label"
  4716. msgid "Top/Bottom Acceleration"
  4717. msgstr "上面/底面加速度"
  4718. #: fdmprinter.def.json
  4719. msgctxt "top_bottom_extruder_nr label"
  4720. msgid "Top/Bottom Extruder"
  4721. msgstr "上部/底面エクストルーダー"
  4722. #: fdmprinter.def.json
  4723. msgctxt "skin_material_flow label"
  4724. msgid "Top/Bottom Flow"
  4725. msgstr "上面/下面フロー"
  4726. #: fdmprinter.def.json
  4727. msgctxt "jerk_topbottom label"
  4728. msgid "Top/Bottom Jerk"
  4729. msgstr "上面/下面ジャーク"
  4730. #: fdmprinter.def.json
  4731. msgctxt "skin_angles label"
  4732. msgid "Top/Bottom Line Directions"
  4733. msgstr "上層/底層ラインの向き"
  4734. #: fdmprinter.def.json
  4735. msgctxt "skin_line_width label"
  4736. msgid "Top/Bottom Line Width"
  4737. msgstr "上下面ライン幅"
  4738. #: fdmprinter.def.json
  4739. msgctxt "top_bottom_pattern label"
  4740. msgid "Top/Bottom Pattern"
  4741. msgstr "上層/底層パターン"
  4742. #: fdmprinter.def.json
  4743. msgctxt "speed_topbottom label"
  4744. msgid "Top/Bottom Speed"
  4745. msgstr "上面/底面速度"
  4746. #: fdmprinter.def.json
  4747. msgctxt "top_bottom_thickness label"
  4748. msgid "Top/Bottom Thickness"
  4749. msgstr "上部/底面の厚さ"
  4750. #: fdmprinter.def.json
  4751. msgctxt "support_type option buildplate"
  4752. msgid "Touching Buildplate"
  4753. msgstr "ビルドプレートにタッチ"
  4754. #: fdmprinter.def.json
  4755. msgctxt "support_tower_diameter label"
  4756. msgid "Tower Diameter"
  4757. msgstr "タワー直径"
  4758. #: fdmprinter.def.json
  4759. msgctxt "support_tower_roof_angle label"
  4760. msgid "Tower Roof Angle"
  4761. msgstr "タワールーフ角度"
  4762. #: fdmprinter.def.json
  4763. msgctxt "mesh_rotation_matrix description"
  4764. msgid "Transformation matrix to be applied to the model when loading it from file."
  4765. msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。"
  4766. #: fdmprinter.def.json
  4767. msgctxt "travel label"
  4768. msgid "Travel"
  4769. msgstr "移動"
  4770. #: fdmprinter.def.json
  4771. msgctxt "acceleration_travel label"
  4772. msgid "Travel Acceleration"
  4773. msgstr "移動か速度"
  4774. #: fdmprinter.def.json
  4775. msgctxt "travel_avoid_distance label"
  4776. msgid "Travel Avoid Distance"
  4777. msgstr "移動回避距離"
  4778. #: fdmprinter.def.json
  4779. msgctxt "jerk_travel label"
  4780. msgid "Travel Jerk"
  4781. msgstr "移動ジャーク"
  4782. #: fdmprinter.def.json
  4783. msgctxt "speed_travel label"
  4784. msgid "Travel Speed"
  4785. msgstr "移動速度"
  4786. #: fdmprinter.def.json
  4787. msgctxt "magic_mesh_surface_mode description"
  4788. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4789. msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。"
  4790. #: fdmprinter.def.json
  4791. msgctxt "support_structure option tree"
  4792. msgid "Tree"
  4793. msgstr "ツリー"
  4794. #: fdmprinter.def.json
  4795. msgctxt "infill_pattern option trihexagon"
  4796. msgid "Tri-Hexagon"
  4797. msgstr "トライヘキサゴン"
  4798. #: fdmprinter.def.json
  4799. msgctxt "infill_pattern option triangles"
  4800. msgid "Triangles"
  4801. msgstr "トライアングル"
  4802. #: fdmprinter.def.json
  4803. msgctxt "support_bottom_pattern option triangles"
  4804. msgid "Triangles"
  4805. msgstr "トライアングル"
  4806. #: fdmprinter.def.json
  4807. msgctxt "support_interface_pattern option triangles"
  4808. msgid "Triangles"
  4809. msgstr "トライアングル"
  4810. #: fdmprinter.def.json
  4811. msgctxt "support_pattern option triangles"
  4812. msgid "Triangles"
  4813. msgstr "トライアングル"
  4814. #: fdmprinter.def.json
  4815. msgctxt "support_roof_pattern option triangles"
  4816. msgid "Triangles"
  4817. msgstr "トライアングル"
  4818. #: fdmprinter.def.json
  4819. msgctxt "support_tree_max_diameter label"
  4820. msgid "Trunk Diameter"
  4821. msgstr ""
  4822. #: fdmprinter.def.json
  4823. msgctxt "machine_gcode_flavor option UltiGCode"
  4824. msgid "Ultimaker 2"
  4825. msgstr "Ultimaker 2"
  4826. #: fdmprinter.def.json
  4827. msgctxt "meshfix_union_all label"
  4828. msgid "Union Overlapping Volumes"
  4829. msgstr "重複量"
  4830. #: fdmprinter.def.json
  4831. msgctxt "bridge_wall_min_length description"
  4832. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4833. msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。"
  4834. #: fdmprinter.def.json
  4835. msgctxt "adaptive_layer_height_enabled label"
  4836. msgid "Use Adaptive Layers"
  4837. msgstr "適応レイヤーの使用"
  4838. #: fdmprinter.def.json
  4839. msgctxt "support_use_towers label"
  4840. msgid "Use Towers"
  4841. msgstr "使用タワー"
  4842. #: fdmprinter.def.json
  4843. msgctxt "acceleration_travel_enabled description"
  4844. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  4845. msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。"
  4846. #: fdmprinter.def.json
  4847. msgctxt "jerk_travel_enabled description"
  4848. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  4849. msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。"
  4850. #: fdmprinter.def.json
  4851. msgctxt "relative_extrusion description"
  4852. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. 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 g-code script is output."
  4853. msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。"
  4854. #: fdmprinter.def.json
  4855. msgctxt "support_use_towers description"
  4856. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  4857. msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。"
  4858. #: fdmprinter.def.json
  4859. msgctxt "infill_mesh description"
  4860. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  4861. msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。"
  4862. #: fdmprinter.def.json
  4863. msgctxt "support_mesh description"
  4864. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4865. msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。"
  4866. #: fdmprinter.def.json
  4867. msgctxt "anti_overhang_mesh description"
  4868. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4869. msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。"
  4870. #: fdmprinter.def.json
  4871. msgctxt "z_seam_type option back"
  4872. msgid "User Specified"
  4873. msgstr "ユーザー指定"
  4874. #: fdmprinter.def.json
  4875. msgctxt "material_shrinkage_percentage_z label"
  4876. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4877. msgstr "垂直スケールファクタ収縮補正"
  4878. #: fdmprinter.def.json
  4879. msgctxt "slicing_tolerance description"
  4880. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4881. msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。"
  4882. #: fdmprinter.def.json
  4883. msgctxt "material_bed_temp_wait label"
  4884. msgid "Wait for Build Plate Heatup"
  4885. msgstr "ビルドプレート加熱待ち時間"
  4886. #: fdmprinter.def.json
  4887. msgctxt "material_print_temp_wait label"
  4888. msgid "Wait for Nozzle Heatup"
  4889. msgstr "ノズル加熱待ち時間"
  4890. #: fdmprinter.def.json
  4891. msgctxt "acceleration_wall label"
  4892. msgid "Wall Acceleration"
  4893. msgstr "ウォール加速度"
  4894. #: fdmprinter.def.json
  4895. msgctxt "wall_distribution_count label"
  4896. msgid "Wall Distribution Count"
  4897. msgstr "ウォール分配数"
  4898. #: fdmprinter.def.json
  4899. msgctxt "wall_extruder_nr label"
  4900. msgid "Wall Extruder"
  4901. msgstr "ウォールエクストルーダー"
  4902. #: fdmprinter.def.json
  4903. msgctxt "wall_material_flow label"
  4904. msgid "Wall Flow"
  4905. msgstr "壁のフロー"
  4906. #: fdmprinter.def.json
  4907. msgctxt "jerk_wall label"
  4908. msgid "Wall Jerk"
  4909. msgstr "ウォールジャーク"
  4910. #: fdmprinter.def.json
  4911. msgctxt "wall_line_count label"
  4912. msgid "Wall Line Count"
  4913. msgstr "ウォールライン数"
  4914. #: fdmprinter.def.json
  4915. msgctxt "wall_line_width label"
  4916. msgid "Wall Line Width"
  4917. msgstr "ウォールライン幅"
  4918. #: fdmprinter.def.json
  4919. msgctxt "inset_direction label"
  4920. msgid "Wall Ordering"
  4921. msgstr "ウォール順序"
  4922. #: fdmprinter.def.json
  4923. msgctxt "speed_wall label"
  4924. msgid "Wall Speed"
  4925. msgstr "ウォール速度"
  4926. #: fdmprinter.def.json
  4927. msgctxt "wall_thickness label"
  4928. msgid "Wall Thickness"
  4929. msgstr "壁の厚さ"
  4930. #: fdmprinter.def.json
  4931. msgctxt "wall_transition_length label"
  4932. msgid "Wall Transition Length"
  4933. msgstr "ウォール移行長さ"
  4934. #: fdmprinter.def.json
  4935. msgctxt "wall_transition_filter_distance label"
  4936. msgid "Wall Transitioning Filter Distance"
  4937. msgstr "ウォール移行フィルター距離"
  4938. #: fdmprinter.def.json
  4939. msgctxt "wall_transition_filter_deviation label"
  4940. msgid "Wall Transitioning Filter Margin"
  4941. msgstr "ウォール移行フィルターマージン"
  4942. #: fdmprinter.def.json
  4943. msgctxt "wall_transition_angle label"
  4944. msgid "Wall Transitioning Threshold Angle"
  4945. msgstr "ウォール移行しきい値角度"
  4946. #: fdmprinter.def.json
  4947. msgctxt "shell label"
  4948. msgid "Walls"
  4949. msgstr "ウォール"
  4950. #: fdmprinter.def.json
  4951. msgctxt "wall_overhang_angle description"
  4952. 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. Overhang that gets supported by support will not be treated as overhang either."
  4953. msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。"
  4954. #: fdmprinter.def.json
  4955. msgctxt "support_interface_skip_height description"
  4956. msgid "When checking where there's model above and below 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."
  4957. msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。"
  4958. #: fdmprinter.def.json
  4959. msgctxt "infill_enable_travel_optimization description"
  4960. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4961. msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。"
  4962. #: fdmprinter.def.json
  4963. msgctxt "support_fan_enable description"
  4964. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4965. msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。"
  4966. #: fdmprinter.def.json
  4967. msgctxt "z_seam_relative description"
  4968. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  4969. msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。"
  4970. #: fdmprinter.def.json
  4971. msgctxt "retraction_combing_max_distance description"
  4972. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  4973. msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
  4974. #: fdmprinter.def.json
  4975. msgctxt "hole_xy_offset_max_diameter description"
  4976. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4977. msgstr ""
  4978. #: fdmprinter.def.json
  4979. msgctxt "bridge_skin_material_flow description"
  4980. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4981. msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。"
  4982. #: fdmprinter.def.json
  4983. msgctxt "bridge_wall_material_flow description"
  4984. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4985. msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。"
  4986. #: fdmprinter.def.json
  4987. msgctxt "bridge_skin_material_flow_2 description"
  4988. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4989. msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  4990. #: fdmprinter.def.json
  4991. msgctxt "bridge_skin_material_flow_3 description"
  4992. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4993. msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  4994. #: fdmprinter.def.json
  4995. msgctxt "cool_lift_head description"
  4996. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  4997. msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。"
  4998. #: fdmprinter.def.json
  4999. msgctxt "skin_no_small_gaps_heuristic description"
  5000. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  5001. msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。"
  5002. #: fdmprinter.def.json
  5003. msgctxt "wall_transition_angle description"
  5004. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  5005. msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。"
  5006. #: fdmprinter.def.json
  5007. msgctxt "wall_transition_length description"
  5008. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  5009. msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。"
  5010. #: fdmprinter.def.json
  5011. msgctxt "wipe_hop_enable description"
  5012. msgid "When wiping, 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."
  5013. msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。"
  5014. #: fdmprinter.def.json
  5015. msgctxt "retraction_hop_enabled description"
  5016. 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."
  5017. msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
  5018. #: fdmprinter.def.json
  5019. msgctxt "support_xy_overrides_z description"
  5020. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  5021. msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。"
  5022. #: fdmprinter.def.json
  5023. msgctxt "machine_center_is_zero description"
  5024. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5025. msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。"
  5026. #: fdmprinter.def.json
  5027. msgctxt "machine_endstop_positive_direction_x description"
  5028. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5029. msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。"
  5030. #: fdmprinter.def.json
  5031. msgctxt "machine_endstop_positive_direction_y description"
  5032. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5033. msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。"
  5034. #: fdmprinter.def.json
  5035. msgctxt "machine_endstop_positive_direction_z description"
  5036. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5037. msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。"
  5038. #: fdmprinter.def.json
  5039. msgctxt "machine_extruders_share_heater description"
  5040. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5041. msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。"
  5042. #: fdmprinter.def.json
  5043. msgctxt "machine_extruders_share_nozzle description"
  5044. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  5045. msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。"
  5046. #: fdmprinter.def.json
  5047. msgctxt "machine_heated_bed description"
  5048. msgid "Whether the machine has a heated build plate present."
  5049. msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。"
  5050. #: fdmprinter.def.json
  5051. msgctxt "machine_heated_build_volume description"
  5052. msgid "Whether the machine is able to stabilize the build volume temperature."
  5053. msgstr "機器が造形温度を安定化処理できるかどうかです。"
  5054. #: fdmprinter.def.json
  5055. msgctxt "center_object description"
  5056. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5057. msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。"
  5058. #: fdmprinter.def.json
  5059. msgctxt "machine_nozzle_temp_enabled description"
  5060. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5061. msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。"
  5062. #: fdmprinter.def.json
  5063. msgctxt "material_bed_temp_prepend description"
  5064. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  5065. msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  5066. #: fdmprinter.def.json
  5067. msgctxt "material_print_temp_prepend description"
  5068. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  5069. msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  5070. #: fdmprinter.def.json
  5071. msgctxt "clean_between_layers description"
  5072. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). 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."
  5073. msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。"
  5074. #: fdmprinter.def.json
  5075. msgctxt "material_bed_temp_wait description"
  5076. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5077. msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。"
  5078. #: fdmprinter.def.json
  5079. msgctxt "prime_blob_enable description"
  5080. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  5081. msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。"
  5082. #: fdmprinter.def.json
  5083. msgctxt "print_sequence description"
  5084. 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."
  5085. msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。"
  5086. #: fdmprinter.def.json
  5087. msgctxt "machine_show_variants description"
  5088. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5089. msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。"
  5090. #: fdmprinter.def.json
  5091. msgctxt "machine_firmware_retract description"
  5092. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5093. msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。"
  5094. #: fdmprinter.def.json
  5095. msgctxt "material_print_temp_wait description"
  5096. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5097. msgstr "開始時にノズルの温度が達するまで待つかどうか。"
  5098. #: fdmprinter.def.json
  5099. msgctxt "infill_line_width description"
  5100. msgid "Width of a single infill line."
  5101. msgstr "インフィル線の幅。"
  5102. #: fdmprinter.def.json
  5103. msgctxt "support_interface_line_width description"
  5104. msgid "Width of a single line of support roof or floor."
  5105. msgstr "サポートのルーフ、フロアのライン幅。"
  5106. #: fdmprinter.def.json
  5107. msgctxt "roofing_line_width description"
  5108. msgid "Width of a single line of the areas at the top of the print."
  5109. msgstr "プリントの上部の 線の幅。"
  5110. #: fdmprinter.def.json
  5111. msgctxt "line_width description"
  5112. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  5113. msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。"
  5114. #: fdmprinter.def.json
  5115. msgctxt "prime_tower_line_width description"
  5116. msgid "Width of a single prime tower line."
  5117. msgstr "単一のプライムタワーラインの幅。"
  5118. #: fdmprinter.def.json
  5119. msgctxt "skirt_brim_line_width description"
  5120. msgid "Width of a single skirt or brim line."
  5121. msgstr "単一のスカートまたはブリムラインの幅。"
  5122. #: fdmprinter.def.json
  5123. msgctxt "support_bottom_line_width description"
  5124. msgid "Width of a single support floor line."
  5125. msgstr "サポートのフロアのラインの一幅。"
  5126. #: fdmprinter.def.json
  5127. msgctxt "support_roof_line_width description"
  5128. msgid "Width of a single support roof line."
  5129. msgstr "サポートルーフのライン一幅。"
  5130. #: fdmprinter.def.json
  5131. msgctxt "support_line_width description"
  5132. msgid "Width of a single support structure line."
  5133. msgstr "単一のサポート構造のライン幅。"
  5134. #: fdmprinter.def.json
  5135. msgctxt "skin_line_width description"
  5136. msgid "Width of a single top/bottom line."
  5137. msgstr "上辺/底辺線のライン幅。"
  5138. #: fdmprinter.def.json
  5139. msgctxt "wall_line_width_x description"
  5140. msgid "Width of a single wall line for all wall lines except the outermost one."
  5141. msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。"
  5142. #: fdmprinter.def.json
  5143. msgctxt "wall_line_width description"
  5144. msgid "Width of a single wall line."
  5145. msgstr "ウォールラインの幅。"
  5146. #: fdmprinter.def.json
  5147. msgctxt "raft_base_line_width description"
  5148. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5149. msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。"
  5150. #: fdmprinter.def.json
  5151. msgctxt "raft_interface_line_width description"
  5152. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  5153. msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。"
  5154. #: fdmprinter.def.json
  5155. msgctxt "raft_surface_line_width description"
  5156. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  5157. msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。"
  5158. #: fdmprinter.def.json
  5159. msgctxt "wall_line_width_0 description"
  5160. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5161. msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。"
  5162. #: fdmprinter.def.json
  5163. msgctxt "min_bead_width description"
  5164. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  5165. msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。"
  5166. #: fdmprinter.def.json
  5167. msgctxt "wipe_brush_pos_x label"
  5168. msgid "Wipe Brush X Position"
  5169. msgstr "ワイプブラシXの位置"
  5170. #: fdmprinter.def.json
  5171. msgctxt "wipe_hop_speed label"
  5172. msgid "Wipe Hop Speed"
  5173. msgstr "ワイプホップ速度"
  5174. #: fdmprinter.def.json
  5175. msgctxt "prime_tower_wipe_enabled label"
  5176. msgid "Wipe Inactive Nozzle on Prime Tower"
  5177. msgstr "プライムタワーノズル拭き取り"
  5178. #: fdmprinter.def.json
  5179. msgctxt "wipe_move_distance label"
  5180. msgid "Wipe Move Distance"
  5181. msgstr "ワイプ移動距離"
  5182. #: fdmprinter.def.json
  5183. msgctxt "clean_between_layers label"
  5184. msgid "Wipe Nozzle Between Layers"
  5185. msgstr "レイヤー間のノズル拭き取り"
  5186. #: fdmprinter.def.json
  5187. msgctxt "wipe_pause label"
  5188. msgid "Wipe Pause"
  5189. msgstr "ワイプ一時停止"
  5190. #: fdmprinter.def.json
  5191. msgctxt "wipe_repeat_count label"
  5192. msgid "Wipe Repeat Count"
  5193. msgstr "ワイプ繰り返し回数"
  5194. #: fdmprinter.def.json
  5195. msgctxt "wipe_retraction_amount label"
  5196. msgid "Wipe Retraction Distance"
  5197. msgstr "ワイプリトラクト無効"
  5198. #: fdmprinter.def.json
  5199. msgctxt "wipe_retraction_enable label"
  5200. msgid "Wipe Retraction Enable"
  5201. msgstr "ワイプリトラクト有効"
  5202. #: fdmprinter.def.json
  5203. msgctxt "wipe_retraction_extra_prime_amount label"
  5204. msgid "Wipe Retraction Extra Prime Amount"
  5205. msgstr "ワイプ引き戻し時の余分押し戻し量"
  5206. #: fdmprinter.def.json
  5207. msgctxt "wipe_retraction_prime_speed label"
  5208. msgid "Wipe Retraction Prime Speed"
  5209. msgstr "ワイプ引き戻し下準備速度"
  5210. #: fdmprinter.def.json
  5211. msgctxt "wipe_retraction_retract_speed label"
  5212. msgid "Wipe Retraction Retract Speed"
  5213. msgstr "ワイプ引き戻し速度"
  5214. #: fdmprinter.def.json
  5215. msgctxt "wipe_retraction_speed label"
  5216. msgid "Wipe Retraction Speed"
  5217. msgstr "ワイプリトラクト速度"
  5218. #: fdmprinter.def.json
  5219. msgctxt "wipe_hop_enable label"
  5220. msgid "Wipe Z Hop"
  5221. msgstr "ワイプZホップ"
  5222. #: fdmprinter.def.json
  5223. msgctxt "wipe_hop_amount label"
  5224. msgid "Wipe Z Hop Height"
  5225. msgstr "ワイプZホップ高さ"
  5226. #: fdmprinter.def.json
  5227. msgctxt "retraction_combing option infill"
  5228. msgid "Within Infill"
  5229. msgstr "インフィル内"
  5230. #: fdmprinter.def.json
  5231. msgctxt "machine_always_write_active_tool description"
  5232. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  5233. msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。"
  5234. #: fdmprinter.def.json
  5235. msgctxt "machine_endstop_positive_direction_x label"
  5236. msgid "X Endstop in Positive Direction"
  5237. msgstr "プラス方向の X エンドストップ"
  5238. #: fdmprinter.def.json
  5239. msgctxt "wipe_brush_pos_x description"
  5240. msgid "X location where wipe script will start."
  5241. msgstr "ワイプスクリプトを開始するX位置。"
  5242. #: fdmprinter.def.json
  5243. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5244. msgid "X/Y overrides Z"
  5245. msgstr "X/YがZを上書き"
  5246. #: fdmprinter.def.json
  5247. msgctxt "machine_endstop_positive_direction_y label"
  5248. msgid "Y Endstop in Positive Direction"
  5249. msgstr "プラス方向の Y エンドストップ"
  5250. #: fdmprinter.def.json
  5251. msgctxt "machine_endstop_positive_direction_z label"
  5252. msgid "Z Endstop in Positive Direction"
  5253. msgstr "プラス方向の Z エンドストップ"
  5254. #: fdmprinter.def.json
  5255. msgctxt "retraction_hop_after_extruder_switch label"
  5256. msgid "Z Hop After Extruder Switch"
  5257. msgstr "エクストルーダースイッチ後のZホップ"
  5258. #: fdmprinter.def.json
  5259. msgctxt "retraction_hop_after_extruder_switch_height label"
  5260. msgid "Z Hop After Extruder Switch Height"
  5261. msgstr "エクストルーダースイッチ高さ後のZホップ"
  5262. #: fdmprinter.def.json
  5263. msgctxt "retraction_hop label"
  5264. msgid "Z Hop Height"
  5265. msgstr "Zホップ高さ"
  5266. #: fdmprinter.def.json
  5267. msgctxt "retraction_hop_only_when_collides label"
  5268. msgid "Z Hop Only Over Printed Parts"
  5269. msgstr "印刷パーツに対するZホップ"
  5270. #: fdmprinter.def.json
  5271. msgctxt "speed_z_hop label"
  5272. msgid "Z Hop Speed"
  5273. msgstr "Z 軸ホップ速度"
  5274. #: fdmprinter.def.json
  5275. msgctxt "retraction_hop_enabled label"
  5276. msgid "Z Hop When Retracted"
  5277. msgstr "引き戻し時のZホップ"
  5278. #: fdmprinter.def.json
  5279. msgctxt "z_seam_type label"
  5280. msgid "Z Seam Alignment"
  5281. msgstr "Zシーム合わせ"
  5282. #: fdmprinter.def.json
  5283. msgctxt "z_seam_position label"
  5284. msgid "Z Seam Position"
  5285. msgstr "Zシーム位置"
  5286. #: fdmprinter.def.json
  5287. msgctxt "z_seam_relative label"
  5288. msgid "Z Seam Relative"
  5289. msgstr "相対Zシーム"
  5290. #: fdmprinter.def.json
  5291. msgctxt "z_seam_x label"
  5292. msgid "Z Seam X"
  5293. msgstr "ZシームX"
  5294. #: fdmprinter.def.json
  5295. msgctxt "z_seam_y label"
  5296. msgid "Z Seam Y"
  5297. msgstr "ZシームY"
  5298. #: fdmprinter.def.json
  5299. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5300. msgid "Z overrides X/Y"
  5301. msgstr "ZがX/Yを上書き"
  5302. #: fdmprinter.def.json
  5303. msgctxt "infill_pattern option zigzag"
  5304. msgid "Zig Zag"
  5305. msgstr "ジグザグ"
  5306. #: fdmprinter.def.json
  5307. msgctxt "ironing_pattern option zigzag"
  5308. msgid "Zig Zag"
  5309. msgstr "ジグザグ"
  5310. #: fdmprinter.def.json
  5311. msgctxt "roofing_pattern option zigzag"
  5312. msgid "Zig Zag"
  5313. msgstr "ジグザグ"
  5314. #: fdmprinter.def.json
  5315. msgctxt "support_bottom_pattern option zigzag"
  5316. msgid "Zig Zag"
  5317. msgstr "ジグザグ"
  5318. #: fdmprinter.def.json
  5319. msgctxt "support_interface_pattern option zigzag"
  5320. msgid "Zig Zag"
  5321. msgstr "ジグザグ"
  5322. #: fdmprinter.def.json
  5323. msgctxt "support_pattern option zigzag"
  5324. msgid "Zig Zag"
  5325. msgstr "ジグザグ"
  5326. #: fdmprinter.def.json
  5327. msgctxt "support_roof_pattern option zigzag"
  5328. msgid "Zig Zag"
  5329. msgstr "ジグザグ"
  5330. #: fdmprinter.def.json
  5331. msgctxt "top_bottom_pattern option zigzag"
  5332. msgid "Zig Zag"
  5333. msgstr "ジグザグ"
  5334. #: fdmprinter.def.json
  5335. msgctxt "top_bottom_pattern_0 option zigzag"
  5336. msgid "Zig Zag"
  5337. msgstr "ジグザグ"
  5338. #: fdmprinter.def.json
  5339. msgctxt "travel description"
  5340. msgid "travel"
  5341. msgstr "移動"
  5342. #~ msgctxt "wireframe_strategy option compensate"
  5343. #~ msgid "Compensate"
  5344. #~ msgstr "補正"
  5345. #~ msgctxt "wireframe_top_jump description"
  5346. #~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  5347. #~ msgstr "上向きの線の上端に小さな結び目を作成し、連続する水平レイヤーを接着力を高めます。ワイヤ印刷のみに適用されます。"
  5348. #~ msgctxt "wireframe_bottom_delay description"
  5349. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  5350. #~ msgstr "下降後の遅延時間。ワイヤ印刷のみに適用されます。"
  5351. #~ msgctxt "wireframe_top_delay description"
  5352. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  5353. #~ msgstr "上向きの線が硬くなるように、上向きの動きの後の時間を遅らせる。ワイヤ印刷のみに適用されます。"
  5354. #~ msgctxt "wireframe_flat_delay description"
  5355. #~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  5356. #~ msgstr "2つの水平セグメント間の遅延時間。このような遅延を挿入すると、前のレイヤーとの接着性が向上することがありますが、遅延が長すぎると垂れ下がりが発生します。ワイヤ印刷のみに適用されます。"
  5357. #~ msgctxt "wireframe_nozzle_clearance description"
  5358. #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  5359. #~ msgstr "ノズルと水平方向に下向きの線間の距離。大きな隙間がある場合、急な角度で斜め下方線となり、次の層が上方接続しずらくなる。ワイヤ印刷にのみ適用されます。"
  5360. #~ msgctxt "wireframe_up_half_speed description"
  5361. #~ msgid ""
  5362. #~ "Distance of an upward move which is extruded with half speed.\n"
  5363. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  5364. #~ msgstr "半分の速度で押出される上方への移動距離。過度にマテリアルを加熱することなく、前の層とのより良い接着を作ります。ワイヤ印刷のみに適用されます。"
  5365. #~ msgctxt "wireframe_fall_down description"
  5366. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5367. #~ msgstr "上向き押出後にマテリアルが落下する距離。この距離は補正される。ワイヤ印刷のみに適用されます。"
  5368. #~ msgctxt "wireframe_drag_along description"
  5369. #~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5370. #~ msgstr "斜め下方への押出に伴い上向き押出しているマテリアルが引きずられる距離。この距離は補正される。ワイヤ印刷のみに適用されます。"
  5371. #~ msgctxt "wireframe_flow_connection description"
  5372. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  5373. #~ msgstr "上下に動くときの吐出補正。ワイヤ印刷のみに適用されます。"
  5374. #~ msgctxt "wireframe_flow_flat description"
  5375. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  5376. #~ msgstr "フラットラインを印刷する際の吐出補正。ワイヤ印刷のみに適用されます。"
  5377. #~ msgctxt "wireframe_flow description"
  5378. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  5379. #~ msgstr "流れ補正:押出されたマテリアルの量はこの値の乗算になります。ワイヤ印刷のみに適用されます。"
  5380. #~ msgctxt "support_tree_branch_distance description"
  5381. #~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  5382. #~ msgstr "枝がモデルに接触するところで確保する枝の間隔。この間隔を小さくするとツリーサポートがモデルに接触する点が増え、支える効果が高まりますが、サポートの取り外しが難しくなります。"
  5383. #~ msgctxt "wireframe_strategy option knot"
  5384. #~ msgid "Knot"
  5385. #~ msgstr "ノット"
  5386. #~ msgctxt "wireframe_straight_before_down description"
  5387. #~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  5388. #~ msgstr "水平方向の直線部分で覆われた斜めに下降線の割合です。これは上向きラインのほとんどのポイント、上部のたるみを防ぐことができます。ワイヤ印刷にのみ適用されます。"
  5389. #~ msgctxt "wireframe_enabled description"
  5390. #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  5391. #~ msgstr "薄い空気中に印刷し、疎なウエブ構造で外面のみを印刷します。これは、上向きおよび斜め下向きの線を介して接続された所定のZ間隔でモデルの輪郭を水平に印刷することによって実現される。"
  5392. #~ msgctxt "support_tree_collision_resolution description"
  5393. #~ msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  5394. #~ msgstr "モデルに干渉しないようにする衝突計算の精細度。小さい値を設定すると、失敗の少ない正確なツリーが生成されますが、スライス時間は大きく増加します。"
  5395. #~ msgctxt "wireframe_strategy option retract"
  5396. #~ msgid "Retract"
  5397. #~ msgstr "引き戻し"
  5398. #~ msgctxt "wireframe_printspeed description"
  5399. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  5400. #~ msgstr "マテリアルを押し出すときにノズルが動く速度。ワイヤ印刷のみに適用されます。"
  5401. #~ msgctxt "wireframe_printspeed_down description"
  5402. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  5403. #~ msgstr "斜め下方に線を印刷する速度。ワイヤ印刷のみに適用されます。"
  5404. #~ msgctxt "wireframe_printspeed_up description"
  5405. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  5406. #~ msgstr "薄い空気の中で上向きに線を印刷する速度。ワイヤ印刷のみに適用されます。"
  5407. #~ msgctxt "wireframe_printspeed_bottom description"
  5408. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  5409. #~ msgstr "ブルドプラットフォームに接触する第1層の印刷速度。ワイヤ印刷のみに適用されます。"
  5410. #~ msgctxt "wireframe_printspeed_flat description"
  5411. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  5412. #~ msgstr "モデルの水平輪郭を印刷する速度。ワイヤ印刷のみに適用されます。"
  5413. #~ msgctxt "wireframe_strategy description"
  5414. #~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  5415. #~ msgstr "各接続ポイントで2つの連続したレイヤーが密着していることを確認するためのストラテジー。収縮すると上向きの線が正しい位置で硬化しますが、フィラメントの研削が行われる可能性があります。上向きの線の終わりに結び目をつけて接続する機会を増やし、線を冷やすことができます。ただし、印刷速度が遅くなることがあります。別の方法は、上向きの線の上端のたるみを補償することである。しかし、予測どおりにラインが必ずしも落ちるとは限りません。"
  5416. #~ msgctxt "support_tree_angle description"
  5417. #~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  5418. #~ msgstr "枝の角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。"
  5419. #~ msgctxt "wireframe_roof_inset description"
  5420. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  5421. #~ msgstr "ルーフから内側に輪郭を描くときの距離。ワイヤ印刷のみに適用されます。"
  5422. #~ msgctxt "wireframe_roof_drag_along description"
  5423. #~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  5424. #~ msgstr "ルーフの外側の輪郭に戻る際に引きずる内側ラインの終わり部分の距離。この距離は補正されていてワイヤ印刷のみ適用されます。"
  5425. #~ msgctxt "wireframe_roof_fall_down description"
  5426. #~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  5427. #~ msgstr "水平ルーフが ”薄い空気”に印刷され落ちる距離。この距離は補正されています。ワイヤ印刷に適用されます。"
  5428. #~ msgctxt "wireframe_height description"
  5429. #~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  5430. #~ msgstr "2つの水平なパーツ間の、上向きおよび斜め下向きの線の高さ。これは、ネット構造の全体密度を決定します。ワイヤ印刷のみに適用されます。"
  5431. #~ msgctxt "wireframe_roof_outer_delay description"
  5432. #~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  5433. #~ msgstr "トップレイヤーにある穴の外側に掛ける時間。長い時間の方はより良い密着を得られます。ワイヤ印刷にのみ適用されます。"
  5434. #~ msgctxt "support_tree_angle label"
  5435. #~ msgid "Tree Support Branch Angle"
  5436. #~ msgstr "ツリーサポート枝角度"
  5437. #~ msgctxt "support_tree_branch_diameter label"
  5438. #~ msgid "Tree Support Branch Diameter"
  5439. #~ msgstr "ツリーサポート枝直径"
  5440. #~ msgctxt "support_tree_branch_diameter_angle label"
  5441. #~ msgid "Tree Support Branch Diameter Angle"
  5442. #~ msgstr "ツリーサポート枝直径角度"
  5443. #~ msgctxt "support_tree_branch_distance label"
  5444. #~ msgid "Tree Support Branch Distance"
  5445. #~ msgstr "ツリーサポート枝間隔"
  5446. #~ msgctxt "support_tree_collision_resolution label"
  5447. #~ msgid "Tree Support Collision Resolution"
  5448. #~ msgstr "ツリーサポート衝突精細度"
  5449. #~ msgctxt "support_tree_max_diameter label"
  5450. #~ msgid "Tree Support Trunk Diameter"
  5451. #~ msgstr "ツリーをサポートする本体の直径"
  5452. #~ msgctxt "wireframe_bottom_delay label"
  5453. #~ msgid "WP Bottom Delay"
  5454. #~ msgstr "WP底面遅延"
  5455. #~ msgctxt "wireframe_printspeed_bottom label"
  5456. #~ msgid "WP Bottom Printing Speed"
  5457. #~ msgstr "WP底面印字速度"
  5458. #~ msgctxt "wireframe_flow_connection label"
  5459. #~ msgid "WP Connection Flow"
  5460. #~ msgstr "WP接続フロー"
  5461. #~ msgctxt "wireframe_height label"
  5462. #~ msgid "WP Connection Height"
  5463. #~ msgstr "WPの高さ"
  5464. #~ msgctxt "wireframe_printspeed_down label"
  5465. #~ msgid "WP Downward Printing Speed"
  5466. #~ msgstr "WP下向き印字速度"
  5467. #~ msgctxt "wireframe_drag_along label"
  5468. #~ msgid "WP Drag Along"
  5469. #~ msgstr "WP引きづり距離"
  5470. #~ msgctxt "wireframe_up_half_speed label"
  5471. #~ msgid "WP Ease Upward"
  5472. #~ msgstr "WP低速移動距離"
  5473. #~ msgctxt "wireframe_fall_down label"
  5474. #~ msgid "WP Fall Down"
  5475. #~ msgstr "WP落下距離"
  5476. #~ msgctxt "wireframe_flat_delay label"
  5477. #~ msgid "WP Flat Delay"
  5478. #~ msgstr "WP水平遅延"
  5479. #~ msgctxt "wireframe_flow_flat label"
  5480. #~ msgid "WP Flat Flow"
  5481. #~ msgstr "WPフラットフロー"
  5482. #~ msgctxt "wireframe_flow label"
  5483. #~ msgid "WP Flow"
  5484. #~ msgstr "WPフロー"
  5485. #~ msgctxt "wireframe_printspeed_flat label"
  5486. #~ msgid "WP Horizontal Printing Speed"
  5487. #~ msgstr "WP水平印字速度"
  5488. #~ msgctxt "wireframe_top_jump label"
  5489. #~ msgid "WP Knot Size"
  5490. #~ msgstr "WPノットサイズ"
  5491. #~ msgctxt "wireframe_nozzle_clearance label"
  5492. #~ msgid "WP Nozzle Clearance"
  5493. #~ msgstr "WPノズル隙間"
  5494. #~ msgctxt "wireframe_roof_drag_along label"
  5495. #~ msgid "WP Roof Drag Along"
  5496. #~ msgstr "WPルーフ引きずり距離"
  5497. #~ msgctxt "wireframe_roof_fall_down label"
  5498. #~ msgid "WP Roof Fall Down"
  5499. #~ msgstr "WPルーフ落下距離"
  5500. #~ msgctxt "wireframe_roof_inset label"
  5501. #~ msgid "WP Roof Inset Distance"
  5502. #~ msgstr "WPルーフ距離のオフセット"
  5503. #~ msgctxt "wireframe_roof_outer_delay label"
  5504. #~ msgid "WP Roof Outer Delay"
  5505. #~ msgstr "WPルーフ外側処理時間"
  5506. #~ msgctxt "wireframe_printspeed label"
  5507. #~ msgid "WP Speed"
  5508. #~ msgstr "WP速度"
  5509. #~ msgctxt "wireframe_straight_before_down label"
  5510. #~ msgid "WP Straighten Downward Lines"
  5511. #~ msgstr "WP下向き直線ライン"
  5512. #~ msgctxt "wireframe_strategy label"
  5513. #~ msgid "WP Strategy"
  5514. #~ msgstr "WPストラテジー"
  5515. #~ msgctxt "wireframe_top_delay label"
  5516. #~ msgid "WP Top Delay"
  5517. #~ msgstr "WP上面遅延"
  5518. #~ msgctxt "wireframe_printspeed_up label"
  5519. #~ msgid "WP Upward Printing Speed"
  5520. #~ msgstr "WP上向き印字速度"
  5521. #~ msgctxt "wireframe_enabled label"
  5522. #~ msgid "Wire Printing"
  5523. #~ msgstr "ワイヤ印刷"