fdmprinter.def.json.po 319 KB

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