fdmprinter.def.json.po 293 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2023-09-20 15:53+0200\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: ja_JP\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=1; plural=0;\n"
  14. msgctxt "machine_name label"
  15. msgid "Machine Type"
  16. msgstr "プリンターのタイプ"
  17. msgctxt "machine_name description"
  18. msgid "The name of your 3D printer model."
  19. msgstr "3Dプリンターの機種名。"
  20. msgctxt "machine_show_variants label"
  21. msgid "Show Machine Variants"
  22. msgstr "プリンターのバリエーションの表示"
  23. msgctxt "machine_show_variants description"
  24. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  25. msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。"
  26. msgctxt "machine_start_gcode label"
  27. msgid "Start G-code"
  28. msgstr "G-Codeの開始"
  29. msgctxt "machine_start_gcode description"
  30. msgid "G-code commands to be executed at the very start - separated by \n."
  31. msgstr "最初に実行するG-codeコマンドは、\nで区切ります。"
  32. msgctxt "machine_end_gcode label"
  33. msgid "End G-code"
  34. msgstr "G-codeの終了"
  35. msgctxt "machine_end_gcode description"
  36. msgid "G-code commands to be executed at the very end - separated by \n."
  37. msgstr "最後に実行するG-codeコマンドは、\nで区切ります。"
  38. msgctxt "material_guid label"
  39. msgid "Material GUID"
  40. msgstr "マテリアルGUID"
  41. msgctxt "material_guid description"
  42. msgid "GUID of the material. This is set automatically."
  43. msgstr "マテリアルのGUID。これは自動的に設定されます。"
  44. msgctxt "material_bed_temp_wait label"
  45. msgid "Wait for Build Plate Heatup"
  46. msgstr "ビルドプレート加熱待ち時間"
  47. msgctxt "material_bed_temp_wait description"
  48. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  49. msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。"
  50. msgctxt "material_print_temp_wait label"
  51. msgid "Wait for Nozzle Heatup"
  52. msgstr "ノズル加熱待ち時間"
  53. msgctxt "material_print_temp_wait description"
  54. msgid "Whether to wait until the nozzle temperature is reached at the start."
  55. msgstr "開始時にノズルの温度が達するまで待つかどうか。"
  56. msgctxt "material_print_temp_prepend label"
  57. msgid "Include Material Temperatures"
  58. msgstr "マテリアル温度を含む"
  59. msgctxt "material_print_temp_prepend description"
  60. 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."
  61. msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  62. msgctxt "material_bed_temp_prepend label"
  63. msgid "Include Build Plate Temperature"
  64. msgstr "ビルドプレート温度を含む"
  65. msgctxt "material_bed_temp_prepend description"
  66. 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."
  67. msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。"
  68. msgctxt "machine_width label"
  69. msgid "Machine Width"
  70. msgstr "プリンターの幅"
  71. msgctxt "machine_width description"
  72. msgid "The width (X-direction) of the printable area."
  73. msgstr "造形可能領域の幅(X方向)。"
  74. msgctxt "machine_depth label"
  75. msgid "Machine Depth"
  76. msgstr "プリンターの奥行"
  77. msgctxt "machine_depth description"
  78. msgid "The depth (Y-direction) of the printable area."
  79. msgstr "造形可能領域の幅(Y方向)。"
  80. msgctxt "machine_height label"
  81. msgid "Machine Height"
  82. msgstr "プリンターの高さ"
  83. msgctxt "machine_height description"
  84. msgid "The height (Z-direction) of the printable area."
  85. msgstr "造形可能領域の幅(Z方向)。"
  86. msgctxt "machine_shape label"
  87. msgid "Build Plate Shape"
  88. msgstr "ビルドプレートの形状"
  89. msgctxt "machine_shape description"
  90. msgid "The shape of the build plate without taking unprintable areas into account."
  91. msgstr "造形不可領域を考慮しないビルドプレートの形状。"
  92. msgctxt "machine_shape option rectangular"
  93. msgid "Rectangular"
  94. msgstr "長方形"
  95. msgctxt "machine_shape option elliptic"
  96. msgid "Elliptic"
  97. msgstr "楕円形"
  98. msgctxt "machine_buildplate_type label"
  99. msgid "Build Plate Material"
  100. msgstr "ビルドプレートの材料"
  101. msgctxt "machine_buildplate_type description"
  102. msgid "The material of the build plate installed on the printer."
  103. msgstr "プリンターに取り付けられているビルドプレートの材料です。"
  104. msgctxt "machine_buildplate_type option glass"
  105. msgid "Glass"
  106. msgstr "ガラス"
  107. msgctxt "machine_buildplate_type option aluminum"
  108. msgid "Aluminum"
  109. msgstr "アルミニウム"
  110. msgctxt "machine_heated_bed label"
  111. msgid "Has Heated Build Plate"
  112. msgstr "加熱式ビルドプレートあり"
  113. msgctxt "machine_heated_bed description"
  114. msgid "Whether the machine has a heated build plate present."
  115. msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。"
  116. msgctxt "machine_heated_build_volume label"
  117. msgid "Has Build Volume Temperature Stabilization"
  118. msgstr "造形温度安定化処理有り"
  119. msgctxt "machine_heated_build_volume description"
  120. msgid "Whether the machine is able to stabilize the build volume temperature."
  121. msgstr "機器が造形温度を安定化処理できるかどうかです。"
  122. msgctxt "machine_always_write_active_tool label"
  123. msgid "Always Write Active Tool"
  124. msgstr "常にアクティブなツールを書き込む"
  125. msgctxt "machine_always_write_active_tool description"
  126. 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."
  127. msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。"
  128. msgctxt "machine_center_is_zero label"
  129. msgid "Is Center Origin"
  130. msgstr "中心位置"
  131. msgctxt "machine_center_is_zero description"
  132. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  133. msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。"
  134. msgctxt "machine_extruder_count label"
  135. msgid "Number of Extruders"
  136. msgstr "エクストルーダーの数"
  137. msgctxt "machine_extruder_count description"
  138. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  139. msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。"
  140. msgctxt "extruders_enabled_count label"
  141. msgid "Number of Extruders That Are Enabled"
  142. msgstr "有効なエクストルーダーの数"
  143. msgctxt "extruders_enabled_count description"
  144. msgid "Number of extruder trains that are enabled; automatically set in software"
  145. msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)"
  146. msgctxt "machine_nozzle_tip_outer_diameter label"
  147. msgid "Outer Nozzle Diameter"
  148. msgstr "ノズル外径"
  149. msgctxt "machine_nozzle_tip_outer_diameter description"
  150. msgid "The outer diameter of the tip of the nozzle."
  151. msgstr "ノズルの外径。"
  152. msgctxt "machine_nozzle_head_distance label"
  153. msgid "Nozzle Length"
  154. msgstr "ノズル長さ"
  155. msgctxt "machine_nozzle_head_distance description"
  156. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  157. msgstr "ノズル先端とプリントヘッドの最下部との高さの差。"
  158. msgctxt "machine_nozzle_expansion_angle label"
  159. msgid "Nozzle Angle"
  160. msgstr "ノズル角度"
  161. msgctxt "machine_nozzle_expansion_angle description"
  162. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  163. msgstr "水平面とノズル直上の円錐部分との間の角度。"
  164. msgctxt "machine_heat_zone_length label"
  165. msgid "Heat Zone Length"
  166. msgstr "ノズル加熱長さ"
  167. msgctxt "machine_heat_zone_length description"
  168. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  169. msgstr "ノズルからの熱がフィラメントに伝達される距離。"
  170. msgctxt "machine_nozzle_temp_enabled label"
  171. msgid "Enable Nozzle Temperature Control"
  172. msgstr "ノズルの温度管理を有効にする"
  173. msgctxt "machine_nozzle_temp_enabled description"
  174. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  175. msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。"
  176. msgctxt "machine_nozzle_heat_up_speed label"
  177. msgid "Heat Up Speed"
  178. msgstr "加熱速度"
  179. msgctxt "machine_nozzle_heat_up_speed description"
  180. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  181. msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。"
  182. msgctxt "machine_nozzle_cool_down_speed label"
  183. msgid "Cool Down Speed"
  184. msgstr "冷却速度"
  185. msgctxt "machine_nozzle_cool_down_speed description"
  186. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  187. msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。"
  188. msgctxt "machine_min_cool_heat_time_window label"
  189. msgid "Minimal Time Standby Temperature"
  190. msgstr "スタンバイ温度までの最短時間"
  191. msgctxt "machine_min_cool_heat_time_window description"
  192. 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."
  193. msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。"
  194. msgctxt "machine_gcode_flavor label"
  195. msgid "G-code Flavor"
  196. msgstr "G-codeフレーバー"
  197. msgctxt "machine_gcode_flavor description"
  198. msgid "The type of g-code to be generated."
  199. msgstr "生成するG-codeの種類です。"
  200. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  201. msgid "Marlin"
  202. msgstr "Marlin"
  203. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  204. msgid "Marlin (Volumetric)"
  205. msgstr "Marlin (Volumetric)"
  206. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  207. msgid "RepRap"
  208. msgstr "RepRap"
  209. msgctxt "machine_gcode_flavor option UltiGCode"
  210. msgid "Ultimaker 2"
  211. msgstr "Ultimaker 2"
  212. msgctxt "machine_gcode_flavor option Griffin"
  213. msgid "Griffin"
  214. msgstr "Griffin"
  215. msgctxt "machine_gcode_flavor option Makerbot"
  216. msgid "Makerbot"
  217. msgstr "Makerbot"
  218. msgctxt "machine_gcode_flavor option BFB"
  219. msgid "Bits from Bytes"
  220. msgstr "Bits from Bytes"
  221. msgctxt "machine_gcode_flavor option MACH3"
  222. msgid "Mach3"
  223. msgstr "Mach3"
  224. msgctxt "machine_gcode_flavor option Repetier"
  225. msgid "Repetier"
  226. msgstr "Repetier"
  227. msgctxt "machine_firmware_retract label"
  228. msgid "Firmware Retraction"
  229. msgstr "ファームウェア引き戻し"
  230. msgctxt "machine_firmware_retract description"
  231. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  232. msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。"
  233. msgctxt "machine_extruders_share_heater label"
  234. msgid "Extruders Share Heater"
  235. msgstr "エクストルーダーのヒーター共有"
  236. msgctxt "machine_extruders_share_heater description"
  237. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  238. msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。"
  239. msgctxt "machine_extruders_share_nozzle label"
  240. msgid "Extruders Share Nozzle"
  241. msgstr "エクストルーダーの共有ノズル"
  242. msgctxt "machine_extruders_share_nozzle description"
  243. 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."
  244. msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。"
  245. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  246. msgid "Shared Nozzle Initial Retraction"
  247. msgstr "共有ノズルの初期引き戻し"
  248. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  249. 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."
  250. msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。"
  251. msgctxt "machine_disallowed_areas label"
  252. msgid "Disallowed Areas"
  253. msgstr "拒否エリア"
  254. msgctxt "machine_disallowed_areas description"
  255. msgid "A list of polygons with areas the print head is not allowed to enter."
  256. msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。"
  257. msgctxt "nozzle_disallowed_areas label"
  258. msgid "Nozzle Disallowed Areas"
  259. msgstr "ノズル拒否エリア"
  260. msgctxt "nozzle_disallowed_areas description"
  261. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  262. msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。"
  263. msgctxt "machine_head_with_fans_polygon label"
  264. msgid "Machine Head & Fan Polygon"
  265. msgstr "プリントヘッドとファンポリゴン"
  266. msgctxt "machine_head_with_fans_polygon description"
  267. 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."
  268. msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。"
  269. msgctxt "gantry_height label"
  270. msgid "Gantry Height"
  271. msgstr "ガントリーの高さ"
  272. msgctxt "gantry_height description"
  273. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  274. msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。"
  275. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  276. msgid "Offset with Extruder"
  277. msgstr "エクストルーダーのオフセット"
  278. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  279. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  280. msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。"
  281. msgctxt "extruder_prime_pos_abs label"
  282. msgid "Absolute Extruder Prime Position"
  283. msgstr "エクストルーダーの絶対位置"
  284. msgctxt "extruder_prime_pos_abs description"
  285. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  286. msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。"
  287. msgctxt "machine_max_feedrate_x label"
  288. msgid "Maximum Speed X"
  289. msgstr "最大速度X"
  290. msgctxt "machine_max_feedrate_x description"
  291. msgid "The maximum speed for the motor of the X-direction."
  292. msgstr "X方向のモーターの最大速度。"
  293. msgctxt "machine_max_feedrate_y label"
  294. msgid "Maximum Speed Y"
  295. msgstr "最大速度Y"
  296. msgctxt "machine_max_feedrate_y description"
  297. msgid "The maximum speed for the motor of the Y-direction."
  298. msgstr "Y方向のモーターの最大速度。"
  299. msgctxt "machine_max_feedrate_z label"
  300. msgid "Maximum Speed Z"
  301. msgstr "最大速度Z"
  302. msgctxt "machine_max_feedrate_z description"
  303. msgid "The maximum speed for the motor of the Z-direction."
  304. msgstr "Z方向のモーターの最大速度。"
  305. msgctxt "machine_max_feedrate_e label"
  306. msgid "Maximum Speed E"
  307. msgstr "最大速度E"
  308. msgctxt "machine_max_feedrate_e description"
  309. msgid "The maximum speed of the filament."
  310. msgstr "フィラメントの最大速度。"
  311. msgctxt "machine_max_acceleration_x label"
  312. msgid "Maximum Acceleration X"
  313. msgstr "最大加速度X"
  314. msgctxt "machine_max_acceleration_x description"
  315. msgid "Maximum acceleration for the motor of the X-direction"
  316. msgstr "X方向のモーターの最大速度"
  317. msgctxt "machine_max_acceleration_y label"
  318. msgid "Maximum Acceleration Y"
  319. msgstr "最大加速度Y"
  320. msgctxt "machine_max_acceleration_y description"
  321. msgid "Maximum acceleration for the motor of the Y-direction."
  322. msgstr "Y方向のモーターの最大加速度。"
  323. msgctxt "machine_max_acceleration_z label"
  324. msgid "Maximum Acceleration Z"
  325. msgstr "最大加速度Z"
  326. msgctxt "machine_max_acceleration_z description"
  327. msgid "Maximum acceleration for the motor of the Z-direction."
  328. msgstr "Z方向のモーターの最大加速度。"
  329. msgctxt "machine_max_acceleration_e label"
  330. msgid "Maximum Filament Acceleration"
  331. msgstr "フィラメント最大加速度"
  332. msgctxt "machine_max_acceleration_e description"
  333. msgid "Maximum acceleration for the motor of the filament."
  334. msgstr "フィラメントのモーターの最大加速度。"
  335. msgctxt "machine_acceleration label"
  336. msgid "Default Acceleration"
  337. msgstr "デフォルト加速度"
  338. msgctxt "machine_acceleration description"
  339. msgid "The default acceleration of print head movement."
  340. msgstr "プリントヘッド移動のデフォルトの加速度。"
  341. msgctxt "machine_max_jerk_xy label"
  342. msgid "Default X-Y Jerk"
  343. msgstr "X-Yデフォルトジャーク"
  344. msgctxt "machine_max_jerk_xy description"
  345. msgid "Default jerk for movement in the horizontal plane."
  346. msgstr "水平面内での移動のデフォルトジャーク。"
  347. msgctxt "machine_max_jerk_z label"
  348. msgid "Default Z Jerk"
  349. msgstr "Zデフォルトジャーク"
  350. msgctxt "machine_max_jerk_z description"
  351. msgid "Default jerk for the motor of the Z-direction."
  352. msgstr "Z方向のモーターのデフォルトジャーク。"
  353. msgctxt "machine_max_jerk_e label"
  354. msgid "Default Filament Jerk"
  355. msgstr "フィラメントデフォルトジャーク"
  356. msgctxt "machine_max_jerk_e description"
  357. msgid "Default jerk for the motor of the filament."
  358. msgstr "フィラメントのモーターのデフォルトジャーク。"
  359. msgctxt "machine_steps_per_mm_x label"
  360. msgid "Steps per Millimeter (X)"
  361. msgstr "ミリメートルあたりのステップ (X)"
  362. msgctxt "machine_steps_per_mm_x description"
  363. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  364. msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  365. msgctxt "machine_steps_per_mm_y label"
  366. msgid "Steps per Millimeter (Y)"
  367. msgstr "ミリメートルあたりのステップ (Y)"
  368. msgctxt "machine_steps_per_mm_y description"
  369. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  370. msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  371. msgctxt "machine_steps_per_mm_z label"
  372. msgid "Steps per Millimeter (Z)"
  373. msgstr "ミリメートルあたりのステップ (Z)"
  374. msgctxt "machine_steps_per_mm_z description"
  375. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  376. msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。"
  377. msgctxt "machine_steps_per_mm_e label"
  378. msgid "Steps per Millimeter (E)"
  379. msgstr "ミリメートルあたりのステップ (E)"
  380. msgctxt "machine_steps_per_mm_e description"
  381. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  382. msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。"
  383. msgctxt "machine_endstop_positive_direction_x label"
  384. msgid "X Endstop in Positive Direction"
  385. msgstr "プラス方向の X エンドストップ"
  386. msgctxt "machine_endstop_positive_direction_x description"
  387. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  388. msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。"
  389. msgctxt "machine_endstop_positive_direction_y label"
  390. msgid "Y Endstop in Positive Direction"
  391. msgstr "プラス方向の Y エンドストップ"
  392. msgctxt "machine_endstop_positive_direction_y description"
  393. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  394. msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。"
  395. msgctxt "machine_endstop_positive_direction_z label"
  396. msgid "Z Endstop in Positive Direction"
  397. msgstr "プラス方向の Z エンドストップ"
  398. msgctxt "machine_endstop_positive_direction_z description"
  399. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  400. msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。"
  401. msgctxt "machine_minimum_feedrate label"
  402. msgid "Minimum Feedrate"
  403. msgstr "最小送り速度"
  404. msgctxt "machine_minimum_feedrate description"
  405. msgid "The minimal movement speed of the print head."
  406. msgstr "プリントヘッドの最小移動速度。"
  407. msgctxt "machine_feeder_wheel_diameter label"
  408. msgid "Feeder Wheel Diameter"
  409. msgstr "フィーダーホイール直径"
  410. msgctxt "machine_feeder_wheel_diameter description"
  411. msgid "The diameter of the wheel that drives the material in the feeder."
  412. msgstr "材料をフィーダーに送るホイールの直径。"
  413. msgctxt "machine_scale_fan_speed_zero_to_one label"
  414. msgid "Scale Fan Speed To 0-1"
  415. msgstr "ファン速度を0~1にスケール"
  416. msgctxt "machine_scale_fan_speed_zero_to_one description"
  417. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  418. msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。"
  419. msgctxt "resolution label"
  420. msgid "Quality"
  421. msgstr "品質"
  422. msgctxt "resolution description"
  423. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  424. msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。"
  425. msgctxt "layer_height label"
  426. msgid "Layer Height"
  427. msgstr "レイヤー高さ"
  428. msgctxt "layer_height description"
  429. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  430. msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。"
  431. msgctxt "layer_height_0 label"
  432. msgid "Initial Layer Height"
  433. msgstr "初期レイヤー高さ"
  434. msgctxt "layer_height_0 description"
  435. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  436. msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。"
  437. msgctxt "line_width label"
  438. msgid "Line Width"
  439. msgstr "ライン幅"
  440. msgctxt "line_width description"
  441. 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."
  442. msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。"
  443. msgctxt "wall_line_width label"
  444. msgid "Wall Line Width"
  445. msgstr "ウォールライン幅"
  446. msgctxt "wall_line_width description"
  447. msgid "Width of a single wall line."
  448. msgstr "ウォールラインの幅。"
  449. msgctxt "wall_line_width_0 label"
  450. msgid "Outer Wall Line Width"
  451. msgstr "外側ウォールライン幅"
  452. msgctxt "wall_line_width_0 description"
  453. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  454. msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。"
  455. msgctxt "wall_line_width_x label"
  456. msgid "Inner Wall(s) Line Width"
  457. msgstr "内側ウォールライン幅"
  458. msgctxt "wall_line_width_x description"
  459. msgid "Width of a single wall line for all wall lines except the outermost one."
  460. msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。"
  461. msgctxt "skin_line_width label"
  462. msgid "Top/Bottom Line Width"
  463. msgstr "上下面ライン幅"
  464. msgctxt "skin_line_width description"
  465. msgid "Width of a single top/bottom line."
  466. msgstr "上辺/底辺線のライン幅。"
  467. msgctxt "infill_line_width label"
  468. msgid "Infill Line Width"
  469. msgstr "インフィルラインの幅"
  470. msgctxt "infill_line_width description"
  471. msgid "Width of a single infill line."
  472. msgstr "インフィル線の幅。"
  473. msgctxt "skirt_brim_line_width label"
  474. msgid "Skirt/Brim Line Width"
  475. msgstr "スカート/ブリムラインの幅"
  476. msgctxt "skirt_brim_line_width description"
  477. msgid "Width of a single skirt or brim line."
  478. msgstr "単一のスカートまたはブリムラインの幅。"
  479. msgctxt "support_line_width label"
  480. msgid "Support Line Width"
  481. msgstr "サポートライン幅"
  482. msgctxt "support_line_width description"
  483. msgid "Width of a single support structure line."
  484. msgstr "単一のサポート構造のライン幅。"
  485. msgctxt "support_interface_line_width label"
  486. msgid "Support Interface Line Width"
  487. msgstr "サポート面のライン幅"
  488. msgctxt "support_interface_line_width description"
  489. msgid "Width of a single line of support roof or floor."
  490. msgstr "サポートのルーフ、フロアのライン幅。"
  491. msgctxt "support_roof_line_width label"
  492. msgid "Support Roof Line Width"
  493. msgstr "サポートルーフのライン幅"
  494. msgctxt "support_roof_line_width description"
  495. msgid "Width of a single support roof line."
  496. msgstr "サポートルーフのライン一幅。"
  497. msgctxt "support_bottom_line_width label"
  498. msgid "Support Floor Line Width"
  499. msgstr "サポートフロアのライン幅"
  500. msgctxt "support_bottom_line_width description"
  501. msgid "Width of a single support floor line."
  502. msgstr "サポートのフロアのラインの一幅。"
  503. msgctxt "prime_tower_line_width label"
  504. msgid "Prime Tower Line Width"
  505. msgstr "プライムタワーのライン幅"
  506. msgctxt "prime_tower_line_width description"
  507. msgid "Width of a single prime tower line."
  508. msgstr "単一のプライムタワーラインの幅。"
  509. msgctxt "initial_layer_line_width_factor label"
  510. msgid "Initial Layer Line Width"
  511. msgstr "初期レイヤーのライン幅"
  512. msgctxt "initial_layer_line_width_factor description"
  513. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  514. msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。"
  515. msgctxt "shell label"
  516. msgid "Walls"
  517. msgstr "ウォール"
  518. msgctxt "shell description"
  519. msgid "Shell"
  520. msgstr "外郭"
  521. msgctxt "wall_extruder_nr label"
  522. msgid "Wall Extruder"
  523. msgstr "ウォールエクストルーダー"
  524. msgctxt "wall_extruder_nr description"
  525. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  526. msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。"
  527. msgctxt "wall_0_extruder_nr label"
  528. msgid "Outer Wall Extruder"
  529. msgstr "外壁用エクストルーダー"
  530. msgctxt "wall_0_extruder_nr description"
  531. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  532. msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  533. msgctxt "wall_x_extruder_nr label"
  534. msgid "Inner Wall Extruder"
  535. msgstr "内壁用エクストルーダー"
  536. msgctxt "wall_x_extruder_nr description"
  537. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  538. msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  539. msgctxt "wall_thickness label"
  540. msgid "Wall Thickness"
  541. msgstr "壁の厚さ"
  542. msgctxt "wall_thickness description"
  543. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  544. msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。"
  545. msgctxt "wall_line_count label"
  546. msgid "Wall Line Count"
  547. msgstr "ウォールライン数"
  548. msgctxt "wall_line_count description"
  549. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  550. msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。"
  551. msgctxt "wall_transition_length label"
  552. msgid "Wall Transition Length"
  553. msgstr "ウォール移行長さ"
  554. msgctxt "wall_transition_length description"
  555. 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."
  556. msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。"
  557. msgctxt "wall_distribution_count label"
  558. msgid "Wall Distribution Count"
  559. msgstr "ウォール分配数"
  560. msgctxt "wall_distribution_count description"
  561. 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."
  562. msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。"
  563. msgctxt "wall_transition_angle label"
  564. msgid "Wall Transitioning Threshold Angle"
  565. msgstr "ウォール移行しきい値角度"
  566. msgctxt "wall_transition_angle description"
  567. 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."
  568. msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。"
  569. msgctxt "wall_transition_filter_distance label"
  570. msgid "Wall Transitioning Filter Distance"
  571. msgstr "ウォール移行フィルター距離"
  572. msgctxt "wall_transition_filter_distance description"
  573. 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."
  574. msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。"
  575. msgctxt "wall_transition_filter_deviation label"
  576. msgid "Wall Transitioning Filter Margin"
  577. msgstr "ウォール移行フィルターマージン"
  578. msgctxt "wall_transition_filter_deviation description"
  579. 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."
  580. msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。"
  581. msgctxt "wall_0_wipe_dist label"
  582. msgid "Outer Wall Wipe Distance"
  583. msgstr "外壁移動距離"
  584. msgctxt "wall_0_wipe_dist description"
  585. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  586. msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。"
  587. msgctxt "wall_0_inset label"
  588. msgid "Outer Wall Inset"
  589. msgstr "外壁はめ込み"
  590. msgctxt "wall_0_inset description"
  591. 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."
  592. msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。"
  593. msgctxt "optimize_wall_printing_order label"
  594. msgid "Optimize Wall Printing Order"
  595. msgstr "壁印刷順序の最適化"
  596. msgctxt "optimize_wall_printing_order description"
  597. 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."
  598. msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。"
  599. msgctxt "inset_direction label"
  600. msgid "Wall Ordering"
  601. msgstr "ウォール順序"
  602. msgctxt "inset_direction description"
  603. 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."
  604. msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。"
  605. msgctxt "inset_direction option inside_out"
  606. msgid "Inside To Outside"
  607. msgstr "内側から外側へ"
  608. msgctxt "inset_direction option outside_in"
  609. msgid "Outside To Inside"
  610. msgstr "外側から内側へ"
  611. msgctxt "alternate_extra_perimeter label"
  612. msgid "Alternate Extra Wall"
  613. msgstr "代替予備壁"
  614. msgctxt "alternate_extra_perimeter description"
  615. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  616. msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。"
  617. msgctxt "min_wall_line_width label"
  618. msgid "Minimum Wall Line Width"
  619. msgstr "最小ウォールライン幅"
  620. msgctxt "min_wall_line_width description"
  621. 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."
  622. msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。"
  623. msgctxt "min_even_wall_line_width label"
  624. msgid "Minimum Even Wall Line Width"
  625. msgstr "最小偶数ウォールライン幅"
  626. msgctxt "min_even_wall_line_width description"
  627. 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."
  628. msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。"
  629. msgctxt "min_odd_wall_line_width label"
  630. msgid "Minimum Odd Wall Line Width"
  631. msgstr "最小奇数ウォールライン幅"
  632. msgctxt "min_odd_wall_line_width description"
  633. 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."
  634. msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。"
  635. msgctxt "fill_outline_gaps label"
  636. msgid "Print Thin Walls"
  637. msgstr "薄壁印刷"
  638. msgctxt "fill_outline_gaps description"
  639. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  640. msgstr "ノズルサイズよりも細い壁を作ります。"
  641. msgctxt "min_feature_size label"
  642. msgid "Minimum Feature Size"
  643. msgstr "最小フィーチャーサイズ"
  644. msgctxt "min_feature_size description"
  645. 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."
  646. msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。"
  647. msgctxt "min_bead_width label"
  648. msgid "Minimum Thin Wall Line Width"
  649. msgstr "最小薄肉ウォールライン幅"
  650. msgctxt "min_bead_width description"
  651. 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."
  652. msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。"
  653. msgctxt "xy_offset label"
  654. msgid "Horizontal Expansion"
  655. msgstr "水平展開"
  656. msgctxt "xy_offset description"
  657. 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."
  658. msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。"
  659. msgctxt "xy_offset_layer_0 label"
  660. msgid "Initial Layer Horizontal Expansion"
  661. msgstr "初期層水平展開"
  662. msgctxt "xy_offset_layer_0 description"
  663. 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\"."
  664. msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。"
  665. msgctxt "hole_xy_offset label"
  666. msgid "Hole Horizontal Expansion"
  667. msgstr "穴の水平展開"
  668. msgctxt "hole_xy_offset description"
  669. msgid "When greater than zero, the Hole Horizontal Expansion is the 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. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  670. msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。"
  671. msgctxt "hole_xy_offset_max_diameter label"
  672. msgid "Hole Horizontal Expansion Max Diameter"
  673. msgstr "穴の水平展開の最大直径"
  674. msgctxt "hole_xy_offset_max_diameter description"
  675. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  676. msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。"
  677. msgctxt "z_seam_type label"
  678. msgid "Z Seam Alignment"
  679. msgstr "Zシーム合わせ"
  680. msgctxt "z_seam_type description"
  681. 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."
  682. msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。"
  683. msgctxt "z_seam_type option back"
  684. msgid "User Specified"
  685. msgstr "ユーザー指定"
  686. msgctxt "z_seam_type option shortest"
  687. msgid "Shortest"
  688. msgstr "最短"
  689. msgctxt "z_seam_type option random"
  690. msgid "Random"
  691. msgstr "ランダム"
  692. msgctxt "z_seam_type option sharpest_corner"
  693. msgid "Sharpest Corner"
  694. msgstr "鋭い角"
  695. msgctxt "z_seam_position label"
  696. msgid "Z Seam Position"
  697. msgstr "Zシーム位置"
  698. msgctxt "z_seam_position description"
  699. msgid "The position near where to start printing each part in a layer."
  700. msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。"
  701. msgctxt "z_seam_position option backleft"
  702. msgid "Back Left"
  703. msgstr "後方左"
  704. msgctxt "z_seam_position option back"
  705. msgid "Back"
  706. msgstr "戻る"
  707. msgctxt "z_seam_position option backright"
  708. msgid "Back Right"
  709. msgstr "後方右"
  710. msgctxt "z_seam_position option right"
  711. msgid "Right"
  712. msgstr "右"
  713. msgctxt "z_seam_position option frontright"
  714. msgid "Front Right"
  715. msgstr "前方右"
  716. msgctxt "z_seam_position option front"
  717. msgid "Front"
  718. msgstr "前"
  719. msgctxt "z_seam_position option frontleft"
  720. msgid "Front Left"
  721. msgstr "前左"
  722. msgctxt "z_seam_position option left"
  723. msgid "Left"
  724. msgstr "左"
  725. msgctxt "z_seam_x label"
  726. msgid "Z Seam X"
  727. msgstr "ZシームX"
  728. msgctxt "z_seam_x description"
  729. msgid "The X coordinate of the position near where to start printing each part in a layer."
  730. msgstr "レイヤー内の各印刷を開始するX座\n標の位置。"
  731. msgctxt "z_seam_y label"
  732. msgid "Z Seam Y"
  733. msgstr "ZシームY"
  734. msgctxt "z_seam_y description"
  735. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  736. msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。"
  737. msgctxt "z_seam_corner label"
  738. msgid "Seam Corner Preference"
  739. msgstr "シームコーナー設定"
  740. msgctxt "z_seam_corner description"
  741. 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."
  742. msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。"
  743. msgctxt "z_seam_corner option z_seam_corner_none"
  744. msgid "None"
  745. msgstr "なし"
  746. msgctxt "z_seam_corner option z_seam_corner_inner"
  747. msgid "Hide Seam"
  748. msgstr "シーム非表示"
  749. msgctxt "z_seam_corner option z_seam_corner_outer"
  750. msgid "Expose Seam"
  751. msgstr "シーム表示"
  752. msgctxt "z_seam_corner option z_seam_corner_any"
  753. msgid "Hide or Expose Seam"
  754. msgstr "シーム表示/非表示"
  755. msgctxt "z_seam_corner option z_seam_corner_weighted"
  756. msgid "Smart Hiding"
  757. msgstr "スマート・シーム"
  758. msgctxt "z_seam_relative label"
  759. msgid "Z Seam Relative"
  760. msgstr "相対Zシーム"
  761. msgctxt "z_seam_relative description"
  762. 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."
  763. msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。"
  764. msgctxt "top_bottom label"
  765. msgid "Top/Bottom"
  766. msgstr "トップ/ボトム"
  767. msgctxt "top_bottom description"
  768. msgid "Top/Bottom"
  769. msgstr "トップ/ボトム"
  770. msgctxt "roofing_extruder_nr label"
  771. msgid "Top Surface Skin Extruder"
  772. msgstr "上部表面用エクストルーダー"
  773. msgctxt "roofing_extruder_nr description"
  774. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  775. msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。"
  776. msgctxt "roofing_layer_count label"
  777. msgid "Top Surface Skin Layers"
  778. msgstr "上部表面レイヤー"
  779. msgctxt "roofing_layer_count description"
  780. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  781. msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。"
  782. msgctxt "roofing_line_width label"
  783. msgid "Top Surface Skin Line Width"
  784. msgstr "最上面のライン幅"
  785. msgctxt "roofing_line_width description"
  786. msgid "Width of a single line of the areas at the top of the print."
  787. msgstr "プリントの上部の 線の幅。"
  788. msgctxt "roofing_pattern label"
  789. msgid "Top Surface Skin Pattern"
  790. msgstr "上部表面パターン"
  791. msgctxt "roofing_pattern description"
  792. msgid "The pattern of the top most layers."
  793. msgstr "上層のパターン。"
  794. msgctxt "roofing_pattern option lines"
  795. msgid "Lines"
  796. msgstr "直線"
  797. msgctxt "roofing_pattern option concentric"
  798. msgid "Concentric"
  799. msgstr "同心円"
  800. msgctxt "roofing_pattern option zigzag"
  801. msgid "Zig Zag"
  802. msgstr "ジグザグ"
  803. msgctxt "roofing_monotonic label"
  804. msgid "Monotonic Top Surface Order"
  805. msgstr "上面方向一貫性"
  806. msgctxt "roofing_monotonic description"
  807. 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."
  808. msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  809. msgctxt "roofing_angles label"
  810. msgid "Top Surface Skin Line Directions"
  811. msgstr "最上面のラインの向き"
  812. msgctxt "roofing_angles description"
  813. 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)."
  814. msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。"
  815. msgctxt "top_bottom_extruder_nr label"
  816. msgid "Top/Bottom Extruder"
  817. msgstr "上部/底面エクストルーダー"
  818. msgctxt "top_bottom_extruder_nr description"
  819. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  820. msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。"
  821. msgctxt "top_bottom_thickness label"
  822. msgid "Top/Bottom Thickness"
  823. msgstr "上部/底面の厚さ"
  824. msgctxt "top_bottom_thickness description"
  825. 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."
  826. msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。"
  827. msgctxt "top_thickness label"
  828. msgid "Top Thickness"
  829. msgstr "上部厚さ"
  830. msgctxt "top_thickness description"
  831. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  832. msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。"
  833. msgctxt "top_layers label"
  834. msgid "Top Layers"
  835. msgstr "上部レイヤー"
  836. msgctxt "top_layers description"
  837. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  838. msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。"
  839. msgctxt "bottom_thickness label"
  840. msgid "Bottom Thickness"
  841. msgstr "底面厚さ"
  842. msgctxt "bottom_thickness description"
  843. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  844. msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。"
  845. msgctxt "bottom_layers label"
  846. msgid "Bottom Layers"
  847. msgstr "底面レイヤー"
  848. msgctxt "bottom_layers description"
  849. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  850. msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。"
  851. msgctxt "initial_bottom_layers label"
  852. msgid "Initial Bottom Layers"
  853. msgstr "初期底面レイヤー"
  854. msgctxt "initial_bottom_layers description"
  855. 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."
  856. msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。"
  857. msgctxt "top_bottom_pattern label"
  858. msgid "Top/Bottom Pattern"
  859. msgstr "上層/底層パターン"
  860. msgctxt "top_bottom_pattern description"
  861. msgid "The pattern of the top/bottom layers."
  862. msgstr "上層/底層のパターン。"
  863. msgctxt "top_bottom_pattern option lines"
  864. msgid "Lines"
  865. msgstr "直線"
  866. msgctxt "top_bottom_pattern option concentric"
  867. msgid "Concentric"
  868. msgstr "同心円"
  869. msgctxt "top_bottom_pattern option zigzag"
  870. msgid "Zig Zag"
  871. msgstr "ジグザグ"
  872. msgctxt "top_bottom_pattern_0 label"
  873. msgid "Bottom Pattern Initial Layer"
  874. msgstr "底層初期レイヤー"
  875. msgctxt "top_bottom_pattern_0 description"
  876. msgid "The pattern on the bottom of the print on the first layer."
  877. msgstr "第1層のプリントの底部のパターン。"
  878. msgctxt "top_bottom_pattern_0 option lines"
  879. msgid "Lines"
  880. msgstr "直線"
  881. msgctxt "top_bottom_pattern_0 option concentric"
  882. msgid "Concentric"
  883. msgstr "同心円"
  884. msgctxt "top_bottom_pattern_0 option zigzag"
  885. msgid "Zig Zag"
  886. msgstr "ジグザグ"
  887. msgctxt "connect_skin_polygons label"
  888. msgid "Connect Top/Bottom Polygons"
  889. msgstr "上層/底層ポリゴンに接合"
  890. msgctxt "connect_skin_polygons description"
  891. 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."
  892. msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。"
  893. msgctxt "skin_monotonic label"
  894. msgid "Monotonic Top/Bottom Order"
  895. msgstr "上面/底面の方向一貫性"
  896. msgctxt "skin_monotonic description"
  897. 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."
  898. msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  899. msgctxt "skin_angles label"
  900. msgid "Top/Bottom Line Directions"
  901. msgstr "上層/底層ラインの向き"
  902. msgctxt "skin_angles description"
  903. 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)."
  904. msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。"
  905. msgctxt "small_skin_width label"
  906. msgid "Small Top/Bottom Width"
  907. msgstr "小さい上下幅"
  908. msgctxt "small_skin_width description"
  909. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  910. msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。"
  911. msgctxt "small_skin_on_surface label"
  912. msgid "Small Top/Bottom On Surface"
  913. msgstr "表面の小さな上部/下部"
  914. msgctxt "small_skin_on_surface description"
  915. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  916. msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。"
  917. msgctxt "skin_no_small_gaps_heuristic label"
  918. msgid "No Skin in Z Gaps"
  919. msgstr "Z 軸ギャップにスキンなし"
  920. msgctxt "skin_no_small_gaps_heuristic description"
  921. 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."
  922. msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。"
  923. msgctxt "skin_outline_count label"
  924. msgid "Extra Skin Wall Count"
  925. msgstr "外側表面の数"
  926. msgctxt "skin_outline_count description"
  927. 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."
  928. msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。"
  929. msgctxt "ironing_enabled label"
  930. msgid "Enable Ironing"
  931. msgstr "アイロン有効"
  932. msgctxt "ironing_enabled description"
  933. 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."
  934. msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。"
  935. msgctxt "ironing_only_highest_layer label"
  936. msgid "Iron Only Highest Layer"
  937. msgstr "最上層のみアイロン"
  938. msgctxt "ironing_only_highest_layer description"
  939. 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."
  940. msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。"
  941. msgctxt "ironing_pattern label"
  942. msgid "Ironing Pattern"
  943. msgstr "アイロンパターン"
  944. msgctxt "ironing_pattern description"
  945. msgid "The pattern to use for ironing top surfaces."
  946. msgstr "アイロンのパターン。"
  947. msgctxt "ironing_pattern option concentric"
  948. msgid "Concentric"
  949. msgstr "同心円"
  950. msgctxt "ironing_pattern option zigzag"
  951. msgid "Zig Zag"
  952. msgstr "ジグザグ"
  953. msgctxt "ironing_monotonic label"
  954. msgid "Monotonic Ironing Order"
  955. msgstr "アイロン方向一貫性"
  956. msgctxt "ironing_monotonic description"
  957. 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."
  958. msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。"
  959. msgctxt "ironing_line_spacing label"
  960. msgid "Ironing Line Spacing"
  961. msgstr "アイロン線のスペース"
  962. msgctxt "ironing_line_spacing description"
  963. msgid "The distance between the lines of ironing."
  964. msgstr "アイロンライン同士の距離。"
  965. msgctxt "ironing_flow label"
  966. msgid "Ironing Flow"
  967. msgstr "アイロンフロー"
  968. msgctxt "ironing_flow description"
  969. 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."
  970. msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。"
  971. msgctxt "ironing_inset label"
  972. msgid "Ironing Inset"
  973. msgstr "アイロンインセット"
  974. msgctxt "ironing_inset description"
  975. 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."
  976. msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。"
  977. msgctxt "speed_ironing label"
  978. msgid "Ironing Speed"
  979. msgstr "アイロン速度"
  980. msgctxt "speed_ironing description"
  981. msgid "The speed at which to pass over the top surface."
  982. msgstr "上部表面通過時の速度。"
  983. msgctxt "acceleration_ironing label"
  984. msgid "Ironing Acceleration"
  985. msgstr "アイロン加速度"
  986. msgctxt "acceleration_ironing description"
  987. msgid "The acceleration with which ironing is performed."
  988. msgstr "アイロン時の加速度。"
  989. msgctxt "jerk_ironing label"
  990. msgid "Ironing Jerk"
  991. msgstr "アイロンジャーク"
  992. msgctxt "jerk_ironing description"
  993. msgid "The maximum instantaneous velocity change while performing ironing."
  994. msgstr "アイロン時の最大加速度。"
  995. msgctxt "skin_overlap label"
  996. msgid "Skin Overlap Percentage"
  997. msgstr "表面公差量"
  998. msgctxt "skin_overlap description"
  999. 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."
  1000. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  1001. msgctxt "skin_overlap_mm label"
  1002. msgid "Skin Overlap"
  1003. msgstr "表面公差"
  1004. msgctxt "skin_overlap_mm description"
  1005. 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."
  1006. msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。"
  1007. msgctxt "skin_preshrink label"
  1008. msgid "Skin Removal Width"
  1009. msgstr "表面除去幅"
  1010. msgctxt "skin_preshrink description"
  1011. 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."
  1012. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1013. msgctxt "top_skin_preshrink label"
  1014. msgid "Top Skin Removal Width"
  1015. msgstr "上面除去幅"
  1016. msgctxt "top_skin_preshrink description"
  1017. 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."
  1018. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1019. msgctxt "bottom_skin_preshrink label"
  1020. msgid "Bottom Skin Removal Width"
  1021. msgstr "底面除去幅"
  1022. msgctxt "bottom_skin_preshrink description"
  1023. 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."
  1024. msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。"
  1025. msgctxt "expand_skins_expand_distance label"
  1026. msgid "Skin Expand Distance"
  1027. msgstr "表面展開距離"
  1028. msgctxt "expand_skins_expand_distance description"
  1029. 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."
  1030. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1031. msgctxt "top_skin_expand_distance label"
  1032. msgid "Top Skin Expand Distance"
  1033. msgstr "上面展開距離"
  1034. msgctxt "top_skin_expand_distance description"
  1035. 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."
  1036. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1037. msgctxt "bottom_skin_expand_distance label"
  1038. msgid "Bottom Skin Expand Distance"
  1039. msgstr "底面展開距離"
  1040. msgctxt "bottom_skin_expand_distance description"
  1041. 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."
  1042. msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。"
  1043. msgctxt "max_skin_angle_for_expansion label"
  1044. msgid "Maximum Skin Angle for Expansion"
  1045. msgstr "表面展開最大角"
  1046. msgctxt "max_skin_angle_for_expansion description"
  1047. 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."
  1048. msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。"
  1049. msgctxt "min_skin_width_for_expansion label"
  1050. msgid "Minimum Skin Width for Expansion"
  1051. msgstr "表面展開最小角"
  1052. msgctxt "min_skin_width_for_expansion description"
  1053. 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."
  1054. msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。"
  1055. msgctxt "infill label"
  1056. msgid "Infill"
  1057. msgstr "インフィル"
  1058. msgctxt "infill description"
  1059. msgid "Infill"
  1060. msgstr "インフィル"
  1061. msgctxt "infill_extruder_nr label"
  1062. msgid "Infill Extruder"
  1063. msgstr "インフィルエクストルーダー"
  1064. msgctxt "infill_extruder_nr description"
  1065. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1066. msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。"
  1067. msgctxt "infill_sparse_density label"
  1068. msgid "Infill Density"
  1069. msgstr "インフィル密度"
  1070. msgctxt "infill_sparse_density description"
  1071. msgid "Adjusts the density of infill of the print."
  1072. msgstr "プリントのインフィルの密度を調整します。"
  1073. msgctxt "infill_line_distance label"
  1074. msgid "Infill Line Distance"
  1075. msgstr "インフィルライン距離"
  1076. msgctxt "infill_line_distance description"
  1077. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1078. msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。"
  1079. msgctxt "infill_pattern label"
  1080. msgid "Infill Pattern"
  1081. msgstr "インフィルパターン"
  1082. msgctxt "infill_pattern description"
  1083. 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."
  1084. msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。"
  1085. msgctxt "infill_pattern option grid"
  1086. msgid "Grid"
  1087. msgstr "グリッド"
  1088. msgctxt "infill_pattern option lines"
  1089. msgid "Lines"
  1090. msgstr "ライン"
  1091. msgctxt "infill_pattern option triangles"
  1092. msgid "Triangles"
  1093. msgstr "トライアングル"
  1094. msgctxt "infill_pattern option trihexagon"
  1095. msgid "Tri-Hexagon"
  1096. msgstr "トライヘキサゴン"
  1097. msgctxt "infill_pattern option cubic"
  1098. msgid "Cubic"
  1099. msgstr "キュービック"
  1100. msgctxt "infill_pattern option cubicsubdiv"
  1101. msgid "Cubic Subdivision"
  1102. msgstr "キュービックサブディビジョン"
  1103. msgctxt "infill_pattern option tetrahedral"
  1104. msgid "Octet"
  1105. msgstr "オクテット"
  1106. msgctxt "infill_pattern option quarter_cubic"
  1107. msgid "Quarter Cubic"
  1108. msgstr "クォーターキュービック"
  1109. msgctxt "infill_pattern option concentric"
  1110. msgid "Concentric"
  1111. msgstr "同心円"
  1112. msgctxt "infill_pattern option zigzag"
  1113. msgid "Zig Zag"
  1114. msgstr "ジグザグ"
  1115. msgctxt "infill_pattern option cross"
  1116. msgid "Cross"
  1117. msgstr "クロス"
  1118. msgctxt "infill_pattern option cross_3d"
  1119. msgid "Cross 3D"
  1120. msgstr "3Dクロス"
  1121. msgctxt "infill_pattern option gyroid"
  1122. msgid "Gyroid"
  1123. msgstr "ジャイロイド"
  1124. msgctxt "infill_pattern option lightning"
  1125. msgid "Lightning"
  1126. msgstr "ライトニング"
  1127. msgctxt "zig_zaggify_infill label"
  1128. msgid "Connect Infill Lines"
  1129. msgstr "インフィルライン接合"
  1130. msgctxt "zig_zaggify_infill description"
  1131. 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."
  1132. msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。"
  1133. msgctxt "connect_infill_polygons label"
  1134. msgid "Connect Infill Polygons"
  1135. msgstr "インフィルポリゴン接合"
  1136. msgctxt "connect_infill_polygons description"
  1137. 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."
  1138. msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。"
  1139. msgctxt "infill_angles label"
  1140. msgid "Infill Line Directions"
  1141. msgstr "インフィルラインの向き"
  1142. msgctxt "infill_angles description"
  1143. 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)."
  1144. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。"
  1145. msgctxt "infill_offset_x label"
  1146. msgid "Infill X Offset"
  1147. msgstr "インフィルXオフセット"
  1148. msgctxt "infill_offset_x description"
  1149. msgid "The infill pattern is moved this distance along the X axis."
  1150. msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。"
  1151. msgctxt "infill_offset_y label"
  1152. msgid "Infill Y Offset"
  1153. msgstr "インフィルYオフセット"
  1154. msgctxt "infill_offset_y description"
  1155. msgid "The infill pattern is moved this distance along the Y axis."
  1156. msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。"
  1157. msgctxt "infill_randomize_start_location label"
  1158. msgid "Randomize Infill Start"
  1159. msgstr "インフィル開始のランダム化"
  1160. msgctxt "infill_randomize_start_location description"
  1161. 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."
  1162. msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。"
  1163. msgctxt "infill_multiplier label"
  1164. msgid "Infill Line Multiplier"
  1165. msgstr "インフィルライン乗算"
  1166. msgctxt "infill_multiplier description"
  1167. 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."
  1168. msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。"
  1169. msgctxt "infill_wall_line_count label"
  1170. msgid "Extra Infill Wall Count"
  1171. msgstr "外側インフィル壁の数"
  1172. msgctxt "infill_wall_line_count description"
  1173. msgid "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.\nThis 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."
  1174. msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\nこの機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。"
  1175. msgctxt "sub_div_rad_add label"
  1176. msgid "Cubic Subdivision Shell"
  1177. msgstr "キュービックサブディビジョンシェル"
  1178. msgctxt "sub_div_rad_add description"
  1179. 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."
  1180. msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。"
  1181. msgctxt "infill_overlap label"
  1182. msgid "Infill Overlap Percentage"
  1183. msgstr "インフィル公差量"
  1184. msgctxt "infill_overlap description"
  1185. 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."
  1186. msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。"
  1187. msgctxt "infill_overlap_mm label"
  1188. msgid "Infill Overlap"
  1189. msgstr "インフィル公差"
  1190. msgctxt "infill_overlap_mm description"
  1191. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1192. msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。"
  1193. msgctxt "infill_wipe_dist label"
  1194. msgid "Infill Wipe Distance"
  1195. msgstr "インフィル移動距離"
  1196. msgctxt "infill_wipe_dist description"
  1197. 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."
  1198. msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。"
  1199. msgctxt "infill_sparse_thickness label"
  1200. msgid "Infill Layer Thickness"
  1201. msgstr "インフィル層の厚さ"
  1202. msgctxt "infill_sparse_thickness description"
  1203. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1204. msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。"
  1205. msgctxt "gradual_infill_steps label"
  1206. msgid "Gradual Infill Steps"
  1207. msgstr "インフィル半減回数"
  1208. msgctxt "gradual_infill_steps description"
  1209. 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."
  1210. msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。"
  1211. msgctxt "gradual_infill_step_height label"
  1212. msgid "Gradual Infill Step Height"
  1213. msgstr "インフィル半減高さ"
  1214. msgctxt "gradual_infill_step_height description"
  1215. msgid "The height of infill of a given density before switching to half the density."
  1216. msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。"
  1217. msgctxt "infill_before_walls label"
  1218. msgid "Infill Before Walls"
  1219. msgstr "インフィル優先"
  1220. msgctxt "infill_before_walls description"
  1221. 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."
  1222. msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\nはじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。"
  1223. msgctxt "min_infill_area label"
  1224. msgid "Minimum Infill Area"
  1225. msgstr "最小インフィル領域"
  1226. msgctxt "min_infill_area description"
  1227. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1228. msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。"
  1229. msgctxt "infill_support_enabled label"
  1230. msgid "Infill Support"
  1231. msgstr "インフィルサポート"
  1232. msgctxt "infill_support_enabled description"
  1233. 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."
  1234. msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。"
  1235. msgctxt "infill_support_angle label"
  1236. msgid "Infill Overhang Angle"
  1237. msgstr "インフィルオーバーハング角度"
  1238. msgctxt "infill_support_angle description"
  1239. 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."
  1240. msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。"
  1241. msgctxt "skin_edge_support_thickness label"
  1242. msgid "Skin Edge Support Thickness"
  1243. msgstr "スキンエッジサポートの厚さ"
  1244. msgctxt "skin_edge_support_thickness description"
  1245. msgid "The thickness of the extra infill that supports skin edges."
  1246. msgstr "スキンエッジをサポートする追加のインフィルの厚さ。"
  1247. msgctxt "skin_edge_support_layers label"
  1248. msgid "Skin Edge Support Layers"
  1249. msgstr "スキンエッジサポートレイヤー"
  1250. msgctxt "skin_edge_support_layers description"
  1251. msgid "The number of infill layers that supports skin edges."
  1252. msgstr "スキンエッジをサポートするインフィルレイヤーの数。"
  1253. msgctxt "lightning_infill_support_angle label"
  1254. msgid "Lightning Infill Support Angle"
  1255. msgstr "ライトニングインフィルサポート角度"
  1256. msgctxt "lightning_infill_support_angle description"
  1257. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1258. msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。"
  1259. msgctxt "lightning_infill_overhang_angle label"
  1260. msgid "Lightning Infill Overhang Angle"
  1261. msgstr "ライトニングインフィルオーバーハング角度"
  1262. msgctxt "lightning_infill_overhang_angle description"
  1263. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1264. msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。"
  1265. msgctxt "lightning_infill_prune_angle label"
  1266. msgid "Lightning Infill Prune Angle"
  1267. msgstr "ライトニングインフィル刈り込み角度"
  1268. msgctxt "lightning_infill_prune_angle description"
  1269. 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."
  1270. msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。"
  1271. msgctxt "lightning_infill_straightening_angle label"
  1272. msgid "Lightning Infill Straightening Angle"
  1273. msgstr "ライトニングインフィル矯正角度"
  1274. msgctxt "lightning_infill_straightening_angle description"
  1275. 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."
  1276. msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。"
  1277. msgctxt "default_material_print_temperature label"
  1278. msgid "Default Printing Temperature"
  1279. msgstr "デフォルト印刷温度"
  1280. msgctxt "default_material_print_temperature description"
  1281. 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"
  1282. msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります"
  1283. msgctxt "build_volume_temperature label"
  1284. msgid "Build Volume Temperature"
  1285. msgstr "造形温度"
  1286. msgctxt "build_volume_temperature description"
  1287. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1288. msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。"
  1289. msgctxt "material_print_temperature label"
  1290. msgid "Printing Temperature"
  1291. msgstr "印刷温度"
  1292. msgctxt "material_print_temperature description"
  1293. msgid "The temperature used for printing."
  1294. msgstr "印刷中の温度。"
  1295. msgctxt "material_print_temperature_layer_0 label"
  1296. msgid "Printing Temperature Initial Layer"
  1297. msgstr "初期レイヤー印刷温度"
  1298. msgctxt "material_print_temperature_layer_0 description"
  1299. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1300. msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。"
  1301. msgctxt "material_initial_print_temperature label"
  1302. msgid "Initial Printing Temperature"
  1303. msgstr "初期印刷温度"
  1304. msgctxt "material_initial_print_temperature description"
  1305. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1306. msgstr "加熱中、印刷を開始することができる最低の温度。"
  1307. msgctxt "material_final_print_temperature label"
  1308. msgid "Final Printing Temperature"
  1309. msgstr "最終印刷温度"
  1310. msgctxt "material_final_print_temperature description"
  1311. msgid "The temperature to which to already start cooling down just before the end of printing."
  1312. msgstr "印刷終了直前に冷却を開始する温度。"
  1313. msgctxt "material_extrusion_cool_down_speed label"
  1314. msgid "Extrusion Cool Down Speed Modifier"
  1315. msgstr "押出クールダウン速度修飾子"
  1316. msgctxt "material_extrusion_cool_down_speed description"
  1317. 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."
  1318. msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。"
  1319. msgctxt "default_material_bed_temperature label"
  1320. msgid "Default Build Plate Temperature"
  1321. msgstr "ビルドプレートのデフォルト温度"
  1322. msgctxt "default_material_bed_temperature description"
  1323. 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"
  1324. msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります"
  1325. msgctxt "material_bed_temperature label"
  1326. msgid "Build Plate Temperature"
  1327. msgstr "ビルドプレート温度"
  1328. msgctxt "material_bed_temperature description"
  1329. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1330. msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。"
  1331. msgctxt "material_bed_temperature_layer_0 label"
  1332. msgid "Build Plate Temperature Initial Layer"
  1333. msgstr "初期レイヤーのビルドプレート温度"
  1334. msgctxt "material_bed_temperature_layer_0 description"
  1335. 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."
  1336. msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。"
  1337. msgctxt "material_adhesion_tendency label"
  1338. msgid "Adhesion Tendency"
  1339. msgstr "接着傾向"
  1340. msgctxt "material_adhesion_tendency description"
  1341. msgid "Surface adhesion tendency."
  1342. msgstr "表面の接着傾向。"
  1343. msgctxt "material_surface_energy label"
  1344. msgid "Surface Energy"
  1345. msgstr "表面エネルギー"
  1346. msgctxt "material_surface_energy description"
  1347. msgid "Surface energy."
  1348. msgstr "表面エネルギー。"
  1349. msgctxt "material_shrinkage_percentage label"
  1350. msgid "Scaling Factor Shrinkage Compensation"
  1351. msgstr "スケールファクタ収縮補正"
  1352. msgctxt "material_shrinkage_percentage description"
  1353. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1354. msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。"
  1355. msgctxt "material_shrinkage_percentage_xy label"
  1356. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1357. msgstr "水平スケールファクタ収縮補正"
  1358. msgctxt "material_shrinkage_percentage_xy description"
  1359. 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)."
  1360. msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。"
  1361. msgctxt "material_shrinkage_percentage_z label"
  1362. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1363. msgstr "垂直スケールファクタ収縮補正"
  1364. msgctxt "material_shrinkage_percentage_z description"
  1365. 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)."
  1366. msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。"
  1367. msgctxt "material_crystallinity label"
  1368. msgid "Crystalline Material"
  1369. msgstr "結晶性材料"
  1370. msgctxt "material_crystallinity description"
  1371. 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)?"
  1372. msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?"
  1373. msgctxt "material_anti_ooze_retracted_position label"
  1374. msgid "Anti-ooze Retracted Position"
  1375. msgstr "滲出防止引戻し位置"
  1376. msgctxt "material_anti_ooze_retracted_position description"
  1377. msgid "How far the material needs to be retracted before it stops oozing."
  1378. msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。"
  1379. msgctxt "material_anti_ooze_retraction_speed label"
  1380. msgid "Anti-ooze Retraction Speed"
  1381. msgstr "滲出防止引戻し速度"
  1382. msgctxt "material_anti_ooze_retraction_speed description"
  1383. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1384. msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。"
  1385. msgctxt "material_break_preparation_retracted_position label"
  1386. msgid "Break Preparation Retracted Position"
  1387. msgstr "フィラメントの引き出し準備引戻し位置"
  1388. msgctxt "material_break_preparation_retracted_position description"
  1389. msgid "How far the filament can be stretched before it breaks, while heated."
  1390. msgstr "加熱中にフィラメントの引き出しが生じる距離。"
  1391. msgctxt "material_break_preparation_speed label"
  1392. msgid "Break Preparation Retraction Speed"
  1393. msgstr "フィラメント引き出し準備引戻し速度"
  1394. msgctxt "material_break_preparation_speed description"
  1395. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1396. msgstr "フィラメントの引き出しが起こるための引き戻しの距離。"
  1397. msgctxt "material_break_preparation_temperature label"
  1398. msgid "Break Preparation Temperature"
  1399. msgstr "フィラメント引き出し準備温度"
  1400. msgctxt "material_break_preparation_temperature description"
  1401. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1402. msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。"
  1403. msgctxt "material_break_retracted_position label"
  1404. msgid "Break Retracted Position"
  1405. msgstr "フィラメント引き出しの引戻し位置"
  1406. msgctxt "material_break_retracted_position description"
  1407. msgid "How far to retract the filament in order to break it cleanly."
  1408. msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。"
  1409. msgctxt "material_break_speed label"
  1410. msgid "Break Retraction Speed"
  1411. msgstr "フィラメント引き出しの引戻し速度"
  1412. msgctxt "material_break_speed description"
  1413. msgid "The speed at which to retract the filament in order to break it cleanly."
  1414. msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。"
  1415. msgctxt "material_break_temperature label"
  1416. msgid "Break Temperature"
  1417. msgstr "フィラメント引き出し温度"
  1418. msgctxt "material_break_temperature description"
  1419. msgid "The temperature at which the filament is broken for a clean break."
  1420. msgstr "フィラメントがきれいに引き出される温度。"
  1421. msgctxt "material_flush_purge_speed label"
  1422. msgid "Flush Purge Speed"
  1423. msgstr "フラッシュパージ速度"
  1424. msgctxt "material_flush_purge_speed description"
  1425. msgid "How fast to prime the material after switching to a different material."
  1426. msgstr "材料を切り替えた後に、材料の下準備をする速度。"
  1427. msgctxt "material_flush_purge_length label"
  1428. msgid "Flush Purge Length"
  1429. msgstr "フラッシュパージ長さ"
  1430. msgctxt "material_flush_purge_length description"
  1431. 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."
  1432. msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  1433. msgctxt "material_end_of_filament_purge_speed label"
  1434. msgid "End of Filament Purge Speed"
  1435. msgstr "フィラメントパージ速度の後"
  1436. msgctxt "material_end_of_filament_purge_speed description"
  1437. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1438. msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。"
  1439. msgctxt "material_end_of_filament_purge_length label"
  1440. msgid "End of Filament Purge Length"
  1441. msgstr "フィラメントパージ長さの後"
  1442. msgctxt "material_end_of_filament_purge_length description"
  1443. 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."
  1444. msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。"
  1445. msgctxt "material_maximum_park_duration label"
  1446. msgid "Maximum Park Duration"
  1447. msgstr "最大留め期間"
  1448. msgctxt "material_maximum_park_duration description"
  1449. msgid "How long the material can be kept out of dry storage safely."
  1450. msgstr "材料を乾燥保管容器の外に置くことができる期間。"
  1451. msgctxt "material_no_load_move_factor label"
  1452. msgid "No Load Move Factor"
  1453. msgstr "無負荷移動係数"
  1454. msgctxt "material_no_load_move_factor description"
  1455. 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."
  1456. msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。"
  1457. msgctxt "material_flow label"
  1458. msgid "Flow"
  1459. msgstr "フロー"
  1460. msgctxt "material_flow description"
  1461. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1462. msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。"
  1463. msgctxt "wall_material_flow label"
  1464. msgid "Wall Flow"
  1465. msgstr "壁のフロー"
  1466. msgctxt "wall_material_flow description"
  1467. msgid "Flow compensation on wall lines."
  1468. msgstr "壁のフロー補正。"
  1469. msgctxt "wall_0_material_flow label"
  1470. msgid "Outer Wall Flow"
  1471. msgstr "外壁のフロー"
  1472. msgctxt "wall_0_material_flow description"
  1473. msgid "Flow compensation on the outermost wall line."
  1474. msgstr "最外壁のフロー補正。"
  1475. msgctxt "wall_x_material_flow label"
  1476. msgid "Inner Wall(s) Flow"
  1477. msgstr "内壁のフロー"
  1478. msgctxt "wall_x_material_flow description"
  1479. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1480. msgstr "最外壁以外の壁のフロー補正。"
  1481. msgctxt "skin_material_flow label"
  1482. msgid "Top/Bottom Flow"
  1483. msgstr "上面/下面フロー"
  1484. msgctxt "skin_material_flow description"
  1485. msgid "Flow compensation on top/bottom lines."
  1486. msgstr "上面/下面のフロー補正。"
  1487. msgctxt "roofing_material_flow label"
  1488. msgid "Top Surface Skin Flow"
  1489. msgstr "上部表面スキンフロー"
  1490. msgctxt "roofing_material_flow description"
  1491. msgid "Flow compensation on lines of the areas at the top of the print."
  1492. msgstr "印刷物の上部表面のフロー補正。"
  1493. msgctxt "infill_material_flow label"
  1494. msgid "Infill Flow"
  1495. msgstr "インフィルフロー"
  1496. msgctxt "infill_material_flow description"
  1497. msgid "Flow compensation on infill lines."
  1498. msgstr "インフィルのフロー補正。"
  1499. msgctxt "skirt_brim_material_flow label"
  1500. msgid "Skirt/Brim Flow"
  1501. msgstr "スカート/ブリムのフロー"
  1502. msgctxt "skirt_brim_material_flow description"
  1503. msgid "Flow compensation on skirt or brim lines."
  1504. msgstr "スカートまたはブリムのフロー補正。"
  1505. msgctxt "support_material_flow label"
  1506. msgid "Support Flow"
  1507. msgstr "支持材のフロー"
  1508. msgctxt "support_material_flow description"
  1509. msgid "Flow compensation on support structure lines."
  1510. msgstr "支持材のフロー補正。"
  1511. msgctxt "support_interface_material_flow label"
  1512. msgid "Support Interface Flow"
  1513. msgstr "支持材界面フロー"
  1514. msgctxt "support_interface_material_flow description"
  1515. msgid "Flow compensation on lines of support roof or floor."
  1516. msgstr "支持材の天井面または床面のフロー補正。"
  1517. msgctxt "support_roof_material_flow label"
  1518. msgid "Support Roof Flow"
  1519. msgstr "支持材天井面フロー"
  1520. msgctxt "support_roof_material_flow description"
  1521. msgid "Flow compensation on support roof lines."
  1522. msgstr "支持材天井面のフロー補正。"
  1523. msgctxt "support_bottom_material_flow label"
  1524. msgid "Support Floor Flow"
  1525. msgstr "支持材床面フロー"
  1526. msgctxt "support_bottom_material_flow description"
  1527. msgid "Flow compensation on support floor lines."
  1528. msgstr "支持材床面のフロー補正。"
  1529. msgctxt "prime_tower_flow label"
  1530. msgid "Prime Tower Flow"
  1531. msgstr "プライムタワーのフロー"
  1532. msgctxt "prime_tower_flow description"
  1533. msgid "Flow compensation on prime tower lines."
  1534. msgstr "プライムタワーのフロー補正。"
  1535. msgctxt "material_flow_layer_0 label"
  1536. msgid "Initial Layer Flow"
  1537. msgstr "初期レイヤーフロー"
  1538. msgctxt "material_flow_layer_0 description"
  1539. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1540. msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。"
  1541. msgctxt "wall_x_material_flow_layer_0 label"
  1542. msgid "Initial Layer Inner Wall Flow"
  1543. msgstr "初期レイヤーインナーウォールのフロー"
  1544. msgctxt "wall_x_material_flow_layer_0 description"
  1545. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1546. msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)"
  1547. msgctxt "wall_0_material_flow_layer_0 label"
  1548. msgid "Initial Layer Outer Wall Flow"
  1549. msgstr "初期レイヤーアウターウォールのフロー"
  1550. msgctxt "wall_0_material_flow_layer_0 description"
  1551. msgid "Flow compensation on the outermost wall line of the first layer."
  1552. msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。"
  1553. msgctxt "skin_material_flow_layer_0 label"
  1554. msgid "Initial Layer Bottom Flow"
  1555. msgstr "初期レイヤーの底面フロー"
  1556. msgctxt "skin_material_flow_layer_0 description"
  1557. msgid "Flow compensation on bottom lines of the first layer"
  1558. msgstr "最初のレイヤーの底面ラインのフロー補正"
  1559. msgctxt "material_standby_temperature label"
  1560. msgid "Standby Temperature"
  1561. msgstr "スタンバイ温度"
  1562. msgctxt "material_standby_temperature description"
  1563. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1564. msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)"
  1565. msgctxt "material_is_support_material label"
  1566. msgid "Is support material"
  1567. msgstr "サポート材かどうか"
  1568. msgctxt "material_is_support_material description"
  1569. msgid "Is this material typically used as a support material during printing."
  1570. msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。"
  1571. msgctxt "speed label"
  1572. msgid "Speed"
  1573. msgstr "スピード"
  1574. msgctxt "speed description"
  1575. msgid "Speed"
  1576. msgstr "スピード"
  1577. msgctxt "speed_print label"
  1578. msgid "Print Speed"
  1579. msgstr "印刷速度"
  1580. msgctxt "speed_print description"
  1581. msgid "The speed at which printing happens."
  1582. msgstr "印刷スピード。"
  1583. msgctxt "speed_infill label"
  1584. msgid "Infill Speed"
  1585. msgstr "インフィル速度"
  1586. msgctxt "speed_infill description"
  1587. msgid "The speed at which infill is printed."
  1588. msgstr "インフィルを印刷する速度。"
  1589. msgctxt "speed_wall label"
  1590. msgid "Wall Speed"
  1591. msgstr "ウォール速度"
  1592. msgctxt "speed_wall description"
  1593. msgid "The speed at which the walls are printed."
  1594. msgstr "ウォールを印刷する速度。"
  1595. msgctxt "speed_wall_0 label"
  1596. msgid "Outer Wall Speed"
  1597. msgstr "外壁速度"
  1598. msgctxt "speed_wall_0 description"
  1599. 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."
  1600. msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。"
  1601. msgctxt "speed_wall_x label"
  1602. msgid "Inner Wall Speed"
  1603. msgstr "内壁速度"
  1604. msgctxt "speed_wall_x description"
  1605. 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."
  1606. msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。"
  1607. msgctxt "speed_roofing label"
  1608. msgid "Top Surface Skin Speed"
  1609. msgstr "最上面速度"
  1610. msgctxt "speed_roofing description"
  1611. msgid "The speed at which top surface skin layers are printed."
  1612. msgstr "上部表面プリント時の速度。"
  1613. msgctxt "speed_topbottom label"
  1614. msgid "Top/Bottom Speed"
  1615. msgstr "上面/底面速度"
  1616. msgctxt "speed_topbottom description"
  1617. msgid "The speed at which top/bottom layers are printed."
  1618. msgstr "トップ/ボトムのレイヤーのプリント速度。"
  1619. msgctxt "speed_support label"
  1620. msgid "Support Speed"
  1621. msgstr "サポート速度"
  1622. msgctxt "speed_support description"
  1623. 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."
  1624. msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。"
  1625. msgctxt "speed_support_infill label"
  1626. msgid "Support Infill Speed"
  1627. msgstr "サポートインフィル速度"
  1628. msgctxt "speed_support_infill description"
  1629. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1630. msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。"
  1631. msgctxt "speed_support_interface label"
  1632. msgid "Support Interface Speed"
  1633. msgstr "サポートインタフェース速度"
  1634. msgctxt "speed_support_interface description"
  1635. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1636. msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。"
  1637. msgctxt "speed_support_roof label"
  1638. msgid "Support Roof Speed"
  1639. msgstr "サポートルーフ速度"
  1640. msgctxt "speed_support_roof description"
  1641. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1642. msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。"
  1643. msgctxt "speed_support_bottom label"
  1644. msgid "Support Floor Speed"
  1645. msgstr "サポートフロア速度"
  1646. msgctxt "speed_support_bottom description"
  1647. 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."
  1648. msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。"
  1649. msgctxt "speed_prime_tower label"
  1650. msgid "Prime Tower Speed"
  1651. msgstr "プライムタワー印刷速度"
  1652. msgctxt "speed_prime_tower description"
  1653. 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."
  1654. msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。"
  1655. msgctxt "speed_travel label"
  1656. msgid "Travel Speed"
  1657. msgstr "移動速度"
  1658. msgctxt "speed_travel description"
  1659. msgid "The speed at which travel moves are made."
  1660. msgstr "移動中のスピード。"
  1661. msgctxt "speed_layer_0 label"
  1662. msgid "Initial Layer Speed"
  1663. msgstr "初期レイヤー速度"
  1664. msgctxt "speed_layer_0 description"
  1665. 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."
  1666. msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。"
  1667. msgctxt "speed_print_layer_0 label"
  1668. msgid "Initial Layer Print Speed"
  1669. msgstr "初期レイヤー印刷速度"
  1670. msgctxt "speed_print_layer_0 description"
  1671. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1672. msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。"
  1673. msgctxt "speed_travel_layer_0 label"
  1674. msgid "Initial Layer Travel Speed"
  1675. msgstr "初期レイヤー移動速度"
  1676. msgctxt "speed_travel_layer_0 description"
  1677. 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."
  1678. msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。"
  1679. msgctxt "skirt_brim_speed label"
  1680. msgid "Skirt/Brim Speed"
  1681. msgstr "スカート/ブリム速度"
  1682. msgctxt "skirt_brim_speed description"
  1683. 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."
  1684. msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。"
  1685. msgctxt "speed_z_hop label"
  1686. msgid "Z Hop Speed"
  1687. msgstr "Z 軸ホップ速度"
  1688. msgctxt "speed_z_hop description"
  1689. 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."
  1690. msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。"
  1691. msgctxt "speed_slowdown_layers label"
  1692. msgid "Number of Slower Layers"
  1693. msgstr "遅いレイヤーの数"
  1694. msgctxt "speed_slowdown_layers description"
  1695. 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."
  1696. msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。"
  1697. msgctxt "speed_equalize_flow_width_factor label"
  1698. msgid "Flow Equalization Ratio"
  1699. msgstr "フロー均一化率"
  1700. msgctxt "speed_equalize_flow_width_factor description"
  1701. 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."
  1702. msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。"
  1703. msgctxt "acceleration_enabled label"
  1704. msgid "Enable Acceleration Control"
  1705. msgstr "加速度制御を有効にする"
  1706. msgctxt "acceleration_enabled description"
  1707. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1708. msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。"
  1709. msgctxt "acceleration_travel_enabled label"
  1710. msgid "Enable Travel Acceleration"
  1711. msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする"
  1712. msgctxt "acceleration_travel_enabled description"
  1713. 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."
  1714. msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。"
  1715. msgctxt "acceleration_print label"
  1716. msgid "Print Acceleration"
  1717. msgstr "印刷加速度"
  1718. msgctxt "acceleration_print description"
  1719. msgid "The acceleration with which printing happens."
  1720. msgstr "印刷の加速スピードです。"
  1721. msgctxt "acceleration_infill label"
  1722. msgid "Infill Acceleration"
  1723. msgstr "インフィル加速度"
  1724. msgctxt "acceleration_infill description"
  1725. msgid "The acceleration with which infill is printed."
  1726. msgstr "インフィルの印刷の加速スピード。"
  1727. msgctxt "acceleration_wall label"
  1728. msgid "Wall Acceleration"
  1729. msgstr "ウォール加速度"
  1730. msgctxt "acceleration_wall description"
  1731. msgid "The acceleration with which the walls are printed."
  1732. msgstr "ウォールをプリントする際の加速度。"
  1733. msgctxt "acceleration_wall_0 label"
  1734. msgid "Outer Wall Acceleration"
  1735. msgstr "外壁加速度"
  1736. msgctxt "acceleration_wall_0 description"
  1737. msgid "The acceleration with which the outermost walls are printed."
  1738. msgstr "最も外側の壁をプリントする際の加速度。"
  1739. msgctxt "acceleration_wall_x label"
  1740. msgid "Inner Wall Acceleration"
  1741. msgstr "内壁加速度"
  1742. msgctxt "acceleration_wall_x description"
  1743. msgid "The acceleration with which all inner walls are printed."
  1744. msgstr "内側のウォールがが出力される際のスピード。"
  1745. msgctxt "acceleration_roofing label"
  1746. msgid "Top Surface Skin Acceleration"
  1747. msgstr "最上面加速度"
  1748. msgctxt "acceleration_roofing description"
  1749. msgid "The acceleration with which top surface skin layers are printed."
  1750. msgstr "上部表面プリント時の加速度。"
  1751. msgctxt "acceleration_topbottom label"
  1752. msgid "Top/Bottom Acceleration"
  1753. msgstr "上面/底面加速度"
  1754. msgctxt "acceleration_topbottom description"
  1755. msgid "The acceleration with which top/bottom layers are printed."
  1756. msgstr "トップとボトムのレイヤーの印刷加速度。"
  1757. msgctxt "acceleration_support label"
  1758. msgid "Support Acceleration"
  1759. msgstr "サポート加速度"
  1760. msgctxt "acceleration_support description"
  1761. msgid "The acceleration with which the support structure is printed."
  1762. msgstr "サポート材プリント時の加速スピード。"
  1763. msgctxt "acceleration_support_infill label"
  1764. msgid "Support Infill Acceleration"
  1765. msgstr "サポートインフィル加速度"
  1766. msgctxt "acceleration_support_infill description"
  1767. msgid "The acceleration with which the infill of support is printed."
  1768. msgstr "インフィルのサポート材のプリント時の加速度。"
  1769. msgctxt "acceleration_support_interface label"
  1770. msgid "Support Interface Acceleration"
  1771. msgstr "サポートインタフェース加速度"
  1772. msgctxt "acceleration_support_interface description"
  1773. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1774. msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。"
  1775. msgctxt "acceleration_support_roof label"
  1776. msgid "Support Roof Acceleration"
  1777. msgstr "サポートルーフ加速度"
  1778. msgctxt "acceleration_support_roof description"
  1779. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1780. msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。"
  1781. msgctxt "acceleration_support_bottom label"
  1782. msgid "Support Floor Acceleration"
  1783. msgstr "サポートフロア加速度"
  1784. msgctxt "acceleration_support_bottom description"
  1785. 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."
  1786. msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。"
  1787. msgctxt "acceleration_prime_tower label"
  1788. msgid "Prime Tower Acceleration"
  1789. msgstr "プライムタワー加速度"
  1790. msgctxt "acceleration_prime_tower description"
  1791. msgid "The acceleration with which the prime tower is printed."
  1792. msgstr "プライムタワーの印刷時のスピード。"
  1793. msgctxt "acceleration_travel label"
  1794. msgid "Travel Acceleration"
  1795. msgstr "移動か速度"
  1796. msgctxt "acceleration_travel description"
  1797. msgid "The acceleration with which travel moves are made."
  1798. msgstr "移動中の加速度。"
  1799. msgctxt "acceleration_layer_0 label"
  1800. msgid "Initial Layer Acceleration"
  1801. msgstr "初期レイヤー加速度"
  1802. msgctxt "acceleration_layer_0 description"
  1803. msgid "The acceleration for the initial layer."
  1804. msgstr "初期レイヤーの加速度。"
  1805. msgctxt "acceleration_print_layer_0 label"
  1806. msgid "Initial Layer Print Acceleration"
  1807. msgstr "初期レイヤー印刷加速度"
  1808. msgctxt "acceleration_print_layer_0 description"
  1809. msgid "The acceleration during the printing of the initial layer."
  1810. msgstr "初期レイヤーの印刷中の加速度。"
  1811. msgctxt "acceleration_travel_layer_0 label"
  1812. msgid "Initial Layer Travel Acceleration"
  1813. msgstr "初期レイヤー移動加速度"
  1814. msgctxt "acceleration_travel_layer_0 description"
  1815. msgid "The acceleration for travel moves in the initial layer."
  1816. msgstr "最初のレイヤー時の加速度。"
  1817. msgctxt "acceleration_skirt_brim label"
  1818. msgid "Skirt/Brim Acceleration"
  1819. msgstr "スカート/ブリム加速度"
  1820. msgctxt "acceleration_skirt_brim description"
  1821. 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."
  1822. msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。"
  1823. msgctxt "jerk_enabled label"
  1824. msgid "Enable Jerk Control"
  1825. msgstr "ジャーク制御を有効にする"
  1826. msgctxt "jerk_enabled description"
  1827. 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."
  1828. msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。"
  1829. msgctxt "jerk_travel_enabled label"
  1830. msgid "Enable Travel Jerk"
  1831. msgstr "トラベルジャークを有効にする"
  1832. msgctxt "jerk_travel_enabled description"
  1833. 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."
  1834. msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。"
  1835. msgctxt "jerk_print label"
  1836. msgid "Print Jerk"
  1837. msgstr "印刷ジャーク"
  1838. msgctxt "jerk_print description"
  1839. msgid "The maximum instantaneous velocity change of the print head."
  1840. msgstr "プリントヘッドの最大瞬間速度の変更。"
  1841. msgctxt "jerk_infill label"
  1842. msgid "Infill Jerk"
  1843. msgstr "インフィルジャーク"
  1844. msgctxt "jerk_infill description"
  1845. msgid "The maximum instantaneous velocity change with which infill is printed."
  1846. msgstr "インフィルの印刷時の瞬間速度の変更。"
  1847. msgctxt "jerk_wall label"
  1848. msgid "Wall Jerk"
  1849. msgstr "ウォールジャーク"
  1850. msgctxt "jerk_wall description"
  1851. msgid "The maximum instantaneous velocity change with which the walls are printed."
  1852. msgstr "ウォールのプリント時の最大瞬間速度を変更。"
  1853. msgctxt "jerk_wall_0 label"
  1854. msgid "Outer Wall Jerk"
  1855. msgstr "外壁ジャーク"
  1856. msgctxt "jerk_wall_0 description"
  1857. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  1858. msgstr "外側のウォールが出力される際の最大瞬間速度の変更。"
  1859. msgctxt "jerk_wall_x label"
  1860. msgid "Inner Wall Jerk"
  1861. msgstr "内壁ジャーク"
  1862. msgctxt "jerk_wall_x description"
  1863. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  1864. msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。"
  1865. msgctxt "jerk_roofing label"
  1866. msgid "Top Surface Skin Jerk"
  1867. msgstr "最上面ジャーク"
  1868. msgctxt "jerk_roofing description"
  1869. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  1870. msgstr "上部表面プリント時の最大加速度。"
  1871. msgctxt "jerk_topbottom label"
  1872. msgid "Top/Bottom Jerk"
  1873. msgstr "上面/下面ジャーク"
  1874. msgctxt "jerk_topbottom description"
  1875. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  1876. msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。"
  1877. msgctxt "jerk_support label"
  1878. msgid "Support Jerk"
  1879. msgstr "サポートジャーク"
  1880. msgctxt "jerk_support description"
  1881. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  1882. msgstr "サポート材の印刷時の最大瞬間速度の変更。"
  1883. msgctxt "jerk_support_infill label"
  1884. msgid "Support Infill Jerk"
  1885. msgstr "サポートインフィルジャーク"
  1886. msgctxt "jerk_support_infill description"
  1887. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  1888. msgstr "サポート材の印刷時、最大瞬間速度の変更。"
  1889. msgctxt "jerk_support_interface label"
  1890. msgid "Support Interface Jerk"
  1891. msgstr "サポートインタフェースジャーク"
  1892. msgctxt "jerk_support_interface description"
  1893. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  1894. msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。"
  1895. msgctxt "jerk_support_roof label"
  1896. msgid "Support Roof Jerk"
  1897. msgstr "サポートルーフジャーク"
  1898. msgctxt "jerk_support_roof description"
  1899. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  1900. msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。"
  1901. msgctxt "jerk_support_bottom label"
  1902. msgid "Support Floor Jerk"
  1903. msgstr "サポートフロアジャーク"
  1904. msgctxt "jerk_support_bottom description"
  1905. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  1906. msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。"
  1907. msgctxt "jerk_prime_tower label"
  1908. msgid "Prime Tower Jerk"
  1909. msgstr "プライムタワージャーク"
  1910. msgctxt "jerk_prime_tower description"
  1911. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  1912. msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。"
  1913. msgctxt "jerk_travel label"
  1914. msgid "Travel Jerk"
  1915. msgstr "移動ジャーク"
  1916. msgctxt "jerk_travel description"
  1917. msgid "The maximum instantaneous velocity change with which travel moves are made."
  1918. msgstr "移動する際の最大瞬時速度の変更。"
  1919. msgctxt "jerk_layer_0 label"
  1920. msgid "Initial Layer Jerk"
  1921. msgstr "初期レイヤージャーク"
  1922. msgctxt "jerk_layer_0 description"
  1923. msgid "The print maximum instantaneous velocity change for the initial layer."
  1924. msgstr "初期レイヤーの最大瞬時速度の変更。"
  1925. msgctxt "jerk_print_layer_0 label"
  1926. msgid "Initial Layer Print Jerk"
  1927. msgstr "初期レイヤー印刷ジャーク"
  1928. msgctxt "jerk_print_layer_0 description"
  1929. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  1930. msgstr "初期レイヤー印刷中の最大瞬時速度の変化。"
  1931. msgctxt "jerk_travel_layer_0 label"
  1932. msgid "Initial Layer Travel Jerk"
  1933. msgstr "初期レイヤー移動ジャーク"
  1934. msgctxt "jerk_travel_layer_0 description"
  1935. msgid "The acceleration for travel moves in the initial layer."
  1936. msgstr "移動加速度は最初のレイヤーに適用されます。"
  1937. msgctxt "jerk_skirt_brim label"
  1938. msgid "Skirt/Brim Jerk"
  1939. msgstr "スカート/ブリムジャーク"
  1940. msgctxt "jerk_skirt_brim description"
  1941. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  1942. msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。"
  1943. msgctxt "travel label"
  1944. msgid "Travel"
  1945. msgstr "移動"
  1946. msgctxt "travel description"
  1947. msgid "travel"
  1948. msgstr "移動"
  1949. msgctxt "retraction_enable label"
  1950. msgid "Enable Retraction"
  1951. msgstr "引き戻し有効"
  1952. msgctxt "retraction_enable description"
  1953. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  1954. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  1955. msgctxt "retract_at_layer_change label"
  1956. msgid "Retract at Layer Change"
  1957. msgstr "レイヤー変更時に引き戻す"
  1958. msgctxt "retract_at_layer_change description"
  1959. msgid "Retract the filament when the nozzle is moving to the next layer."
  1960. msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。"
  1961. msgctxt "retraction_amount label"
  1962. msgid "Retraction Distance"
  1963. msgstr "引き戻し距離"
  1964. msgctxt "retraction_amount description"
  1965. msgid "The length of material retracted during a retraction move."
  1966. msgstr "引き戻されるマテリアルの長さ。"
  1967. msgctxt "retraction_speed label"
  1968. msgid "Retraction Speed"
  1969. msgstr "引き戻し速度"
  1970. msgctxt "retraction_speed description"
  1971. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1972. msgstr "フィラメントが引き戻される時のスピード。"
  1973. msgctxt "retraction_retract_speed label"
  1974. msgid "Retraction Retract Speed"
  1975. msgstr "引き戻し速度の取り消し"
  1976. msgctxt "retraction_retract_speed description"
  1977. msgid "The speed at which the filament is retracted during a retraction move."
  1978. msgstr "フィラメントが引き戻される時のスピード。"
  1979. msgctxt "retraction_prime_speed label"
  1980. msgid "Retraction Prime Speed"
  1981. msgstr "押し戻し速度の取り消し"
  1982. msgctxt "retraction_prime_speed description"
  1983. msgid "The speed at which the filament is primed during a retraction move."
  1984. msgstr "フィラメントが引き戻される時のスピード。"
  1985. msgctxt "retraction_extra_prime_amount label"
  1986. msgid "Retraction Extra Prime Amount"
  1987. msgstr "余分な押し戻し量の引き戻し"
  1988. msgctxt "retraction_extra_prime_amount description"
  1989. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1990. msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。"
  1991. msgctxt "retraction_min_travel label"
  1992. msgid "Retraction Minimum Travel"
  1993. msgstr "引き戻し最小移動距離"
  1994. msgctxt "retraction_min_travel description"
  1995. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1996. msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。"
  1997. msgctxt "retraction_count_max label"
  1998. msgid "Maximum Retraction Count"
  1999. msgstr "最大引き戻し回数"
  2000. msgctxt "retraction_count_max description"
  2001. 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."
  2002. msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。"
  2003. msgctxt "retraction_extrusion_window label"
  2004. msgid "Minimum Extrusion Distance Window"
  2005. msgstr "最小抽出距離範囲"
  2006. msgctxt "retraction_extrusion_window description"
  2007. 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."
  2008. msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。"
  2009. msgctxt "retraction_combing label"
  2010. msgid "Combing Mode"
  2011. msgstr "コーミングモード"
  2012. msgctxt "retraction_combing description"
  2013. 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."
  2014. msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。"
  2015. msgctxt "retraction_combing option off"
  2016. msgid "Off"
  2017. msgstr "オフ"
  2018. msgctxt "retraction_combing option all"
  2019. msgid "All"
  2020. msgstr "すべて"
  2021. msgctxt "retraction_combing option no_outer_surfaces"
  2022. msgid "Not on Outer Surface"
  2023. msgstr "外側表面には適用しない"
  2024. msgctxt "retraction_combing option noskin"
  2025. msgid "Not in Skin"
  2026. msgstr "スキン内にない"
  2027. msgctxt "retraction_combing option infill"
  2028. msgid "Within Infill"
  2029. msgstr "インフィル内"
  2030. msgctxt "retraction_combing_max_distance label"
  2031. msgid "Max Comb Distance With No Retract"
  2032. msgstr "引き戻しのない最大コム距離"
  2033. msgctxt "retraction_combing_max_distance description"
  2034. 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."
  2035. msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。"
  2036. msgctxt "travel_retract_before_outer_wall label"
  2037. msgid "Retract Before Outer Wall"
  2038. msgstr "外壁の前に引き戻す"
  2039. msgctxt "travel_retract_before_outer_wall description"
  2040. msgid "Always retract when moving to start an outer wall."
  2041. msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。"
  2042. msgctxt "travel_avoid_other_parts label"
  2043. msgid "Avoid Printed Parts When Traveling"
  2044. msgstr "移動は印刷したパーツを回避する"
  2045. msgctxt "travel_avoid_other_parts description"
  2046. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2047. msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  2048. msgctxt "travel_avoid_supports label"
  2049. msgid "Avoid Supports When Traveling"
  2050. msgstr "移動はサポートを回避する"
  2051. msgctxt "travel_avoid_supports description"
  2052. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2053. msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。"
  2054. msgctxt "travel_avoid_distance label"
  2055. msgid "Travel Avoid Distance"
  2056. msgstr "移動回避距離"
  2057. msgctxt "travel_avoid_distance description"
  2058. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2059. msgstr "ノズルが既に印刷された部分を移動する際の間隔。"
  2060. msgctxt "layer_start_x label"
  2061. msgid "Layer Start X"
  2062. msgstr "レイヤー始点X"
  2063. msgctxt "layer_start_x description"
  2064. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2065. msgstr "各レイヤーのプリントを開始する部分をしめすX座標。"
  2066. msgctxt "layer_start_y label"
  2067. msgid "Layer Start Y"
  2068. msgstr "レイヤー始点Y"
  2069. msgctxt "layer_start_y description"
  2070. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2071. msgstr "各レイヤーのプリントを開始する部分をしめすY座標。"
  2072. msgctxt "retraction_hop_enabled label"
  2073. msgid "Z Hop When Retracted"
  2074. msgstr "引き戻し時のZホップ"
  2075. msgctxt "retraction_hop_enabled description"
  2076. 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."
  2077. msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
  2078. msgctxt "retraction_hop_only_when_collides label"
  2079. msgid "Z Hop Only Over Printed Parts"
  2080. msgstr "印刷パーツに対するZホップ"
  2081. msgctxt "retraction_hop_only_when_collides description"
  2082. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2083. msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。"
  2084. msgctxt "retraction_hop label"
  2085. msgid "Z Hop Height"
  2086. msgstr "Zホップ高さ"
  2087. msgctxt "retraction_hop description"
  2088. msgid "The height difference when performing a Z Hop."
  2089. msgstr "Zホップを実行するときの高さ。"
  2090. msgctxt "retraction_hop_after_extruder_switch label"
  2091. msgid "Z Hop After Extruder Switch"
  2092. msgstr "エクストルーダースイッチ後のZホップ"
  2093. msgctxt "retraction_hop_after_extruder_switch description"
  2094. 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."
  2095. msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。"
  2096. msgctxt "retraction_hop_after_extruder_switch_height label"
  2097. msgid "Z Hop After Extruder Switch Height"
  2098. msgstr "エクストルーダースイッチ高さ後のZホップ"
  2099. msgctxt "retraction_hop_after_extruder_switch_height description"
  2100. msgid "The height difference when performing a Z Hop after extruder switch."
  2101. msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。"
  2102. msgctxt "cooling label"
  2103. msgid "Cooling"
  2104. msgstr "冷却"
  2105. msgctxt "cooling description"
  2106. msgid "Cooling"
  2107. msgstr "冷却"
  2108. msgctxt "cool_fan_enabled label"
  2109. msgid "Enable Print Cooling"
  2110. msgstr "印刷中の冷却を有効にする"
  2111. msgctxt "cool_fan_enabled description"
  2112. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2113. msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。"
  2114. msgctxt "cool_fan_speed label"
  2115. msgid "Fan Speed"
  2116. msgstr "ファン速度"
  2117. msgctxt "cool_fan_speed description"
  2118. msgid "The speed at which the print cooling fans spin."
  2119. msgstr "冷却ファンが回転する速度。"
  2120. msgctxt "cool_fan_speed_min label"
  2121. msgid "Regular Fan Speed"
  2122. msgstr "標準ファン速度"
  2123. msgctxt "cool_fan_speed_min description"
  2124. 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."
  2125. msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。"
  2126. msgctxt "cool_fan_speed_max label"
  2127. msgid "Maximum Fan Speed"
  2128. msgstr "最大ファン速度"
  2129. msgctxt "cool_fan_speed_max description"
  2130. 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."
  2131. msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。"
  2132. msgctxt "cool_min_layer_time_fan_speed_max label"
  2133. msgid "Regular/Maximum Fan Speed Threshold"
  2134. msgstr "標準/最大ファン速度のしきい値"
  2135. msgctxt "cool_min_layer_time_fan_speed_max description"
  2136. 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."
  2137. msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。"
  2138. msgctxt "cool_fan_speed_0 label"
  2139. msgid "Initial Fan Speed"
  2140. msgstr "初期ファン速度"
  2141. msgctxt "cool_fan_speed_0 description"
  2142. 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."
  2143. msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。"
  2144. msgctxt "cool_fan_full_at_height label"
  2145. msgid "Regular Fan Speed at Height"
  2146. msgstr "標準ファン速度時の高さ"
  2147. msgctxt "cool_fan_full_at_height description"
  2148. 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."
  2149. msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。"
  2150. msgctxt "cool_fan_full_layer label"
  2151. msgid "Regular Fan Speed at Layer"
  2152. msgstr "標準ファン速度時のレイヤー"
  2153. msgctxt "cool_fan_full_layer description"
  2154. 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."
  2155. msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。"
  2156. msgctxt "cool_min_layer_time label"
  2157. msgid "Minimum Layer Time"
  2158. msgstr "最小レイヤー時間"
  2159. msgctxt "cool_min_layer_time description"
  2160. 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."
  2161. msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。"
  2162. msgctxt "cool_min_speed label"
  2163. msgid "Minimum Speed"
  2164. msgstr "最低速度"
  2165. msgctxt "cool_min_speed description"
  2166. 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."
  2167. msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。"
  2168. msgctxt "cool_lift_head label"
  2169. msgid "Lift Head"
  2170. msgstr "ヘッド持ち上げ"
  2171. msgctxt "cool_lift_head description"
  2172. 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."
  2173. msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。"
  2174. msgctxt "cool_min_temperature label"
  2175. msgid "Small Layer Printing Temperature"
  2176. msgstr "小さいレイヤーのプリント温度"
  2177. msgctxt "cool_min_temperature description"
  2178. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  2179. msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。"
  2180. msgctxt "support label"
  2181. msgid "Support"
  2182. msgstr "サポート"
  2183. msgctxt "support description"
  2184. msgid "Support"
  2185. msgstr "サポート"
  2186. msgctxt "support_enable label"
  2187. msgid "Generate Support"
  2188. msgstr "サポート開始"
  2189. msgctxt "support_enable description"
  2190. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2191. msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。"
  2192. msgctxt "support_extruder_nr label"
  2193. msgid "Support Extruder"
  2194. msgstr "サポート用エクストルーダー"
  2195. msgctxt "support_extruder_nr description"
  2196. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2197. msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  2198. msgctxt "support_infill_extruder_nr label"
  2199. msgid "Support Infill Extruder"
  2200. msgstr "サポート用インフィルエクストルーダー"
  2201. msgctxt "support_infill_extruder_nr description"
  2202. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2203. msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  2204. msgctxt "support_extruder_nr_layer_0 label"
  2205. msgid "First Layer Support Extruder"
  2206. msgstr "最初のレイヤー用サポートエクストルーダー"
  2207. msgctxt "support_extruder_nr_layer_0 description"
  2208. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2209. msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。"
  2210. msgctxt "support_interface_extruder_nr label"
  2211. msgid "Support Interface Extruder"
  2212. msgstr "サポートインタフェースエクストルーダー"
  2213. msgctxt "support_interface_extruder_nr description"
  2214. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2215. msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。"
  2216. msgctxt "support_roof_extruder_nr label"
  2217. msgid "Support Roof Extruder"
  2218. msgstr "サポートルーフエクストルーダー"
  2219. msgctxt "support_roof_extruder_nr description"
  2220. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2221. msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。"
  2222. msgctxt "support_bottom_extruder_nr label"
  2223. msgid "Support Floor Extruder"
  2224. msgstr "サポートフロアエクストルーダー"
  2225. msgctxt "support_bottom_extruder_nr description"
  2226. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2227. msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。"
  2228. msgctxt "support_structure label"
  2229. msgid "Support Structure"
  2230. msgstr "サポート構造"
  2231. msgctxt "support_structure description"
  2232. 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."
  2233. msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。"
  2234. msgctxt "support_structure option normal"
  2235. msgid "Normal"
  2236. msgstr "標準"
  2237. msgctxt "support_structure option tree"
  2238. msgid "Tree"
  2239. msgstr "ツリー"
  2240. msgctxt "support_tree_angle label"
  2241. msgid "Maximum Branch Angle"
  2242. msgstr "最大枝角度"
  2243. msgctxt "support_tree_angle description"
  2244. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  2245. msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。"
  2246. msgctxt "support_tree_branch_diameter label"
  2247. msgid "Branch Diameter"
  2248. msgstr "枝直径"
  2249. msgctxt "support_tree_branch_diameter description"
  2250. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2251. msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。"
  2252. msgctxt "support_tree_max_diameter label"
  2253. msgid "Trunk Diameter"
  2254. msgstr "本体直径"
  2255. msgctxt "support_tree_max_diameter description"
  2256. 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."
  2257. msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。"
  2258. msgctxt "support_tree_branch_diameter_angle label"
  2259. msgid "Branch Diameter Angle"
  2260. msgstr "枝直径角度"
  2261. msgctxt "support_tree_branch_diameter_angle description"
  2262. 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."
  2263. msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。"
  2264. msgctxt "support_type label"
  2265. msgid "Support Placement"
  2266. msgstr "サポート配置"
  2267. msgctxt "support_type option buildplate"
  2268. msgid "Touching Buildplate"
  2269. msgstr "ビルドプレートにタッチ"
  2270. msgctxt "support_type option everywhere"
  2271. msgid "Everywhere"
  2272. msgstr "全対象"
  2273. msgctxt "support_tree_angle_slow label"
  2274. msgid "Preferred Branch Angle"
  2275. msgstr "希望枝角度"
  2276. msgctxt "support_tree_angle_slow description"
  2277. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  2278. msgstr "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。"
  2279. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  2280. msgid "Diameter Increase To Model"
  2281. msgstr "モデルと接続される枝の直径増加"
  2282. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  2283. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  2284. msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。"
  2285. msgctxt "support_tree_min_height_to_model label"
  2286. msgid "Minimum Height To Model"
  2287. msgstr "モデルに対する最小高さ"
  2288. msgctxt "support_tree_min_height_to_model description"
  2289. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  2290. msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。"
  2291. msgctxt "support_tree_bp_diameter label"
  2292. msgid "Initial Layer Diameter"
  2293. msgstr "初期レイヤー直径"
  2294. msgctxt "support_tree_bp_diameter description"
  2295. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  2296. msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。"
  2297. msgctxt "support_tree_top_rate label"
  2298. msgid "Branch Density"
  2299. msgstr "枝密度"
  2300. msgctxt "support_tree_top_rate description"
  2301. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  2302. msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。"
  2303. msgctxt "support_tree_tip_diameter label"
  2304. msgid "Tip Diameter"
  2305. msgstr "先端直径"
  2306. msgctxt "support_tree_tip_diameter description"
  2307. msgid "The diameter of the top of the tip of the branches of tree support."
  2308. msgstr "ツリーサポートの枝の上部先端の直径。"
  2309. msgctxt "support_tree_limit_branch_reach label"
  2310. msgid "Limit Branch Reach"
  2311. msgstr "枝到達距離制限"
  2312. msgctxt "support_tree_limit_branch_reach description"
  2313. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  2314. msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。"
  2315. msgctxt "support_tree_branch_reach_limit label"
  2316. msgid "Optimal Branch Range"
  2317. msgstr "最適な枝範囲"
  2318. msgctxt "support_tree_branch_reach_limit description"
  2319. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  2320. msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。"
  2321. msgctxt "support_tree_rest_preference label"
  2322. msgid "Rest Preference"
  2323. msgstr "希望配置"
  2324. msgctxt "support_tree_rest_preference description"
  2325. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  2326. msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。"
  2327. msgctxt "support_tree_rest_preference option buildplate"
  2328. msgid "On buildplate when possible"
  2329. msgstr "可能な場合はビルドプレート上に配置"
  2330. msgctxt "support_tree_rest_preference option graceful"
  2331. msgid "On model if required"
  2332. msgstr "必要に応じてモデル上に配置"
  2333. msgctxt "support_angle label"
  2334. msgid "Support Overhang Angle"
  2335. msgstr "サポートオーバーハング角度"
  2336. msgctxt "support_angle description"
  2337. 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."
  2338. msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。"
  2339. msgctxt "support_pattern label"
  2340. msgid "Support Pattern"
  2341. msgstr "サポートパターン"
  2342. msgctxt "support_pattern description"
  2343. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2344. msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。"
  2345. msgctxt "support_pattern option lines"
  2346. msgid "Lines"
  2347. msgstr "ライン"
  2348. msgctxt "support_pattern option grid"
  2349. msgid "Grid"
  2350. msgstr "グリッド"
  2351. msgctxt "support_pattern option triangles"
  2352. msgid "Triangles"
  2353. msgstr "トライアングル"
  2354. msgctxt "support_pattern option concentric"
  2355. msgid "Concentric"
  2356. msgstr "同心円"
  2357. msgctxt "support_pattern option zigzag"
  2358. msgid "Zig Zag"
  2359. msgstr "ジグザグ"
  2360. msgctxt "support_pattern option cross"
  2361. msgid "Cross"
  2362. msgstr "クロス"
  2363. msgctxt "support_pattern option gyroid"
  2364. msgid "Gyroid"
  2365. msgstr "ジャイロイド"
  2366. msgctxt "support_wall_count label"
  2367. msgid "Support Wall Line Count"
  2368. msgstr "サポートウォールライン数"
  2369. msgctxt "support_wall_count description"
  2370. 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."
  2371. msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  2372. msgctxt "support_interface_wall_count label"
  2373. msgid "Support Interface Wall Line Count"
  2374. msgstr "サポートインターフェースのウォールライン数"
  2375. msgctxt "support_interface_wall_count description"
  2376. 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."
  2377. msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  2378. msgctxt "support_roof_wall_count label"
  2379. msgid "Support Roof Wall Line Count"
  2380. msgstr "サポートルーフウォールライン数"
  2381. msgctxt "support_roof_wall_count description"
  2382. 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."
  2383. msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  2384. msgctxt "support_bottom_wall_count label"
  2385. msgid "Support Bottom Wall Line Count"
  2386. msgstr "サポート底面ウォールライン数"
  2387. msgctxt "support_bottom_wall_count description"
  2388. 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."
  2389. msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。"
  2390. msgctxt "zig_zaggify_support label"
  2391. msgid "Connect Support Lines"
  2392. msgstr "サポートライン接続"
  2393. msgctxt "zig_zaggify_support description"
  2394. 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."
  2395. msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。"
  2396. msgctxt "support_connect_zigzags label"
  2397. msgid "Connect Support ZigZags"
  2398. msgstr "サポートジグザグ接続"
  2399. msgctxt "support_connect_zigzags description"
  2400. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2401. msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。"
  2402. msgctxt "support_infill_rate label"
  2403. msgid "Support Density"
  2404. msgstr "サポート密度"
  2405. msgctxt "support_infill_rate description"
  2406. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2407. msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。"
  2408. msgctxt "support_line_distance label"
  2409. msgid "Support Line Distance"
  2410. msgstr "サポートライン距離"
  2411. msgctxt "support_line_distance description"
  2412. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2413. msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。"
  2414. msgctxt "support_initial_layer_line_distance label"
  2415. msgid "Initial Layer Support Line Distance"
  2416. msgstr "初期層サポートラインの距離"
  2417. msgctxt "support_initial_layer_line_distance description"
  2418. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2419. msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。"
  2420. msgctxt "support_infill_angles label"
  2421. msgid "Support Infill Line Directions"
  2422. msgstr "サポートインフィルラインの向き"
  2423. msgctxt "support_infill_angles description"
  2424. 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."
  2425. msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。"
  2426. msgctxt "support_brim_enable label"
  2427. msgid "Enable Support Brim"
  2428. msgstr "サポートブリムを有効にする"
  2429. msgctxt "support_brim_enable description"
  2430. 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."
  2431. msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。"
  2432. msgctxt "support_brim_width label"
  2433. msgid "Support Brim Width"
  2434. msgstr "サポートブリムの幅"
  2435. msgctxt "support_brim_width description"
  2436. 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."
  2437. msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。"
  2438. msgctxt "support_brim_line_count label"
  2439. msgid "Support Brim Line Count"
  2440. msgstr "サポートブリムのライン数"
  2441. msgctxt "support_brim_line_count description"
  2442. 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."
  2443. msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。"
  2444. msgctxt "support_z_distance label"
  2445. msgid "Support Z Distance"
  2446. msgstr "サポートZ距離"
  2447. msgctxt "support_z_distance description"
  2448. 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."
  2449. msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。"
  2450. msgctxt "support_top_distance label"
  2451. msgid "Support Top Distance"
  2452. msgstr "サポート上部距離"
  2453. msgctxt "support_top_distance description"
  2454. msgid "Distance from the top of the support to the print."
  2455. msgstr "サポートの上部から印刷物までの距離。"
  2456. msgctxt "support_bottom_distance label"
  2457. msgid "Support Bottom Distance"
  2458. msgstr "サポート底部距離"
  2459. msgctxt "support_bottom_distance description"
  2460. msgid "Distance from the print to the bottom of the support."
  2461. msgstr "印刷物とサポート材底部までの距離。"
  2462. msgctxt "support_xy_distance label"
  2463. msgid "Support X/Y Distance"
  2464. msgstr "サポートX/Y距離"
  2465. msgctxt "support_xy_distance description"
  2466. msgid "Distance of the support structure from the print in the X/Y directions."
  2467. msgstr "印刷物からX/Y方向へのサポート材との距離。"
  2468. msgctxt "support_xy_overrides_z label"
  2469. msgid "Support Distance Priority"
  2470. msgstr "サポート距離優先順位"
  2471. msgctxt "support_xy_overrides_z description"
  2472. 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."
  2473. msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。"
  2474. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2475. msgid "X/Y overrides Z"
  2476. msgstr "X/YがZを上書き"
  2477. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2478. msgid "Z overrides X/Y"
  2479. msgstr "ZがX/Yを上書き"
  2480. msgctxt "support_xy_distance_overhang label"
  2481. msgid "Minimum Support X/Y Distance"
  2482. msgstr "最小サポートX/Y距離"
  2483. msgctxt "support_xy_distance_overhang description"
  2484. msgid "Distance of the support structure from the overhang in the X/Y directions."
  2485. msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。"
  2486. msgctxt "support_bottom_stair_step_height label"
  2487. msgid "Support Stair Step Height"
  2488. msgstr "サポート階段高さ"
  2489. msgctxt "support_bottom_stair_step_height description"
  2490. 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."
  2491. msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。"
  2492. msgctxt "support_bottom_stair_step_width label"
  2493. msgid "Support Stair Step Maximum Width"
  2494. msgstr "サポート階段最大幅"
  2495. msgctxt "support_bottom_stair_step_width description"
  2496. 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."
  2497. msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。"
  2498. msgctxt "support_bottom_stair_step_min_slope label"
  2499. msgid "Support Stair Step Minimum Slope Angle"
  2500. msgstr "サポートステアステップ最小傾斜角度"
  2501. msgctxt "support_bottom_stair_step_min_slope description"
  2502. 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."
  2503. msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。"
  2504. msgctxt "support_join_distance label"
  2505. msgid "Support Join Distance"
  2506. msgstr "サポート接合距離"
  2507. msgctxt "support_join_distance description"
  2508. 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."
  2509. msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。"
  2510. msgctxt "support_offset label"
  2511. msgid "Support Horizontal Expansion"
  2512. msgstr "サポート水平展開"
  2513. msgctxt "support_offset description"
  2514. 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."
  2515. msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。"
  2516. msgctxt "support_infill_sparse_thickness label"
  2517. msgid "Support Infill Layer Thickness"
  2518. msgstr "サポートインフィルレイヤー厚さ"
  2519. msgctxt "support_infill_sparse_thickness description"
  2520. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2521. msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。"
  2522. msgctxt "gradual_support_infill_steps label"
  2523. msgid "Gradual Support Infill Steps"
  2524. msgstr "サポートインフィル半減回数"
  2525. msgctxt "gradual_support_infill_steps description"
  2526. 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."
  2527. msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。"
  2528. msgctxt "gradual_support_infill_step_height label"
  2529. msgid "Gradual Support Infill Step Height"
  2530. msgstr "サポートインフィル半減前の高さ"
  2531. msgctxt "gradual_support_infill_step_height description"
  2532. msgid "The height of support infill of a given density before switching to half the density."
  2533. msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。"
  2534. msgctxt "minimum_support_area label"
  2535. msgid "Minimum Support Area"
  2536. msgstr "最小サポート領域"
  2537. msgctxt "minimum_support_area description"
  2538. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2539. msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
  2540. msgctxt "support_interface_enable label"
  2541. msgid "Enable Support Interface"
  2542. msgstr "サポートインタフェースを有効にする"
  2543. msgctxt "support_interface_enable description"
  2544. 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."
  2545. msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。"
  2546. msgctxt "support_roof_enable label"
  2547. msgid "Enable Support Roof"
  2548. msgstr "サポートルーフを有効にする"
  2549. msgctxt "support_roof_enable description"
  2550. 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."
  2551. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  2552. msgctxt "support_bottom_enable label"
  2553. msgid "Enable Support Floor"
  2554. msgstr "サポートフロアを有効にする"
  2555. msgctxt "support_bottom_enable description"
  2556. 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."
  2557. msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。"
  2558. msgctxt "support_interface_height label"
  2559. msgid "Support Interface Thickness"
  2560. msgstr "サポートインタフェース厚さ"
  2561. msgctxt "support_interface_height description"
  2562. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2563. msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。"
  2564. msgctxt "support_roof_height label"
  2565. msgid "Support Roof Thickness"
  2566. msgstr "サポートルーフ厚さ"
  2567. msgctxt "support_roof_height description"
  2568. 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."
  2569. msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。"
  2570. msgctxt "support_bottom_height label"
  2571. msgid "Support Floor Thickness"
  2572. msgstr "サポートフロア厚さ"
  2573. msgctxt "support_bottom_height description"
  2574. 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."
  2575. msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。"
  2576. msgctxt "support_interface_skip_height label"
  2577. msgid "Support Interface Resolution"
  2578. msgstr "サポートインタフェース解像度"
  2579. msgctxt "support_interface_skip_height description"
  2580. 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."
  2581. msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。"
  2582. msgctxt "support_interface_density label"
  2583. msgid "Support Interface Density"
  2584. msgstr "サポートインタフェース密度"
  2585. msgctxt "support_interface_density description"
  2586. 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."
  2587. msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。"
  2588. msgctxt "support_roof_density label"
  2589. msgid "Support Roof Density"
  2590. msgstr "サポートルーフ密度"
  2591. msgctxt "support_roof_density description"
  2592. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2593. msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。"
  2594. msgctxt "support_roof_line_distance label"
  2595. msgid "Support Roof Line Distance"
  2596. msgstr "サポートルーフライン距離"
  2597. msgctxt "support_roof_line_distance description"
  2598. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2599. msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。"
  2600. msgctxt "support_bottom_density label"
  2601. msgid "Support Floor Density"
  2602. msgstr "サポートフロア密度"
  2603. msgctxt "support_bottom_density description"
  2604. 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."
  2605. msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。"
  2606. msgctxt "support_bottom_line_distance label"
  2607. msgid "Support Floor Line Distance"
  2608. msgstr "サポートフロアライン距離"
  2609. msgctxt "support_bottom_line_distance description"
  2610. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2611. msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。"
  2612. msgctxt "support_interface_pattern label"
  2613. msgid "Support Interface Pattern"
  2614. msgstr "サポートインタフェースパターン"
  2615. msgctxt "support_interface_pattern description"
  2616. msgid "The pattern with which the interface of the support with the model is printed."
  2617. msgstr "モデルとサポートのインタフェースが印刷されるパターン。"
  2618. msgctxt "support_interface_pattern option lines"
  2619. msgid "Lines"
  2620. msgstr "ライン"
  2621. msgctxt "support_interface_pattern option grid"
  2622. msgid "Grid"
  2623. msgstr "グリッド"
  2624. msgctxt "support_interface_pattern option triangles"
  2625. msgid "Triangles"
  2626. msgstr "トライアングル"
  2627. msgctxt "support_interface_pattern option concentric"
  2628. msgid "Concentric"
  2629. msgstr "同心円"
  2630. msgctxt "support_interface_pattern option zigzag"
  2631. msgid "Zig Zag"
  2632. msgstr "ジグザグ"
  2633. msgctxt "support_roof_pattern label"
  2634. msgid "Support Roof Pattern"
  2635. msgstr "サポートルーフパターン"
  2636. msgctxt "support_roof_pattern description"
  2637. msgid "The pattern with which the roofs of the support are printed."
  2638. msgstr "サポートのルーフが印刷されるパターン。"
  2639. msgctxt "support_roof_pattern option lines"
  2640. msgid "Lines"
  2641. msgstr "ライン"
  2642. msgctxt "support_roof_pattern option grid"
  2643. msgid "Grid"
  2644. msgstr "グリッド"
  2645. msgctxt "support_roof_pattern option triangles"
  2646. msgid "Triangles"
  2647. msgstr "トライアングル"
  2648. msgctxt "support_roof_pattern option concentric"
  2649. msgid "Concentric"
  2650. msgstr "同心円"
  2651. msgctxt "support_roof_pattern option zigzag"
  2652. msgid "Zig Zag"
  2653. msgstr "ジグザグ"
  2654. msgctxt "support_bottom_pattern label"
  2655. msgid "Support Floor Pattern"
  2656. msgstr "サポートフロアパターン"
  2657. msgctxt "support_bottom_pattern description"
  2658. msgid "The pattern with which the floors of the support are printed."
  2659. msgstr "サポートのフロアが印刷されるパターン。"
  2660. msgctxt "support_bottom_pattern option lines"
  2661. msgid "Lines"
  2662. msgstr "ライン"
  2663. msgctxt "support_bottom_pattern option grid"
  2664. msgid "Grid"
  2665. msgstr "グリッド"
  2666. msgctxt "support_bottom_pattern option triangles"
  2667. msgid "Triangles"
  2668. msgstr "トライアングル"
  2669. msgctxt "support_bottom_pattern option concentric"
  2670. msgid "Concentric"
  2671. msgstr "同心円"
  2672. msgctxt "support_bottom_pattern option zigzag"
  2673. msgid "Zig Zag"
  2674. msgstr "ジグザグ"
  2675. msgctxt "minimum_interface_area label"
  2676. msgid "Minimum Support Interface Area"
  2677. msgstr "最小サポートインターフェイス領域"
  2678. msgctxt "minimum_interface_area description"
  2679. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2680. msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2681. msgctxt "minimum_roof_area label"
  2682. msgid "Minimum Support Roof Area"
  2683. msgstr "最小サポートルーフ領域"
  2684. msgctxt "minimum_roof_area description"
  2685. 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."
  2686. msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2687. msgctxt "minimum_bottom_area label"
  2688. msgid "Minimum Support Floor Area"
  2689. msgstr "最小サポートフロア領域"
  2690. msgctxt "minimum_bottom_area description"
  2691. 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."
  2692. msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。"
  2693. msgctxt "support_interface_offset label"
  2694. msgid "Support Interface Horizontal Expansion"
  2695. msgstr "サポートインターフェイス水平展開"
  2696. msgctxt "support_interface_offset description"
  2697. msgid "Amount of offset applied to the support interface polygons."
  2698. msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。"
  2699. msgctxt "support_roof_offset label"
  2700. msgid "Support Roof Horizontal Expansion"
  2701. msgstr "サポートルーフ水平展開"
  2702. msgctxt "support_roof_offset description"
  2703. msgid "Amount of offset applied to the roofs of the support."
  2704. msgstr "サポートのルーフに適用されるオフセット量。"
  2705. msgctxt "support_bottom_offset label"
  2706. msgid "Support Floor Horizontal Expansion"
  2707. msgstr "サポートフロア水平展開"
  2708. msgctxt "support_bottom_offset description"
  2709. msgid "Amount of offset applied to the floors of the support."
  2710. msgstr "サポートのフロアに適用されるオフセット量。"
  2711. msgctxt "support_interface_priority label"
  2712. msgid "Support Interface Priority"
  2713. msgstr "サポートインターフェイスの優先順位"
  2714. msgctxt "support_interface_priority description"
  2715. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  2716. msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。"
  2717. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2718. msgid "Support preferred"
  2719. msgstr "サポートを優先"
  2720. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  2721. msgid "Interface preferred"
  2722. msgstr "インターフェイスを優先"
  2723. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2724. msgid "Support lines preferred"
  2725. msgstr "サポートラインを優先"
  2726. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  2727. msgid "Interface lines preferred"
  2728. msgstr "インターフェイスラインを優先"
  2729. msgctxt "support_interface_priority option nothing"
  2730. msgid "Both overlap"
  2731. msgstr "両方重ねる"
  2732. msgctxt "support_interface_angles label"
  2733. msgid "Support Interface Line Directions"
  2734. msgstr "サポート面のライン方向"
  2735. msgctxt "support_interface_angles description"
  2736. 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)."
  2737. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  2738. msgctxt "support_roof_angles label"
  2739. msgid "Support Roof Line Directions"
  2740. msgstr "サポートルーフライン方向"
  2741. msgctxt "support_roof_angles description"
  2742. 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)."
  2743. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  2744. msgctxt "support_bottom_angles label"
  2745. msgid "Support Floor Line Directions"
  2746. msgstr "サポートフロアライン方向"
  2747. msgctxt "support_bottom_angles description"
  2748. 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)."
  2749. msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。"
  2750. msgctxt "support_fan_enable label"
  2751. msgid "Fan Speed Override"
  2752. msgstr "ファン速度上書き"
  2753. msgctxt "support_fan_enable description"
  2754. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  2755. msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。"
  2756. msgctxt "support_supported_skin_fan_speed label"
  2757. msgid "Supported Skin Fan Speed"
  2758. msgstr "サポート対象スキンファン速度"
  2759. msgctxt "support_supported_skin_fan_speed description"
  2760. 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."
  2761. msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。"
  2762. msgctxt "support_use_towers label"
  2763. msgid "Use Towers"
  2764. msgstr "使用タワー"
  2765. msgctxt "support_use_towers description"
  2766. 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."
  2767. msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。"
  2768. msgctxt "support_tower_diameter label"
  2769. msgid "Tower Diameter"
  2770. msgstr "タワー直径"
  2771. msgctxt "support_tower_diameter description"
  2772. msgid "The diameter of a special tower."
  2773. msgstr "特別な塔の直径。"
  2774. msgctxt "support_tower_maximum_supported_diameter label"
  2775. msgid "Maximum Tower-Supported Diameter"
  2776. msgstr "最大タワーサポート直径"
  2777. msgctxt "support_tower_maximum_supported_diameter description"
  2778. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2779. msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。"
  2780. msgctxt "support_tower_roof_angle label"
  2781. msgid "Tower Roof Angle"
  2782. msgstr "タワールーフ角度"
  2783. msgctxt "support_tower_roof_angle description"
  2784. 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."
  2785. msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。"
  2786. msgctxt "support_mesh_drop_down label"
  2787. msgid "Drop Down Support Mesh"
  2788. msgstr "サポートメッシュの下処理"
  2789. msgctxt "support_mesh_drop_down description"
  2790. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2791. msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。"
  2792. msgctxt "support_meshes_present label"
  2793. msgid "Scene Has Support Meshes"
  2794. msgstr "シーンにサポートメッシュがある"
  2795. msgctxt "support_meshes_present description"
  2796. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  2797. msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。"
  2798. msgctxt "prime_blob_enable label"
  2799. msgid "Enable Prime Blob"
  2800. msgstr "プライムボルブを有効にする"
  2801. msgctxt "prime_blob_enable description"
  2802. 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."
  2803. msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。"
  2804. msgctxt "adhesion_type label"
  2805. msgid "Build Plate Adhesion Type"
  2806. msgstr "ビルドプレート接着タイプ"
  2807. msgctxt "adhesion_type description"
  2808. 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."
  2809. msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。"
  2810. msgctxt "adhesion_type option skirt"
  2811. msgid "Skirt"
  2812. msgstr "スカート"
  2813. msgctxt "adhesion_type option brim"
  2814. msgid "Brim"
  2815. msgstr "ブリム"
  2816. msgctxt "adhesion_type option raft"
  2817. msgid "Raft"
  2818. msgstr "ラフト"
  2819. msgctxt "adhesion_type option none"
  2820. msgid "None"
  2821. msgstr "なし"
  2822. msgctxt "adhesion_extruder_nr label"
  2823. msgid "Build Plate Adhesion Extruder"
  2824. msgstr "ビルドプレート接着エクストルーダー"
  2825. msgctxt "adhesion_extruder_nr description"
  2826. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2827. msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。"
  2828. msgctxt "skirt_brim_extruder_nr label"
  2829. msgid "Skirt/Brim Extruder"
  2830. msgstr "スカート/ブリムエクストルーダー"
  2831. msgctxt "skirt_brim_extruder_nr description"
  2832. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2833. msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  2834. msgctxt "raft_base_extruder_nr label"
  2835. msgid "Raft Base Extruder"
  2836. msgstr "ラフトベースエクストルーダー"
  2837. msgctxt "raft_base_extruder_nr description"
  2838. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2839. msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  2840. msgctxt "raft_interface_extruder_nr label"
  2841. msgid "Raft Middle Extruder"
  2842. msgstr "ラフト中間エクストルーダー"
  2843. msgctxt "raft_interface_extruder_nr description"
  2844. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2845. msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  2846. msgctxt "raft_surface_extruder_nr label"
  2847. msgid "Raft Top Extruder"
  2848. msgstr "ラフトトップエクストルーダー"
  2849. msgctxt "raft_surface_extruder_nr description"
  2850. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2851. msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。"
  2852. msgctxt "skirt_line_count label"
  2853. msgid "Skirt Line Count"
  2854. msgstr "スカートライン数"
  2855. msgctxt "skirt_line_count description"
  2856. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2857. msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。"
  2858. msgctxt "skirt_height label"
  2859. msgid "Skirt Height"
  2860. msgstr "スカート高さ"
  2861. msgctxt "skirt_height description"
  2862. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2863. msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。"
  2864. msgctxt "skirt_gap label"
  2865. msgid "Skirt Distance"
  2866. msgstr "スカート距離"
  2867. msgctxt "skirt_gap description"
  2868. msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2869. msgstr "スカートと印刷の最初の層の間の水平距離。\nこれは最小距離です。複数のスカートラインがこの距離から外側に展開されます。"
  2870. msgctxt "skirt_brim_minimal_length label"
  2871. msgid "Skirt/Brim Minimum Length"
  2872. msgstr "スカート/ブリム最小長さ"
  2873. msgctxt "skirt_brim_minimal_length description"
  2874. 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."
  2875. msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。"
  2876. msgctxt "brim_width label"
  2877. msgid "Brim Width"
  2878. msgstr "ブリム幅"
  2879. msgctxt "brim_width description"
  2880. 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."
  2881. msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。"
  2882. msgctxt "brim_line_count label"
  2883. msgid "Brim Line Count"
  2884. msgstr "ブリムライン数"
  2885. msgctxt "brim_line_count description"
  2886. 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."
  2887. msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。"
  2888. msgctxt "brim_gap label"
  2889. msgid "Brim Distance"
  2890. msgstr "ブリム距離"
  2891. msgctxt "brim_gap description"
  2892. 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."
  2893. msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。"
  2894. msgctxt "brim_replaces_support label"
  2895. msgid "Brim Replaces Support"
  2896. msgstr "ブリム交換サポート"
  2897. msgctxt "brim_replaces_support description"
  2898. 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."
  2899. msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。"
  2900. msgctxt "brim_outside_only label"
  2901. msgid "Brim Only on Outside"
  2902. msgstr "外側にブリムのみ印刷"
  2903. msgctxt "brim_outside_only description"
  2904. 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."
  2905. msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。"
  2906. msgctxt "brim_inside_margin label"
  2907. msgid "Brim Inside Avoid Margin"
  2908. msgstr "内側縁がマージンに接触しないようにする"
  2909. msgctxt "brim_inside_margin description"
  2910. msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  2911. msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。"
  2912. msgctxt "brim_smart_ordering label"
  2913. msgid "Smart Brim"
  2914. msgstr "スマートブリム"
  2915. msgctxt "brim_smart_ordering description"
  2916. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2917. msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。"
  2918. msgctxt "raft_margin label"
  2919. msgid "Raft Extra Margin"
  2920. msgstr "ラフトの余分なマージン"
  2921. msgctxt "raft_margin description"
  2922. 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."
  2923. msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。"
  2924. msgctxt "raft_smoothing label"
  2925. msgid "Raft Smoothing"
  2926. msgstr "ラフト補整"
  2927. msgctxt "raft_smoothing description"
  2928. 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."
  2929. msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。"
  2930. msgctxt "raft_airgap label"
  2931. msgid "Raft Air Gap"
  2932. msgstr "ラフト間のラップ"
  2933. msgctxt "raft_airgap description"
  2934. 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."
  2935. msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。"
  2936. msgctxt "layer_0_z_overlap label"
  2937. msgid "Initial Layer Z Overlap"
  2938. msgstr "初期レイヤーZのオーバーラップ"
  2939. msgctxt "layer_0_z_overlap description"
  2940. 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."
  2941. msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。"
  2942. msgctxt "raft_surface_layers label"
  2943. msgid "Raft Top Layers"
  2944. msgstr "ラフト最上層"
  2945. msgctxt "raft_surface_layers description"
  2946. 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."
  2947. msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。"
  2948. msgctxt "raft_surface_thickness label"
  2949. msgid "Raft Top Layer Thickness"
  2950. msgstr "ラフト最上層厚さ"
  2951. msgctxt "raft_surface_thickness description"
  2952. msgid "Layer thickness of the top raft layers."
  2953. msgstr "トップラフト層の層厚。"
  2954. msgctxt "raft_surface_line_width label"
  2955. msgid "Raft Top Line Width"
  2956. msgstr "ラフト最上ライン幅"
  2957. msgctxt "raft_surface_line_width description"
  2958. 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."
  2959. msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。"
  2960. msgctxt "raft_surface_line_spacing label"
  2961. msgid "Raft Top Spacing"
  2962. msgstr "ラフト最上面スペース"
  2963. msgctxt "raft_surface_line_spacing description"
  2964. 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."
  2965. msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。"
  2966. msgctxt "raft_interface_layers label"
  2967. msgid "Raft Middle Layers"
  2968. msgstr "ラフト中間レイヤー"
  2969. msgctxt "raft_interface_layers description"
  2970. 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."
  2971. msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。"
  2972. msgctxt "raft_interface_thickness label"
  2973. msgid "Raft Middle Thickness"
  2974. msgstr "ラフト中央厚さ"
  2975. msgctxt "raft_interface_thickness description"
  2976. msgid "Layer thickness of the middle raft layer."
  2977. msgstr "中間のラフト層の層の厚さ。"
  2978. msgctxt "raft_interface_line_width label"
  2979. msgid "Raft Middle Line Width"
  2980. msgstr "ラフト中央ライン幅"
  2981. msgctxt "raft_interface_line_width description"
  2982. 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."
  2983. msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。"
  2984. msgctxt "raft_interface_line_spacing label"
  2985. msgid "Raft Middle Spacing"
  2986. msgstr "ラフト中間スペース"
  2987. msgctxt "raft_interface_line_spacing description"
  2988. 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."
  2989. msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。"
  2990. msgctxt "raft_base_thickness label"
  2991. msgid "Raft Base Thickness"
  2992. msgstr "ラフトベース厚さ"
  2993. msgctxt "raft_base_thickness description"
  2994. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  2995. msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。"
  2996. msgctxt "raft_base_line_width label"
  2997. msgid "Raft Base Line Width"
  2998. msgstr "ラフトベースライン幅"
  2999. msgctxt "raft_base_line_width description"
  3000. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3001. msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。"
  3002. msgctxt "raft_base_line_spacing label"
  3003. msgid "Raft Base Line Spacing"
  3004. msgstr "ラフトベースラインスペース"
  3005. msgctxt "raft_base_line_spacing description"
  3006. 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."
  3007. msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。"
  3008. msgctxt "raft_speed label"
  3009. msgid "Raft Print Speed"
  3010. msgstr "ラフト印刷速度"
  3011. msgctxt "raft_speed description"
  3012. msgid "The speed at which the raft is printed."
  3013. msgstr "ラフトが印刷される速度。"
  3014. msgctxt "raft_surface_speed label"
  3015. msgid "Raft Top Print Speed"
  3016. msgstr "ラフト上層印刷速度"
  3017. msgctxt "raft_surface_speed description"
  3018. 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."
  3019. msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。"
  3020. msgctxt "raft_interface_speed label"
  3021. msgid "Raft Middle Print Speed"
  3022. msgstr "ラフト中間印刷速度"
  3023. msgctxt "raft_interface_speed description"
  3024. 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."
  3025. msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  3026. msgctxt "raft_base_speed label"
  3027. msgid "Raft Base Print Speed"
  3028. msgstr "ラフトベース印刷速度"
  3029. msgctxt "raft_base_speed description"
  3030. 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."
  3031. msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。"
  3032. msgctxt "raft_acceleration label"
  3033. msgid "Raft Print Acceleration"
  3034. msgstr "ラフト印刷加速度"
  3035. msgctxt "raft_acceleration description"
  3036. msgid "The acceleration with which the raft is printed."
  3037. msgstr "ラフト印刷時の加速度。"
  3038. msgctxt "raft_surface_acceleration label"
  3039. msgid "Raft Top Print Acceleration"
  3040. msgstr "ラフト上層層印刷加速度"
  3041. msgctxt "raft_surface_acceleration description"
  3042. msgid "The acceleration with which the top raft layers are printed."
  3043. msgstr "ラフトのトップ印刷時の加速度。"
  3044. msgctxt "raft_interface_acceleration label"
  3045. msgid "Raft Middle Print Acceleration"
  3046. msgstr "ラフト中間層印刷加速度"
  3047. msgctxt "raft_interface_acceleration description"
  3048. msgid "The acceleration with which the middle raft layer is printed."
  3049. msgstr "ラフトの中間層印刷時の加速度。"
  3050. msgctxt "raft_base_acceleration label"
  3051. msgid "Raft Base Print Acceleration"
  3052. msgstr "ラフトベース印刷加速度"
  3053. msgctxt "raft_base_acceleration description"
  3054. msgid "The acceleration with which the base raft layer is printed."
  3055. msgstr "ラフトの底面印刷時の加速度。"
  3056. msgctxt "raft_jerk label"
  3057. msgid "Raft Print Jerk"
  3058. msgstr "ラフト印刷ジャーク"
  3059. msgctxt "raft_jerk description"
  3060. msgid "The jerk with which the raft is printed."
  3061. msgstr "ラフトが印刷時のジャーク。"
  3062. msgctxt "raft_surface_jerk label"
  3063. msgid "Raft Top Print Jerk"
  3064. msgstr "ラフト上層印刷ジャーク"
  3065. msgctxt "raft_surface_jerk description"
  3066. msgid "The jerk with which the top raft layers are printed."
  3067. msgstr "トップラフト層印刷時のジャーク。"
  3068. msgctxt "raft_interface_jerk label"
  3069. msgid "Raft Middle Print Jerk"
  3070. msgstr "ラフト中間層印刷ジャーク"
  3071. msgctxt "raft_interface_jerk description"
  3072. msgid "The jerk with which the middle raft layer is printed."
  3073. msgstr "ミドルラフト層印刷時のジャーク。"
  3074. msgctxt "raft_base_jerk label"
  3075. msgid "Raft Base Print Jerk"
  3076. msgstr "ラフトベース印刷ジャーク"
  3077. msgctxt "raft_base_jerk description"
  3078. msgid "The jerk with which the base raft layer is printed."
  3079. msgstr "ベースラフト層印刷時のジャーク。"
  3080. msgctxt "raft_fan_speed label"
  3081. msgid "Raft Fan Speed"
  3082. msgstr "ラフトファン速度"
  3083. msgctxt "raft_fan_speed description"
  3084. msgid "The fan speed for the raft."
  3085. msgstr "ラフト印刷時のファンの速度。"
  3086. msgctxt "raft_surface_fan_speed label"
  3087. msgid "Raft Top Fan Speed"
  3088. msgstr "ラフト上層ファン速度"
  3089. msgctxt "raft_surface_fan_speed description"
  3090. msgid "The fan speed for the top raft layers."
  3091. msgstr "トップラフト印刷時のファンの速度。"
  3092. msgctxt "raft_interface_fan_speed label"
  3093. msgid "Raft Middle Fan Speed"
  3094. msgstr "ラフト中間層ファン速度"
  3095. msgctxt "raft_interface_fan_speed description"
  3096. msgid "The fan speed for the middle raft layer."
  3097. msgstr "ミドルラフト印刷時のファンの速度。"
  3098. msgctxt "raft_base_fan_speed label"
  3099. msgid "Raft Base Fan Speed"
  3100. msgstr "ラフトベースファン速度"
  3101. msgctxt "raft_base_fan_speed description"
  3102. msgid "The fan speed for the base raft layer."
  3103. msgstr "ベースラフト層印刷時のファン速度。"
  3104. msgctxt "dual label"
  3105. msgid "Dual Extrusion"
  3106. msgstr "デュアルエクストルーダー"
  3107. msgctxt "dual description"
  3108. msgid "Settings used for printing with multiple extruders."
  3109. msgstr "デュアルエクストルーダーで印刷するための設定。"
  3110. msgctxt "prime_tower_enable label"
  3111. msgid "Enable Prime Tower"
  3112. msgstr "プライムタワーを有効にする"
  3113. msgctxt "prime_tower_enable description"
  3114. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3115. msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。"
  3116. msgctxt "prime_tower_size label"
  3117. msgid "Prime Tower Size"
  3118. msgstr "プライムタワーのサイズ"
  3119. msgctxt "prime_tower_size description"
  3120. msgid "The width of the prime tower."
  3121. msgstr "プライムタワーの幅。"
  3122. msgctxt "prime_tower_min_volume label"
  3123. msgid "Prime Tower Minimum Volume"
  3124. msgstr "プライムタワー最小容積"
  3125. msgctxt "prime_tower_min_volume description"
  3126. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3127. msgstr "プライムタワーの各層の最小容積。"
  3128. msgctxt "prime_tower_position_x label"
  3129. msgid "Prime Tower X Position"
  3130. msgstr "プライムタワーX位置"
  3131. msgctxt "prime_tower_position_x description"
  3132. msgid "The x coordinate of the position of the prime tower."
  3133. msgstr "プライムタワーの位置のx座標。"
  3134. msgctxt "prime_tower_position_y label"
  3135. msgid "Prime Tower Y Position"
  3136. msgstr "プライムタワーY位置"
  3137. msgctxt "prime_tower_position_y description"
  3138. msgid "The y coordinate of the position of the prime tower."
  3139. msgstr "プライムタワーの位置のy座標。"
  3140. msgctxt "prime_tower_wipe_enabled label"
  3141. msgid "Wipe Inactive Nozzle on Prime Tower"
  3142. msgstr "プライムタワーノズル拭き取り"
  3143. msgctxt "prime_tower_wipe_enabled description"
  3144. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3145. msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。"
  3146. msgctxt "prime_tower_brim_enable label"
  3147. msgid "Prime Tower Brim"
  3148. msgstr "プライムタワーブリム"
  3149. msgctxt "prime_tower_brim_enable description"
  3150. 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."
  3151. msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。"
  3152. msgctxt "ooze_shield_enabled label"
  3153. msgid "Enable Ooze Shield"
  3154. msgstr "Ooze Shieldを有効にする"
  3155. msgctxt "ooze_shield_enabled description"
  3156. 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."
  3157. msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。"
  3158. msgctxt "ooze_shield_angle label"
  3159. msgid "Ooze Shield Angle"
  3160. msgstr "Ooze Shield角度"
  3161. msgctxt "ooze_shield_angle description"
  3162. 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."
  3163. msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。"
  3164. msgctxt "ooze_shield_dist label"
  3165. msgid "Ooze Shield Distance"
  3166. msgstr "Ooze Shield距離"
  3167. msgctxt "ooze_shield_dist description"
  3168. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3169. msgstr "壁(ooze shield)の造形物からの距離。"
  3170. msgctxt "switch_extruder_retraction_amount label"
  3171. msgid "Nozzle Switch Retraction Distance"
  3172. msgstr "ノズルスイッチ引き戻し距離"
  3173. msgctxt "switch_extruder_retraction_amount description"
  3174. 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."
  3175. msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
  3176. msgctxt "switch_extruder_retraction_speeds label"
  3177. msgid "Nozzle Switch Retraction Speed"
  3178. msgstr "ノズルスイッチ引き戻し速度"
  3179. msgctxt "switch_extruder_retraction_speeds description"
  3180. 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."
  3181. msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。"
  3182. msgctxt "switch_extruder_retraction_speed label"
  3183. msgid "Nozzle Switch Retract Speed"
  3184. msgstr "ノズルスイッチ引き込み速度"
  3185. msgctxt "switch_extruder_retraction_speed description"
  3186. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3187. msgstr "ノズル切り替え中のフィラメントの引き込み速度。"
  3188. msgctxt "switch_extruder_prime_speed label"
  3189. msgid "Nozzle Switch Prime Speed"
  3190. msgstr "ノズルスイッチ押し戻し速度"
  3191. msgctxt "switch_extruder_prime_speed description"
  3192. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3193. msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。"
  3194. msgctxt "switch_extruder_extra_prime_amount label"
  3195. msgid "Nozzle Switch Extra Prime Amount"
  3196. msgstr "ノズル切替え後のプライムに必要な余剰量"
  3197. msgctxt "switch_extruder_extra_prime_amount description"
  3198. msgid "Extra material to prime after nozzle switching."
  3199. msgstr "ノズル切替え後のプライムに必要な余剰材料。"
  3200. msgctxt "meshfix label"
  3201. msgid "Mesh Fixes"
  3202. msgstr "メッシュ修正"
  3203. msgctxt "meshfix description"
  3204. msgid "Make the meshes more suited for 3D printing."
  3205. msgstr "3Dプリンティングにさらに適したメッシュを作成します。"
  3206. msgctxt "meshfix_union_all label"
  3207. msgid "Union Overlapping Volumes"
  3208. msgstr "重複量"
  3209. msgctxt "meshfix_union_all description"
  3210. 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."
  3211. msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。"
  3212. msgctxt "meshfix_union_all_remove_holes label"
  3213. msgid "Remove All Holes"
  3214. msgstr "全穴除去"
  3215. msgctxt "meshfix_union_all_remove_holes description"
  3216. 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."
  3217. msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。"
  3218. msgctxt "meshfix_extensive_stitching label"
  3219. msgid "Extensive Stitching"
  3220. msgstr "強めのスティッチング"
  3221. msgctxt "meshfix_extensive_stitching description"
  3222. 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."
  3223. msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。"
  3224. msgctxt "meshfix_keep_open_polygons label"
  3225. msgid "Keep Disconnected Faces"
  3226. msgstr "スティッチできない部分を保持"
  3227. msgctxt "meshfix_keep_open_polygons description"
  3228. 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."
  3229. msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。"
  3230. msgctxt "multiple_mesh_overlap label"
  3231. msgid "Merged Meshes Overlap"
  3232. msgstr "重複メッシュのマージ"
  3233. msgctxt "multiple_mesh_overlap description"
  3234. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3235. msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。"
  3236. msgctxt "carve_multiple_volumes label"
  3237. msgid "Remove Mesh Intersection"
  3238. msgstr "重複メッシュの削除"
  3239. msgctxt "carve_multiple_volumes description"
  3240. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3241. msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。"
  3242. msgctxt "alternate_carve_order label"
  3243. msgid "Alternate Mesh Removal"
  3244. msgstr "代替メッシュの削除"
  3245. msgctxt "alternate_carve_order description"
  3246. 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."
  3247. msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。"
  3248. msgctxt "remove_empty_first_layers label"
  3249. msgid "Remove Empty First Layers"
  3250. msgstr "空の最初のメッシュの削除"
  3251. msgctxt "remove_empty_first_layers description"
  3252. 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."
  3253. msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。"
  3254. msgctxt "meshfix_maximum_resolution label"
  3255. msgid "Maximum Resolution"
  3256. msgstr "最大解像度"
  3257. msgctxt "meshfix_maximum_resolution description"
  3258. 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."
  3259. msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。"
  3260. msgctxt "meshfix_maximum_travel_resolution label"
  3261. msgid "Maximum Travel Resolution"
  3262. msgstr "最大移動解像度"
  3263. msgctxt "meshfix_maximum_travel_resolution description"
  3264. 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."
  3265. msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。"
  3266. msgctxt "meshfix_maximum_deviation label"
  3267. msgid "Maximum Deviation"
  3268. msgstr "最大偏差"
  3269. msgctxt "meshfix_maximum_deviation description"
  3270. 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."
  3271. msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。"
  3272. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  3273. msgid "Maximum Extrusion Area Deviation"
  3274. msgstr "最大押出領域偏差"
  3275. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3276. 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."
  3277. msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。"
  3278. msgctxt "meshfix_fluid_motion_enabled label"
  3279. msgid "Enable Fluid Motion"
  3280. msgstr "フルイドモーションを有効にする"
  3281. msgctxt "meshfix_fluid_motion_enabled description"
  3282. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3283. msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。"
  3284. msgctxt "meshfix_fluid_motion_shift_distance label"
  3285. msgid "Fluid Motion Shift Distance"
  3286. msgstr "フルイドモーション(移動距離)"
  3287. msgctxt "meshfix_fluid_motion_shift_distance description"
  3288. msgid "Distance points are shifted to smooth the path"
  3289. msgstr "パスを滑らかにするため、距離点が移動されます"
  3290. msgctxt "meshfix_fluid_motion_small_distance label"
  3291. msgid "Fluid Motion Small Distance"
  3292. msgstr "フルイドモーション(近距離)"
  3293. msgctxt "meshfix_fluid_motion_small_distance description"
  3294. msgid "Distance points are shifted to smooth the path"
  3295. msgstr "パスを滑らかにするため、距離点が移動されます"
  3296. msgctxt "meshfix_fluid_motion_angle label"
  3297. msgid "Fluid Motion Angle"
  3298. msgstr "フローモーション角度"
  3299. msgctxt "meshfix_fluid_motion_angle description"
  3300. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  3301. msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。"
  3302. msgctxt "blackmagic label"
  3303. msgid "Special Modes"
  3304. msgstr "特別モード"
  3305. msgctxt "blackmagic description"
  3306. msgid "Non-traditional ways to print your models."
  3307. msgstr "これまでにないモデルの印刷方法です。"
  3308. msgctxt "print_sequence label"
  3309. msgid "Print Sequence"
  3310. msgstr "印刷頻度"
  3311. msgctxt "print_sequence description"
  3312. 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."
  3313. msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。"
  3314. msgctxt "print_sequence option all_at_once"
  3315. msgid "All at Once"
  3316. msgstr "一度にすべて"
  3317. msgctxt "print_sequence option one_at_a_time"
  3318. msgid "One at a Time"
  3319. msgstr "1つずつ"
  3320. msgctxt "infill_mesh label"
  3321. msgid "Infill Mesh"
  3322. msgstr "インフィルメッシュ"
  3323. msgctxt "infill_mesh description"
  3324. 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."
  3325. msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。"
  3326. msgctxt "infill_mesh_order label"
  3327. msgid "Mesh Processing Rank"
  3328. msgstr "メッシュ処理ランク"
  3329. msgctxt "infill_mesh_order description"
  3330. 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."
  3331. msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。"
  3332. msgctxt "cutting_mesh label"
  3333. msgid "Cutting Mesh"
  3334. msgstr "メッシュ切断"
  3335. msgctxt "cutting_mesh description"
  3336. 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."
  3337. msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。"
  3338. msgctxt "mold_enabled label"
  3339. msgid "Mold"
  3340. msgstr "型"
  3341. msgctxt "mold_enabled description"
  3342. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3343. msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。"
  3344. msgctxt "mold_width label"
  3345. msgid "Minimal Mold Width"
  3346. msgstr "最小型幅"
  3347. msgctxt "mold_width description"
  3348. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3349. msgstr "型の外側とモデルの外側との間の最小距離です。"
  3350. msgctxt "mold_roof_height label"
  3351. msgid "Mold Roof Height"
  3352. msgstr "型ルーフ高さ"
  3353. msgctxt "mold_roof_height description"
  3354. msgid "The height above horizontal parts in your model which to print mold."
  3355. msgstr "型を印刷するためのモデルの水平部分上の高さ。"
  3356. msgctxt "mold_angle label"
  3357. msgid "Mold Angle"
  3358. msgstr "型角度"
  3359. msgctxt "mold_angle description"
  3360. 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."
  3361. msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。"
  3362. msgctxt "support_mesh label"
  3363. msgid "Support Mesh"
  3364. msgstr "サポートメッシュ"
  3365. msgctxt "support_mesh description"
  3366. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3367. msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。"
  3368. msgctxt "anti_overhang_mesh label"
  3369. msgid "Anti Overhang Mesh"
  3370. msgstr "メッシュオーバーハング例外"
  3371. msgctxt "anti_overhang_mesh description"
  3372. 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."
  3373. msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。"
  3374. msgctxt "magic_mesh_surface_mode label"
  3375. msgid "Surface Mode"
  3376. msgstr "表面モード"
  3377. msgctxt "magic_mesh_surface_mode description"
  3378. 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."
  3379. msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。"
  3380. msgctxt "magic_mesh_surface_mode option normal"
  3381. msgid "Normal"
  3382. msgstr "標準"
  3383. msgctxt "magic_mesh_surface_mode option surface"
  3384. msgid "Surface"
  3385. msgstr "表面"
  3386. msgctxt "magic_mesh_surface_mode option both"
  3387. msgid "Both"
  3388. msgstr "両方"
  3389. msgctxt "magic_spiralize label"
  3390. msgid "Spiralize Outer Contour"
  3391. msgstr "滑らかな外側輪郭"
  3392. msgctxt "magic_spiralize description"
  3393. 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."
  3394. msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。"
  3395. msgctxt "smooth_spiralized_contours label"
  3396. msgid "Smooth Spiralized Contours"
  3397. msgstr "滑らかな輪郭"
  3398. msgctxt "smooth_spiralized_contours description"
  3399. 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."
  3400. msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。"
  3401. msgctxt "relative_extrusion label"
  3402. msgid "Relative Extrusion"
  3403. msgstr "相対押出"
  3404. msgctxt "relative_extrusion description"
  3405. 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."
  3406. msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。"
  3407. msgctxt "experimental label"
  3408. msgid "Experimental"
  3409. msgstr "実験"
  3410. msgctxt "experimental description"
  3411. msgid "Features that haven't completely been fleshed out yet."
  3412. msgstr "これからもっと充実させていく機能です。"
  3413. msgctxt "slicing_tolerance label"
  3414. msgid "Slicing Tolerance"
  3415. msgstr "スライス公差"
  3416. msgctxt "slicing_tolerance description"
  3417. 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."
  3418. msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。"
  3419. msgctxt "slicing_tolerance option middle"
  3420. msgid "Middle"
  3421. msgstr "中間"
  3422. msgctxt "slicing_tolerance option exclusive"
  3423. msgid "Exclusive"
  3424. msgstr "排他"
  3425. msgctxt "slicing_tolerance option inclusive"
  3426. msgid "Inclusive"
  3427. msgstr "包括"
  3428. msgctxt "infill_enable_travel_optimization label"
  3429. msgid "Infill Travel Optimization"
  3430. msgstr "インフィル移動最適化"
  3431. msgctxt "infill_enable_travel_optimization description"
  3432. 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."
  3433. msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。"
  3434. msgctxt "material_flow_temp_graph label"
  3435. msgid "Flow Temperature Graph"
  3436. msgstr "フロー温度グラフ"
  3437. msgctxt "material_flow_temp_graph description"
  3438. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3439. msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。"
  3440. msgctxt "minimum_polygon_circumference label"
  3441. msgid "Minimum Polygon Circumference"
  3442. msgstr "最小ポリゴン円周"
  3443. msgctxt "minimum_polygon_circumference description"
  3444. 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."
  3445. msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。"
  3446. msgctxt "interlocking_enable label"
  3447. msgid "Generate Interlocking Structure"
  3448. msgstr "インターロック構造の生成"
  3449. msgctxt "interlocking_enable description"
  3450. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  3451. msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。"
  3452. msgctxt "interlocking_beam_width label"
  3453. msgid "Interlocking Beam Width"
  3454. msgstr "インターロックビーム幅"
  3455. msgctxt "interlocking_beam_width description"
  3456. msgid "The width of the interlocking structure beams."
  3457. msgstr "インターロック構造ビームの幅。"
  3458. msgctxt "interlocking_orientation label"
  3459. msgid "Interlocking Structure Orientation"
  3460. msgstr "インターロック構造の向き"
  3461. msgctxt "interlocking_orientation description"
  3462. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3463. msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
  3464. msgctxt "interlocking_beam_layer_count label"
  3465. msgid "Interlocking Beam Layer Count"
  3466. msgstr "インターロックビームレイヤー数"
  3467. msgctxt "interlocking_beam_layer_count description"
  3468. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3469. msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。"
  3470. msgctxt "interlocking_depth label"
  3471. msgid "Interlocking Depth"
  3472. msgstr "インターロックの奥行"
  3473. msgctxt "interlocking_depth description"
  3474. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3475. msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。"
  3476. msgctxt "interlocking_boundary_avoidance label"
  3477. msgid "Interlocking Boundary Avoidance"
  3478. msgstr "インターロック境界回避"
  3479. msgctxt "interlocking_boundary_avoidance description"
  3480. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3481. msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。"
  3482. msgctxt "support_skip_some_zags label"
  3483. msgid "Break Up Support In Chunks"
  3484. msgstr "接続部分のサポート分割"
  3485. msgctxt "support_skip_some_zags description"
  3486. 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."
  3487. msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。"
  3488. msgctxt "support_skip_zag_per_mm label"
  3489. msgid "Support Chunk Size"
  3490. msgstr "サポート分割サイズ"
  3491. msgctxt "support_skip_zag_per_mm description"
  3492. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3493. msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。"
  3494. msgctxt "support_zag_skip_count label"
  3495. msgid "Support Chunk Line Count"
  3496. msgstr "サポート分割ライン数"
  3497. msgctxt "support_zag_skip_count description"
  3498. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3499. msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。"
  3500. msgctxt "draft_shield_enabled label"
  3501. msgid "Enable Draft Shield"
  3502. msgstr "ドラフトシールドを有効にする"
  3503. msgctxt "draft_shield_enabled description"
  3504. 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."
  3505. msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。"
  3506. msgctxt "draft_shield_dist label"
  3507. msgid "Draft Shield X/Y Distance"
  3508. msgstr "ドラフトシールドとX/Yの距離"
  3509. msgctxt "draft_shield_dist description"
  3510. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3511. msgstr "ドラフトシールドと造形物のX / Y方向の距離。"
  3512. msgctxt "draft_shield_height_limitation label"
  3513. msgid "Draft Shield Limitation"
  3514. msgstr "ドラフトシールドの制限"
  3515. msgctxt "draft_shield_height_limitation description"
  3516. 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."
  3517. msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。"
  3518. msgctxt "draft_shield_height_limitation option full"
  3519. msgid "Full"
  3520. msgstr "制限なし"
  3521. msgctxt "draft_shield_height_limitation option limited"
  3522. msgid "Limited"
  3523. msgstr "制限あり"
  3524. msgctxt "draft_shield_height label"
  3525. msgid "Draft Shield Height"
  3526. msgstr "ドラフトシールドの高さ"
  3527. msgctxt "draft_shield_height description"
  3528. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3529. msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。"
  3530. msgctxt "conical_overhang_enabled label"
  3531. msgid "Make Overhang Printable"
  3532. msgstr "オーバーハング印刷可能"
  3533. msgctxt "conical_overhang_enabled description"
  3534. 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."
  3535. msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。"
  3536. msgctxt "conical_overhang_angle label"
  3537. msgid "Maximum Model Angle"
  3538. msgstr "最大モデル角度"
  3539. msgctxt "conical_overhang_angle description"
  3540. 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."
  3541. msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。"
  3542. msgctxt "conical_overhang_hole_size label"
  3543. msgid "Maximum Overhang Hole Area"
  3544. msgstr "オーバーハングした穴の最大領域"
  3545. msgctxt "conical_overhang_hole_size description"
  3546. 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."
  3547. msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。"
  3548. msgctxt "coasting_enable label"
  3549. msgid "Enable Coasting"
  3550. msgstr "コースティングを有効にする"
  3551. msgctxt "coasting_enable description"
  3552. 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."
  3553. msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。"
  3554. msgctxt "coasting_volume label"
  3555. msgid "Coasting Volume"
  3556. msgstr "コースティングのボリューム"
  3557. msgctxt "coasting_volume description"
  3558. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3559. msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。"
  3560. msgctxt "coasting_min_volume label"
  3561. msgid "Minimum Volume Before Coasting"
  3562. msgstr "コースティング前の最小ボリューム"
  3563. msgctxt "coasting_min_volume description"
  3564. 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."
  3565. msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。"
  3566. msgctxt "coasting_speed label"
  3567. msgid "Coasting Speed"
  3568. msgstr "コースティング速度"
  3569. msgctxt "coasting_speed description"
  3570. 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."
  3571. msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。"
  3572. msgctxt "cross_infill_pocket_size label"
  3573. msgid "Cross 3D Pocket Size"
  3574. msgstr "3Dクロスポケットのサイズ"
  3575. msgctxt "cross_infill_pocket_size description"
  3576. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3577. msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。"
  3578. msgctxt "cross_infill_density_image label"
  3579. msgid "Cross Infill Density Image"
  3580. msgstr "クロス画像のインフィル密度"
  3581. msgctxt "cross_infill_density_image description"
  3582. 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."
  3583. msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。"
  3584. msgctxt "cross_support_density_image label"
  3585. msgid "Cross Fill Density Image for Support"
  3586. msgstr "サポート用クロス画像のインフィル密度"
  3587. msgctxt "cross_support_density_image description"
  3588. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3589. msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。"
  3590. msgctxt "support_conical_enabled label"
  3591. msgid "Enable Conical Support"
  3592. msgstr "円錐サポートを有効にする"
  3593. msgctxt "support_conical_enabled description"
  3594. msgid "Make support areas smaller at the bottom than at the overhang."
  3595. msgstr "オーバーハング部分よりも底面の支持領域を小さくする。"
  3596. msgctxt "support_conical_angle label"
  3597. msgid "Conical Support Angle"
  3598. msgstr "円錐サポートの角度"
  3599. msgctxt "support_conical_angle description"
  3600. 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."
  3601. msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。"
  3602. msgctxt "support_conical_min_width label"
  3603. msgid "Conical Support Minimum Width"
  3604. msgstr "円錐サポートの最大幅"
  3605. msgctxt "support_conical_min_width description"
  3606. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3607. msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。"
  3608. msgctxt "magic_fuzzy_skin_enabled label"
  3609. msgid "Fuzzy Skin"
  3610. msgstr "ファジースキン"
  3611. msgctxt "magic_fuzzy_skin_enabled description"
  3612. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3613. msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。"
  3614. msgctxt "magic_fuzzy_skin_outside_only label"
  3615. msgid "Fuzzy Skin Outside Only"
  3616. msgstr "ファジースキン外のみ"
  3617. msgctxt "magic_fuzzy_skin_outside_only description"
  3618. msgid "Jitter only the parts' outlines and not the parts' holes."
  3619. msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。"
  3620. msgctxt "magic_fuzzy_skin_thickness label"
  3621. msgid "Fuzzy Skin Thickness"
  3622. msgstr "ファジースキンの厚さ"
  3623. msgctxt "magic_fuzzy_skin_thickness description"
  3624. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3625. msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。"
  3626. msgctxt "magic_fuzzy_skin_point_density label"
  3627. msgid "Fuzzy Skin Density"
  3628. msgstr "ファジースキンの密度"
  3629. msgctxt "magic_fuzzy_skin_point_density description"
  3630. 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."
  3631. msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。"
  3632. msgctxt "magic_fuzzy_skin_point_dist label"
  3633. msgid "Fuzzy Skin Point Distance"
  3634. msgstr "ファジースキン点間距離"
  3635. msgctxt "magic_fuzzy_skin_point_dist description"
  3636. 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."
  3637. msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。"
  3638. msgctxt "flow_rate_max_extrusion_offset label"
  3639. msgid "Flow Rate Compensation Max Extrusion Offset"
  3640. msgstr "流量補正時の最大抽出オフセット"
  3641. msgctxt "flow_rate_max_extrusion_offset description"
  3642. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3643. msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。"
  3644. msgctxt "flow_rate_extrusion_offset_factor label"
  3645. msgid "Flow Rate Compensation Factor"
  3646. msgstr "流量補正要因"
  3647. msgctxt "flow_rate_extrusion_offset_factor description"
  3648. 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."
  3649. msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。"
  3650. msgctxt "adaptive_layer_height_enabled label"
  3651. msgid "Use Adaptive Layers"
  3652. msgstr "適応レイヤーの使用"
  3653. msgctxt "adaptive_layer_height_enabled description"
  3654. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  3655. msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。"
  3656. msgctxt "adaptive_layer_height_variation label"
  3657. msgid "Adaptive Layers Maximum Variation"
  3658. msgstr "適応レイヤー最大差分"
  3659. msgctxt "adaptive_layer_height_variation description"
  3660. msgid "The maximum allowed height different from the base layer height."
  3661. msgstr "基準レイヤー高さと比較して許容される最大の高さ。"
  3662. msgctxt "adaptive_layer_height_variation_step label"
  3663. msgid "Adaptive Layers Variation Step Size"
  3664. msgstr "適応レイヤー差分ステップサイズ"
  3665. msgctxt "adaptive_layer_height_variation_step description"
  3666. msgid "The difference in height of the next layer height compared to the previous one."
  3667. msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。"
  3668. msgctxt "adaptive_layer_height_threshold label"
  3669. msgid "Adaptive Layers Topography Size"
  3670. msgstr "適応レイヤーのトポグラフィーサイズ"
  3671. msgctxt "adaptive_layer_height_threshold description"
  3672. 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."
  3673. msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。"
  3674. msgctxt "wall_overhang_angle label"
  3675. msgid "Overhanging Wall Angle"
  3676. msgstr "張り出し壁アングル"
  3677. msgctxt "wall_overhang_angle description"
  3678. 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."
  3679. msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。"
  3680. msgctxt "wall_overhang_speed_factor label"
  3681. msgid "Overhanging Wall Speed"
  3682. msgstr "張り出し壁速度"
  3683. msgctxt "wall_overhang_speed_factor description"
  3684. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  3685. msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。"
  3686. msgctxt "bridge_settings_enabled label"
  3687. msgid "Enable Bridge Settings"
  3688. msgstr "ブリッジ設定を有効にする"
  3689. msgctxt "bridge_settings_enabled description"
  3690. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  3691. msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。"
  3692. msgctxt "bridge_wall_min_length label"
  3693. msgid "Minimum Bridge Wall Length"
  3694. msgstr "ブリッジ壁の最小長さ"
  3695. msgctxt "bridge_wall_min_length description"
  3696. 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."
  3697. msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。"
  3698. msgctxt "bridge_skin_support_threshold label"
  3699. msgid "Bridge Skin Support Threshold"
  3700. msgstr "ブリッジスキンサポートのしきい値"
  3701. msgctxt "bridge_skin_support_threshold description"
  3702. 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."
  3703. msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。"
  3704. msgctxt "bridge_sparse_infill_max_density label"
  3705. msgid "Bridge Sparse Infill Max Density"
  3706. msgstr "ブリッジスパースインフィル最大密度"
  3707. msgctxt "bridge_sparse_infill_max_density description"
  3708. 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."
  3709. msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。"
  3710. msgctxt "bridge_wall_coast label"
  3711. msgid "Bridge Wall Coasting"
  3712. msgstr "ブリッジ壁コースティング"
  3713. msgctxt "bridge_wall_coast description"
  3714. 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."
  3715. msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。"
  3716. msgctxt "bridge_wall_speed label"
  3717. msgid "Bridge Wall Speed"
  3718. msgstr "ブリッジ壁速度"
  3719. msgctxt "bridge_wall_speed description"
  3720. msgid "The speed at which the bridge walls are printed."
  3721. msgstr "ブリッジ壁を印刷する速度。"
  3722. msgctxt "bridge_wall_material_flow label"
  3723. msgid "Bridge Wall Flow"
  3724. msgstr "ブリッジ壁フロー"
  3725. msgctxt "bridge_wall_material_flow description"
  3726. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3727. msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。"
  3728. msgctxt "bridge_skin_speed label"
  3729. msgid "Bridge Skin Speed"
  3730. msgstr "ブリッジスキン速度"
  3731. msgctxt "bridge_skin_speed description"
  3732. msgid "The speed at which bridge skin regions are printed."
  3733. msgstr "ブリッジスキン領域が印刷される速度。"
  3734. msgctxt "bridge_skin_material_flow label"
  3735. msgid "Bridge Skin Flow"
  3736. msgstr "ブリッジスキンフロー"
  3737. msgctxt "bridge_skin_material_flow description"
  3738. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3739. msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。"
  3740. msgctxt "bridge_skin_density label"
  3741. msgid "Bridge Skin Density"
  3742. msgstr "ブリッジスキンの密度"
  3743. msgctxt "bridge_skin_density description"
  3744. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3745. msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3746. msgctxt "bridge_fan_speed label"
  3747. msgid "Bridge Fan Speed"
  3748. msgstr "ブリッジファン速度"
  3749. msgctxt "bridge_fan_speed description"
  3750. msgid "Percentage fan speed to use when printing bridge walls and skin."
  3751. msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。"
  3752. msgctxt "bridge_enable_more_layers label"
  3753. msgid "Bridge Has Multiple Layers"
  3754. msgstr "ブリッジを構成する多重レイヤー"
  3755. msgctxt "bridge_enable_more_layers description"
  3756. 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."
  3757. msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。"
  3758. msgctxt "bridge_skin_speed_2 label"
  3759. msgid "Bridge Second Skin Speed"
  3760. msgstr "ブリッジセカンドスキンの速度"
  3761. msgctxt "bridge_skin_speed_2 description"
  3762. msgid "Print speed to use when printing the second bridge skin layer."
  3763. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  3764. msgctxt "bridge_skin_material_flow_2 label"
  3765. msgid "Bridge Second Skin Flow"
  3766. msgstr "ブリッジセカンドスキンのフロー"
  3767. msgctxt "bridge_skin_material_flow_2 description"
  3768. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  3769. msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  3770. msgctxt "bridge_skin_density_2 label"
  3771. msgid "Bridge Second Skin Density"
  3772. msgstr "ブリッジセカンドスキンの密度"
  3773. msgctxt "bridge_skin_density_2 description"
  3774. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3775. msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3776. msgctxt "bridge_fan_speed_2 label"
  3777. msgid "Bridge Second Skin Fan Speed"
  3778. msgstr "ブリッジセカンドスキンのファン速度"
  3779. msgctxt "bridge_fan_speed_2 description"
  3780. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  3781. msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  3782. msgctxt "bridge_skin_speed_3 label"
  3783. msgid "Bridge Third Skin Speed"
  3784. msgstr "ブリッジサードスキンの速度"
  3785. msgctxt "bridge_skin_speed_3 description"
  3786. msgid "Print speed to use when printing the third bridge skin layer."
  3787. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。"
  3788. msgctxt "bridge_skin_material_flow_3 label"
  3789. msgid "Bridge Third Skin Flow"
  3790. msgstr "ブリッジサードスキンのフロー"
  3791. msgctxt "bridge_skin_material_flow_3 description"
  3792. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  3793. msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。"
  3794. msgctxt "bridge_skin_density_3 label"
  3795. msgid "Bridge Third Skin Density"
  3796. msgstr "ブリッジサードスキンの密度"
  3797. msgctxt "bridge_skin_density_3 description"
  3798. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3799. msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。"
  3800. msgctxt "bridge_fan_speed_3 label"
  3801. msgid "Bridge Third Skin Fan Speed"
  3802. msgstr "ブリッジサードスキンのファン速度"
  3803. msgctxt "bridge_fan_speed_3 description"
  3804. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  3805. msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。"
  3806. msgctxt "clean_between_layers label"
  3807. msgid "Wipe Nozzle Between Layers"
  3808. msgstr "レイヤー間のノズル拭き取り"
  3809. msgctxt "clean_between_layers description"
  3810. 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."
  3811. msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。"
  3812. msgctxt "max_extrusion_before_wipe label"
  3813. msgid "Material Volume Between Wipes"
  3814. msgstr "ワイプ間の材料の量"
  3815. msgctxt "max_extrusion_before_wipe description"
  3816. 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."
  3817. msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。"
  3818. msgctxt "wipe_retraction_enable label"
  3819. msgid "Wipe Retraction Enable"
  3820. msgstr "ワイプリトラクト有効"
  3821. msgctxt "wipe_retraction_enable description"
  3822. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  3823. msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。"
  3824. msgctxt "wipe_retraction_amount label"
  3825. msgid "Wipe Retraction Distance"
  3826. msgstr "ワイプリトラクト無効"
  3827. msgctxt "wipe_retraction_amount description"
  3828. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  3829. msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。"
  3830. msgctxt "wipe_retraction_extra_prime_amount label"
  3831. msgid "Wipe Retraction Extra Prime Amount"
  3832. msgstr "ワイプ引き戻し時の余分押し戻し量"
  3833. msgctxt "wipe_retraction_extra_prime_amount description"
  3834. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  3835. msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。"
  3836. msgctxt "wipe_retraction_speed label"
  3837. msgid "Wipe Retraction Speed"
  3838. msgstr "ワイプリトラクト速度"
  3839. msgctxt "wipe_retraction_speed description"
  3840. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3841. msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。"
  3842. msgctxt "wipe_retraction_retract_speed label"
  3843. msgid "Wipe Retraction Retract Speed"
  3844. msgstr "ワイプ引き戻し速度"
  3845. msgctxt "wipe_retraction_retract_speed description"
  3846. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3847. msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。"
  3848. msgctxt "wipe_retraction_prime_speed label"
  3849. msgid "Wipe Retraction Prime Speed"
  3850. msgstr "ワイプ引き戻し下準備速度"
  3851. msgctxt "wipe_retraction_prime_speed description"
  3852. msgid "The speed at which the filament is primed during a wipe retraction move."
  3853. msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。"
  3854. msgctxt "wipe_pause label"
  3855. msgid "Wipe Pause"
  3856. msgstr "ワイプ一時停止"
  3857. msgctxt "wipe_pause description"
  3858. msgid "Pause after the unretract."
  3859. msgstr "引き戻し前に一時停止します。"
  3860. msgctxt "wipe_hop_enable label"
  3861. msgid "Wipe Z Hop"
  3862. msgstr "ワイプZホップ"
  3863. msgctxt "wipe_hop_enable description"
  3864. 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."
  3865. msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。"
  3866. msgctxt "wipe_hop_amount label"
  3867. msgid "Wipe Z Hop Height"
  3868. msgstr "ワイプZホップ高さ"
  3869. msgctxt "wipe_hop_amount description"
  3870. msgid "The height difference when performing a Z Hop."
  3871. msgstr "Zホップを実行するときの高さ。"
  3872. msgctxt "wipe_hop_speed label"
  3873. msgid "Wipe Hop Speed"
  3874. msgstr "ワイプホップ速度"
  3875. msgctxt "wipe_hop_speed description"
  3876. msgid "Speed to move the z-axis during the hop."
  3877. msgstr "ホップ中に z 軸を移動する速度。"
  3878. msgctxt "wipe_brush_pos_x label"
  3879. msgid "Wipe Brush X Position"
  3880. msgstr "ワイプブラシXの位置"
  3881. msgctxt "wipe_brush_pos_x description"
  3882. msgid "X location where wipe script will start."
  3883. msgstr "ワイプスクリプトを開始するX位置。"
  3884. msgctxt "wipe_repeat_count label"
  3885. msgid "Wipe Repeat Count"
  3886. msgstr "ワイプ繰り返し回数"
  3887. msgctxt "wipe_repeat_count description"
  3888. msgid "Number of times to move the nozzle across the brush."
  3889. msgstr "ブラシ全体をノズルが移動する回数。"
  3890. msgctxt "wipe_move_distance label"
  3891. msgid "Wipe Move Distance"
  3892. msgstr "ワイプ移動距離"
  3893. msgctxt "wipe_move_distance description"
  3894. msgid "The distance to move the head back and forth across the brush."
  3895. msgstr "ブラシ全体でヘッド前後に動かす距離。"
  3896. msgctxt "small_hole_max_size label"
  3897. msgid "Small Hole Max Size"
  3898. msgstr "小さい穴の最大サイズ"
  3899. msgctxt "small_hole_max_size description"
  3900. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  3901. msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。"
  3902. msgctxt "small_feature_max_length label"
  3903. msgid "Small Feature Max Length"
  3904. msgstr "小型形体の最大長さ"
  3905. msgctxt "small_feature_max_length description"
  3906. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  3907. msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。"
  3908. msgctxt "small_feature_speed_factor label"
  3909. msgid "Small Feature Speed"
  3910. msgstr "小さな機能の速度"
  3911. msgctxt "small_feature_speed_factor description"
  3912. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3913. msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  3914. msgctxt "small_feature_speed_factor_0 label"
  3915. msgid "Small Feature Initial Layer Speed"
  3916. msgstr "小型形体の初期レイヤー速度"
  3917. msgctxt "small_feature_speed_factor_0 description"
  3918. 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."
  3919. msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。"
  3920. msgctxt "material_alternate_walls label"
  3921. msgid "Alternate Wall Directions"
  3922. msgstr "ウォールの代替の向き"
  3923. msgctxt "material_alternate_walls description"
  3924. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  3925. msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。"
  3926. msgctxt "raft_remove_inside_corners label"
  3927. msgid "Remove Raft Inside Corners"
  3928. msgstr "ラフト内側コーナーの削除"
  3929. msgctxt "raft_remove_inside_corners description"
  3930. msgid "Remove inside corners from the raft, causing the raft to become convex."
  3931. msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。"
  3932. msgctxt "raft_base_wall_count label"
  3933. msgid "Raft Base Wall Count"
  3934. msgstr "ラフトベースウォール数"
  3935. msgctxt "raft_base_wall_count description"
  3936. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3937. msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。"
  3938. msgctxt "command_line_settings label"
  3939. msgid "Command Line Settings"
  3940. msgstr "コマンドライン設定"
  3941. msgctxt "command_line_settings description"
  3942. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  3943. msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。"
  3944. msgctxt "center_object label"
  3945. msgid "Center Object"
  3946. msgstr "オブジェクト中心配置"
  3947. msgctxt "center_object description"
  3948. 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."
  3949. msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。"
  3950. msgctxt "mesh_position_x label"
  3951. msgid "Mesh Position X"
  3952. msgstr "メッシュ位置X"
  3953. msgctxt "mesh_position_x description"
  3954. msgid "Offset applied to the object in the x direction."
  3955. msgstr "オブジェクトの X 方向に適用されたオフセット。"
  3956. msgctxt "mesh_position_y label"
  3957. msgid "Mesh Position Y"
  3958. msgstr "メッシュ位置Y"
  3959. msgctxt "mesh_position_y description"
  3960. msgid "Offset applied to the object in the y direction."
  3961. msgstr "オブジェクトのY 方向適用されたオフセット。"
  3962. msgctxt "mesh_position_z label"
  3963. msgid "Mesh Position Z"
  3964. msgstr "メッシュ位置Z"
  3965. msgctxt "mesh_position_z description"
  3966. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  3967. msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。"
  3968. msgctxt "mesh_rotation_matrix label"
  3969. msgid "Mesh Rotation Matrix"
  3970. msgstr "メッシュ回転マトリックス"
  3971. msgctxt "mesh_rotation_matrix description"
  3972. msgid "Transformation matrix to be applied to the model when loading it from file."
  3973. msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。"
  3974. msgctxt "gradual_flow_enabled label"
  3975. msgid "Gradual flow enabled"
  3976. msgstr "段階的なフローが有効"
  3977. msgctxt "gradual_flow_enabled description"
  3978. msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
  3979. msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。"
  3980. msgctxt "max_flow_acceleration label"
  3981. msgid "Gradual flow max acceleration"
  3982. msgstr "段階的なフローの最大加速度"
  3983. msgctxt "max_flow_acceleration description"
  3984. msgid "Maximum acceleration for gradual flow changes"
  3985. msgstr "フローを段階的に変化させるための最大加速度"
  3986. msgctxt "layer_0_max_flow_acceleration label"
  3987. msgid "Initial layer max flow acceleration"
  3988. msgstr "初期層の最大フロー加速度"
  3989. msgctxt "layer_0_max_flow_acceleration description"
  3990. msgid "Minimum speed for gradual flow changes for the first layer"
  3991. msgstr "第1層のフローを段階的に変化させるための最低速度"
  3992. msgctxt "gradual_flow_discretisation_step_size label"
  3993. msgid "Gradual flow discretisation step size"
  3994. msgstr "段階的なフローの離散化ステップのサイズ"
  3995. msgctxt "gradual_flow_discretisation_step_size description"
  3996. msgid "Duration of each step in the gradual flow change"
  3997. msgstr "段階的なフローの変化におけるステップごとの時間"
  3998. msgctxt "reset_flow_duration label"
  3999. msgid "Reset flow duration"
  4000. msgstr "フロー期間をリセット"
  4001. msgctxt "reset_flow_duration description"
  4002. msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
  4003. msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。"
  4004. msgctxt "extruder_prime_pos_z label"
  4005. msgid "Extruder Prime Z Position"
  4006. msgstr "エクストルーダーのZ座標"
  4007. msgctxt "platform_adhesion description"
  4008. msgid "Adhesion"
  4009. msgstr "密着性"
  4010. msgctxt "support_type description"
  4011. 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."
  4012. msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。"
  4013. msgctxt "material description"
  4014. msgid "Material"
  4015. msgstr "マテリアル"
  4016. msgctxt "machine_nozzle_size label"
  4017. msgid "Nozzle Diameter"
  4018. msgstr "ノズル内径"
  4019. msgctxt "machine_nozzle_id description"
  4020. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4021. msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。"
  4022. msgctxt "extruder_prime_pos_x description"
  4023. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  4024. msgstr "プリント開始時のノズルの位置を表すX座標。"
  4025. msgctxt "material_diameter label"
  4026. msgid "Diameter"
  4027. msgstr "直径"
  4028. msgctxt "extruder_prime_pos_x label"
  4029. msgid "Extruder Prime X Position"
  4030. msgstr "エクストルーダープライムX位置"
  4031. msgctxt "material_diameter description"
  4032. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  4033. msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。"
  4034. msgctxt "machine_nozzle_size description"
  4035. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  4036. msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。"
  4037. msgctxt "machine_settings description"
  4038. msgid "Machine specific settings"
  4039. msgstr "プリンター詳細設定"
  4040. msgctxt "extruder_prime_pos_y label"
  4041. msgid "Extruder Prime Y Position"
  4042. msgstr "エクストルーダープライムY位置"
  4043. msgctxt "extruder_prime_pos_z description"
  4044. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  4045. msgstr "印刷開始時にノズルがポジションを確認するZ座標。"
  4046. msgctxt "extruder_prime_pos_y description"
  4047. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  4048. msgstr "プリント開始時にノズル位置を表すY座標。"
  4049. msgctxt "material label"
  4050. msgid "Material"
  4051. msgstr "マテリアル"
  4052. msgctxt "machine_nozzle_id label"
  4053. msgid "Nozzle ID"
  4054. msgstr "ノズルID"
  4055. msgctxt "platform_adhesion label"
  4056. msgid "Build Plate Adhesion"
  4057. msgstr "ビルドプレート密着性"
  4058. msgctxt "machine_settings label"
  4059. msgid "Machine"
  4060. msgstr "プリンター"
  4061. msgctxt "group_outer_walls label"
  4062. msgid "Group Outer Walls"
  4063. msgstr "外壁をグループ化"
  4064. msgctxt "group_outer_walls description"
  4065. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  4066. msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。"
  4067. msgctxt "wall_0_material_flow_roofing label"
  4068. msgid "Top Surface Outer Wall Flow"
  4069. msgstr "上面最外壁の流れ"
  4070. msgctxt "wall_0_material_flow_roofing description"
  4071. msgid "Flow compensation on the top surface outermost wall line."
  4072. msgstr "最外の壁ラインにおける流量補正。"
  4073. msgctxt "wall_x_material_flow_roofing label"
  4074. msgid "Top Surface Inner Wall(s) Flow"
  4075. msgstr "上面内壁の流れ"
  4076. msgctxt "wall_x_material_flow_roofing description"
  4077. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  4078. msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正"
  4079. msgctxt "speed_wall_0_roofing label"
  4080. msgid "Top Surface Outer Wall Speed"
  4081. msgstr "上面の最外壁速度"
  4082. msgctxt "speed_wall_0_roofing description"
  4083. msgid "The speed at which the top surface outermost wall is printed."
  4084. msgstr "上面の最外壁が印刷される速度"
  4085. msgctxt "speed_wall_x_roofing label"
  4086. msgid "Top Surface Inner Wall Speed"
  4087. msgstr "上面内壁速度"
  4088. msgctxt "speed_wall_x_roofing description"
  4089. msgid "The speed at which the top surface inner walls are printed."
  4090. msgstr "上面内壁が印刷される速度"
  4091. msgctxt "acceleration_wall_0_roofing label"
  4092. msgid "Top Surface Outer Wall Acceleration"
  4093. msgstr "上面外壁加速度"
  4094. msgctxt "acceleration_wall_0_roofing description"
  4095. msgid "The acceleration with which the top surface outermost walls are printed."
  4096. msgstr "上面の最外壁が印刷される際の加速度"
  4097. msgctxt "acceleration_wall_x_roofing label"
  4098. msgid "Top Surface Inner Wall Acceleration"
  4099. msgstr "上面内壁加速度"
  4100. msgctxt "acceleration_wall_x_roofing description"
  4101. msgid "The acceleration with which the top surface inner walls are printed."
  4102. msgstr "上面内壁が印刷される際の加速度"
  4103. msgctxt "jerk_wall_0_roofing label"
  4104. msgid "Top Surface Outer Wall Jerk"
  4105. msgstr "上面内壁の最大瞬間速度変化"
  4106. msgctxt "jerk_wall_0_roofing description"
  4107. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  4108. msgstr "上面内壁が印刷される際の最大瞬間速度変化。"
  4109. msgctxt "jerk_wall_x_roofing label"
  4110. msgid "Top Surface Inner Wall Jerk"
  4111. msgstr "上面最外壁の最大瞬間速度変化"
  4112. msgctxt "jerk_wall_x_roofing description"
  4113. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  4114. msgstr "上面最外壁が印刷される際の最大瞬間速度変化。"