cura.po 283 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2022-09-27 14:50+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: ja_JP\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=1; plural=0;\n"
  20. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:87
  21. msgctxt "@tooltip"
  22. msgid "Outer Wall"
  23. msgstr "アウターウォール"
  24. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:88
  25. msgctxt "@tooltip"
  26. msgid "Inner Walls"
  27. msgstr "インナーウォール"
  28. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:89
  29. msgctxt "@tooltip"
  30. msgid "Skin"
  31. msgstr "スキン"
  32. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:90
  33. msgctxt "@tooltip"
  34. msgid "Infill"
  35. msgstr "インフィル"
  36. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:91
  37. msgctxt "@tooltip"
  38. msgid "Support Infill"
  39. msgstr "サポートイルフィル"
  40. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:92
  41. msgctxt "@tooltip"
  42. msgid "Support Interface"
  43. msgstr "サポートインターフェイス"
  44. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:93
  45. msgctxt "@tooltip"
  46. msgid "Support"
  47. msgstr "サポート"
  48. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:94
  49. msgctxt "@tooltip"
  50. msgid "Skirt"
  51. msgstr "スカート"
  52. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:95
  53. msgctxt "@tooltip"
  54. msgid "Prime Tower"
  55. msgstr "プライムタワー"
  56. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:96
  57. msgctxt "@tooltip"
  58. msgid "Travel"
  59. msgstr "移動"
  60. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:97
  61. msgctxt "@tooltip"
  62. msgid "Retractions"
  63. msgstr "退却"
  64. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:98
  65. msgctxt "@tooltip"
  66. msgid "Other"
  67. msgstr "他"
  68. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:37
  69. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:63
  70. msgctxt "@text:window"
  71. msgid "The release notes could not be opened."
  72. msgstr "リリースノートを開くことができませんでした。"
  73. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/ObjectsModel.py:69
  74. #, python-brace-format
  75. msgctxt "@label"
  76. msgid "Group #{group_nr}"
  77. msgstr "グループ #{group_nr}"
  78. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:57
  79. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:277
  80. msgctxt "@action:button"
  81. msgid "Next"
  82. msgstr "次"
  83. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:286
  84. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:68
  85. msgctxt "@action:button"
  86. msgid "Skip"
  87. msgstr "スキップ"
  88. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:290
  89. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:26
  90. msgctxt "@action:button"
  91. msgid "Finish"
  92. msgstr "終わる"
  93. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:17
  94. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  95. msgctxt "@action:button"
  96. msgid "Add"
  97. msgstr "追加"
  98. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:33
  99. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:323
  100. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  101. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  102. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  103. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:509
  104. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:74
  105. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  106. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  107. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:139
  108. msgctxt "@action:button"
  109. msgid "Cancel"
  110. msgstr "キャンセル"
  111. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:76
  112. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  113. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  114. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  115. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:188
  116. msgctxt "@action:button"
  117. msgid "Close"
  118. msgstr "閉める"
  119. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:207
  120. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:140
  121. msgctxt "@title:window"
  122. msgid "File Already Exists"
  123. msgstr "すでに存在するファイルです"
  124. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:208
  125. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:141
  126. #, python-brace-format
  127. msgctxt "@label Don't translate the XML tag <filename>!"
  128. msgid ""
  129. "The file <filename>{0}</filename> already exists. Are you sure you want to "
  130. "overwrite it?"
  131. msgstr "<filename>{0}</filename> は既に存在します。ファイルを上書きしますか?"
  132. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:459
  133. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:462
  134. msgctxt "@info:status"
  135. msgid "Invalid file URL:"
  136. msgstr "無効なファイルのURL:"
  137. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:36
  138. msgctxt "@info:not supported profile"
  139. msgid "Not supported"
  140. msgstr "サポート対象外"
  141. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:55
  142. msgctxt "@info:No intent profile selected"
  143. msgid "Default"
  144. msgstr "Default"
  145. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:745
  146. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219
  147. msgctxt "@label"
  148. msgid "Nozzle"
  149. msgstr "ノズル"
  150. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:889
  151. msgctxt "@info:message Followed by a list of settings."
  152. msgid ""
  153. "Settings have been changed to match the current availability of extruders:"
  154. msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:"
  155. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:890
  156. msgctxt "@info:title"
  157. msgid "Settings updated"
  158. msgstr "設定が更新されました"
  159. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:1512
  160. msgctxt "@info:title"
  161. msgid "Extruder(s) Disabled"
  162. msgstr "エクストルーダーを無効にしました"
  163. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:153
  164. #, python-brace-format
  165. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  166. msgid ""
  167. "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  168. msgstr "<filename>{0}</filename>にプロファイルを書き出すのに失敗しました: <message>{1}</message>"
  169. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:156
  170. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:166
  171. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1829
  172. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  173. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  174. msgctxt "@info:title"
  175. msgid "Error"
  176. msgstr "エラー"
  177. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:163
  178. #, python-brace-format
  179. msgctxt "@info:status Don't translate the XML tag <filename>!"
  180. msgid ""
  181. "Failed to export profile to <filename>{0}</filename>: Writer plugin reported "
  182. "failure."
  183. msgstr "<filename>{0}</filename>にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。"
  184. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:171
  185. #, python-brace-format
  186. msgctxt "@info:status Don't translate the XML tag <filename>!"
  187. msgid "Exported profile to <filename>{0}</filename>"
  188. msgstr "<filename>{0}</filename>にプロファイルを書き出しました"
  189. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:173
  190. msgctxt "@info:title"
  191. msgid "Export succeeded"
  192. msgstr "書き出し完了"
  193. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:205
  194. #, python-brace-format
  195. msgctxt "@info:status Don't translate the XML tags <filename>!"
  196. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  197. msgstr "<filename>{0}</filename>からプロファイルの取り込に失敗しました:{1}"
  198. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:209
  199. #, python-brace-format
  200. msgctxt "@info:status Don't translate the XML tags <filename>!"
  201. msgid ""
  202. "Can't import profile from <filename>{0}</filename> before a printer is added."
  203. msgstr "プリンタを追加する前に、<filename>{0}</filename>からプロファイルの取り込はできません。"
  204. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:224
  205. #, python-brace-format
  206. msgctxt "@info:status Don't translate the XML tags <filename>!"
  207. msgid "No custom profile to import in file <filename>{0}</filename>"
  208. msgstr "ファイル<filename>{0}</filename>にはカスタムプロファイルがインポートされていません"
  209. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:228
  210. #, python-brace-format
  211. msgctxt "@info:status Don't translate the XML tags <filename>!"
  212. msgid "Failed to import profile from <filename>{0}</filename>:"
  213. msgstr "<filename>{0}</filename>からプロファイルの取り込に失敗しました:"
  214. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:252
  215. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:262
  216. #, python-brace-format
  217. msgctxt "@info:status Don't translate the XML tags <filename>!"
  218. msgid ""
  219. "This profile <filename>{0}</filename> contains incorrect data, could not "
  220. "import it."
  221. msgstr "このプロファイル<filename>{0}</filename>には、正しくないデータが含まれているため、インポートできません。"
  222. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:355
  223. #, python-brace-format
  224. msgctxt "@info:status Don't translate the XML tag <filename>!"
  225. msgid "Failed to import profile from <filename>{0}</filename>:"
  226. msgstr "<filename>{0}</filename>からプロファイルの取り込みに失敗しました:"
  227. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:359
  228. #, python-brace-format
  229. msgctxt "@info:status"
  230. msgid "Successfully imported profile {0}."
  231. msgstr "プロファイル{0}の取り込みが完了しました。"
  232. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:366
  233. #, python-brace-format
  234. msgctxt "@info:status"
  235. msgid "File {0} does not contain any valid profile."
  236. msgstr "ファイル{0}には、正しいプロファイルが含まれていません。"
  237. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:369
  238. #, python-brace-format
  239. msgctxt "@info:status"
  240. msgid "Profile {0} has an unknown file type or is corrupted."
  241. msgstr "プロファイル{0}は不特定なファイルまたは破損があります。"
  242. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:443
  243. msgctxt "@label"
  244. msgid "Custom profile"
  245. msgstr "カスタムプロファイル"
  246. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:459
  247. msgctxt "@info:status"
  248. msgid "Profile is missing a quality type."
  249. msgstr "プロファイルはクオリティータイプが不足しています。"
  250. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:463
  251. msgctxt "@info:status"
  252. msgid "There is no active printer yet."
  253. msgstr "アクティブなプリンターはありません。"
  254. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:469
  255. msgctxt "@info:status"
  256. msgid "Unable to add the profile."
  257. msgstr "プロファイルを追加できません。"
  258. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:483
  259. #, python-brace-format
  260. msgctxt "@info:status"
  261. msgid ""
  262. "Quality type '{0}' is not compatible with the current active machine "
  263. "definition '{1}'."
  264. msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。"
  265. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:488
  266. #, python-brace-format
  267. msgctxt "@info:status"
  268. msgid ""
  269. "Warning: The profile is not visible because its quality type '{0}' is not "
  270. "available for the current configuration. Switch to a material/nozzle "
  271. "combination that can use this quality type."
  272. msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。"
  273. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:30
  274. msgctxt "@info:status"
  275. msgid "Multiplying and placing objects"
  276. msgstr "造形データを増やす、配置する"
  277. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:32
  278. msgctxt "@info:title"
  279. msgid "Placing Objects"
  280. msgstr "造形データを配置"
  281. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:99
  282. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  283. msgctxt "@info:status"
  284. msgid "Unable to find a location within the build volume for all objects"
  285. msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません"
  286. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:100
  287. msgctxt "@info:title"
  288. msgid "Placing Object"
  289. msgstr "造形データを配置"
  290. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:540
  291. msgctxt "@info:progress"
  292. msgid "Loading machines..."
  293. msgstr "プリンターを読み込み中..."
  294. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:547
  295. msgctxt "@info:progress"
  296. msgid "Setting up preferences..."
  297. msgstr "プレファレンスをセットアップ中..."
  298. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:692
  299. msgctxt "@info:progress"
  300. msgid "Initializing Active Machine..."
  301. msgstr "アクティブなプリンターを初期化中..."
  302. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:838
  303. msgctxt "@info:progress"
  304. msgid "Initializing machine manager..."
  305. msgstr "プリンターマネージャーを初期化中..."
  306. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:852
  307. msgctxt "@info:progress"
  308. msgid "Initializing build volume..."
  309. msgstr "ビルドボリュームを初期化中..."
  310. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:920
  311. msgctxt "@info:progress"
  312. msgid "Setting up scene..."
  313. msgstr "シーンをセットアップ中..."
  314. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:956
  315. msgctxt "@info:progress"
  316. msgid "Loading interface..."
  317. msgstr "インターフェイスを読み込み中..."
  318. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:961
  319. msgctxt "@info:progress"
  320. msgid "Initializing engine..."
  321. msgstr "エンジンを初期化中..."
  322. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1289
  323. #, python-format
  324. msgctxt ""
  325. "@info 'width', 'depth' and 'height' are variable names that must NOT be "
  326. "translated; just translate the format of ##x##x## mm."
  327. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  328. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  329. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1815
  330. #, python-brace-format
  331. msgctxt "@info:status"
  332. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  333. msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。"
  334. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1817
  335. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:217
  336. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  337. msgctxt "@info:title"
  338. msgid "Warning"
  339. msgstr "警告"
  340. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1827
  341. #, python-brace-format
  342. msgctxt "@info:status"
  343. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  344. msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。"
  345. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  346. msgctxt "@message"
  347. msgid "Could not read response."
  348. msgstr "応答を読み取れません。"
  349. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  350. msgctxt "@message"
  351. msgid "The provided state is not correct."
  352. msgstr "指定された状態が正しくありません。"
  353. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  354. msgctxt "@message"
  355. msgid "Timeout when authenticating with the account server."
  356. msgstr "アカウントサーバーでの認証中にタイムアウトしました。"
  357. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  358. msgctxt "@message"
  359. msgid "Please give the required permissions when authorizing this application."
  360. msgstr "このアプリケーションの許可において必要な権限を与えてください。"
  361. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  362. msgctxt "@message"
  363. msgid "Something unexpected happened when trying to log in, please try again."
  364. msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。"
  365. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:216
  366. msgctxt "@info"
  367. msgid ""
  368. "Unable to start a new sign in process. Check if another sign in attempt is "
  369. "still active."
  370. msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。"
  371. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:277
  372. msgctxt "@info"
  373. msgid "Unable to reach the Ultimaker account server."
  374. msgstr "Ultimaker アカウントサーバーに到達できません。"
  375. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:278
  376. msgctxt "@info:title"
  377. msgid "Log-in failed"
  378. msgstr "ログインに失敗しました"
  379. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:25
  380. msgctxt "@info:status"
  381. msgid "Finding new location for objects"
  382. msgstr "造形物のために新しい位置を探索中"
  383. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:29
  384. msgctxt "@info:title"
  385. msgid "Finding Location"
  386. msgstr "位置確認"
  387. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:43
  388. msgctxt "@info:title"
  389. msgid "Can't Find Location"
  390. msgstr "位置を確保できません"
  391. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/ExtrudersModel.py:219
  392. msgctxt "@menuitem"
  393. msgid "Not overridden"
  394. msgstr "上書きできません"
  395. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:11
  396. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  397. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:338
  398. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:61
  399. msgctxt "@label"
  400. msgid "Default"
  401. msgstr "Default"
  402. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:14
  403. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  404. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:65
  405. msgctxt "@label"
  406. msgid "Visual"
  407. msgstr "ビジュアル"
  408. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:15
  409. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  410. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:66
  411. msgctxt "@text"
  412. msgid ""
  413. "The visual profile is designed to print visual prototypes and models with "
  414. "the intent of high visual and surface quality."
  415. msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。"
  416. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:18
  417. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  418. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:70
  419. msgctxt "@label"
  420. msgid "Engineering"
  421. msgstr "Engineering"
  422. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:19
  423. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  424. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:71
  425. msgctxt "@text"
  426. msgid ""
  427. "The engineering profile is designed to print functional prototypes and end-"
  428. "use parts with the intent of better accuracy and for closer tolerances."
  429. msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。"
  430. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:22
  431. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  432. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:75
  433. msgctxt "@label"
  434. msgid "Draft"
  435. msgstr "ドラフト"
  436. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:23
  437. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  438. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:76
  439. msgctxt "@text"
  440. msgid ""
  441. "The draft profile is designed to print initial prototypes and concept "
  442. "validation with the intent of significant print time reduction."
  443. msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。"
  444. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  445. msgctxt "@info:status"
  446. msgid "Calculated"
  447. msgstr "計算された"
  448. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:391
  449. msgctxt "@label"
  450. msgid "Custom profiles"
  451. msgstr "カスタムプロファイル"
  452. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:426
  453. #, python-brace-format
  454. msgctxt "@item:inlistbox"
  455. msgid "All Supported Types ({0})"
  456. msgstr "すべてのサポートのタイプ ({0})"
  457. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:427
  458. msgctxt "@item:inlistbox"
  459. msgid "All Files (*)"
  460. msgstr "全てのファイル"
  461. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  462. msgctxt "@label"
  463. msgid "Unknown"
  464. msgstr "不明"
  465. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  466. msgctxt "@label"
  467. msgid ""
  468. "The printer(s) below cannot be connected because they are part of a group"
  469. msgstr "下のプリンターはグループの一員であるため接続できません"
  470. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  471. msgctxt "@label"
  472. msgid "Available networked printers"
  473. msgstr "ネットワークで利用可能なプリンター"
  474. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  475. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  476. msgctxt "@label"
  477. msgid "Connected printers"
  478. msgstr "キャンセルしたプリンター"
  479. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  480. msgctxt "@label"
  481. msgid "Preset printers"
  482. msgstr "プリンターのプリセット"
  483. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:165
  484. #, python-brace-format
  485. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  486. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  487. msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。"
  488. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:232
  489. msgctxt "@label"
  490. msgid "Custom Material"
  491. msgstr "カスタムフィラメント"
  492. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:233
  493. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  494. msgctxt "@label"
  495. msgid "Custom"
  496. msgstr "カスタム"
  497. #: /Users/c.lamboo/ultimaker/Cura/cura/API/Account.py:199
  498. msgctxt "@info:title"
  499. msgid "Login failed"
  500. msgstr "ログインに失敗しました"
  501. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  502. msgctxt "@action:button"
  503. msgid ""
  504. "Please sync the material profiles with your printers before starting to "
  505. "print."
  506. msgstr "プリントを開始する前に、材料プロファイルをプリンターと同期させてください。"
  507. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  508. msgctxt "@action:button"
  509. msgid "New materials installed"
  510. msgstr "新しい材料がインストールされました"
  511. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  512. msgctxt "@action:button"
  513. msgid "Sync materials"
  514. msgstr "材料を同期"
  515. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  516. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:397
  517. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:80
  518. msgctxt "@action:button"
  519. msgid "Learn more"
  520. msgstr "詳しく見る"
  521. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  522. msgctxt "@message:text"
  523. msgid "Could not save material archive to {}:"
  524. msgstr "材料アーカイブを{}に保存できませんでした:"
  525. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  526. msgctxt "@message:title"
  527. msgid "Failed to save material archive"
  528. msgstr "材料アーカイブの保存に失敗しました"
  529. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  530. msgctxt "@text"
  531. msgid "Unknown error."
  532. msgstr "不明なエラー。"
  533. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  534. msgctxt "@text:error"
  535. msgid "Failed to create archive of materials to sync with printers."
  536. msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。"
  537. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  538. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  539. msgctxt "@text:error"
  540. msgid "Failed to load the archive of materials to sync it with printers."
  541. msgstr "材料のアーカイブを読み込んでプリンターと同期するのに失敗しました。"
  542. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  543. msgctxt "@text:error"
  544. msgid "The response from Digital Factory appears to be corrupted."
  545. msgstr "Digital Factoryからの応答が破損しているようです。"
  546. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  547. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  548. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  549. msgctxt "@text:error"
  550. msgid "The response from Digital Factory is missing important information."
  551. msgstr "Digital Factoryからの応答に重要な情報がありません。"
  552. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  553. msgctxt "@text:error"
  554. msgid ""
  555. "Failed to connect to Digital Factory to sync materials with some of the "
  556. "printers."
  557. msgstr "Digital Factoryに接続して一部のプリンターと材料を同期するのに失敗しました。"
  558. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  559. msgctxt "@text:error"
  560. msgid "Failed to connect to Digital Factory."
  561. msgstr "Digital Factoryに接続するのに失敗しました。"
  562. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:100
  563. msgctxt "@info:status"
  564. msgid ""
  565. "The build volume height has been reduced due to the value of the \"Print "
  566. "Sequence\" setting to prevent the gantry from colliding with printed models."
  567. msgstr "プリントシークエンス設定値により、ガントリーと造形物の衝突を避けるため印刷データの高さを低くしました。"
  568. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:103
  569. msgctxt "@info:title"
  570. msgid "Build Volume"
  571. msgstr "造形サイズ"
  572. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:115
  573. msgctxt "@info:backup_failed"
  574. msgid "Could not create archive from user data directory: {}"
  575. msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}"
  576. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:122
  577. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:159
  578. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  579. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  580. msgctxt "@info:title"
  581. msgid "Backup"
  582. msgstr "バックアップ"
  583. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:134
  584. msgctxt "@info:backup_failed"
  585. msgid "Tried to restore a Cura backup without having proper data or meta data."
  586. msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。"
  587. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:145
  588. msgctxt "@info:backup_failed"
  589. msgid "Tried to restore a Cura backup that is higher than the current version."
  590. msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。"
  591. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:158
  592. msgctxt "@info:backup_failed"
  593. msgid "The following error occurred while trying to restore a Cura backup:"
  594. msgstr "The following error occurred while trying to restore a Cura backup:"
  595. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:107
  596. msgctxt "@title:window"
  597. msgid "Cura can't start"
  598. msgstr "Curaを開始できません"
  599. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:113
  600. msgctxt "@label crash message"
  601. msgid ""
  602. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right."
  603. "</p></b>\n"
  604. " <p>We encountered an unrecoverable error during start "
  605. "up. It was possibly caused by some incorrect configuration files. We suggest "
  606. "to backup and reset your configuration.</p>\n"
  607. " <p>Backups can be found in the configuration folder.</"
  608. "p>\n"
  609. " <p>Please send us this Crash Report to fix the problem.</"
  610. "p>\n"
  611. " "
  612. msgstr "<p><b>申し訳ありません。Ultimaker Cura で何らかの不具合が生じています。</p></b>\n <p>開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。</p>\n"
  613. " <p>バックアップは、設定フォルダに保存されます。</p>\n <p>問題解決のために、このクラッシュ報告をお送りください。</p>\n "
  614. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:122
  615. msgctxt "@action:button"
  616. msgid "Send crash report to Ultimaker"
  617. msgstr "クラッシュ報告をUltimakerに送信する"
  618. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:125
  619. msgctxt "@action:button"
  620. msgid "Show detailed crash report"
  621. msgstr "詳しいクラッシュ報告を表示する"
  622. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:129
  623. msgctxt "@action:button"
  624. msgid "Show configuration folder"
  625. msgstr "コンフィグレーションのフォルダーを表示する"
  626. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:140
  627. msgctxt "@action:button"
  628. msgid "Backup and Reset Configuration"
  629. msgstr "バックアップとリセットの設定"
  630. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:171
  631. msgctxt "@title:window"
  632. msgid "Crash Report"
  633. msgstr "クラッシュ報告"
  634. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:190
  635. msgctxt "@label crash message"
  636. msgid ""
  637. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report "
  638. "to fix the problem</p></b>\n"
  639. " <p>Please use the \"Send report\" button to post a bug report "
  640. "automatically to our servers</p>\n"
  641. " "
  642. msgstr "<p><b>致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください</p></b>\n <p>「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください</p>\n "
  643. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:198
  644. msgctxt "@title:groupbox"
  645. msgid "System information"
  646. msgstr "システム情報"
  647. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:207
  648. msgctxt "@label unknown version of Cura"
  649. msgid "Unknown"
  650. msgstr "不明"
  651. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:228
  652. msgctxt "@label Cura version number"
  653. msgid "Cura version"
  654. msgstr "Curaバージョン"
  655. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:229
  656. msgctxt "@label"
  657. msgid "Cura language"
  658. msgstr "Cura言語"
  659. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:230
  660. msgctxt "@label"
  661. msgid "OS language"
  662. msgstr "OS言語"
  663. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:231
  664. msgctxt "@label Type of platform"
  665. msgid "Platform"
  666. msgstr "プラットフォーム"
  667. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:232
  668. msgctxt "@label"
  669. msgid "Qt version"
  670. msgstr "Qtバージョン"
  671. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:233
  672. msgctxt "@label"
  673. msgid "PyQt version"
  674. msgstr "PyQtバージョン"
  675. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:234
  676. msgctxt "@label OpenGL version"
  677. msgid "OpenGL"
  678. msgstr "OpenGL"
  679. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:264
  680. msgctxt "@label"
  681. msgid "Not yet initialized"
  682. msgstr "初期化されていません"
  683. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:267
  684. #, python-brace-format
  685. msgctxt "@label OpenGL version"
  686. msgid "<li>OpenGL Version: {version}</li>"
  687. msgstr "<li>OpenGLバージョン: {version}</li>"
  688. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:268
  689. #, python-brace-format
  690. msgctxt "@label OpenGL vendor"
  691. msgid "<li>OpenGL Vendor: {vendor}</li>"
  692. msgstr "<li>OpenGLベンダー: {vendor}</li>"
  693. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:269
  694. #, python-brace-format
  695. msgctxt "@label OpenGL renderer"
  696. msgid "<li>OpenGL Renderer: {renderer}</li>"
  697. msgstr "<li>OpenGLレンダラー: {renderer}</li>"
  698. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:304
  699. msgctxt "@title:groupbox"
  700. msgid "Error traceback"
  701. msgstr "エラー・トレースバック"
  702. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:390
  703. msgctxt "@title:groupbox"
  704. msgid "Logs"
  705. msgstr "ログ"
  706. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:418
  707. msgctxt "@action:button"
  708. msgid "Send report"
  709. msgstr "レポート送信"
  710. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  711. msgctxt "@action"
  712. msgid "Machine Settings"
  713. msgstr "プリンターの設定"
  714. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:14
  715. msgctxt "@item:inlistbox"
  716. msgid "JPG Image"
  717. msgstr "JPG画像"
  718. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:18
  719. msgctxt "@item:inlistbox"
  720. msgid "JPEG Image"
  721. msgstr "JPEG画像"
  722. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:22
  723. msgctxt "@item:inlistbox"
  724. msgid "PNG Image"
  725. msgstr "PNG画像"
  726. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:26
  727. msgctxt "@item:inlistbox"
  728. msgid "BMP Image"
  729. msgstr "BMP画像"
  730. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:30
  731. msgctxt "@item:inlistbox"
  732. msgid "GIF Image"
  733. msgstr "GIF画像"
  734. #: /Users/c.lamboo/ultimaker/Cura/plugins/XRayView/__init__.py:12
  735. msgctxt "@item:inlistbox"
  736. msgid "X-Ray view"
  737. msgstr "透視ビューイング"
  738. #: /Users/c.lamboo/ultimaker/Cura/plugins/X3DReader/__init__.py:13
  739. msgctxt "@item:inlistbox"
  740. msgid "X3D File"
  741. msgstr "X3Dファイル"
  742. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileReader/__init__.py:14
  743. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileWriter/__init__.py:14
  744. msgctxt "@item:inlistbox"
  745. msgid "Cura Profile"
  746. msgstr "Curaプロファイル"
  747. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  748. msgctxt "@item:inmenu"
  749. msgid "Post Processing"
  750. msgstr "後処理"
  751. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  752. msgctxt "@item:inmenu"
  753. msgid "Modify G-Code"
  754. msgstr "G-codeを修正"
  755. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  756. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  757. msgctxt "@info:status"
  758. msgid "There are no file formats available to write with!"
  759. msgstr "書き出すために利用可能な形式のファイルがありません!"
  760. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  761. msgctxt "@info:status"
  762. msgid "Print job queue is full. The printer can't accept a new job."
  763. msgstr "プリントジョブのキューがいっぱいです。プリンターは新しいジョブを処理できません。"
  764. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  765. msgctxt "@info:title"
  766. msgid "Queue Full"
  767. msgstr "キューがいっぱい"
  768. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  769. msgctxt "@info:text"
  770. msgid "Could not upload the data to the printer."
  771. msgstr "データをプリンタにアップロードできませんでした。"
  772. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  773. msgctxt "@info:title"
  774. msgid "Network error"
  775. msgstr "ネットワークエラー"
  776. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  777. msgctxt "info:status"
  778. msgid "New printer detected from your Ultimaker account"
  779. msgid_plural "New printers detected from your Ultimaker account"
  780. msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました"
  781. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  782. #, python-brace-format
  783. msgctxt "info:status Filled in with printer name and printer model."
  784. msgid "Adding printer {name} ({model}) from your account"
  785. msgstr "アカウントからプリンター{name}({model})を追加しています"
  786. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  787. #, python-brace-format
  788. msgctxt "info:{0} gets replaced by a number of printers"
  789. msgid "... and {0} other"
  790. msgid_plural "... and {0} others"
  791. msgstr[0] "...および{0}その他"
  792. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  793. msgctxt "info:status"
  794. msgid "Printers added from Digital Factory:"
  795. msgstr "Digital Factoryからプリンターが追加されました:"
  796. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  797. msgctxt "@info:status"
  798. msgid "Please wait until the current job has been sent."
  799. msgstr "現在のジョブが送信されるまで待機してください。"
  800. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  801. msgctxt "@info:title"
  802. msgid "Print error"
  803. msgstr "印刷エラー"
  804. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  805. #, python-brace-format
  806. msgctxt "@info:status"
  807. msgid ""
  808. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  809. " Manage your print queue and monitor your prints from anywhere connecting "
  810. "your printer to Digital Factory"
  811. msgstr "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer"
  812. " to Digital Factory"
  813. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  814. msgctxt "@info:title"
  815. msgid "Are you ready for cloud printing?"
  816. msgstr "クラウドプリンティングの準備はできていますか?"
  817. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  818. msgctxt "@action"
  819. msgid "Get started"
  820. msgstr "はじめに"
  821. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  822. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  823. msgctxt "@action"
  824. msgid "Learn more"
  825. msgstr "詳しく見る"
  826. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  827. msgctxt "@info:status"
  828. msgid ""
  829. "You will receive a confirmation via email when the print job is approved"
  830. msgstr "プリントジョブが承認されると、確認の電子メールが届きます"
  831. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  832. msgctxt "@info:title"
  833. msgid "The print job was successfully submitted"
  834. msgstr "プリントジョブは正常に送信されました"
  835. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  836. msgctxt "@action"
  837. msgid "Manage print jobs"
  838. msgstr "プリントジョブの管理"
  839. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  840. msgctxt "@info:status"
  841. msgid "Sending Print Job"
  842. msgstr "印刷ジョブ送信中"
  843. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  844. msgctxt "@info:status"
  845. msgid "Uploading print job to printer."
  846. msgstr "プリントジョブをプリンターにアップロードしています。"
  847. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  848. #, python-brace-format
  849. msgctxt "@info:status"
  850. msgid ""
  851. "Cura has detected material profiles that were not yet installed on the host "
  852. "printer of group {0}."
  853. msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。"
  854. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  855. msgctxt "@info:title"
  856. msgid "Sending materials to printer"
  857. msgstr "プリンターに材料を送信しています"
  858. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  859. #, python-brace-format
  860. msgctxt "@info:status"
  861. msgid ""
  862. "You are attempting to connect to {0} but it is not the host of a group. You "
  863. "can visit the web page to configure it as a group host."
  864. msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。"
  865. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  866. msgctxt "@info:title"
  867. msgid "Not a group host"
  868. msgstr "グループホストではありません"
  869. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  870. msgctxt "@action"
  871. msgid "Configure group"
  872. msgstr "グループの設定"
  873. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:16
  874. msgctxt "info:status"
  875. msgid "This printer is not linked to the Digital Factory:"
  876. msgid_plural "These printers are not linked to the Digital Factory:"
  877. msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:"
  878. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:22
  879. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  880. msgctxt "info:name"
  881. msgid "Ultimaker Digital Factory"
  882. msgstr "Ultimaker Digital Factory"
  883. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:28
  884. #, python-brace-format
  885. msgctxt "info:status"
  886. msgid "To establish a connection, please visit the {website_link}"
  887. msgstr "接続を確立するには、{website_link}にアクセスしてください"
  888. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:32
  889. msgctxt "info:status"
  890. msgid "A cloud connection is not available for a printer"
  891. msgid_plural "A cloud connection is not available for some printers"
  892. msgstr[0] "一部のプリンターではクラウド接続は利用できません"
  893. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:40
  894. msgctxt "@action:button"
  895. msgid "Keep printer configurations"
  896. msgstr "プリンターの構成を維持"
  897. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:45
  898. msgctxt "@action:button"
  899. msgid "Remove printers"
  900. msgstr "プリンターを取り除く"
  901. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  902. msgctxt "@info:status"
  903. msgid ""
  904. "You are attempting to connect to a printer that is not running Ultimaker "
  905. "Connect. Please update the printer to the latest firmware."
  906. msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。"
  907. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  908. msgctxt "@info:title"
  909. msgid "Update your printer"
  910. msgstr "プリンターの更新"
  911. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  912. msgctxt "@info:status"
  913. msgid "Print job was successfully sent to the printer."
  914. msgstr "プリントジョブは正常にプリンターに送信されました。"
  915. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  916. msgctxt "@info:title"
  917. msgid "Data Sent"
  918. msgstr "データを送信しました"
  919. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  920. msgctxt "@action:button Preceded by 'Ready to'."
  921. msgid "Print over network"
  922. msgstr "ネットワーク上のプリント"
  923. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  924. msgctxt "@properties:tooltip"
  925. msgid "Print over network"
  926. msgstr "ネットワークのプリント"
  927. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  928. msgctxt "@info:status"
  929. msgid "Connected over the network"
  930. msgstr "ネットワーク上で接続"
  931. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  932. msgctxt "@info:status"
  933. msgid "tomorrow"
  934. msgstr "翌日"
  935. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  936. msgctxt "@info:status"
  937. msgid "today"
  938. msgstr "本日"
  939. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  940. msgctxt "@action"
  941. msgid "Connect via Network"
  942. msgstr "ネットワーク上にて接続"
  943. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  944. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  945. msgctxt "@action:button"
  946. msgid "Print via cloud"
  947. msgstr "クラウドからプリントする"
  948. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  949. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  950. msgctxt "@properties:tooltip"
  951. msgid "Print via cloud"
  952. msgstr "クラウドからプリントする"
  953. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  954. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  955. msgctxt "@info:status"
  956. msgid "Connected via cloud"
  957. msgstr "クラウド経由で接続"
  958. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  959. #, python-brace-format
  960. msgctxt "@message {printer_name} is replaced with the name of the printer"
  961. msgid "{printer_name} will be removed until the next account sync."
  962. msgstr "次回のアカウントの同期までに{printer_name}は削除されます。"
  963. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  964. #, python-brace-format
  965. msgctxt "@message {printer_name} is replaced with the name of the printer"
  966. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  967. msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください"
  968. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  969. #, python-brace-format
  970. msgctxt "@message {printer_name} is replaced with the name of the printer"
  971. msgid "Are you sure you want to remove {printer_name} temporarily?"
  972. msgstr "{printer_name}を一時的に削除してもよろしいですか?"
  973. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  974. msgctxt "@title:window"
  975. msgid "Remove printers?"
  976. msgstr "プリンターを削除しますか?"
  977. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  978. #, python-brace-format
  979. msgctxt "@label"
  980. msgid ""
  981. "You are about to remove {0} printer from Cura. This action cannot be "
  982. "undone.\n"
  983. "Are you sure you want to continue?"
  984. msgid_plural ""
  985. "You are about to remove {0} printers from Cura. This action cannot be "
  986. "undone.\n"
  987. "Are you sure you want to continue?"
  988. msgstr[0] "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?"
  989. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  990. msgctxt "@label"
  991. msgid ""
  992. "You are about to remove all printers from Cura. This action cannot be "
  993. "undone.\n"
  994. "Are you sure you want to continue?"
  995. msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?"
  996. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  997. msgctxt "@action:button"
  998. msgid "Monitor print"
  999. msgstr "プリントをモニタリング"
  1000. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  1001. msgctxt "@action:tooltip"
  1002. msgid "Track the print in Ultimaker Digital Factory"
  1003. msgstr "Ultimaker Digital Factoryでプリントを追跡"
  1004. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  1005. #, python-brace-format
  1006. msgctxt "@error:send"
  1007. msgid "Unknown error code when uploading print job: {0}"
  1008. msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}"
  1009. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:28
  1010. msgctxt "@item:inlistbox"
  1011. msgid "3MF file"
  1012. msgstr "3MFファイル"
  1013. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:36
  1014. msgctxt "@item:inlistbox"
  1015. msgid "Cura Project 3MF file"
  1016. msgstr "Curaが3MF fileを算出します"
  1017. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWriter.py:240
  1018. msgctxt "@error:zip"
  1019. msgid "Error writing 3mf file."
  1020. msgstr "3Mf ファイルの書き込みエラー。"
  1021. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1022. msgctxt "@error:zip"
  1023. msgid "3MF Writer plug-in is corrupt."
  1024. msgstr "3MFリーダーのプラグインが破損しています。"
  1025. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1026. msgctxt "@error"
  1027. msgid "There is no workspace yet to write. Please add a printer first."
  1028. msgstr "まだ書き込んでいないワークスペースがありません。まずはプリンターを追加してください。"
  1029. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1030. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1031. msgctxt "@error:zip"
  1032. msgid "No permission to write the workspace here."
  1033. msgstr "この作業スペースに書き込む権限がありません。"
  1034. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1035. msgctxt "@error:zip"
  1036. msgid ""
  1037. "The operating system does not allow saving a project file to this location "
  1038. "or with this file name."
  1039. msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。"
  1040. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  1041. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  1042. msgctxt "@info:backup_status"
  1043. msgid "There was an error trying to restore your backup."
  1044. msgstr "バックアップのリストア中にエラーが発生しました。"
  1045. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  1046. msgctxt "@item:inmenu"
  1047. msgid "Manage backups"
  1048. msgstr "バックアップを管理する"
  1049. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  1050. msgctxt "@info:title"
  1051. msgid "Backups"
  1052. msgstr "バックアップ"
  1053. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1054. msgctxt "@info:backup_status"
  1055. msgid "There was an error while uploading your backup."
  1056. msgstr "バックアップのアップロード中にエラーが発生しました。"
  1057. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  1058. msgctxt "@info:backup_status"
  1059. msgid "Creating your backup..."
  1060. msgstr "バックアップを作成しています..."
  1061. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  1062. msgctxt "@info:backup_status"
  1063. msgid "There was an error while creating your backup."
  1064. msgstr "バックアップの作成中にエラーが発生しました。"
  1065. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  1066. msgctxt "@info:backup_status"
  1067. msgid "Uploading your backup..."
  1068. msgstr "バックアップをアップロードしています..."
  1069. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  1070. msgctxt "@info:backup_status"
  1071. msgid "Your backup has finished uploading."
  1072. msgstr "バックアップのアップロードを完了しました。"
  1073. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  1074. msgctxt "@error:file_size"
  1075. msgid "The backup exceeds the maximum file size."
  1076. msgstr "バックアップが最大ファイルサイズを超えています。"
  1077. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1078. msgctxt "@text"
  1079. msgid "Unable to read example data file."
  1080. msgstr "サンプルのデータファイルを読み取ることができません。"
  1081. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:62
  1082. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:78
  1083. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:91
  1084. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:113
  1085. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:168
  1086. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:178
  1087. msgctxt "@info:error"
  1088. msgid "Can't write to UFP file:"
  1089. msgstr "UFPファイルに書き込めません:"
  1090. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/__init__.py:28
  1091. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPReader/__init__.py:22
  1092. msgctxt "@item:inlistbox"
  1093. msgid "Ultimaker Format Package"
  1094. msgstr "Ultimakerフォーマットパッケージ"
  1095. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1096. msgctxt "@text Placeholder for the username if it has been deleted"
  1097. msgid "deleted user"
  1098. msgstr "削除されたユーザー"
  1099. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeProfileReader/__init__.py:14
  1100. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:14
  1101. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/__init__.py:16
  1102. msgctxt "@item:inlistbox"
  1103. msgid "G-code File"
  1104. msgstr "G-codeファイル"
  1105. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:350
  1106. msgctxt "@info:status"
  1107. msgid "Parsing G-code"
  1108. msgstr "G-codeを解析"
  1109. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:352
  1110. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:506
  1111. msgctxt "@info:title"
  1112. msgid "G-code Details"
  1113. msgstr "G-codeの詳細"
  1114. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:504
  1115. msgctxt "@info:generic"
  1116. msgid ""
  1117. "Make sure the g-code is suitable for your printer and printer configuration "
  1118. "before sending the file to it. The g-code representation may not be accurate."
  1119. msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。"
  1120. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:18
  1121. msgctxt "@item:inlistbox"
  1122. msgid "G File"
  1123. msgstr "Gファイル"
  1124. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:15
  1125. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1126. msgid "Open Compressed Triangle Mesh"
  1127. msgstr "圧縮トライアングルメッシュを開く"
  1128. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:19
  1129. msgctxt "@item:inlistbox"
  1130. msgid "COLLADA Digital Asset Exchange"
  1131. msgstr "COLLADA Digital Asset Exchange"
  1132. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:23
  1133. msgctxt "@item:inlistbox"
  1134. msgid "glTF Binary"
  1135. msgstr "glTFバイナリ"
  1136. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:27
  1137. msgctxt "@item:inlistbox"
  1138. msgid "glTF Embedded JSON"
  1139. msgstr "glTF埋め込みJSON"
  1140. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:36
  1141. msgctxt "@item:inlistbox"
  1142. msgid "Stanford Triangle Format"
  1143. msgstr "Stanford Triangle Format"
  1144. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:40
  1145. msgctxt "@item:inlistbox"
  1146. msgid "Compressed COLLADA Digital Asset Exchange"
  1147. msgstr "圧縮COLLADA Digital Asset Exchange"
  1148. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1149. msgctxt "@action"
  1150. msgid "Level build plate"
  1151. msgstr "ビルドプレートを調整する"
  1152. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1153. msgctxt "@action"
  1154. msgid "Select upgrades"
  1155. msgstr "アップグレードを選択する"
  1156. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzReader/__init__.py:17
  1157. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/__init__.py:17
  1158. msgctxt "@item:inlistbox"
  1159. msgid "Compressed G-code File"
  1160. msgstr "圧縮G-codeファイル"
  1161. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:117
  1162. msgctxt "@info:error"
  1163. msgid "Could not interpret the server's response."
  1164. msgstr "サーバーの応答を解釈できませんでした。"
  1165. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:148
  1166. msgctxt "@info:error"
  1167. msgid "Could not reach Marketplace."
  1168. msgstr "マーケットプレースにアクセスできませんでした。"
  1169. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1170. msgctxt "@button"
  1171. msgid "Decline and remove from account"
  1172. msgstr "拒否してアカウントから削除"
  1173. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12
  1174. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1175. msgctxt "@button"
  1176. msgid "Decline"
  1177. msgstr "拒否する"
  1178. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13
  1179. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  1180. msgctxt "@button"
  1181. msgid "Agree"
  1182. msgstr "同意する"
  1183. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  1184. msgctxt "@title:window"
  1185. msgid "Plugin License Agreement"
  1186. msgstr "プラグインライセンス同意書"
  1187. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1188. msgctxt "@info:generic"
  1189. msgid "Do you want to sync material and software packages with your account?"
  1190. msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?"
  1191. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1192. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1193. msgctxt "@info:title"
  1194. msgid "Changes detected from your Ultimaker account"
  1195. msgstr "Ultimakerアカウントから変更が検出されました"
  1196. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1197. msgctxt "@action:button"
  1198. msgid "Sync"
  1199. msgstr "同期"
  1200. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1201. msgctxt "@info:generic"
  1202. msgid "You need to quit and restart {} before changes have effect."
  1203. msgstr "変更を有効にするために{}を終了して再始動する必要があります。"
  1204. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1205. msgctxt "@info:generic"
  1206. msgid "Syncing..."
  1207. msgstr "同期中..."
  1208. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1209. msgctxt "@info:generic"
  1210. msgid "{} plugins failed to download"
  1211. msgstr "{}プラグインのダウンロードに失敗しました"
  1212. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:28
  1213. msgctxt "@label"
  1214. msgid "Installed Plugins"
  1215. msgstr "インストールされたプラグイン"
  1216. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:29
  1217. msgctxt "@label"
  1218. msgid "Installed Materials"
  1219. msgstr "インストールされた材料"
  1220. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:33
  1221. msgctxt "@label"
  1222. msgid "Bundled Plugins"
  1223. msgstr "バンドルされたプラグイン"
  1224. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:34
  1225. msgctxt "@label"
  1226. msgid "Bundled Materials"
  1227. msgstr "バンドルされた材料"
  1228. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:43
  1229. msgctxt "@label:property"
  1230. msgid "Unknown Package"
  1231. msgstr "不明なパッケージ"
  1232. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:66
  1233. msgctxt "@label:property"
  1234. msgid "Unknown Author"
  1235. msgstr "不明な作成者"
  1236. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  1237. msgctxt "@item:intext"
  1238. msgid "Removable Drive"
  1239. msgstr "リムーバブルドライブ"
  1240. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  1241. msgctxt "@action:button Preceded by 'Ready to'."
  1242. msgid "Save to Removable Drive"
  1243. msgstr "リムーバブルドライブに保存"
  1244. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  1245. #, python-brace-format
  1246. msgctxt "@item:inlistbox"
  1247. msgid "Save to Removable Drive {0}"
  1248. msgstr "リムーバブルドライブ{0}に保存"
  1249. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  1250. #, python-brace-format
  1251. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  1252. msgid "Saving to Removable Drive <filename>{0}</filename>"
  1253. msgstr "リムーバブルドライブ<filename>{0}</filename>に保存中"
  1254. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  1255. msgctxt "@info:title"
  1256. msgid "Saving"
  1257. msgstr "保存中"
  1258. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  1259. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  1260. #, python-brace-format
  1261. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1262. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  1263. msgstr "<filename>{0}</filename>を保存できませんでした: <message>{1}</message>"
  1264. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  1265. #, python-brace-format
  1266. msgctxt "@info:status Don't translate the tag {device}!"
  1267. msgid "Could not find a file name when trying to write to {device}."
  1268. msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。"
  1269. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  1270. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  1271. #, python-brace-format
  1272. msgctxt "@info:status"
  1273. msgid "Could not save to removable drive {0}: {1}"
  1274. msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}"
  1275. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  1276. #, python-brace-format
  1277. msgctxt "@info:status"
  1278. msgid "Saved to Removable Drive {0} as {1}"
  1279. msgstr "リムーバブルドライブ{0}に {1}として保存"
  1280. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  1281. msgctxt "@info:title"
  1282. msgid "File Saved"
  1283. msgstr "ファイル保存"
  1284. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1285. msgctxt "@action:button"
  1286. msgid "Eject"
  1287. msgstr "取り出す"
  1288. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1289. #, python-brace-format
  1290. msgctxt "@action"
  1291. msgid "Eject removable device {0}"
  1292. msgstr "リムーバブルデバイス{0}を取り出す"
  1293. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  1294. #, python-brace-format
  1295. msgctxt "@info:status"
  1296. msgid "Ejected {0}. You can now safely remove the drive."
  1297. msgstr "{0}取り出し完了。デバイスを安全に取り外せます。"
  1298. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  1299. msgctxt "@info:title"
  1300. msgid "Safely Remove Hardware"
  1301. msgstr "ハードウェアを安全に取り外します"
  1302. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  1303. #, python-brace-format
  1304. msgctxt "@info:status"
  1305. msgid "Failed to eject {0}. Another program may be using the drive."
  1306. msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。"
  1307. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/__init__.py:14
  1308. msgctxt "@item:inmenu"
  1309. msgid "Monitor"
  1310. msgstr "モニター"
  1311. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1312. msgctxt "@message"
  1313. msgid ""
  1314. "Slicing failed with an unexpected error. Please consider reporting a bug on "
  1315. "our issue tracker."
  1316. msgstr "予期しないエラーが発生し、スライスに失敗しました。問題追跡ツールでのバグ報告をご検討ください。"
  1317. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1318. msgctxt "@message:title"
  1319. msgid "Slicing failed"
  1320. msgstr "スライスに失敗しました"
  1321. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1322. msgctxt "@message:button"
  1323. msgid "Report a bug"
  1324. msgstr "バグを報告"
  1325. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1326. msgctxt "@message:description"
  1327. msgid "Report a bug on Ultimaker Cura's issue tracker."
  1328. msgstr "Ultimaker Curaの問題追跡ツールでバグを報告してください。"
  1329. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1330. msgctxt "@info:status"
  1331. msgid ""
  1332. "Unable to slice with the current material as it is incompatible with the "
  1333. "selected machine or configuration."
  1334. msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。"
  1335. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1336. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1337. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1338. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1339. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1340. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1341. msgctxt "@info:title"
  1342. msgid "Unable to slice"
  1343. msgstr "スライスできません"
  1344. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1345. #, python-brace-format
  1346. msgctxt "@info:status"
  1347. msgid ""
  1348. "Unable to slice with the current settings. The following settings have "
  1349. "errors: {0}"
  1350. msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}"
  1351. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1352. #, python-brace-format
  1353. msgctxt "@info:status"
  1354. msgid ""
  1355. "Unable to slice due to some per-model settings. The following settings have "
  1356. "errors on one or more models: {error_labels}"
  1357. msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}"
  1358. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1359. msgctxt "@info:status"
  1360. msgid ""
  1361. "Unable to slice because the prime tower or prime position(s) are invalid."
  1362. msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。"
  1363. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1364. #, python-format
  1365. msgctxt "@info:status"
  1366. msgid ""
  1367. "Unable to slice because there are objects associated with disabled Extruder "
  1368. "%s."
  1369. msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。"
  1370. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1371. msgctxt "@info:status"
  1372. msgid ""
  1373. "Please review settings and check if your models:\n"
  1374. "- Fit within the build volume\n"
  1375. "- Are assigned to an enabled extruder\n"
  1376. "- Are not all set as modifier meshes"
  1377. msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。\n- 造形サイズに合っている\n- 有効なエクストルーダーに割り当てられている\n- すべてが修飾子メッシュとして設定されているわけではない"
  1378. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1379. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1380. msgctxt "@info:status"
  1381. msgid "Processing Layers"
  1382. msgstr "レイヤーを処理しています"
  1383. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1384. msgctxt "@info:title"
  1385. msgid "Information"
  1386. msgstr "インフォメーション"
  1387. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:27
  1388. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:33
  1389. msgctxt "@item:inlistbox"
  1390. msgid "3MF File"
  1391. msgstr "3MF ファイル"
  1392. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:212
  1393. msgctxt "@title:tab"
  1394. msgid "Recommended"
  1395. msgstr "推奨"
  1396. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:214
  1397. msgctxt "@title:tab"
  1398. msgid "Custom"
  1399. msgstr "カスタム"
  1400. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:390
  1401. msgctxt "@info:status"
  1402. msgid ""
  1403. "The material used in this project relies on some material definitions not "
  1404. "available in Cura, this might produce undesirable print results. We highly "
  1405. "recommend installing the full material package from the Marketplace."
  1406. msgstr "このプロジェクトで使用される材料にはCuraで利用できないいくつかの材料コードが使用されているため、望ましくないプリント結果になる可能性があります。Marketplaceから材料パッケージ一式をインストールすることを強くお勧めします。"
  1407. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:392
  1408. msgctxt "@info:title"
  1409. msgid "Material profiles not installed"
  1410. msgstr "材料プロファイルがインストールされていません"
  1411. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:405
  1412. msgctxt "@action:button"
  1413. msgid "Install Materials"
  1414. msgstr "材料のインストール"
  1415. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  1416. #, python-brace-format
  1417. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1418. msgid ""
  1419. "Project file <filename>{0}</filename> contains an unknown machine type "
  1420. "<message>{1}</message>. Cannot import the machine. Models will be imported "
  1421. "instead."
  1422. msgstr "プロジェクトファイル <filename>{0}</filename> に不明なマシンタイプ <message>{1}</message> があります。マシンをインポートできません。代わりにモデルをインポートします。"
  1423. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548
  1424. msgctxt "@info:title"
  1425. msgid "Open Project File"
  1426. msgstr "プロジェクトファイルを開く"
  1427. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  1428. #, python-brace-format
  1429. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1430. msgid ""
  1431. "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}"
  1432. "</message>."
  1433. msgstr "プロジェクトファイル<filename>{0}</filename>が突然アクセスできなくなりました:<message>{1}</message>。"
  1434. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651
  1435. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659
  1436. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:678
  1437. msgctxt "@info:title"
  1438. msgid "Can't Open Project File"
  1439. msgstr "プロジェクトファイルを開けません"
  1440. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658
  1441. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:676
  1442. #, python-brace-format
  1443. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1444. msgid ""
  1445. "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1446. msgstr "プロジェクトファイル<filename>{0}</filename>は破損しています:<message>{1}</message>。"
  1447. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:723
  1448. #, python-brace-format
  1449. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1450. msgid ""
  1451. "Project file <filename>{0}</filename> is made using profiles that are "
  1452. "unknown to this version of Ultimaker Cura."
  1453. msgstr "プロジェクトファイル<filename>{0}</filename>はこのバージョンのUltimaker Curaでは認識できないプロファイルを使用して作成されています。"
  1454. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  1455. msgctxt "@label"
  1456. msgid "Per Model Settings"
  1457. msgstr "各モデル設定"
  1458. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  1459. msgctxt "@info:tooltip"
  1460. msgid "Configure Per Model Settings"
  1461. msgstr "各モデル構成設定"
  1462. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:31
  1463. msgctxt "@info:title"
  1464. msgid "3D Model Assistant"
  1465. msgstr "3Dモデルアシスタント"
  1466. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:97
  1467. #, python-brace-format
  1468. msgctxt "@info:status"
  1469. msgid ""
  1470. "<p>One or more 3D models may not print optimally due to the model size and "
  1471. "material configuration:</p>\n"
  1472. "<p>{model_names}</p>\n"
  1473. "<p>Find out how to ensure the best possible print quality and reliability.</"
  1474. "p>\n"
  1475. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality "
  1476. "guide</a></p>"
  1477. msgstr "<p>モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:</p>\n<p>{model_names}</p>\n<p>可能な限り最高の品質および信頼性を得る方法をご覧ください。</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">印字品質ガイドを見る</a></p>"
  1478. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1479. msgctxt "@item:inmenu"
  1480. msgid "USB printing"
  1481. msgstr "USBプリンティング"
  1482. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1483. msgctxt "@action:button Preceded by 'Ready to'."
  1484. msgid "Print via USB"
  1485. msgstr "USBを使ってプリントする"
  1486. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1487. msgctxt "@info:tooltip"
  1488. msgid "Print via USB"
  1489. msgstr "USBを使ってプリントする"
  1490. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1491. msgctxt "@info:status"
  1492. msgid "Connected via USB"
  1493. msgstr "USBにて接続する"
  1494. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1495. msgctxt "@label"
  1496. msgid ""
  1497. "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1498. msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?"
  1499. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1500. msgctxt "@message"
  1501. msgid ""
  1502. "A print is still in progress. Cura cannot start another print via USB until "
  1503. "the previous print has completed."
  1504. msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。"
  1505. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1506. msgctxt "@message"
  1507. msgid "Print in Progress"
  1508. msgstr "現在印刷中"
  1509. #: /Users/c.lamboo/ultimaker/Cura/plugins/PreviewStage/__init__.py:13
  1510. msgctxt "@item:inmenu"
  1511. msgid "Preview"
  1512. msgstr "プレビュー"
  1513. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:75
  1514. msgctxt "@error:not supported"
  1515. msgid "GCodeWriter does not support non-text mode."
  1516. msgstr "GCodeWriter は非テキストモードはサポートしていません。"
  1517. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:81
  1518. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:97
  1519. msgctxt "@warning:status"
  1520. msgid "Please prepare G-code before exporting."
  1521. msgstr "エクスポートする前にG-codeの準備をしてください。"
  1522. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1523. msgctxt "@action"
  1524. msgid "Update Firmware"
  1525. msgstr "ファームウェアアップデート"
  1526. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1527. msgctxt "@error:not supported"
  1528. msgid "GCodeGzWriter does not support text mode."
  1529. msgstr "GCodeGzWriter はテキストモードをサポートしていません。"
  1530. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/__init__.py:15
  1531. msgctxt "@item:inlistbox"
  1532. msgid "Layer view"
  1533. msgstr "レイヤービュー"
  1534. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:129
  1535. msgctxt "@info:status"
  1536. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1537. msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。"
  1538. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:130
  1539. msgctxt "@info:title"
  1540. msgid "Simulation View"
  1541. msgstr "シミュレーションビュー"
  1542. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:133
  1543. msgctxt "@info:status"
  1544. msgid "Nothing is shown because you need to slice first."
  1545. msgstr "最初にスライスする必要があるため、何も表示されません。"
  1546. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:134
  1547. msgctxt "@info:title"
  1548. msgid "No layers to show"
  1549. msgstr "表示するレイヤーがありません"
  1550. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:136
  1551. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:74
  1552. msgctxt "@info:option_text"
  1553. msgid "Do not show this message again"
  1554. msgstr "今後このメッセージを表示しない"
  1555. #: /Users/c.lamboo/ultimaker/Cura/plugins/LegacyProfileReader/__init__.py:14
  1556. msgctxt "@item:inlistbox"
  1557. msgid "Cura 15.04 profiles"
  1558. msgstr "Cura 15.04 プロファイル"
  1559. #: /Users/c.lamboo/ultimaker/Cura/plugins/AMFReader/__init__.py:15
  1560. msgctxt "@item:inlistbox"
  1561. msgid "AMF File"
  1562. msgstr "AMF ファイル"
  1563. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:71
  1564. msgctxt "@info:status"
  1565. msgid ""
  1566. "The highlighted areas indicate either missing or extraneous surfaces. Fix "
  1567. "your model and open it again into Cura."
  1568. msgstr "ハイライトされたエリアは、欠けている表面または無関係な表面を示します。モデルを修正してもう一度Curaを開いてください。"
  1569. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:73
  1570. msgctxt "@info:title"
  1571. msgid "Model Errors"
  1572. msgstr "モデルエラー"
  1573. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/__init__.py:12
  1574. msgctxt "@item:inmenu"
  1575. msgid "Solid view"
  1576. msgstr "ソリッドビュー"
  1577. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1578. #, python-brace-format
  1579. msgctxt ""
  1580. "@info Don't translate {machine_name}, since it gets replaced by a printer "
  1581. "name!"
  1582. msgid ""
  1583. "New features or bug-fixes may be available for your {machine_name}! If you "
  1584. "haven't done so already, it is recommended to update the firmware on your "
  1585. "printer to version {latest_version}."
  1586. msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。"
  1587. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1588. #, python-format
  1589. msgctxt "@info:title The %s gets replaced with the printer name."
  1590. msgid "New %s stable firmware available"
  1591. msgstr "%sの新しい安定版ファームウェアが利用可能です"
  1592. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1593. msgctxt "@action:button"
  1594. msgid "How to update"
  1595. msgstr "アップデートの仕方"
  1596. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1597. msgctxt "@info"
  1598. msgid "Could not access update information."
  1599. msgstr "必要なアップデートの情報にアクセスできません。"
  1600. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:12
  1601. msgctxt "@label"
  1602. msgid "Support Blocker"
  1603. msgstr "サポートブロッカー"
  1604. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:13
  1605. msgctxt "@info:tooltip"
  1606. msgid "Create a volume in which supports are not printed."
  1607. msgstr "サポートが印刷されないボリュームを作成します。"
  1608. #: /Users/c.lamboo/ultimaker/Cura/plugins/PrepareStage/__init__.py:12
  1609. msgctxt "@item:inmenu"
  1610. msgid "Prepare"
  1611. msgstr "準備する"
  1612. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1613. msgctxt "@title:label"
  1614. msgid "Printer Settings"
  1615. msgstr "プリンターの設定"
  1616. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1617. msgctxt "@label"
  1618. msgid "X (Width)"
  1619. msgstr "X(幅)"
  1620. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1621. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1622. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1623. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1624. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1625. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1626. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1627. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1628. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1629. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1630. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1631. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1632. msgctxt "@label"
  1633. msgid "mm"
  1634. msgstr "mm"
  1635. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1636. msgctxt "@label"
  1637. msgid "Y (Depth)"
  1638. msgstr "Y (奥行き)"
  1639. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1640. msgctxt "@label"
  1641. msgid "Z (Height)"
  1642. msgstr "Z (高さ)"
  1643. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1644. msgctxt "@label"
  1645. msgid "Build plate shape"
  1646. msgstr "ビルドプレート形"
  1647. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1648. msgctxt "@label"
  1649. msgid "Origin at center"
  1650. msgstr "センターを出します"
  1651. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1652. msgctxt "@label"
  1653. msgid "Heated bed"
  1654. msgstr "ヒーテッドドベッド"
  1655. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1656. msgctxt "@label"
  1657. msgid "Heated build volume"
  1658. msgstr "加熱式ビルドボリューム"
  1659. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1660. msgctxt "@label"
  1661. msgid "G-code flavor"
  1662. msgstr "G-codeフレーバー"
  1663. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1664. msgctxt "@title:label"
  1665. msgid "Printhead Settings"
  1666. msgstr "プリントヘッド設定"
  1667. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1668. msgctxt "@label"
  1669. msgid "X min"
  1670. msgstr "X分"
  1671. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1672. msgctxt "@label"
  1673. msgid "Y min"
  1674. msgstr "Y分"
  1675. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1676. msgctxt "@label"
  1677. msgid "X max"
  1678. msgstr "最大X"
  1679. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1680. msgctxt "@label"
  1681. msgid "Y max"
  1682. msgstr "最大Y"
  1683. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1684. msgctxt "@label"
  1685. msgid "Gantry Height"
  1686. msgstr "ガントリーの高さ"
  1687. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1688. msgctxt "@label"
  1689. msgid "Number of Extruders"
  1690. msgstr "エクストルーダーの数"
  1691. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1692. msgctxt "@label"
  1693. msgid "Apply Extruder offsets to GCode"
  1694. msgstr "エクストルーダーのオフセットをGCodeに適用します"
  1695. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1696. msgctxt "@title:label"
  1697. msgid "Start G-code"
  1698. msgstr "G-Codeの開始"
  1699. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1700. msgctxt "@title:label"
  1701. msgid "End G-code"
  1702. msgstr "G-codeの終了"
  1703. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1704. msgctxt "@title:tab"
  1705. msgid "Printer"
  1706. msgstr "プリンター"
  1707. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1708. msgctxt "@title:label"
  1709. msgid "Nozzle Settings"
  1710. msgstr "ノズル設定"
  1711. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1712. msgctxt "@label"
  1713. msgid "Nozzle size"
  1714. msgstr "ノズルサイズ"
  1715. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1716. msgctxt "@label"
  1717. msgid "Compatible material diameter"
  1718. msgstr "適合する材料直径"
  1719. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1720. msgctxt "@label"
  1721. msgid "Nozzle offset X"
  1722. msgstr "ノズルオフセットX"
  1723. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1724. msgctxt "@label"
  1725. msgid "Nozzle offset Y"
  1726. msgstr "ノズルオフセットY"
  1727. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1728. msgctxt "@label"
  1729. msgid "Cooling Fan Number"
  1730. msgstr "冷却ファンの番号"
  1731. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1732. msgctxt "@title:label"
  1733. msgid "Extruder Start G-code"
  1734. msgstr "エクストルーダーがG-Codeを開始する"
  1735. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1736. msgctxt "@title:label"
  1737. msgid "Extruder End G-code"
  1738. msgstr "エクストルーダーがG-Codeを終了する"
  1739. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:14
  1740. msgctxt "@title:window"
  1741. msgid "Convert Image"
  1742. msgstr "画像の変換"
  1743. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:33
  1744. msgctxt "@action:label"
  1745. msgid "Height (mm)"
  1746. msgstr "高さ(mm)"
  1747. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:56
  1748. msgctxt "@info:tooltip"
  1749. msgid "The maximum distance of each pixel from \"Base.\""
  1750. msgstr "“ベース”から各ピクセルへの最大距離。"
  1751. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:66
  1752. msgctxt "@action:label"
  1753. msgid "Base (mm)"
  1754. msgstr "ベース(mm)"
  1755. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:90
  1756. msgctxt "@info:tooltip"
  1757. msgid "The base height from the build plate in millimeters."
  1758. msgstr "ミリメートルでビルドプレートからベースの高さ。"
  1759. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:100
  1760. msgctxt "@action:label"
  1761. msgid "Width (mm)"
  1762. msgstr "幅(mm)"
  1763. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:124
  1764. msgctxt "@info:tooltip"
  1765. msgid "The width in millimeters on the build plate"
  1766. msgstr "ビルドプレート上の幅(ミリメートル)"
  1767. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:134
  1768. msgctxt "@action:label"
  1769. msgid "Depth (mm)"
  1770. msgstr "深さ(mm)"
  1771. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:158
  1772. msgctxt "@info:tooltip"
  1773. msgid "The depth in millimeters on the build plate"
  1774. msgstr "ビルドプレート上の奥行きミリメートル"
  1775. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:187
  1776. msgctxt "@item:inlistbox"
  1777. msgid "Darker is higher"
  1778. msgstr "暗いほうを高く"
  1779. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:188
  1780. msgctxt "@item:inlistbox"
  1781. msgid "Lighter is higher"
  1782. msgstr "薄いほうを高く"
  1783. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:195
  1784. msgctxt "@info:tooltip"
  1785. msgid ""
  1786. "For lithophanes dark pixels should correspond to thicker locations in order "
  1787. "to block more light coming through. For height maps lighter pixels signify "
  1788. "higher terrain, so lighter pixels should correspond to thicker locations in "
  1789. "the generated 3D model."
  1790. msgstr "リトフェインの場合、暗いピクセルは、より多くの光を通すために厚い場所に対応する必要があります。高さマップの場合、明るいピクセルは高い地形を表しているため、明るいピクセルは生成された3D モデルの厚い位置に対応する必要があります。"
  1791. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:205
  1792. msgctxt "@action:label"
  1793. msgid "Color Model"
  1794. msgstr "カラーモデル"
  1795. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:224
  1796. msgctxt "@item:inlistbox"
  1797. msgid "Linear"
  1798. msgstr "線形"
  1799. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:225
  1800. msgctxt "@item:inlistbox"
  1801. msgid "Translucency"
  1802. msgstr "半透明性"
  1803. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:232
  1804. msgctxt "@info:tooltip"
  1805. msgid ""
  1806. "For lithophanes a simple logarithmic model for translucency is available. "
  1807. "For height maps the pixel values correspond to heights linearly."
  1808. msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。"
  1809. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:242
  1810. msgctxt "@action:label"
  1811. msgid "1mm Transmittance (%)"
  1812. msgstr "1mm透過率(%)"
  1813. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:263
  1814. msgctxt "@info:tooltip"
  1815. msgid ""
  1816. "The percentage of light penetrating a print with a thickness of 1 "
  1817. "millimeter. Lowering this value increases the contrast in dark regions and "
  1818. "decreases the contrast in light regions of the image."
  1819. msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。"
  1820. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:274
  1821. msgctxt "@action:label"
  1822. msgid "Smoothing"
  1823. msgstr "スムージング"
  1824. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:298
  1825. msgctxt "@info:tooltip"
  1826. msgid "The amount of smoothing to apply to the image."
  1827. msgstr "画像に適応したスムージング量。"
  1828. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:329
  1829. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1830. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:80
  1831. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:143
  1832. msgctxt "@action:button"
  1833. msgid "OK"
  1834. msgstr "OK"
  1835. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  1836. msgctxt "@title:window"
  1837. msgid "Post Processing Plugin"
  1838. msgstr "プラグイン処理後"
  1839. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1840. msgctxt "@label"
  1841. msgid "Post Processing Scripts"
  1842. msgstr "スクリプトの処理後"
  1843. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  1844. msgctxt "@action"
  1845. msgid "Add a script"
  1846. msgstr "スクリプトを加える"
  1847. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  1848. msgctxt "@label"
  1849. msgid "Settings"
  1850. msgstr "設定"
  1851. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  1852. msgctxt "@info:tooltip"
  1853. msgid "Change active post-processing scripts."
  1854. msgstr "処理したアクティブなスクリプトを変更します。"
  1855. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1856. msgctxt "@info:tooltip"
  1857. msgid "The following script is active:"
  1858. msgid_plural "The following scripts are active:"
  1859. msgstr[0] "次のスクリプトがアクティブです:"
  1860. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1861. msgctxt "@label"
  1862. msgid "Move to top"
  1863. msgstr "最上位に移動"
  1864. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  1865. msgctxt "@label"
  1866. msgid "Delete"
  1867. msgstr "削除"
  1868. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  1869. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:284
  1870. msgctxt "@label"
  1871. msgid "Resume"
  1872. msgstr "再開"
  1873. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  1874. msgctxt "@label"
  1875. msgid "Pausing..."
  1876. msgstr "一時停止しています..."
  1877. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  1878. msgctxt "@label"
  1879. msgid "Resuming..."
  1880. msgstr "再開しています..."
  1881. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  1882. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:279
  1883. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:288
  1884. msgctxt "@label"
  1885. msgid "Pause"
  1886. msgstr "一時停止"
  1887. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1888. msgctxt "@label"
  1889. msgid "Aborting..."
  1890. msgstr "中止しています..."
  1891. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1892. msgctxt "@label"
  1893. msgid "Abort"
  1894. msgstr "中止"
  1895. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  1896. msgctxt "@label %1 is the name of a print job."
  1897. msgid "Are you sure you want to move %1 to the top of the queue?"
  1898. msgstr "%1 をキューの最上位に移動しますか?"
  1899. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  1900. msgctxt "@window:title"
  1901. msgid "Move print job to top"
  1902. msgstr "印刷ジョブを最上位に移動する"
  1903. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  1904. msgctxt "@label %1 is the name of a print job."
  1905. msgid "Are you sure you want to delete %1?"
  1906. msgstr "%1 を削除しますか?"
  1907. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  1908. msgctxt "@window:title"
  1909. msgid "Delete print job"
  1910. msgstr "印刷ジョブの削除"
  1911. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  1912. msgctxt "@label %1 is the name of a print job."
  1913. msgid "Are you sure you want to abort %1?"
  1914. msgstr "%1 を中止してよろしいですか?"
  1915. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  1916. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:326
  1917. msgctxt "@window:title"
  1918. msgid "Abort print"
  1919. msgstr "プリント中止"
  1920. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1921. msgctxt "@title:window"
  1922. msgid "Print over network"
  1923. msgstr "ネットワーク上のプリント"
  1924. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1925. msgctxt "@action:button"
  1926. msgid "Print"
  1927. msgstr "プリント"
  1928. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1929. msgctxt "@label"
  1930. msgid "Printer selection"
  1931. msgstr "プリンターの選択"
  1932. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1933. msgctxt "@title:window"
  1934. msgid "Configuration Changes"
  1935. msgstr "構成の変更"
  1936. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1937. msgctxt "@action:button"
  1938. msgid "Override"
  1939. msgstr "上書き"
  1940. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1941. msgctxt "@label"
  1942. msgid "The assigned printer, %1, requires the following configuration change:"
  1943. msgid_plural ""
  1944. "The assigned printer, %1, requires the following configuration changes:"
  1945. msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:"
  1946. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1947. msgctxt "@label"
  1948. msgid ""
  1949. "The printer %1 is assigned, but the job contains an unknown material "
  1950. "configuration."
  1951. msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。"
  1952. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1953. msgctxt "@label"
  1954. msgid "Change material %1 from %2 to %3."
  1955. msgstr "材料 %1 を %2 から %3 に変更します。"
  1956. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1957. msgctxt "@label"
  1958. msgid "Load %3 as material %1 (This cannot be overridden)."
  1959. msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。"
  1960. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1961. msgctxt "@label"
  1962. msgid "Change print core %1 from %2 to %3."
  1963. msgstr "プリントコア %1 を %2 から %3 に変更します。"
  1964. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1965. msgctxt "@label"
  1966. msgid "Change build plate to %1 (This cannot be overridden)."
  1967. msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。"
  1968. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1969. msgctxt "@label"
  1970. msgid ""
  1971. "Override will use the specified settings with the existing printer "
  1972. "configuration. This may result in a failed print."
  1973. msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。"
  1974. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1975. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:181
  1976. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:178
  1977. msgctxt "@label"
  1978. msgid "Glass"
  1979. msgstr "ガラス"
  1980. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1981. msgctxt "@label"
  1982. msgid "Aluminum"
  1983. msgstr "アルミニウム"
  1984. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1985. msgctxt "@label link to Connect and Cloud interfaces"
  1986. msgid "Manage printer"
  1987. msgstr "プリンター管理"
  1988. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:253
  1989. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:479
  1990. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1991. msgctxt "@info"
  1992. msgid "Please update your printer's firmware to manage the queue remotely."
  1993. msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。"
  1994. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:287
  1995. msgctxt "@info"
  1996. msgid ""
  1997. "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click "
  1998. "\"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1999. msgstr "クラウドプリンターのウェブカムフィードをUltimaker Curaから見ることができません。「プリンター管理」をクリックして、Ultimaker Digital Factoryにアクセスし、このウェブカムを見ます。"
  2000. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  2001. msgctxt "@label:status"
  2002. msgid "Loading..."
  2003. msgstr "読み込み中..."
  2004. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  2005. msgctxt "@label:status"
  2006. msgid "Unavailable"
  2007. msgstr "利用不可"
  2008. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:355
  2009. msgctxt "@label:status"
  2010. msgid "Unreachable"
  2011. msgstr "到達不能"
  2012. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:359
  2013. msgctxt "@label:status"
  2014. msgid "Idle"
  2015. msgstr "アイドル"
  2016. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:363
  2017. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2018. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2019. msgctxt "@label:status"
  2020. msgid "Preparing..."
  2021. msgstr "準備中..."
  2022. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:368
  2023. msgctxt "@label:status"
  2024. msgid "Printing"
  2025. msgstr "プリント中"
  2026. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:409
  2027. msgctxt "@label"
  2028. msgid "Untitled"
  2029. msgstr "無題"
  2030. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:424
  2031. msgctxt "@label"
  2032. msgid "Anonymous"
  2033. msgstr "匿名"
  2034. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:445
  2035. msgctxt "@label:status"
  2036. msgid "Requires configuration changes"
  2037. msgstr "構成の変更が必要です"
  2038. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:459
  2039. msgctxt "@action:button"
  2040. msgid "Details"
  2041. msgstr "詳細"
  2042. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2043. msgctxt "@label"
  2044. msgid "Unavailable printer"
  2045. msgstr "利用できないプリンター"
  2046. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2047. msgctxt "@label"
  2048. msgid "First available"
  2049. msgstr "次の空き"
  2050. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  2051. msgctxt "@info"
  2052. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  2053. msgstr "Ultimaker Digital Factoryを使用して、あらゆる場所から自分のプリンターをモニタリング"
  2054. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  2055. msgctxt "@button"
  2056. msgid "View printers in Digital Factory"
  2057. msgstr "Digital Factoryでプリンターを表示する"
  2058. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2059. msgctxt "@title:window"
  2060. msgid "Connect to Networked Printer"
  2061. msgstr "ネットワーク上で繋がったプリンターに接続"
  2062. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2063. msgctxt "@label"
  2064. msgid ""
  2065. "To print directly to your printer over the network, please make sure your "
  2066. "printer is connected to the network using a network cable or by connecting "
  2067. "your printer to your WIFI network. If you don't connect Cura with your "
  2068. "printer, you can still use a USB drive to transfer g-code files to your "
  2069. "printer."
  2070. msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。"
  2071. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2072. msgctxt "@label"
  2073. msgid "Select your printer from the list below:"
  2074. msgstr "以下のリストからプリンタを選択します:"
  2075. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2076. msgctxt "@action:button"
  2077. msgid "Edit"
  2078. msgstr "編集"
  2079. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2080. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2081. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:148
  2082. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:321
  2083. msgctxt "@action:button"
  2084. msgid "Remove"
  2085. msgstr "取り除く"
  2086. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2087. msgctxt "@action:button"
  2088. msgid "Refresh"
  2089. msgstr "更新"
  2090. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2091. msgctxt "@label"
  2092. msgid ""
  2093. "If your printer is not listed, read the <a href='%1'>network printing "
  2094. "troubleshooting guide</a>"
  2095. msgstr "お持ちのプリンターがリストにない場合、<a href='%1'>ネットワーク・プリンティング・トラブルシューティング・ガイド</a>を読んでください"
  2096. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2097. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2098. msgctxt "@label"
  2099. msgid "Type"
  2100. msgstr "タイプ"
  2101. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2102. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2103. msgctxt "@label"
  2104. msgid "Firmware version"
  2105. msgstr "ファームウェアバージョン"
  2106. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2107. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2108. msgctxt "@label"
  2109. msgid "Address"
  2110. msgstr "アドレス"
  2111. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2112. msgctxt "@label"
  2113. msgid "This printer is not set up to host a group of printers."
  2114. msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。"
  2115. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2116. msgctxt "@label"
  2117. msgid "This printer is the host for a group of %1 printers."
  2118. msgstr "このプリンターは %1 プリンターのループのホストプリンターです。"
  2119. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2120. msgctxt "@label"
  2121. msgid "The printer at this address has not yet responded."
  2122. msgstr "このアドレスのプリンターは応答していません。"
  2123. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2124. msgctxt "@action:button"
  2125. msgid "Connect"
  2126. msgstr "接続"
  2127. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2128. msgctxt "@title:window"
  2129. msgid "Invalid IP address"
  2130. msgstr "無効なIPアドレス"
  2131. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2132. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2133. msgctxt "@text"
  2134. msgid "Please enter a valid IP address."
  2135. msgstr "有効なIPアドレスを入力してください。"
  2136. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2137. msgctxt "@title:window"
  2138. msgid "Printer Address"
  2139. msgstr "プリンターアドレス"
  2140. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2141. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2142. msgctxt "@label"
  2143. msgid "Enter the IP address of your printer on the network."
  2144. msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。"
  2145. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2146. msgctxt "@label"
  2147. msgid "Queued"
  2148. msgstr "順番を待つ"
  2149. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2150. msgctxt "@label link to connect manager"
  2151. msgid "Manage in browser"
  2152. msgstr "ブラウザで管理する"
  2153. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2154. msgctxt "@label"
  2155. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2156. msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。"
  2157. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2158. msgctxt "@label"
  2159. msgid "Print jobs"
  2160. msgstr "プリントジョブ"
  2161. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2162. msgctxt "@label"
  2163. msgid "Total print time"
  2164. msgstr "合計印刷時間"
  2165. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2166. msgctxt "@label"
  2167. msgid "Waiting for"
  2168. msgstr "待ち時間"
  2169. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2170. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2171. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2172. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2173. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2174. msgctxt "@label:status"
  2175. msgid "Aborted"
  2176. msgstr "中止しました"
  2177. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2178. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2179. msgctxt "@label:status"
  2180. msgid "Finished"
  2181. msgstr "終了"
  2182. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2183. msgctxt "@label:status"
  2184. msgid "Aborting..."
  2185. msgstr "中止しています..."
  2186. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2187. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2188. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2189. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2190. msgctxt "@label:status"
  2191. msgid "Failed"
  2192. msgstr "失敗"
  2193. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2194. msgctxt "@label:status"
  2195. msgid "Pausing..."
  2196. msgstr "一時停止しています..."
  2197. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2198. msgctxt "@label:status"
  2199. msgid "Paused"
  2200. msgstr "一時停止"
  2201. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2202. msgctxt "@label:status"
  2203. msgid "Resuming..."
  2204. msgstr "再開しています..."
  2205. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2206. msgctxt "@label:status"
  2207. msgid "Action required"
  2208. msgstr "アクションが必要です"
  2209. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2210. msgctxt "@label:status"
  2211. msgid "Finishes %1 at %2"
  2212. msgstr "%1 を %2 に終了します"
  2213. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2214. msgctxt "@title:window"
  2215. msgid "Cura Backups"
  2216. msgstr "Cura バックアップ"
  2217. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2218. msgctxt "@backuplist:label"
  2219. msgid "Cura Version"
  2220. msgstr "Cura バージョン"
  2221. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2222. msgctxt "@backuplist:label"
  2223. msgid "Machines"
  2224. msgstr "プリンタ"
  2225. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2226. msgctxt "@backuplist:label"
  2227. msgid "Materials"
  2228. msgstr "材料"
  2229. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2230. msgctxt "@backuplist:label"
  2231. msgid "Profiles"
  2232. msgstr "プロファイル"
  2233. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2234. msgctxt "@backuplist:label"
  2235. msgid "Plugins"
  2236. msgstr "プラグイン"
  2237. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2238. msgctxt "@button"
  2239. msgid "Want more?"
  2240. msgstr "詳しく知りたい?"
  2241. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2242. msgctxt "@button"
  2243. msgid "Backup Now"
  2244. msgstr "今すぐバックアップする"
  2245. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2246. msgctxt "@checkbox:description"
  2247. msgid "Auto Backup"
  2248. msgstr "自動バックアップ"
  2249. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2250. msgctxt "@checkbox:description"
  2251. msgid "Automatically create a backup each day that Cura is started."
  2252. msgstr "Cura を起動した日は常にバックアップを自動生成します。"
  2253. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2254. msgctxt "@button"
  2255. msgid "Restore"
  2256. msgstr "リストア"
  2257. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2258. msgctxt "@dialog:title"
  2259. msgid "Delete Backup"
  2260. msgstr "バックアップの削除"
  2261. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2262. msgctxt "@dialog:info"
  2263. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2264. msgstr "このバックアップを削除しますか?これは取り消しできません。"
  2265. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2266. msgctxt "@dialog:title"
  2267. msgid "Restore Backup"
  2268. msgstr "バックアップのリストア"
  2269. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2270. msgctxt "@dialog:info"
  2271. msgid ""
  2272. "You will need to restart Cura before your backup is restored. Do you want to "
  2273. "close Cura now?"
  2274. msgstr "バックアップをリストアする前に Cura を再起動する必要があります。今すぐ Cura を閉じますか?"
  2275. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2276. msgctxt "@title"
  2277. msgid "My Backups"
  2278. msgstr "マイ バックアップ"
  2279. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  2280. msgctxt "@empty_state"
  2281. msgid ""
  2282. "You don't have any backups currently. Use the 'Backup Now' button to create "
  2283. "one."
  2284. msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。"
  2285. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  2286. msgctxt "@backup_limit_info"
  2287. msgid ""
  2288. "During the preview phase, you'll be limited to 5 visible backups. Remove a "
  2289. "backup to see older ones."
  2290. msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。"
  2291. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2292. msgctxt "@description"
  2293. msgid "Backup and synchronize your Cura settings."
  2294. msgstr "Cura のバックアップおよび同期を設定します。"
  2295. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2296. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  2297. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:212
  2298. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:49
  2299. msgctxt "@button"
  2300. msgid "Sign in"
  2301. msgstr "サインイン"
  2302. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2303. msgctxt "@title:window"
  2304. msgid "More information on anonymous data collection"
  2305. msgstr "匿名データの収集に関する詳細"
  2306. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2307. msgctxt "@text:window"
  2308. msgid ""
  2309. "Ultimaker Cura collects anonymous data in order to improve the print quality "
  2310. "and user experience. Below is an example of all the data that is shared:"
  2311. msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:"
  2312. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2313. msgctxt "@text:window"
  2314. msgid "I don't want to send anonymous data"
  2315. msgstr "匿名データは送信しない"
  2316. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2317. msgctxt "@text:window"
  2318. msgid "Allow sending anonymous data"
  2319. msgstr "匿名データの送信を許可する"
  2320. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  2321. msgctxt "@option"
  2322. msgid "Save Cura project and print file"
  2323. msgstr "Curaプロジェクトとプリントファイルを保存する"
  2324. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  2325. msgctxt "@option"
  2326. msgid "Save Cura project"
  2327. msgstr "Curaプロジェクトを保存する"
  2328. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2329. msgctxt "@label"
  2330. msgid "Please select any upgrades made to this Ultimaker Original"
  2331. msgstr "このUltimaker Originalに施されたアップグレートを選択する"
  2332. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  2333. msgctxt "@label"
  2334. msgid "Heated Build Plate (official kit or self-built)"
  2335. msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)"
  2336. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2337. msgctxt "@title"
  2338. msgid "Build Plate Leveling"
  2339. msgstr "ビルドプレートのレベリング"
  2340. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  2341. msgctxt "@label"
  2342. msgid ""
  2343. "To make sure your prints will come out great, you can now adjust your "
  2344. "buildplate. When you click 'Move to Next Position' the nozzle will move to "
  2345. "the different positions that can be adjusted."
  2346. msgstr "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。"
  2347. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  2348. msgctxt "@label"
  2349. msgid ""
  2350. "For every position; insert a piece of paper under the nozzle and adjust the "
  2351. "print build plate height. The print build plate height is right when the "
  2352. "paper is slightly gripped by the tip of the nozzle."
  2353. msgstr "すべてのポジションに。"
  2354. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  2355. msgctxt "@action:button"
  2356. msgid "Start Build Plate Leveling"
  2357. msgstr "ビルドプレートのレベリングを開始する"
  2358. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  2359. msgctxt "@action:button"
  2360. msgid "Move to Next Position"
  2361. msgstr "次のポジションに移動"
  2362. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172
  2363. msgctxt "@label Is followed by the name of an author"
  2364. msgid "By"
  2365. msgstr "作成者"
  2366. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207
  2367. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2368. msgctxt "@button:label"
  2369. msgid "Learn More"
  2370. msgstr "詳しく見る"
  2371. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2372. msgctxt "@button"
  2373. msgid "Enable"
  2374. msgstr "有効にする"
  2375. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2376. msgctxt "@button"
  2377. msgid "Disable"
  2378. msgstr "無効にする"
  2379. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244
  2380. msgctxt "@button"
  2381. msgid "Downgrading..."
  2382. msgstr "ダウングレード中..."
  2383. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245
  2384. msgctxt "@button"
  2385. msgid "Downgrade"
  2386. msgstr "ダウングレード"
  2387. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249
  2388. msgctxt "@button"
  2389. msgid "Installing..."
  2390. msgstr "インストール中..."
  2391. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250
  2392. msgctxt "@button"
  2393. msgid "Install"
  2394. msgstr "インストール"
  2395. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254
  2396. msgctxt "@button"
  2397. msgid "Uninstall"
  2398. msgstr "アンインストール"
  2399. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2400. msgctxt "@button"
  2401. msgid "Updating..."
  2402. msgstr "更新中..."
  2403. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2404. msgctxt "@button"
  2405. msgid "Update"
  2406. msgstr "アップデート"
  2407. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2408. msgctxt "@header"
  2409. msgid "Install Plugins"
  2410. msgstr "プラグインのインストール"
  2411. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2412. msgctxt "@text"
  2413. msgid ""
  2414. "Streamline your workflow and customize your Ultimaker Cura experience with "
  2415. "plugins contributed by our amazing community of users."
  2416. msgstr "素晴らしいユーザーコミュニティから提供されるプラグインを活用して、ワークフローを合理化し、Ultimaker Cura体験をカスタマイズすることができます。"
  2417. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2418. msgctxt "@title"
  2419. msgid "Changes from your account"
  2420. msgstr "アカウントにおける変更"
  2421. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2422. msgctxt "@button"
  2423. msgid "Dismiss"
  2424. msgstr "無視"
  2425. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2426. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2427. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175
  2428. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2429. msgctxt "@button"
  2430. msgid "Next"
  2431. msgstr "次"
  2432. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2433. msgctxt "@label"
  2434. msgid "The following packages will be added:"
  2435. msgstr "次のパッケージが追加されます:"
  2436. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2437. msgctxt "@label"
  2438. msgid ""
  2439. "The following packages can not be installed because of an incompatible Cura "
  2440. "version:"
  2441. msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:"
  2442. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2443. msgctxt "@label"
  2444. msgid "You need to accept the license to install the package"
  2445. msgstr "パッケージをインストールするにはライセンスに同意する必要があります"
  2446. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2447. msgctxt "@button"
  2448. msgid "Plugin license agreement"
  2449. msgstr "プラグインライセンス同意書"
  2450. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2451. msgctxt "@text"
  2452. msgid "Please read and agree with the plugin licence."
  2453. msgstr "プラグインライセンスをお読みになり、同意してください。"
  2454. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2455. msgctxt "@button"
  2456. msgid "Accept"
  2457. msgstr "承認する"
  2458. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2459. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2460. msgctxt "@header"
  2461. msgid "Install Materials"
  2462. msgstr "材料のインストール"
  2463. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2464. msgctxt "@text"
  2465. msgid ""
  2466. "Select and install material profiles optimised for your Ultimaker 3D "
  2467. "printers."
  2468. msgstr "Ultimaker 3Dプリンターに最適な材料プロファイルを選択してインストールします。"
  2469. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2470. msgctxt "@info:tooltip"
  2471. msgid "Manage packages"
  2472. msgstr "パッケージの管理"
  2473. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81
  2474. msgctxt "@header"
  2475. msgid "Description"
  2476. msgstr "記述"
  2477. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110
  2478. msgctxt "@header"
  2479. msgid "Compatible printers"
  2480. msgstr "互換性のあるプリンター"
  2481. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134
  2482. msgctxt "@info"
  2483. msgid "No compatibility information"
  2484. msgstr "互換性情報なし"
  2485. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152
  2486. msgctxt "@header"
  2487. msgid "Compatible support materials"
  2488. msgstr "互換性のあるサポート材料"
  2489. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176
  2490. msgctxt "@info No materials"
  2491. msgid "None"
  2492. msgstr "なし"
  2493. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193
  2494. msgctxt "@header"
  2495. msgid "Compatible with Material Station"
  2496. msgstr "Material Stationに対応"
  2497. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202
  2498. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2499. msgctxt "@info"
  2500. msgid "Yes"
  2501. msgstr "はい"
  2502. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202
  2503. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2504. msgctxt "@info"
  2505. msgid "No"
  2506. msgstr "いいえ"
  2507. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219
  2508. msgctxt "@header"
  2509. msgid "Optimized for Air Manager"
  2510. msgstr "Air Managerに最適化"
  2511. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2512. msgctxt "@button"
  2513. msgid "Visit plug-in website"
  2514. msgstr "プラグインウェブサイトにアクセス"
  2515. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2516. msgctxt "@button"
  2517. msgid "Website"
  2518. msgstr "ウェブサイト"
  2519. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252
  2520. msgctxt "@button"
  2521. msgid "Buy spool"
  2522. msgstr "スプールを購入"
  2523. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261
  2524. msgctxt "@button"
  2525. msgid "Safety datasheet"
  2526. msgstr "安全データシート"
  2527. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270
  2528. msgctxt "@button"
  2529. msgid "Technical datasheet"
  2530. msgstr "技術データシート"
  2531. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2532. msgctxt "@header"
  2533. msgid "Package details"
  2534. msgstr "パッケージの詳細"
  2535. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2536. msgctxt "@button:tooltip"
  2537. msgid "Back"
  2538. msgstr "戻る"
  2539. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2540. msgctxt "@button"
  2541. msgid "Failed to load packages:"
  2542. msgstr "パッケージの読み込みに失敗しました。"
  2543. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2544. msgctxt "@button"
  2545. msgid "Retry?"
  2546. msgstr "再試行"
  2547. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:167
  2548. msgctxt "@button"
  2549. msgid "Loading"
  2550. msgstr "読み込み中"
  2551. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2552. msgctxt "@message"
  2553. msgid "No more results to load"
  2554. msgstr "これ以上読み込む結果がありません"
  2555. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2556. msgctxt "@message"
  2557. msgid "No results found with current filter"
  2558. msgstr "現在のフィルターでは、結果が見つかりません"
  2559. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:226
  2560. msgctxt "@button"
  2561. msgid "Load more"
  2562. msgstr "さらに読み込む"
  2563. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2564. msgctxt "@info"
  2565. msgid "Ultimaker Verified Plug-in"
  2566. msgstr "Ultimaker検証済みプラグイン"
  2567. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2568. msgctxt "@info"
  2569. msgid "Ultimaker Certified Material"
  2570. msgstr "Ultimaker認定材料"
  2571. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2572. msgctxt "@info"
  2573. msgid "Ultimaker Verified Package"
  2574. msgstr "Ultimaker検証済みパッケージ"
  2575. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2576. msgctxt "@header"
  2577. msgid "Manage packages"
  2578. msgstr "パッケージの管理"
  2579. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2580. msgctxt "@text"
  2581. msgid ""
  2582. "Manage your Ultimaker Cura plugins and material profiles here. Make sure to "
  2583. "keep your plugins up to date and backup your setup regularly."
  2584. msgstr "Ultimaker Curaのプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。"
  2585. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2586. msgctxt "@title"
  2587. msgid "Install missing Materials"
  2588. msgstr "未ダウンロードの材料をインストールする"
  2589. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87
  2590. msgctxt "@title"
  2591. msgid "Loading..."
  2592. msgstr "読み込み中..."
  2593. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148
  2594. msgctxt "@button"
  2595. msgid "Plugins"
  2596. msgstr "プラグイン"
  2597. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156
  2598. msgctxt "@button"
  2599. msgid "Materials"
  2600. msgstr "材料"
  2601. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193
  2602. msgctxt "@info"
  2603. msgid "Search in the browser"
  2604. msgstr "ブラウザでの検索"
  2605. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271
  2606. msgctxt "@button"
  2607. msgid "In order to use the package you will need to restart Cura"
  2608. msgstr "このパッケージを使用するには、Curaを再始動する必要があります"
  2609. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279
  2610. msgctxt "@info:button, %1 is the application name"
  2611. msgid "Quit %1"
  2612. msgstr "%1を終了する"
  2613. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2614. msgctxt "@info"
  2615. msgid ""
  2616. "Please make sure your printer has a connection:\n"
  2617. "- Check if the printer is turned on.\n"
  2618. "- Check if the printer is connected to the network.\n"
  2619. "- Check if you are signed in to discover cloud-connected printers."
  2620. msgstr "プリンタが接続されているか確認し、以下を行います。\n- プリンタの電源が入っているか確認します。\n- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。"
  2621. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:113
  2622. msgctxt "@info"
  2623. msgid "Please connect your printer to the network."
  2624. msgstr "プリンターをネットワークに接続してください。"
  2625. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:148
  2626. msgctxt "@label link to technical assistance"
  2627. msgid "View user manuals online"
  2628. msgstr "ユーザーマニュアルをオンラインで見る"
  2629. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:164
  2630. msgctxt "@info"
  2631. msgid "In order to monitor your print from Cura, please connect the printer."
  2632. msgstr "Cura から印刷を監視するには、プリンタを接続してください。"
  2633. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2634. msgctxt "@title:window"
  2635. msgid "Open Project"
  2636. msgstr "プロジェクトを開く"
  2637. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:64
  2638. msgctxt "@action:ComboBox Update/override existing profile"
  2639. msgid "Update existing"
  2640. msgstr "既存を更新する"
  2641. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:65
  2642. msgctxt "@action:ComboBox Save settings in a new profile"
  2643. msgid "Create new"
  2644. msgstr "新しいものを作成する"
  2645. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:83
  2646. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  2647. msgctxt "@action:title"
  2648. msgid "Summary - Cura Project"
  2649. msgstr "サマリーCuraプロジェクト"
  2650. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:109
  2651. msgctxt "@info:tooltip"
  2652. msgid "How should the conflict in the machine be resolved?"
  2653. msgstr "このプリンターの問題をどのように解決すればいいか?"
  2654. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:165
  2655. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2656. msgctxt "@action:label"
  2657. msgid "Printer settings"
  2658. msgstr "プリンターの設定"
  2659. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:176
  2660. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2661. msgctxt "@action:label"
  2662. msgid "Type"
  2663. msgstr "タイプ"
  2664. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:193
  2665. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2666. msgctxt "@action:label"
  2667. msgid "Printer Group"
  2668. msgstr "プリンターグループ"
  2669. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:218
  2670. msgctxt "@info:tooltip"
  2671. msgid "How should the conflict in the profile be resolved?"
  2672. msgstr "このプロファイルの問題をどのように解決すればいいか?"
  2673. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:240
  2674. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  2675. msgctxt "@action:label"
  2676. msgid "Profile settings"
  2677. msgstr "プロファイル設定"
  2678. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:251
  2679. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:376
  2680. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2681. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  2682. msgctxt "@action:label"
  2683. msgid "Name"
  2684. msgstr "ネーム"
  2685. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:269
  2686. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  2687. msgctxt "@action:label"
  2688. msgid "Intent"
  2689. msgstr "Intent"
  2690. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:287
  2691. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  2692. msgctxt "@action:label"
  2693. msgid "Not in profile"
  2694. msgstr "プロファイル内にない"
  2695. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:293
  2696. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  2697. msgctxt "@action:label"
  2698. msgid "%1 override"
  2699. msgid_plural "%1 overrides"
  2700. msgstr[0] "%1個の設定を上書き"
  2701. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:306
  2702. msgctxt "@action:label"
  2703. msgid "Derivative from"
  2704. msgstr "次から引き出す"
  2705. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2706. msgctxt "@action:label"
  2707. msgid "%1, %2 override"
  2708. msgid_plural "%1, %2 overrides"
  2709. msgstr[0] "%2の%1個の設定を上書き"
  2710. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:334
  2711. msgctxt "@info:tooltip"
  2712. msgid "How should the conflict in the material be resolved?"
  2713. msgstr "このフィラメントの問題をどのように解決すればいいか?"
  2714. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:361
  2715. msgctxt "@action:label"
  2716. msgid "Material settings"
  2717. msgstr "フィラメント設定"
  2718. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2719. msgctxt "@action:label"
  2720. msgid "Setting visibility"
  2721. msgstr "視野設定"
  2722. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  2723. msgctxt "@action:label"
  2724. msgid "Mode"
  2725. msgstr "モード"
  2726. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:422
  2727. msgctxt "@action:label"
  2728. msgid "Visible settings:"
  2729. msgstr "ビジブル設定:"
  2730. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:427
  2731. msgctxt "@action:label"
  2732. msgid "%1 out of %2"
  2733. msgstr "%2のうち%1"
  2734. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:448
  2735. msgctxt "@action:warning"
  2736. msgid "Loading a project will clear all models on the build plate."
  2737. msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。"
  2738. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:490
  2739. msgctxt "@label"
  2740. msgid ""
  2741. "The material used in this project is currently not installed in Cura.<br/"
  2742. ">Install the material profile and reopen the project."
  2743. msgstr "このプロジェクトで使用する材料は、現在Curaにインストールされていません。<br/>材料プロファイルをインストールし、再度プロジェクトを開いてください。"
  2744. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:515
  2745. msgctxt "@action:button"
  2746. msgid "Open"
  2747. msgstr "開く"
  2748. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:521
  2749. msgctxt "@action:button"
  2750. msgid "Open project anyway"
  2751. msgstr "それでもプロジェクトを開く"
  2752. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:530
  2753. msgctxt "@action:button"
  2754. msgid "Install missing material"
  2755. msgstr "未ダウンロードの材料をインストールする"
  2756. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2757. msgctxt "@label"
  2758. msgid "Mesh Type"
  2759. msgstr "メッシュタイプ"
  2760. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2761. msgctxt "@label"
  2762. msgid "Normal model"
  2763. msgstr "標準モデル"
  2764. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2765. msgctxt "@label"
  2766. msgid "Print as support"
  2767. msgstr "サポートとしてプリント"
  2768. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2769. msgctxt "@label"
  2770. msgid "Modify settings for overlaps"
  2771. msgstr "オーバーラップの設定を変更"
  2772. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2773. msgctxt "@label"
  2774. msgid "Don't support overlaps"
  2775. msgstr "オーバーラップをサポートしない"
  2776. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  2777. msgctxt "@item:inlistbox"
  2778. msgid "Infill mesh only"
  2779. msgstr "インフィルメッシュのみ"
  2780. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2781. msgctxt "@item:inlistbox"
  2782. msgid "Cutting mesh"
  2783. msgstr "メッシュ切断"
  2784. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  2785. msgctxt "@action:button"
  2786. msgid "Select settings"
  2787. msgstr "設定を選択する"
  2788. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2789. msgctxt "@title:window"
  2790. msgid "Select Settings to Customize for this model"
  2791. msgstr "このモデルをカスタマイズする設定を選択する"
  2792. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2793. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102
  2794. msgctxt "@label:textbox"
  2795. msgid "Filter..."
  2796. msgstr "フィルター..."
  2797. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2798. msgctxt "@label:checkbox"
  2799. msgid "Show all"
  2800. msgstr "すべて表示する"
  2801. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  2802. msgctxt "@title"
  2803. msgid "Update Firmware"
  2804. msgstr "ファームウェアアップデート"
  2805. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  2806. msgctxt "@label"
  2807. msgid ""
  2808. "Firmware is the piece of software running directly on your 3D printer. This "
  2809. "firmware controls the step motors, regulates the temperature and ultimately "
  2810. "makes your printer work."
  2811. msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。"
  2812. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  2813. msgctxt "@label"
  2814. msgid ""
  2815. "The firmware shipping with new printers works, but new versions tend to have "
  2816. "more features and improvements."
  2817. msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。"
  2818. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  2819. msgctxt "@action:button"
  2820. msgid "Automatically upgrade Firmware"
  2821. msgstr "自動でファームウェアをアップグレード"
  2822. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  2823. msgctxt "@action:button"
  2824. msgid "Upload custom Firmware"
  2825. msgstr "カスタムファームウェアをアップロードする"
  2826. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  2827. msgctxt "@label"
  2828. msgid ""
  2829. "Firmware can not be updated because there is no connection with the printer."
  2830. msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。"
  2831. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  2832. msgctxt "@label"
  2833. msgid ""
  2834. "Firmware can not be updated because the connection with the printer does not "
  2835. "support upgrading firmware."
  2836. msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。"
  2837. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  2838. msgctxt "@title:window"
  2839. msgid "Select custom firmware"
  2840. msgstr "カスタムファームウェアを選択する"
  2841. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  2842. msgctxt "@title:window"
  2843. msgid "Firmware Update"
  2844. msgstr "ファームウェアアップデート"
  2845. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  2846. msgctxt "@label"
  2847. msgid "Updating firmware."
  2848. msgstr "ファームウェアアップデート中。"
  2849. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  2850. msgctxt "@label"
  2851. msgid "Firmware update completed."
  2852. msgstr "ファームウェアアップデート完了。"
  2853. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  2854. msgctxt "@label"
  2855. msgid "Firmware update failed due to an unknown error."
  2856. msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。"
  2857. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  2858. msgctxt "@label"
  2859. msgid "Firmware update failed due to an communication error."
  2860. msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。"
  2861. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  2862. msgctxt "@label"
  2863. msgid "Firmware update failed due to an input/output error."
  2864. msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。"
  2865. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  2866. msgctxt "@label"
  2867. msgid "Firmware update failed due to missing firmware."
  2868. msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。"
  2869. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2870. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2871. msgctxt "@label"
  2872. msgid "Color scheme"
  2873. msgstr "カラースキーム"
  2874. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2875. msgctxt "@label:listbox"
  2876. msgid "Material Color"
  2877. msgstr "フィラメントの色"
  2878. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2879. msgctxt "@label:listbox"
  2880. msgid "Line Type"
  2881. msgstr "ラインタイプ"
  2882. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2883. msgctxt "@label:listbox"
  2884. msgid "Speed"
  2885. msgstr "スピード"
  2886. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2887. msgctxt "@label:listbox"
  2888. msgid "Layer Thickness"
  2889. msgstr "レイヤーの厚さ"
  2890. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2891. msgctxt "@label:listbox"
  2892. msgid "Line Width"
  2893. msgstr "ライン幅"
  2894. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2895. msgctxt "@label:listbox"
  2896. msgid "Flow"
  2897. msgstr "フロー"
  2898. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2899. msgctxt "@label"
  2900. msgid "Compatibility Mode"
  2901. msgstr "コンパティビリティモード"
  2902. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2903. msgctxt "@label"
  2904. msgid "Travels"
  2905. msgstr "移動"
  2906. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2907. msgctxt "@label"
  2908. msgid "Helpers"
  2909. msgstr "ヘルプ"
  2910. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2911. msgctxt "@label"
  2912. msgid "Shell"
  2913. msgstr "外郭"
  2914. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2915. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:74
  2916. msgctxt "@label"
  2917. msgid "Infill"
  2918. msgstr "インフィル"
  2919. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2920. msgctxt "@label"
  2921. msgid "Starts"
  2922. msgstr "開始"
  2923. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2924. msgctxt "@label"
  2925. msgid "Only Show Top Layers"
  2926. msgstr "トップのレイヤーを表示する"
  2927. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2928. msgctxt "@label"
  2929. msgid "Show 5 Detailed Layers On Top"
  2930. msgstr "トップの5レイヤーの詳細を表示する"
  2931. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2932. msgctxt "@label"
  2933. msgid "Top / Bottom"
  2934. msgstr "トップ/ボトム"
  2935. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2936. msgctxt "@label"
  2937. msgid "Inner Wall"
  2938. msgstr "インナーウォール"
  2939. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2940. msgctxt "@label"
  2941. msgid "min"
  2942. msgstr "最小"
  2943. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2944. msgctxt "@label"
  2945. msgid "max"
  2946. msgstr "最大"
  2947. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/SearchBar.qml:17
  2948. msgctxt "@placeholder"
  2949. msgid "Search"
  2950. msgstr "検索"
  2951. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:84
  2952. msgctxt "@label"
  2953. msgid ""
  2954. "This setting is not used because all the settings that it influences are "
  2955. "overridden."
  2956. msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。"
  2957. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:89
  2958. msgctxt "@label Header for list of settings."
  2959. msgid "Affects"
  2960. msgstr "影響"
  2961. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:94
  2962. msgctxt "@label Header for list of settings."
  2963. msgid "Affected By"
  2964. msgstr "次によって影響を受ける"
  2965. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:190
  2966. msgctxt "@label"
  2967. msgid ""
  2968. "This setting is always shared between all extruders. Changing it here will "
  2969. "change the value for all extruders."
  2970. msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。"
  2971. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:194
  2972. msgctxt "@label"
  2973. msgid "This setting is resolved from conflicting extruder-specific values:"
  2974. msgstr "この設定はエクストルーダー固有の競合する値から取得します:"
  2975. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:234
  2976. msgctxt "@label"
  2977. msgid ""
  2978. "This setting has a value that is different from the profile.\n"
  2979. "\n"
  2980. "Click to restore the value of the profile."
  2981. msgstr "この設定にプロファイルと異なった値があります。\nプロファイルの値を戻すためにクリックしてください。"
  2982. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:334
  2983. msgctxt "@label"
  2984. msgid ""
  2985. "This setting is normally calculated, but it currently has an absolute value "
  2986. "set.\n"
  2987. "\n"
  2988. "Click to restore the calculated value."
  2989. msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。\n計算された値に変更するためにクリックを押してください。"
  2990. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:48
  2991. msgctxt "@label:textbox"
  2992. msgid "Search settings"
  2993. msgstr "検索設定"
  2994. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:395
  2995. msgctxt "@action:menu"
  2996. msgid "Copy value to all extruders"
  2997. msgstr "すべてのエクストルーダーの値をコピーする"
  2998. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:404
  2999. msgctxt "@action:menu"
  3000. msgid "Copy all changed values to all extruders"
  3001. msgstr "すべてのエクストルーダーに対して変更された値をコピーする"
  3002. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:440
  3003. msgctxt "@action:menu"
  3004. msgid "Hide this setting"
  3005. msgstr "この設定を非表示にする"
  3006. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:453
  3007. msgctxt "@action:menu"
  3008. msgid "Don't show this setting"
  3009. msgstr "この設定を表示しない"
  3010. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:457
  3011. msgctxt "@action:menu"
  3012. msgid "Keep this setting visible"
  3013. msgstr "常に見えるように設定する"
  3014. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:476
  3015. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:467
  3016. msgctxt "@action:menu"
  3017. msgid "Configure setting visibility..."
  3018. msgstr "視野のセッティングを構成する..."
  3019. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingCategory.qml:115
  3020. msgctxt "@label"
  3021. msgid ""
  3022. "Some hidden settings use values different from their normal calculated "
  3023. "value.\n"
  3024. "\n"
  3025. "Click to make these settings visible."
  3026. msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n表示されるようにクリックしてください。"
  3027. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  3028. msgctxt "@action:button"
  3029. msgid "Marketplace"
  3030. msgstr "マーケットプレース"
  3031. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  3032. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3033. msgctxt "@title:menu menubar:toplevel"
  3034. msgid "&Settings"
  3035. msgstr "&設定"
  3036. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  3037. msgctxt "@title:window"
  3038. msgid "New project"
  3039. msgstr "新しいプロジェクト"
  3040. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  3041. msgctxt "@info:question"
  3042. msgid ""
  3043. "Are you sure you want to start a new project? This will clear the build "
  3044. "plate and any unsaved settings."
  3045. msgstr "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。"
  3046. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3047. msgctxt "@title:tab"
  3048. msgid "Setting Visibility"
  3049. msgstr "視野設定"
  3050. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24
  3051. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:134
  3052. msgctxt "@action:button"
  3053. msgid "Defaults"
  3054. msgstr "デフォルト"
  3055. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55
  3056. msgctxt "@label:textbox"
  3057. msgid "Check all"
  3058. msgstr "全てを調べる"
  3059. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  3060. msgctxt "@title:window"
  3061. msgid "Sync materials with printers"
  3062. msgstr "材料をプリンターと同期"
  3063. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  3064. msgctxt "@title:header"
  3065. msgid "Sync materials with printers"
  3066. msgstr "材料をプリンターと同期"
  3067. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  3068. msgctxt "@text"
  3069. msgid ""
  3070. "Following a few simple steps, you will be able to synchronize all your "
  3071. "material profiles with your printers."
  3072. msgstr "簡単な数ステップの手順に従うことで、すべての材料プロファイルをプリンターと同期できるようになります。"
  3073. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  3074. msgctxt "@button"
  3075. msgid "Why do I need to sync material profiles?"
  3076. msgstr "材料プロファイルを同期する必要があるのはなぜですか?"
  3077. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  3078. msgctxt "@button"
  3079. msgid "Start"
  3080. msgstr "開始"
  3081. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  3082. msgctxt "@title:header"
  3083. msgid "Sign in"
  3084. msgstr "サインイン"
  3085. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  3086. msgctxt "@text"
  3087. msgid ""
  3088. "To automatically sync the material profiles with all your printers connected "
  3089. "to Digital Factory you need to be signed in in Cura."
  3090. msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。"
  3091. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  3092. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  3093. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  3094. msgctxt "@button"
  3095. msgid "Sync materials with USB"
  3096. msgstr "材料をUSBで同期"
  3097. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  3098. msgctxt "@title:header"
  3099. msgid "The following printers will receive the new material profiles:"
  3100. msgstr "The following printers will receive the new material profiles:"
  3101. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  3102. msgctxt "@title:header"
  3103. msgid "Something went wrong when sending the materials to the printers."
  3104. msgstr "材料をプリンターに送信する際に問題が発生しました。"
  3105. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  3106. msgctxt "@title:header"
  3107. msgid "Material profiles successfully synced with the following printers:"
  3108. msgstr "Material profiles successfully synced with the following printers:"
  3109. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  3110. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  3111. msgctxt "@button"
  3112. msgid "Troubleshooting"
  3113. msgstr "トラブルシューティング"
  3114. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  3115. msgctxt "@text Asking the user whether printers are missing in a list."
  3116. msgid "Printers missing?"
  3117. msgstr "プリンターがありませんか?"
  3118. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  3119. msgctxt "@text"
  3120. msgid ""
  3121. "Make sure all your printers are turned ON and connected to Digital Factory."
  3122. msgstr "すべてのプリンターの電源が入っていて、Digital Factoryに接続されていることを確認してください。"
  3123. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  3124. msgctxt "@button"
  3125. msgid "Refresh List"
  3126. msgstr "リストを更新"
  3127. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  3128. msgctxt "@button"
  3129. msgid "Try again"
  3130. msgstr "やり直してください"
  3131. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  3132. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  3133. msgctxt "@button"
  3134. msgid "Done"
  3135. msgstr "完了"
  3136. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  3137. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  3138. msgctxt "@button"
  3139. msgid "Sync"
  3140. msgstr "同期"
  3141. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  3142. msgctxt "@button"
  3143. msgid "Syncing"
  3144. msgstr "スライス"
  3145. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  3146. msgctxt "@title:header"
  3147. msgid "No printers found"
  3148. msgstr "プリンターが見つかりません"
  3149. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  3150. msgctxt "@text"
  3151. msgid ""
  3152. "It seems like you don't have any compatible printers connected to Digital "
  3153. "Factory. Make sure your printer is connected and it's running the latest "
  3154. "firmware."
  3155. msgstr "互換性のあるプリンターがDigital Factoryに接続されていないようです。プリンターが接続されていて、最新のファームウェアが実行されていることを確認してください。"
  3156. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  3157. msgctxt "@button"
  3158. msgid "Learn how to connect your printer to Digital Factory"
  3159. msgstr "Digital Factoryにプリンターを接続する方法について詳しく見る"
  3160. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  3161. msgctxt "@button"
  3162. msgid "Refresh"
  3163. msgstr "更新"
  3164. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  3165. msgctxt "@title:header"
  3166. msgid "Sync material profiles via USB"
  3167. msgstr "材料プロファイルをUSB経由で同期する"
  3168. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  3169. msgctxt ""
  3170. "@text In the UI this is followed by a list of steps the user needs to take."
  3171. msgid ""
  3172. "Follow the following steps to load the new material profiles to your printer."
  3173. msgstr "以下の手順に従って、新しい材料プロファイルをプリンターに読み込みます。"
  3174. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  3175. msgctxt "@text"
  3176. msgid "Click the export material archive button."
  3177. msgstr "材料アーカイブのエクスポートボタンをクリックします。"
  3178. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  3179. msgctxt "@text"
  3180. msgid "Save the .umm file on a USB stick."
  3181. msgstr ".ummファイルをUSBメモリーに保存します。"
  3182. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  3183. msgctxt "@text"
  3184. msgid ""
  3185. "Insert the USB stick into your printer and launch the procedure to load new "
  3186. "material profiles."
  3187. msgstr "USBメモリーをプリンターに差し込み、新しい材料プロファイルを読み込む手順を開始します。"
  3188. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  3189. msgctxt "@button"
  3190. msgid "How to load new material profiles to my printer"
  3191. msgstr "新しい材料プロファイルをプリンターに読み込む方法"
  3192. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  3193. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  3194. msgctxt "@button"
  3195. msgid "Back"
  3196. msgstr "戻る"
  3197. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  3198. msgctxt "@button"
  3199. msgid "Export material archive"
  3200. msgstr "材料アーカイブのエクスポート"
  3201. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  3202. msgctxt "@title:window"
  3203. msgid "Export All Materials"
  3204. msgstr "すべての材料を書き出す"
  3205. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3206. msgctxt "@title:window"
  3207. msgid "Confirm Diameter Change"
  3208. msgstr "直径変更の確認"
  3209. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3210. msgctxt "@label (%1 is a number)"
  3211. msgid ""
  3212. "The new filament diameter is set to %1 mm, which is not compatible with the "
  3213. "current extruder. Do you wish to continue?"
  3214. msgstr "新しいフィラメントの直径は %1 mm に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?"
  3215. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3216. msgctxt "@label"
  3217. msgid "Display Name"
  3218. msgstr "ディスプレイ名"
  3219. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3220. msgctxt "@label"
  3221. msgid "Brand"
  3222. msgstr "ブランド"
  3223. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3224. msgctxt "@label"
  3225. msgid "Material Type"
  3226. msgstr "フィラメントタイプ"
  3227. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3228. msgctxt "@label"
  3229. msgid "Color"
  3230. msgstr "色"
  3231. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262
  3232. msgctxt "@title"
  3233. msgid "Material color picker"
  3234. msgstr "材料の色の選択"
  3235. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275
  3236. msgctxt "@label"
  3237. msgid "Properties"
  3238. msgstr "プロパティ"
  3239. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286
  3240. msgctxt "@label"
  3241. msgid "Density"
  3242. msgstr "密度"
  3243. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319
  3244. msgctxt "@label"
  3245. msgid "Diameter"
  3246. msgstr "直径"
  3247. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369
  3248. msgctxt "@label"
  3249. msgid "Filament Cost"
  3250. msgstr "フィラメントコスト"
  3251. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401
  3252. msgctxt "@label"
  3253. msgid "Filament weight"
  3254. msgstr "フィラメントの重さ"
  3255. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433
  3256. msgctxt "@label"
  3257. msgid "Filament length"
  3258. msgstr "フィラメントの長さ"
  3259. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451
  3260. msgctxt "@label"
  3261. msgid "Cost per Meter"
  3262. msgstr "毎メーターコスト"
  3263. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465
  3264. msgctxt "@label"
  3265. msgid "This material is linked to %1 and shares some of its properties."
  3266. msgstr "このフィラメントは %1にリンクすプロパティーを共有する。"
  3267. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472
  3268. msgctxt "@label"
  3269. msgid "Unlink Material"
  3270. msgstr "フィラメントをリンクを外す"
  3271. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485
  3272. msgctxt "@label"
  3273. msgid "Description"
  3274. msgstr "記述"
  3275. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503
  3276. msgctxt "@label"
  3277. msgid "Adhesion Information"
  3278. msgstr "接着のインフォメーション"
  3279. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3280. msgctxt "@title"
  3281. msgid "Information"
  3282. msgstr "インフォメーション"
  3283. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647
  3284. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82
  3285. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  3286. msgctxt "@label"
  3287. msgid "Print settings"
  3288. msgstr "プリント設定"
  3289. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3290. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:468
  3291. msgctxt "@title:tab"
  3292. msgid "Materials"
  3293. msgstr "マテリアル"
  3294. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3295. msgctxt "@label"
  3296. msgid "Materials compatible with active printer:"
  3297. msgstr "アクティブなプリンターと互換性のある材料:"
  3298. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  3299. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:94
  3300. msgctxt "@action:button"
  3301. msgid "Create new"
  3302. msgstr "新しいものを作成する"
  3303. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  3304. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:88
  3305. msgctxt "@action:button"
  3306. msgid "Import"
  3307. msgstr "取り込む"
  3308. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3309. msgctxt "@action:button"
  3310. msgid "Sync with Printers"
  3311. msgstr "プリンターと同期する"
  3312. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3313. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:142
  3314. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3315. msgctxt "@action:button"
  3316. msgid "Activate"
  3317. msgstr "アクティベート"
  3318. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  3319. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:311
  3320. msgctxt "@action:button"
  3321. msgid "Duplicate"
  3322. msgstr "複製"
  3323. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  3324. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:342
  3325. msgctxt "@action:button"
  3326. msgid "Export"
  3327. msgstr "書き出す"
  3328. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  3329. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:392
  3330. msgctxt "@title:window"
  3331. msgid "Confirm Remove"
  3332. msgstr "モデルを取り除きました"
  3333. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  3334. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:393
  3335. msgctxt "@label (%1 is object name)"
  3336. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3337. msgstr "%1を取り外しますか?この作業はやり直しが効きません!"
  3338. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  3339. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3340. msgctxt "@title:window"
  3341. msgid "Import Material"
  3342. msgstr "フィラメントを取り込む"
  3343. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3344. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3345. msgid "Successfully imported material <filename>%1</filename>"
  3346. msgstr "フィラメント<filename>%1</filename>の取り込みに成功しました"
  3347. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3348. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3349. msgid ""
  3350. "Could not import material <filename>%1</filename>: <message>%2</message>"
  3351. msgstr "<filename>%1</filename>フィラメントを取り込むことができない: <message>%2</message>"
  3352. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  3353. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267
  3354. msgctxt "@title:window"
  3355. msgid "Export Material"
  3356. msgstr "フィラメントを書き出す"
  3357. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272
  3358. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3359. msgid ""
  3360. "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3361. msgstr "フィラメントの書き出しに失敗しました <filename>%1</filename>: <message>%2</message>"
  3362. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275
  3363. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3364. msgid "Successfully exported material to <filename>%1</filename>"
  3365. msgstr "フィラメントの<filename>%1</filename>への書き出しが完了ました"
  3366. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3367. msgctxt "@item:tooltip"
  3368. msgid ""
  3369. "This setting has been hidden by the active machine and will not be visible."
  3370. msgstr "この設定がアクティブなプリンターにより非表示になっています、見ることができません。"
  3371. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3372. msgctxt "@item:tooltip %1 is list of setting names"
  3373. msgid ""
  3374. "This setting has been hidden by the value of %1. Change the value of that "
  3375. "setting to make this setting visible."
  3376. msgid_plural ""
  3377. "This setting has been hidden by the values of %1. Change the values of those "
  3378. "settings to make this setting visible."
  3379. msgstr[0] "この設定は %1 の値で非表示になっています。その設定値を変更すると設定の非表示が解除されます。"
  3380. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3381. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:461
  3382. msgctxt "@title:tab"
  3383. msgid "General"
  3384. msgstr "一般"
  3385. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:172
  3386. msgctxt "@label"
  3387. msgid "Interface"
  3388. msgstr "インターフェイス"
  3389. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3390. msgctxt "@heading"
  3391. msgid "-- incomplete --"
  3392. msgstr "-- 未完了 --"
  3393. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:261
  3394. msgctxt "@label"
  3395. msgid "Currency:"
  3396. msgstr "通貨:"
  3397. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:277
  3398. msgctxt ""
  3399. "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3400. msgid "Theme*:"
  3401. msgstr "テーマ*:"
  3402. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:323
  3403. msgctxt "@info:tooltip"
  3404. msgid "Slice automatically when changing settings."
  3405. msgstr "セッティングを変更すると自動にスライスします。"
  3406. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:331
  3407. msgctxt "@option:check"
  3408. msgid "Slice automatically"
  3409. msgstr "自動的にスライスする"
  3410. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:340
  3411. msgctxt "@info:tooltip"
  3412. msgid "Show an icon and notifications in the system notification area."
  3413. msgstr "システムの通知領域に、アイコンと通知を表示します。"
  3414. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3415. msgctxt "@option:check"
  3416. msgid "Add icon to system tray *"
  3417. msgstr "システムトレイにアイコンを追加する *"
  3418. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:357
  3419. msgctxt "@label"
  3420. msgid ""
  3421. "*You will need to restart the application for these changes to have effect."
  3422. msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。"
  3423. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3424. msgctxt "@label"
  3425. msgid "Viewport behavior"
  3426. msgstr "ビューポイント機能"
  3427. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:381
  3428. msgctxt "@info:tooltip"
  3429. msgid ""
  3430. "Highlight unsupported areas of the model in red. Without support these areas "
  3431. "will not print properly."
  3432. msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。"
  3433. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3434. msgctxt "@option:check"
  3435. msgid "Display overhang"
  3436. msgstr "ディスプレイオーバーハング"
  3437. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3438. msgctxt "@info:tooltip"
  3439. msgid ""
  3440. "Highlight missing or extraneous surfaces of the model using warning signs. "
  3441. "The toolpaths will often be missing parts of the intended geometry."
  3442. msgstr "モデルの欠けている部分または不要な表面部分を、警告マークを使用してハイライトします。ツールパスは意図したジオメトリの欠けている部分になることが多くあります。"
  3443. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3444. msgctxt "@option:check"
  3445. msgid "Display model errors"
  3446. msgstr "モデルエラーを表示"
  3447. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:417
  3448. msgctxt "@info:tooltip"
  3449. msgid ""
  3450. "Moves the camera so the model is in the center of the view when a model is "
  3451. "selected"
  3452. msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する"
  3453. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:422
  3454. msgctxt "@action:button"
  3455. msgid "Center camera when item is selected"
  3456. msgstr "アイテムを選択するとカメラが中心にきます"
  3457. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:432
  3458. msgctxt "@info:tooltip"
  3459. msgid "Should the default zoom behavior of cura be inverted?"
  3460. msgstr "Curaのデフォルトのズーム機能は変更できるべきか?"
  3461. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3462. msgctxt "@action:button"
  3463. msgid "Invert the direction of camera zoom."
  3464. msgstr "カメラのズーム方向を反転する。"
  3465. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3466. msgctxt "@info:tooltip"
  3467. msgid "Should zooming move in the direction of the mouse?"
  3468. msgstr "ズームはマウスの方向に動くべきか?"
  3469. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3470. msgctxt "@info:tooltip"
  3471. msgid ""
  3472. "Zooming towards the mouse is not supported in the orthographic perspective."
  3473. msgstr "マウスに対するズームは、正射投影ではサポートされていません。"
  3474. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:458
  3475. msgctxt "@action:button"
  3476. msgid "Zoom toward mouse direction"
  3477. msgstr "マウスの方向にズームする"
  3478. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:484
  3479. msgctxt "@info:tooltip"
  3480. msgid ""
  3481. "Should models on the platform be moved so that they no longer intersect?"
  3482. msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?"
  3483. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3484. msgctxt "@option:check"
  3485. msgid "Ensure models are kept apart"
  3486. msgstr "モデルの距離が離れているように確認する"
  3487. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3488. msgctxt "@info:tooltip"
  3489. msgid "Should models on the platform be moved down to touch the build plate?"
  3490. msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?"
  3491. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3492. msgctxt "@option:check"
  3493. msgid "Automatically drop models to the build plate"
  3494. msgstr "自動的にモデルをビルドプレートに落とす"
  3495. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3496. msgctxt "@info:tooltip"
  3497. msgid "Show caution message in g-code reader."
  3498. msgstr "G-codeリーダーに注意メッセージを表示します。"
  3499. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:524
  3500. msgctxt "@option:check"
  3501. msgid "Caution message in g-code reader"
  3502. msgstr "G-codeリーダーに注意メッセージ"
  3503. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3504. msgctxt "@info:tooltip"
  3505. msgid "Should layer be forced into compatibility mode?"
  3506. msgstr "レイヤーはコンパティビリティモードに強制されるべきか?"
  3507. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:537
  3508. msgctxt "@option:check"
  3509. msgid "Force layer view compatibility mode (restart required)"
  3510. msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)"
  3511. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:547
  3512. msgctxt "@info:tooltip"
  3513. msgid "Should Cura open at the location it was closed?"
  3514. msgstr "Curaを終了した場所で開くようにしますか?"
  3515. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:552
  3516. msgctxt "@option:check"
  3517. msgid "Restore window position on start"
  3518. msgstr "開始時にウィンドウの位置を復元"
  3519. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:562
  3520. msgctxt "@info:tooltip"
  3521. msgid "What type of camera rendering should be used?"
  3522. msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?"
  3523. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:569
  3524. msgctxt "@window:text"
  3525. msgid "Camera rendering:"
  3526. msgstr "カメラレンダリング:"
  3527. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3528. msgid "Perspective"
  3529. msgstr "パースペクティブ表示"
  3530. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:577
  3531. msgid "Orthographic"
  3532. msgstr "平行投影表示"
  3533. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:617
  3534. msgctxt "@label"
  3535. msgid "Opening and saving files"
  3536. msgstr "ファイルを開くまた保存"
  3537. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3538. msgctxt "@info:tooltip"
  3539. msgid ""
  3540. "Should opening files from the desktop or external applications open in the "
  3541. "same instance of Cura?"
  3542. msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?"
  3543. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:629
  3544. msgctxt "@option:check"
  3545. msgid "Use a single instance of Cura"
  3546. msgstr "Curaの単一インスタンスを使用"
  3547. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:640
  3548. msgctxt "@info:tooltip"
  3549. msgid ""
  3550. "Should the build plate be cleared before loading a new model in the single "
  3551. "instance of Cura?"
  3552. msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?"
  3553. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:646
  3554. msgctxt "@option:check"
  3555. msgid "Clear buildplate before loading model into the single instance"
  3556. msgstr "モデルを単一のインスタンスにロードする前にビルドプレートをクリア"
  3557. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3558. msgctxt "@info:tooltip"
  3559. msgid "Should models be scaled to the build volume if they are too large?"
  3560. msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?"
  3561. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:661
  3562. msgctxt "@option:check"
  3563. msgid "Scale large models"
  3564. msgstr "大きなモデルをスケールする"
  3565. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:671
  3566. msgctxt "@info:tooltip"
  3567. msgid ""
  3568. "An model may appear extremely small if its unit is for example in meters "
  3569. "rather than millimeters. Should these models be scaled up?"
  3570. msgstr "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?"
  3571. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:676
  3572. msgctxt "@option:check"
  3573. msgid "Scale extremely small models"
  3574. msgstr "極端に小さなモデルをスケールアップする"
  3575. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:686
  3576. msgctxt "@info:tooltip"
  3577. msgid "Should models be selected after they are loaded?"
  3578. msgstr "モデルはロード後に選択しますか?"
  3579. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:691
  3580. msgctxt "@option:check"
  3581. msgid "Select models when loaded"
  3582. msgstr "ロード後にモデルを選択"
  3583. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:701
  3584. msgctxt "@info:tooltip"
  3585. msgid ""
  3586. "Should a prefix based on the printer name be added to the print job name "
  3587. "automatically?"
  3588. msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?"
  3589. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:706
  3590. msgctxt "@option:check"
  3591. msgid "Add machine prefix to job name"
  3592. msgstr "プリンターの敬称をジョブネームに加える"
  3593. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:716
  3594. msgctxt "@info:tooltip"
  3595. msgid "Should a summary be shown when saving a project file?"
  3596. msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?"
  3597. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:720
  3598. msgctxt "@option:check"
  3599. msgid "Show summary dialog when saving project"
  3600. msgstr "プロジェクトを保存時にダイアログサマリーを表示する"
  3601. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:730
  3602. msgctxt "@info:tooltip"
  3603. msgid "Default behavior when opening a project file"
  3604. msgstr "プロジェクトファイルを開く際のデフォルト機能"
  3605. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:738
  3606. msgctxt "@window:text"
  3607. msgid "Default behavior when opening a project file: "
  3608. msgstr "プロジェクトファイル開く際のデフォルト機能: "
  3609. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:753
  3610. msgctxt "@option:openProject"
  3611. msgid "Always ask me this"
  3612. msgstr "毎回確認する"
  3613. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:754
  3614. msgctxt "@option:openProject"
  3615. msgid "Always open as a project"
  3616. msgstr "常にプロジェクトとして開く"
  3617. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3618. msgctxt "@option:openProject"
  3619. msgid "Always import models"
  3620. msgstr "常にモデルを取り込む"
  3621. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:792
  3622. msgctxt "@info:tooltip"
  3623. msgid ""
  3624. "When you have made changes to a profile and switched to a different one, a "
  3625. "dialog will be shown asking whether you want to keep your modifications or "
  3626. "not, or you can choose a default behaviour and never show that dialog again."
  3627. msgstr "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。"
  3628. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:801
  3629. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36
  3630. msgctxt "@label"
  3631. msgid "Profiles"
  3632. msgstr "プロファイル"
  3633. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:806
  3634. msgctxt "@window:text"
  3635. msgid ""
  3636. "Default behavior for changed setting values when switching to a different "
  3637. "profile: "
  3638. msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: "
  3639. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:820
  3640. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:115
  3641. msgctxt "@option:discardOrKeep"
  3642. msgid "Always ask me this"
  3643. msgstr "毎回確認する"
  3644. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:821
  3645. msgctxt "@option:discardOrKeep"
  3646. msgid "Always discard changed settings"
  3647. msgstr "常に変更した設定を廃棄する"
  3648. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:822
  3649. msgctxt "@option:discardOrKeep"
  3650. msgid "Always transfer changed settings to new profile"
  3651. msgstr "常に変更した設定を新しいプロファイルに送信する"
  3652. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:856
  3653. msgctxt "@label"
  3654. msgid "Privacy"
  3655. msgstr "プライバシー"
  3656. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:862
  3657. msgctxt "@info:tooltip"
  3658. msgid ""
  3659. "Should anonymous data about your print be sent to Ultimaker? Note, no "
  3660. "models, IP addresses or other personally identifiable information is sent or "
  3661. "stored."
  3662. msgstr "プリンターの不明なデータをUltimakerにおくりますか?メモ、モデル、IPアドレス、個人的な情報は送信されたり保存されたりはしません。"
  3663. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:867
  3664. msgctxt "@option:check"
  3665. msgid "Send (anonymous) print information"
  3666. msgstr "(不特定な) プリントインフォメーションを送信"
  3667. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:897
  3668. msgctxt "@label"
  3669. msgid "Updates"
  3670. msgstr "アップデート"
  3671. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:904
  3672. msgctxt "@info:tooltip"
  3673. msgid "Should Cura check for updates when the program is started?"
  3674. msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?"
  3675. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:909
  3676. msgctxt "@option:check"
  3677. msgid "Check for updates on start"
  3678. msgstr "スタート時にアップデートあるかどうかのチェック"
  3679. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:925
  3680. msgctxt "@info:tooltip"
  3681. msgid "When checking for updates, only check for stable releases."
  3682. msgstr "アップデートを確認する際に、安定版リリースのみを確認します。"
  3683. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:931
  3684. msgctxt "@option:radio"
  3685. msgid "Stable releases only"
  3686. msgstr "安定版リリースのみ"
  3687. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:941
  3688. msgctxt "@info:tooltip"
  3689. msgid "When checking for updates, check for both stable and for beta releases."
  3690. msgstr "アップデートを確認する際に、安定版とベータ版の両方のリリースを確認します。"
  3691. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:947
  3692. msgctxt "@option:radio"
  3693. msgid "Stable and Beta releases"
  3694. msgstr "安定版およびベータ版リリース"
  3695. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:957
  3696. msgctxt "@info:tooltip"
  3697. msgid ""
  3698. "Should an automatic check for new plugins be done every time Cura is "
  3699. "started? It is highly recommended that you do not disable this!"
  3700. msgstr "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  3701. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:962
  3702. msgctxt "@option:check"
  3703. msgid "Get notifications for plugin updates"
  3704. msgstr "プラグインのアップデートを通知"
  3705. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3706. msgctxt "@title:window"
  3707. msgid "Rename"
  3708. msgstr "名前を変える"
  3709. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3710. msgctxt "@info"
  3711. msgid "Please provide a new name."
  3712. msgstr "新しい名前を入力してください。"
  3713. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:17
  3714. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:466
  3715. msgctxt "@title:tab"
  3716. msgid "Printers"
  3717. msgstr "プリンター"
  3718. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:50
  3719. msgctxt "@action:button"
  3720. msgid "Add New"
  3721. msgstr "新規追加"
  3722. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:154
  3723. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:331
  3724. msgctxt "@action:button"
  3725. msgid "Rename"
  3726. msgstr "名を変える"
  3727. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:57
  3728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:470
  3729. msgctxt "@title:tab"
  3730. msgid "Profiles"
  3731. msgstr "プロファイル"
  3732. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:59
  3733. msgctxt "@label"
  3734. msgid "Profiles compatible with active printer:"
  3735. msgstr "アクティブなプリンターと互換性のあるプロファイル:"
  3736. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:98
  3737. msgctxt "@action:tooltip"
  3738. msgid "Create new profile from current settings/overrides"
  3739. msgstr "現在の設定/上書きから新しいプロファイルを作成します"
  3740. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:125
  3741. msgctxt "@action:label"
  3742. msgid "Some settings from current profile were overwritten."
  3743. msgstr "現在のプロファイルの一部の設定が上書きされました。"
  3744. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:140
  3745. msgctxt "@action:button"
  3746. msgid "Update profile."
  3747. msgstr "プロフィールを更新します。"
  3748. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:143
  3749. msgctxt "@action:tooltip"
  3750. msgid "Update profile with current settings/overrides"
  3751. msgstr "プロファイルを現在のセッティング"
  3752. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:148
  3753. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3754. msgctxt "@action:button"
  3755. msgid "Discard current changes"
  3756. msgstr "今の変更を破棄する"
  3757. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:158
  3758. msgctxt "@action:label"
  3759. msgid ""
  3760. "This profile uses the defaults specified by the printer, so it has no "
  3761. "settings/overrides in the list below."
  3762. msgstr "このプロファイルはプリンターによりデフォルトを使用、従いこのプロファイルはセッティング/書き換えが以下のリストにありません。"
  3763. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:165
  3764. msgctxt "@action:label"
  3765. msgid "Your current settings match the selected profile."
  3766. msgstr "設定は選択したプロファイルにマッチしています。"
  3767. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:175
  3768. msgctxt "@title:tab"
  3769. msgid "Global Settings"
  3770. msgstr "グローバル設定"
  3771. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3772. msgctxt "@title:window"
  3773. msgid "Create Profile"
  3774. msgstr "プロファイルを作る"
  3775. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:280
  3776. msgctxt "@info"
  3777. msgid "Please provide a name for this profile."
  3778. msgstr "このプロファイルの名前を指定してください。"
  3779. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:352
  3780. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:368
  3781. msgctxt "@title:window"
  3782. msgid "Export Profile"
  3783. msgstr "プロファイルを書き出す"
  3784. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:382
  3785. msgctxt "@title:window"
  3786. msgid "Duplicate Profile"
  3787. msgstr "プロファイルを複製する"
  3788. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:409
  3789. msgctxt "@title:window"
  3790. msgid "Rename Profile"
  3791. msgstr "プロファイル名を変える"
  3792. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:422
  3793. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:429
  3794. msgctxt "@title:window"
  3795. msgid "Import Profile"
  3796. msgstr "プロファイルを取り込む"
  3797. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewsSelector.qml:50
  3798. msgctxt "@label"
  3799. msgid "View type"
  3800. msgstr "タイプ表示"
  3801. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:25
  3802. msgctxt "@info:tooltip"
  3803. msgid "3D View"
  3804. msgstr "3Dビュー"
  3805. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:38
  3806. msgctxt "@info:tooltip"
  3807. msgid "Front View"
  3808. msgstr "フロントビュー"
  3809. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:51
  3810. msgctxt "@info:tooltip"
  3811. msgid "Top View"
  3812. msgstr "トップビュー"
  3813. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:64
  3814. msgctxt "@info:tooltip"
  3815. msgid "Left View"
  3816. msgstr "左ビュー"
  3817. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:77
  3818. msgctxt "@info:tooltip"
  3819. msgid "Right View"
  3820. msgstr "右ビュー"
  3821. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:109
  3822. msgctxt "@label"
  3823. msgid "Is printed as support."
  3824. msgstr "サポートとしてプリントされます。"
  3825. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:112
  3826. msgctxt "@label"
  3827. msgid "Other models overlapping with this model are modified."
  3828. msgstr "このモデルに重なる他のモデルは修正されます。"
  3829. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:115
  3830. msgctxt "@label"
  3831. msgid "Infill overlapping with this model is modified."
  3832. msgstr "このモデルとのインフィル交差は修正されます。"
  3833. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:118
  3834. msgctxt "@label"
  3835. msgid "Overlaps with this model are not supported."
  3836. msgstr "このモデルとの重なりはサポートされません。"
  3837. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:125
  3838. msgctxt "@label %1 is the number of settings it overrides."
  3839. msgid "Overrides %1 setting."
  3840. msgid_plural "Overrides %1 settings."
  3841. msgstr[0] "%1個の設定を上書きします。"
  3842. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:156
  3843. msgctxt "@label"
  3844. msgid "Active print"
  3845. msgstr "プリントをアクティベートする"
  3846. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:164
  3847. msgctxt "@label"
  3848. msgid "Job Name"
  3849. msgstr "ジョブネーム"
  3850. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:172
  3851. msgctxt "@label"
  3852. msgid "Printing Time"
  3853. msgstr "プリント時間"
  3854. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:180
  3855. msgctxt "@label"
  3856. msgid "Estimated time left"
  3857. msgstr "残り時間"
  3858. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3859. msgctxt "@label"
  3860. msgid "Add a printer"
  3861. msgstr "プリンターの追加"
  3862. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38
  3863. msgctxt "@label"
  3864. msgid "Add a networked printer"
  3865. msgstr "ネットワークプリンターの追加"
  3866. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87
  3867. msgctxt "@label"
  3868. msgid "Add a non-networked printer"
  3869. msgstr "非ネットワークプリンターの追加"
  3870. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3871. msgctxt "@label"
  3872. msgid "What's New"
  3873. msgstr "新情報"
  3874. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  3875. msgctxt "@label"
  3876. msgid "Manufacturer"
  3877. msgstr "製造元"
  3878. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  3879. msgctxt "@label"
  3880. msgid "Profile author"
  3881. msgstr "プロファイル作成者"
  3882. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  3883. msgctxt "@label"
  3884. msgid "Printer name"
  3885. msgstr "プリンター名"
  3886. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  3887. msgctxt "@text"
  3888. msgid "Please name your printer"
  3889. msgstr "プリンターに名前を付けてください"
  3890. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3891. msgctxt "@label"
  3892. msgid "Release Notes"
  3893. msgstr "リリースノート"
  3894. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3895. msgctxt "@label"
  3896. msgid "There is no printer found over your network."
  3897. msgstr "ネットワークにプリンターはありません。"
  3898. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  3899. msgctxt "@label"
  3900. msgid "Refresh"
  3901. msgstr "更新"
  3902. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  3903. msgctxt "@label"
  3904. msgid "Add printer by IP"
  3905. msgstr "IP でプリンターを追加"
  3906. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  3907. msgctxt "@label"
  3908. msgid "Add cloud printer"
  3909. msgstr "クラウドプリンターを追加"
  3910. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220
  3911. msgctxt "@label"
  3912. msgid "Troubleshooting"
  3913. msgstr "トラブルシューティング"
  3914. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3915. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:19
  3916. msgctxt "@label"
  3917. msgid "Sign in to the Ultimaker platform"
  3918. msgstr "Ultimakerのプラットフォームにサインイン"
  3919. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:123
  3920. msgctxt "@text"
  3921. msgid "Add material settings and plugins from the Marketplace"
  3922. msgstr "マーケットプレイスから材料設定とプラグインを追加"
  3923. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:149
  3924. msgctxt "@text"
  3925. msgid "Backup and sync your material settings and plugins"
  3926. msgstr "材料設定とプラグインのバックアップと同期"
  3927. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:175
  3928. msgctxt "@text"
  3929. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3930. msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう"
  3931. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:189
  3932. msgctxt "@button"
  3933. msgid "Skip"
  3934. msgstr "スキップ"
  3935. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:201
  3936. msgctxt "@text"
  3937. msgid "Create a free Ultimaker Account"
  3938. msgstr "無料のUltimakerアカウントを作成"
  3939. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3940. msgctxt "@label"
  3941. msgid "Help us to improve Ultimaker Cura"
  3942. msgstr "Ultimaker Cura の改善にご協力ください"
  3943. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56
  3944. msgctxt "@text"
  3945. msgid ""
  3946. "Ultimaker Cura collects anonymous data to improve print quality and user "
  3947. "experience, including:"
  3948. msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:"
  3949. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68
  3950. msgctxt "@text"
  3951. msgid "Machine types"
  3952. msgstr "プリンターのタイプ"
  3953. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74
  3954. msgctxt "@text"
  3955. msgid "Material usage"
  3956. msgstr "材料の利用状況"
  3957. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80
  3958. msgctxt "@text"
  3959. msgid "Number of slices"
  3960. msgstr "スライスの数"
  3961. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86
  3962. msgctxt "@text"
  3963. msgid "Print settings"
  3964. msgstr "プリント設定"
  3965. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99
  3966. msgctxt "@text"
  3967. msgid ""
  3968. "Data collected by Ultimaker Cura will not contain any personal information."
  3969. msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。"
  3970. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100
  3971. msgctxt "@text"
  3972. msgid "More information"
  3973. msgstr "詳細"
  3974. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3975. msgctxt "@label"
  3976. msgid "Empty"
  3977. msgstr "空にする"
  3978. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3979. msgctxt "@label"
  3980. msgid "Add a Cloud printer"
  3981. msgstr "クラウドプリンターを追加"
  3982. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  3983. msgctxt "@label"
  3984. msgid "Waiting for Cloud response"
  3985. msgstr "クラウドの応答を待機しています"
  3986. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  3987. msgctxt "@label"
  3988. msgid "No printers found in your account?"
  3989. msgstr "アカウントにプリンターが見つかりませんか?"
  3990. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  3991. msgctxt "@label"
  3992. msgid "The following printers in your account have been added in Cura:"
  3993. msgstr "The following printers in your account have been added in Cura:"
  3994. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  3995. msgctxt "@button"
  3996. msgid "Add printer manually"
  3997. msgstr "プリンタを手動で追加する"
  3998. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3999. msgctxt "@label"
  4000. msgid "User Agreement"
  4001. msgstr "ユーザー用使用許諾契約"
  4002. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4003. msgctxt "@button"
  4004. msgid "Decline and close"
  4005. msgstr "拒否して閉じる"
  4006. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4007. msgctxt "@label"
  4008. msgid "Add printer by IP address"
  4009. msgstr "IP アドレスでプリンターを追加"
  4010. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  4011. msgctxt "@text"
  4012. msgid "Enter your printer's IP address."
  4013. msgstr "プリンターのIPアドレスを入力します。"
  4014. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  4015. msgctxt "@button"
  4016. msgid "Add"
  4017. msgstr "追加"
  4018. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  4019. msgctxt "@label"
  4020. msgid "Could not connect to device."
  4021. msgstr "デバイスに接続できません。"
  4022. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  4023. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  4024. msgctxt "@label"
  4025. msgid "Can't connect to your Ultimaker printer?"
  4026. msgstr "Ultimakerプリンターに接続できませんか?"
  4027. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  4028. msgctxt "@label"
  4029. msgid "The printer at this address has not responded yet."
  4030. msgstr "このアドレスのプリンターは応答していません。"
  4031. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  4032. msgctxt "@label"
  4033. msgid ""
  4034. "This printer cannot be added because it's an unknown printer or it's not the "
  4035. "host of a group."
  4036. msgstr "このプリンタは不明なプリンタであるか、またはグループのホストではないため、追加できません。"
  4037. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  4038. msgctxt "@button"
  4039. msgid "Connect"
  4040. msgstr "接続"
  4041. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4042. msgctxt "@label"
  4043. msgid "Welcome to Ultimaker Cura"
  4044. msgstr "Ultimaker Cura にようこそ"
  4045. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67
  4046. msgctxt "@text"
  4047. msgid ""
  4048. "Please follow these steps to set up Ultimaker Cura. This will only take a "
  4049. "few moments."
  4050. msgstr "以下の手順で\nUltimaker Cura を設定してください。数秒で完了します。"
  4051. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82
  4052. msgctxt "@button"
  4053. msgid "Get started"
  4054. msgstr "はじめに"
  4055. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectSelector.qml:59
  4056. msgctxt "@label"
  4057. msgid "Object list"
  4058. msgstr "オブジェクトリスト"
  4059. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:81
  4060. msgctxt "@action:inmenu"
  4061. msgid "Show Online Troubleshooting"
  4062. msgstr "オンライントラブルシューティングを表示"
  4063. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:88
  4064. msgctxt "@action:inmenu"
  4065. msgid "Toggle Full Screen"
  4066. msgstr "留め金 フルスクリーン"
  4067. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:96
  4068. msgctxt "@action:inmenu"
  4069. msgid "Exit Full Screen"
  4070. msgstr "全画面表示を終了する"
  4071. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:103
  4072. msgctxt "@action:inmenu menubar:edit"
  4073. msgid "&Undo"
  4074. msgstr "&取り消す"
  4075. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:113
  4076. msgctxt "@action:inmenu menubar:edit"
  4077. msgid "&Redo"
  4078. msgstr "&やりなおす"
  4079. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:131
  4080. msgctxt "@action:inmenu menubar:file"
  4081. msgid "&Quit"
  4082. msgstr "&やめる"
  4083. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:139
  4084. msgctxt "@action:inmenu menubar:view"
  4085. msgid "3D View"
  4086. msgstr "3Dビュー"
  4087. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:146
  4088. msgctxt "@action:inmenu menubar:view"
  4089. msgid "Front View"
  4090. msgstr "フロントビュー"
  4091. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:153
  4092. msgctxt "@action:inmenu menubar:view"
  4093. msgid "Top View"
  4094. msgstr "トップビュー"
  4095. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:160
  4096. msgctxt "@action:inmenu menubar:view"
  4097. msgid "Bottom View"
  4098. msgstr "底面図"
  4099. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:167
  4100. msgctxt "@action:inmenu menubar:view"
  4101. msgid "Left Side View"
  4102. msgstr "左サイドビュー"
  4103. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:174
  4104. msgctxt "@action:inmenu menubar:view"
  4105. msgid "Right Side View"
  4106. msgstr "右サイドビュー"
  4107. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:188
  4108. msgctxt "@action:inmenu"
  4109. msgid "Configure Cura..."
  4110. msgstr "Curaを構成する..."
  4111. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:195
  4112. msgctxt "@action:inmenu menubar:printer"
  4113. msgid "&Add Printer..."
  4114. msgstr "&プリンターを追加する..."
  4115. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:201
  4116. msgctxt "@action:inmenu menubar:printer"
  4117. msgid "Manage Pr&inters..."
  4118. msgstr "プリンターを管理する..."
  4119. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:208
  4120. msgctxt "@action:inmenu"
  4121. msgid "Manage Materials..."
  4122. msgstr "フィラメントを管理する..."
  4123. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:216
  4124. msgctxt ""
  4125. "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't "
  4126. "translate."
  4127. msgid "Add more materials from Marketplace"
  4128. msgstr "マーケットプレイスから材料を追加"
  4129. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:223
  4130. msgctxt "@action:inmenu menubar:profile"
  4131. msgid "&Update profile with current settings/overrides"
  4132. msgstr "&現在の設定/無効にプロファイルをアップデートする"
  4133. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:231
  4134. msgctxt "@action:inmenu menubar:profile"
  4135. msgid "&Discard current changes"
  4136. msgstr "&変更を破棄する"
  4137. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:243
  4138. msgctxt "@action:inmenu menubar:profile"
  4139. msgid "&Create profile from current settings/overrides..."
  4140. msgstr "&今の設定/無効からプロファイルを作成する..."
  4141. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:249
  4142. msgctxt "@action:inmenu menubar:profile"
  4143. msgid "Manage Profiles..."
  4144. msgstr "プロファイルを管理する..."
  4145. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:257
  4146. msgctxt "@action:inmenu menubar:help"
  4147. msgid "Show Online &Documentation"
  4148. msgstr "オンラインドキュメントを表示する"
  4149. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:265
  4150. msgctxt "@action:inmenu menubar:help"
  4151. msgid "Report a &Bug"
  4152. msgstr "報告&バグ"
  4153. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:273
  4154. msgctxt "@action:inmenu menubar:help"
  4155. msgid "What's New"
  4156. msgstr "新情報"
  4157. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:287
  4158. msgctxt "@action:inmenu menubar:help"
  4159. msgid "About..."
  4160. msgstr "アバウト..."
  4161. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:294
  4162. msgctxt "@action:inmenu menubar:edit"
  4163. msgid "Delete Selected"
  4164. msgstr "選択内容を削除"
  4165. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:304
  4166. msgctxt "@action:inmenu menubar:edit"
  4167. msgid "Center Selected"
  4168. msgstr "選択内容を中央に移動"
  4169. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:313
  4170. msgctxt "@action:inmenu menubar:edit"
  4171. msgid "Multiply Selected"
  4172. msgstr "選択内容を増倍"
  4173. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:322
  4174. msgctxt "@action:inmenu"
  4175. msgid "Delete Model"
  4176. msgstr "モデルを消去する"
  4177. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:330
  4178. msgctxt "@action:inmenu"
  4179. msgid "Ce&nter Model on Platform"
  4180. msgstr "プラットホームの中心にモデルを配置"
  4181. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:336
  4182. msgctxt "@action:inmenu menubar:edit"
  4183. msgid "&Group Models"
  4184. msgstr "&モデルグループ"
  4185. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:356
  4186. msgctxt "@action:inmenu menubar:edit"
  4187. msgid "Ungroup Models"
  4188. msgstr "モデルを非グループ化"
  4189. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:366
  4190. msgctxt "@action:inmenu menubar:edit"
  4191. msgid "&Merge Models"
  4192. msgstr "モ&デルの合体"
  4193. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:376
  4194. msgctxt "@action:inmenu"
  4195. msgid "&Multiply Model..."
  4196. msgstr "&モデルを増倍する..."
  4197. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:383
  4198. msgctxt "@action:inmenu menubar:edit"
  4199. msgid "Select All Models"
  4200. msgstr "すべてのモデル選択"
  4201. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:393
  4202. msgctxt "@action:inmenu menubar:edit"
  4203. msgid "Clear Build Plate"
  4204. msgstr "ビルドプレート上のクリア"
  4205. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:403
  4206. msgctxt "@action:inmenu menubar:file"
  4207. msgid "Reload All Models"
  4208. msgstr "すべてのモデルを読み込む"
  4209. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:412
  4210. msgctxt "@action:inmenu menubar:edit"
  4211. msgid "Arrange All Models"
  4212. msgstr "すべてのモデルをアレンジする"
  4213. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:420
  4214. msgctxt "@action:inmenu menubar:edit"
  4215. msgid "Arrange Selection"
  4216. msgstr "選択をアレンジする"
  4217. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:427
  4218. msgctxt "@action:inmenu menubar:edit"
  4219. msgid "Reset All Model Positions"
  4220. msgstr "すべてのモデルのポジションをリセットする"
  4221. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:434
  4222. msgctxt "@action:inmenu menubar:edit"
  4223. msgid "Reset All Model Transformations"
  4224. msgstr "すべてのモデル&変更点をリセットする"
  4225. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:443
  4226. msgctxt "@action:inmenu menubar:file"
  4227. msgid "&Open File(s)..."
  4228. msgstr "&ファイルを開く(s)..."
  4229. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:453
  4230. msgctxt "@action:inmenu menubar:file"
  4231. msgid "&New Project..."
  4232. msgstr "&新しいプロジェクト..."
  4233. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:460
  4234. msgctxt "@action:inmenu menubar:help"
  4235. msgid "Show Configuration Folder"
  4236. msgstr "コンフィグレーションのフォルダーを表示する"
  4237. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ExtruderButton.qml:16
  4238. msgctxt "@label %1 is filled in with the name of an extruder"
  4239. msgid "Print Selected Model with %1"
  4240. msgid_plural "Print Selected Models with %1"
  4241. msgstr[0] "選択したモデルを%1で印刷する"
  4242. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:115
  4243. msgctxt "@label:MonitorStatus"
  4244. msgid "Not connected to a printer"
  4245. msgstr "プリンターにつながっていません"
  4246. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:119
  4247. msgctxt "@label:MonitorStatus"
  4248. msgid "Printer does not accept commands"
  4249. msgstr "今プリンタはコマンドを処理できません"
  4250. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:129
  4251. msgctxt "@label:MonitorStatus"
  4252. msgid "In maintenance. Please check the printer"
  4253. msgstr "メンテナンス。プリンターをチェックしてください"
  4254. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:140
  4255. msgctxt "@label:MonitorStatus"
  4256. msgid "Lost connection with the printer"
  4257. msgstr "プリンターへの接続が切断されました"
  4258. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:142
  4259. msgctxt "@label:MonitorStatus"
  4260. msgid "Printing..."
  4261. msgstr "プリント中..."
  4262. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:145
  4263. msgctxt "@label:MonitorStatus"
  4264. msgid "Paused"
  4265. msgstr "一時停止しました"
  4266. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:148
  4267. msgctxt "@label:MonitorStatus"
  4268. msgid "Preparing..."
  4269. msgstr "準備中..."
  4270. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:150
  4271. msgctxt "@label:MonitorStatus"
  4272. msgid "Please remove the print"
  4273. msgstr "造形物を取り出してください"
  4274. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:318
  4275. msgctxt "@label"
  4276. msgid "Abort Print"
  4277. msgstr "プリント中止"
  4278. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:327
  4279. msgctxt "@label"
  4280. msgid "Are you sure you want to abort the print?"
  4281. msgstr "本当にプリントを中止してもいいですか?"
  4282. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:36
  4283. msgctxt "@title:column"
  4284. msgid "Setting"
  4285. msgstr "設定"
  4286. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:37
  4287. msgctxt "@title:column"
  4288. msgid "Profile"
  4289. msgstr "プロファイル"
  4290. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:38
  4291. msgctxt "@title:column"
  4292. msgid "Current"
  4293. msgstr "現在"
  4294. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:39
  4295. msgctxt "@title:column Unit of measurement"
  4296. msgid "Unit"
  4297. msgstr "ユニット"
  4298. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:34
  4299. msgctxt "@title:menu"
  4300. msgid "&Material"
  4301. msgstr "&フィラメント"
  4302. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:49
  4303. msgctxt "@action:inmenu"
  4304. msgid "Set as Active Extruder"
  4305. msgstr "アクティブエクストルーダーとしてセットする"
  4306. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:55
  4307. msgctxt "@action:inmenu"
  4308. msgid "Enable Extruder"
  4309. msgstr "エクストルーダーを有効にする"
  4310. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:63
  4311. msgctxt "@action:inmenu"
  4312. msgid "Disable Extruder"
  4313. msgstr "エクストルーダーを無効にする"
  4314. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:13
  4315. msgctxt "@title:menu menubar:toplevel"
  4316. msgid "&File"
  4317. msgstr "&ファイル"
  4318. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:45
  4319. msgctxt "@title:menu menubar:file"
  4320. msgid "&Save Project..."
  4321. msgstr "プロジェクトを保存... (&S)"
  4322. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:78
  4323. msgctxt "@title:menu menubar:file"
  4324. msgid "&Export..."
  4325. msgstr "エクスポート... (&E)"
  4326. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:89
  4327. msgctxt "@action:inmenu menubar:file"
  4328. msgid "Export Selection..."
  4329. msgstr "選択エクスポート..."
  4330. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:13
  4331. msgctxt "@label:category menu label"
  4332. msgid "Material"
  4333. msgstr "材料"
  4334. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:53
  4335. msgctxt "@label:category menu label"
  4336. msgid "Favorites"
  4337. msgstr "お気に入り"
  4338. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:78
  4339. msgctxt "@label:category menu label"
  4340. msgid "Generic"
  4341. msgstr "汎用"
  4342. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:13
  4343. msgctxt "@title:menu menubar:settings"
  4344. msgid "&Printer"
  4345. msgstr "&プリンター"
  4346. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:17
  4347. msgctxt "@label:category menu label"
  4348. msgid "Network enabled printers"
  4349. msgstr "ネットワーク対応プリンター"
  4350. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:50
  4351. msgctxt "@label:category menu label"
  4352. msgid "Local printers"
  4353. msgstr "ローカルプリンター"
  4354. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  4355. msgctxt "@title:menu menubar:toplevel"
  4356. msgid "E&xtensions"
  4357. msgstr "拡張子"
  4358. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  4359. msgctxt "@title:menu menubar:file"
  4360. msgid "Open File(s)..."
  4361. msgstr "ファイルを開く..."
  4362. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  4363. msgctxt "@title:menu menubar:toplevel"
  4364. msgid "P&references"
  4365. msgstr "プレファレンス"
  4366. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4367. msgctxt "@header"
  4368. msgid "Configurations"
  4369. msgstr "構成"
  4370. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4371. msgctxt "@header"
  4372. msgid "Custom"
  4373. msgstr "カスタム"
  4374. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4375. msgctxt "@label"
  4376. msgid "Enabled"
  4377. msgstr "有効"
  4378. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4379. msgctxt "@label"
  4380. msgid "Material"
  4381. msgstr "フィラメント"
  4382. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4383. msgctxt "@label"
  4384. msgid "Use glue for better adhesion with this material combination."
  4385. msgstr "この材料の組み合わせの接着に接着材を使用する。"
  4386. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4387. msgctxt "@label"
  4388. msgid "Loading available configurations from the printer..."
  4389. msgstr "プリンタから利用可能な構成を読み込んでいます..."
  4390. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4391. msgctxt "@label"
  4392. msgid ""
  4393. "The configurations are not available because the printer is disconnected."
  4394. msgstr "プリンタが接続されていないため、構成は利用できません。"
  4395. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4396. msgctxt "@label"
  4397. msgid ""
  4398. "This configuration is not available because %1 is not recognized. Please "
  4399. "visit %2 to download the correct material profile."
  4400. msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。"
  4401. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4402. msgctxt "@label"
  4403. msgid "Marketplace"
  4404. msgstr "マーケットプレース"
  4405. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4406. msgctxt "@tooltip"
  4407. msgid ""
  4408. "The configuration of this extruder is not allowed, and prohibits slicing."
  4409. msgstr "このエクストルーダーの構成が許可されておらず、スライスを妨げています。"
  4410. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4411. msgctxt "@tooltip"
  4412. msgid "There are no profiles matching the configuration of this extruder."
  4413. msgstr "このエクストルーダーの構成に一致するプロファイルがありません。"
  4414. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4415. msgctxt "@label"
  4416. msgid "Select configuration"
  4417. msgstr "構成の選択"
  4418. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4419. msgctxt "@label"
  4420. msgid "Configurations"
  4421. msgstr "構成"
  4422. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/HelpMenu.qml:14
  4423. msgctxt "@title:menu menubar:toplevel"
  4424. msgid "&Help"
  4425. msgstr "ヘルプ"
  4426. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  4427. msgctxt "@title:menu menubar:file"
  4428. msgid "Save Project..."
  4429. msgstr "プロジェクトを保存..."
  4430. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  4431. msgctxt "@title:menu menubar:file"
  4432. msgid "Open &Recent"
  4433. msgstr "最近開いたファイルを開く"
  4434. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:13
  4435. msgctxt "@title:menu menubar:toplevel"
  4436. msgid "&View"
  4437. msgstr "&ビュー"
  4438. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:17
  4439. msgctxt "@action:inmenu menubar:view"
  4440. msgid "&Camera position"
  4441. msgstr "カメラ位置 (&C)"
  4442. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:30
  4443. msgctxt "@action:inmenu menubar:view"
  4444. msgid "Camera view"
  4445. msgstr "カメラビュー"
  4446. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:48
  4447. msgctxt "@action:inmenu menubar:view"
  4448. msgid "Perspective"
  4449. msgstr "パースペクティブ表示"
  4450. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:59
  4451. msgctxt "@action:inmenu menubar:view"
  4452. msgid "Orthographic"
  4453. msgstr "平行投影表示"
  4454. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:29
  4455. msgctxt "@label"
  4456. msgid "Print Selected Model With:"
  4457. msgid_plural "Print Selected Models With:"
  4458. msgstr[0] "選択したモデルで印刷:"
  4459. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:92
  4460. msgctxt "@title:window"
  4461. msgid "Multiply Selected Model"
  4462. msgid_plural "Multiply Selected Models"
  4463. msgstr[0] "選択した複数のモデル"
  4464. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:123
  4465. msgctxt "@label"
  4466. msgid "Number of Copies"
  4467. msgstr "コピーの数"
  4468. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/EditMenu.qml:12
  4469. msgctxt "@title:menu menubar:toplevel"
  4470. msgid "&Edit"
  4471. msgstr "&編集"
  4472. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4473. msgctxt "@action:inmenu"
  4474. msgid "Visible Settings"
  4475. msgstr "ビジブル設定"
  4476. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4477. msgctxt "@action:inmenu"
  4478. msgid "Collapse All Categories"
  4479. msgstr "すべてのカテゴリを折りたたむ"
  4480. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4481. msgctxt "@action:inmenu"
  4482. msgid "Manage Setting Visibility..."
  4483. msgstr "視野のセッティングを管理する..."
  4484. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  4485. msgctxt "@title:window"
  4486. msgid "Select Printer"
  4487. msgstr "プリンターを選択する"
  4488. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  4489. msgctxt "@title:label"
  4490. msgid "Compatible Printers"
  4491. msgstr "互換性のあるプリンター"
  4492. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:94
  4493. msgctxt "@description"
  4494. msgid "No compatible printers, that are currently online, where found."
  4495. msgstr "現在オンライン状態で互換性があるプリンターは見つかりませんでした。"
  4496. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  4497. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:635
  4498. msgctxt "@title:window"
  4499. msgid "Open file(s)"
  4500. msgstr "ファイルを開く"
  4501. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4502. msgctxt "@text:window"
  4503. msgid ""
  4504. "We have found one or more project file(s) within the files you have "
  4505. "selected. You can open only one project file at a time. We suggest to only "
  4506. "import models from those files. Would you like to proceed?"
  4507. msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?"
  4508. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4509. msgctxt "@action:button"
  4510. msgid "Import all as models"
  4511. msgstr "すべてをモデルとして取り入れる"
  4512. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  4513. msgctxt "@title:window"
  4514. msgid "Open project file"
  4515. msgstr "プロジェクトを開く"
  4516. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  4517. msgctxt "@text:window"
  4518. msgid ""
  4519. "This is a Cura project file. Would you like to open it as a project or "
  4520. "import the models from it?"
  4521. msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?"
  4522. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  4523. msgctxt "@text:window"
  4524. msgid "Remember my choice"
  4525. msgstr "選択を記憶させる"
  4526. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  4527. msgctxt "@action:button"
  4528. msgid "Open as project"
  4529. msgstr "プロジェクトを開く"
  4530. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  4531. msgctxt "@action:button"
  4532. msgid "Import models"
  4533. msgstr "モデルを取り込む"
  4534. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  4535. msgctxt "@title:window"
  4536. msgid "Discard or Keep changes"
  4537. msgstr "変更を取り消すか保存するか"
  4538. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:59
  4539. msgctxt "@text:window, %1 is a profile name"
  4540. msgid ""
  4541. "You have customized some profile settings. Would you like to Keep these "
  4542. "changed settings after switching profiles? Alternatively, you can discard "
  4543. "the changes to load the defaults from '%1'."
  4544. msgstr "一部のプロファイル設定がカスタマイズされています。\nこれらの変更された設定をプロファイルの切り替え後も維持しますか?\n変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。"
  4545. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:85
  4546. msgctxt "@title:column"
  4547. msgid "Profile settings"
  4548. msgstr "プロファイル設定"
  4549. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:87
  4550. msgctxt "@title:column"
  4551. msgid "Current changes"
  4552. msgstr "現在の変更"
  4553. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  4554. msgctxt "@option:discardOrKeep"
  4555. msgid "Discard and never ask again"
  4556. msgstr "取り消し、再度確認しない"
  4557. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  4558. msgctxt "@option:discardOrKeep"
  4559. msgid "Keep and never ask again"
  4560. msgstr "キープし、再度確認しない"
  4561. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:147
  4562. msgctxt "@action:button"
  4563. msgid "Discard changes"
  4564. msgstr "変更を破棄"
  4565. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:153
  4566. msgctxt "@action:button"
  4567. msgid "Keep changes"
  4568. msgstr "変更を維持"
  4569. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4570. msgctxt "@title:window"
  4571. msgid "Save Project"
  4572. msgstr "プロジェクトを保存"
  4573. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4574. msgctxt "@action:label"
  4575. msgid "Extruder %1"
  4576. msgstr "エクストルーダー%1"
  4577. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4578. msgctxt "@action:label"
  4579. msgid "%1 & material"
  4580. msgstr "%1とフィラメント"
  4581. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4582. msgctxt "@action:label"
  4583. msgid "Material"
  4584. msgstr "材料"
  4585. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4586. msgctxt "@action:label"
  4587. msgid "Don't show project summary on save again"
  4588. msgstr "保存中のプロジェクトサマリーを非表示にする"
  4589. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4590. msgctxt "@action:button"
  4591. msgid "Save"
  4592. msgstr "保存"
  4593. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  4594. msgctxt "@title:window The argument is the application name."
  4595. msgid "About %1"
  4596. msgstr "%1について"
  4597. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:59
  4598. msgctxt "@label"
  4599. msgid "version: %1"
  4600. msgstr "バージョン: %1"
  4601. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:74
  4602. msgctxt "@label"
  4603. msgid "End-to-end solution for fused filament 3D printing."
  4604. msgstr "熱溶解積層型3Dプリンティングのエンドtoエンドソリューション。"
  4605. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:87
  4606. msgctxt "@info:credit"
  4607. msgid ""
  4608. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  4609. "Cura proudly uses the following open source projects:"
  4610. msgstr "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:"
  4611. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  4612. msgctxt "@label Description for application component"
  4613. msgid "Graphical user interface"
  4614. msgstr "グラフィックユーザーインターフェイス"
  4615. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  4616. msgctxt "@label Description for application component"
  4617. msgid "Application framework"
  4618. msgstr "アプリケーションフレームワーク"
  4619. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  4620. msgctxt "@label Description for application component"
  4621. msgid "G-code generator"
  4622. msgstr "G-codeの生成"
  4623. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  4624. msgctxt "@label Description for application component"
  4625. msgid "Interprocess communication library"
  4626. msgstr "インタープロセスコミュニケーションライブラリー"
  4627. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  4628. msgctxt "@label Description for application component"
  4629. msgid "Python bindings for libnest2d"
  4630. msgstr "libnest2dのPythonバインディング"
  4631. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  4632. msgctxt "@label Description for application component"
  4633. msgid "Polygon packing library, developed by Prusa Research"
  4634. msgstr "Prusa Research開発のポリゴンパッキングライブラリー"
  4635. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  4636. msgctxt "@label Description for application component"
  4637. msgid "Support library for handling 3MF files"
  4638. msgstr "3MFファイルを操作するためのライブラリーサポート"
  4639. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  4640. msgctxt "@label Description for application component"
  4641. msgid "Support library for file metadata and streaming"
  4642. msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート"
  4643. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  4644. msgctxt "@label Description for application dependency"
  4645. msgid "Programming language"
  4646. msgstr "プログラミング用語"
  4647. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  4648. msgctxt "@label Description for application dependency"
  4649. msgid "GUI framework"
  4650. msgstr "GUIフレームワーク"
  4651. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  4652. msgctxt "@label Description for application dependency"
  4653. msgid "GUI framework bindings"
  4654. msgstr "GUIフレームワークバインディング"
  4655. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  4656. msgctxt "@label Description for application dependency"
  4657. msgid "C/C++ Binding library"
  4658. msgstr "C/C++ バインディングライブラリー"
  4659. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  4660. msgctxt "@label Description for application dependency"
  4661. msgid "Data interchange format"
  4662. msgstr "データインターフェイスフォーマット"
  4663. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  4664. msgctxt "@label"
  4665. msgid "Font"
  4666. msgstr "フォント"
  4667. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  4668. msgctxt "@label Description for application dependency"
  4669. msgid "Polygon clipping library"
  4670. msgstr "ポリゴンクリッピングライブラリー"
  4671. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  4672. msgctxt "@label Description for application dependency"
  4673. msgid "JSON parser"
  4674. msgstr "JSON解析プログラム"
  4675. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  4676. msgctxt "@label Description for application dependency"
  4677. msgid "Utility functions, including an image loader"
  4678. msgstr "画像ローダーなどを含むユーティリティ機能"
  4679. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  4680. msgctxt "@label Description for application dependency"
  4681. msgid "Utility library, including Voronoi generation"
  4682. msgstr "ボロノイ図生成を含むユーティリティライブラリ"
  4683. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  4684. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  4685. msgctxt "@label Description for application dependency"
  4686. msgid "Root Certificates for validating SSL trustworthiness"
  4687. msgstr "SSLの信頼性を検証するためのルート証明書"
  4688. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  4689. msgctxt "@label Description for application dependency"
  4690. msgid "Compatibility between Python 2 and 3"
  4691. msgstr "Python2および3との互換性"
  4692. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  4693. msgctxt "@label Description for application dependency"
  4694. msgid "Support library for system keyring access"
  4695. msgstr "システムキーリングアクセスを操作するためのライブラリーサポート"
  4696. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:166
  4697. msgctxt "@label Description for application dependency"
  4698. msgid "Support library for faster math"
  4699. msgstr "ファターマスを操作するためのライブラリーサポート"
  4700. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:167
  4701. msgctxt "@label Description for application dependency"
  4702. msgid "Support library for handling STL files"
  4703. msgstr "STLファイルを操作するためのライブラリーサポート"
  4704. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:168
  4705. msgctxt "@label Description for application dependency"
  4706. msgid "Python bindings for Clipper"
  4707. msgstr "ClipperのPythonバインディング"
  4708. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  4709. msgctxt "@label Description for application dependency"
  4710. msgid "Serial communication library"
  4711. msgstr "シリアルコミュニケーションライブラリー"
  4712. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:170
  4713. msgctxt "@label Description for application dependency"
  4714. msgid "Support library for scientific computing"
  4715. msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート"
  4716. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:171
  4717. msgctxt "@Label Description for application dependency"
  4718. msgid "Python Error tracking library"
  4719. msgstr "Pythonエラー追跡ライブラリー"
  4720. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  4721. msgctxt "@label Description for application dependency"
  4722. msgid "Support library for handling triangular meshes"
  4723. msgstr "参画メッシュを操作するためのライブラリーサポート"
  4724. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  4725. msgctxt "@label Description for application dependency"
  4726. msgid "ZeroConf discovery library"
  4727. msgstr "ZeroConfディスカバリーライブラリー"
  4728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:176
  4729. msgctxt "@label Description for development tool"
  4730. msgid "Universal build system configuration"
  4731. msgstr "ユニバーサルビルドシステム設定"
  4732. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:177
  4733. msgctxt "@label Description for development tool"
  4734. msgid "Dependency and package manager"
  4735. msgstr "パッケージ管理システム"
  4736. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:178
  4737. msgctxt "@label Description for development tool"
  4738. msgid "Packaging Python-applications"
  4739. msgstr "Pythonアプリケーションのパッケージ化"
  4740. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:179
  4741. msgctxt "@label Description for development tool"
  4742. msgid "Linux cross-distribution application deployment"
  4743. msgstr "Linux 分散アプリケーションの開発"
  4744. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:180
  4745. msgctxt "@label Description for development tool"
  4746. msgid "Generating Windows installers"
  4747. msgstr "Windowsインストーラーの生成"
  4748. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:107
  4749. msgctxt "@label"
  4750. msgid "Hex"
  4751. msgstr "六角"
  4752. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4753. msgctxt "@label:button"
  4754. msgid "My printers"
  4755. msgstr "マイプリンター"
  4756. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4757. msgctxt "@tooltip:button"
  4758. msgid "Monitor printers in Ultimaker Digital Factory."
  4759. msgstr "Ultimaker Digital Factoryでプリンターをモニタリングします。"
  4760. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4761. msgctxt "@tooltip:button"
  4762. msgid "Create print projects in Digital Library."
  4763. msgstr "Digital Libraryでプリントプロジェクトを作成します。"
  4764. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4765. msgctxt "@label:button"
  4766. msgid "Print jobs"
  4767. msgstr "プリントジョブ"
  4768. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4769. msgctxt "@tooltip:button"
  4770. msgid "Monitor print jobs and reprint from your print history."
  4771. msgstr "プリントジョブをモニタリングしてプリント履歴から再プリントします。"
  4772. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4773. msgctxt "@tooltip:button"
  4774. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4775. msgstr "Ultimaker Curaをプラグインと材料プロファイルで拡張します。"
  4776. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4777. msgctxt "@tooltip:button"
  4778. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4779. msgstr "Ultimaker eラーニングで3Dプリンティングのエキスパートになります。"
  4780. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4781. msgctxt "@label:button"
  4782. msgid "Ultimaker support"
  4783. msgstr "Ultimakerのサポート"
  4784. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4785. msgctxt "@tooltip:button"
  4786. msgid "Learn how to get started with Ultimaker Cura."
  4787. msgstr "Ultimaker Curaの使用を開始する方法を確認します。"
  4788. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4789. msgctxt "@label:button"
  4790. msgid "Ask a question"
  4791. msgstr "質問をする"
  4792. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4793. msgctxt "@tooltip:button"
  4794. msgid "Consult the Ultimaker Community."
  4795. msgstr "Ultimaker Communityをご参照ください。"
  4796. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4797. msgctxt "@label:button"
  4798. msgid "Report a bug"
  4799. msgstr "バグを報告"
  4800. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4801. msgctxt "@tooltip:button"
  4802. msgid "Let developers know that something is going wrong."
  4803. msgstr "問題が発生していることを開発者にお知らせください。"
  4804. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4805. msgctxt "@tooltip:button"
  4806. msgid "Visit the Ultimaker website."
  4807. msgstr "Ultimakerウェブサイトをご確認ください。"
  4808. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  4809. msgctxt "@label"
  4810. msgid "Support"
  4811. msgstr "サポート"
  4812. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:44
  4813. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:78
  4814. msgctxt "@label"
  4815. msgid ""
  4816. "Generate structures to support parts of the model which have overhangs. "
  4817. "Without these structures, such parts would collapse during printing."
  4818. msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。"
  4819. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54
  4820. msgctxt "@info, %1 is the name of the custom profile"
  4821. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  4822. msgstr "<b>%1</b>カスタムプロファイルが稼働し、一部の設定を上書きしました。"
  4823. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68
  4824. msgctxt "@info, %1 is the name of the custom profile"
  4825. msgid "<b>%1</b> custom profile is overriding some settings."
  4826. msgstr "<b>%1</b>カスタムプロファイルが、一部の設定を上書き中です。"
  4827. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79
  4828. msgctxt "@info"
  4829. msgid "Some settings were changed."
  4830. msgstr "一部の設定が変更されました。"
  4831. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:78
  4832. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:254
  4833. msgctxt "@label"
  4834. msgid ""
  4835. "Gradual infill will gradually increase the amount of infill towards the top."
  4836. msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。"
  4837. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:216
  4838. msgctxt "@label"
  4839. msgid "Gradual infill"
  4840. msgstr "インフィル半減"
  4841. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  4842. msgctxt "@error"
  4843. msgid "Configuration not supported"
  4844. msgstr "サポートされていない構成設定です"
  4845. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  4846. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  4847. msgid ""
  4848. "No profiles are available for the selected material/%1 configuration. Please "
  4849. "change your configuration."
  4850. msgstr "選択した/%1材料の設定で利用可能なプロファイルがありません。設定を変更してください。"
  4851. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  4852. msgctxt "@button:label"
  4853. msgid "Learn more"
  4854. msgstr "詳細を見る"
  4855. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  4856. msgctxt "@label"
  4857. msgid "Adhesion"
  4858. msgstr "密着性"
  4859. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:76
  4860. msgctxt "@label"
  4861. msgid ""
  4862. "Enable printing a brim or raft. This will add a flat area around or under "
  4863. "your object which is easy to cut off afterwards."
  4864. msgstr "ブリムまたはラフトのプリントの有効化。それぞれ、プリントの周り、また造形物の下に底面を加え切り取りやすくします。"
  4865. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  4866. msgctxt "@label"
  4867. msgid "Resolution"
  4868. msgstr "解像度"
  4869. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  4870. msgctxt "@label shown when we load a Gcode file"
  4871. msgid "Print setup disabled. G-code file can not be modified."
  4872. msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。"
  4873. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4874. msgctxt "@label:Should be short"
  4875. msgid "On"
  4876. msgstr "オン"
  4877. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4878. msgctxt "@label:Should be short"
  4879. msgid "Off"
  4880. msgstr "オフ"
  4881. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4882. msgctxt "@label"
  4883. msgid "Experimental"
  4884. msgstr "実験"
  4885. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142
  4886. msgctxt "@button"
  4887. msgid "Recommended"
  4888. msgstr "推奨"
  4889. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156
  4890. msgctxt "@button"
  4891. msgid "Custom"
  4892. msgstr "カスタム"
  4893. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4894. msgctxt "@label"
  4895. msgid "Profile"
  4896. msgstr "プロファイル"
  4897. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145
  4898. msgctxt "@tooltip"
  4899. msgid ""
  4900. "Some setting/override values are different from the values stored in the "
  4901. "profile.\n"
  4902. "\n"
  4903. "Click to open the profile manager."
  4904. msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。\nプロファイルマネージャーをクリックして開いてください。"
  4905. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  4906. msgctxt "@label:header"
  4907. msgid "Custom profiles"
  4908. msgstr "カスタムプロファイル"
  4909. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4910. msgctxt "@info:status"
  4911. msgid "The printer is not connected."
  4912. msgstr "このプリンターはつながっていません。"
  4913. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  4914. msgctxt "@label"
  4915. msgid "Build plate"
  4916. msgstr "ビルドプレート"
  4917. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  4918. msgctxt "@tooltip"
  4919. msgid ""
  4920. "The target temperature of the heated bed. The bed will heat up or cool down "
  4921. "towards this temperature. If this is 0, the bed heating is turned off."
  4922. msgstr "ヒーティッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。"
  4923. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4924. msgctxt "@tooltip"
  4925. msgid "The current temperature of the heated bed."
  4926. msgstr "現在のヒーティッドベッドの温度。"
  4927. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  4928. msgctxt "@tooltip of temperature input"
  4929. msgid "The temperature to pre-heat the bed to."
  4930. msgstr "ベッドのプリヒート温度。"
  4931. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  4932. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  4933. msgctxt "@button Cancel pre-heating"
  4934. msgid "Cancel"
  4935. msgstr "キャンセル"
  4936. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  4937. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  4938. msgctxt "@button"
  4939. msgid "Pre-heat"
  4940. msgstr "プレヒート"
  4941. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  4942. msgctxt "@tooltip of pre-heat"
  4943. msgid ""
  4944. "Heat the bed in advance before printing. You can continue adjusting your "
  4945. "print while it is heating, and you won't have to wait for the bed to heat up "
  4946. "when you're ready to print."
  4947. msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。"
  4948. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  4949. msgctxt "@label"
  4950. msgid "Extruder"
  4951. msgstr "エクストルーダー"
  4952. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  4953. msgctxt "@tooltip"
  4954. msgid ""
  4955. "The target temperature of the hotend. The hotend will heat up or cool down "
  4956. "towards this temperature. If this is 0, the hotend heating is turned off."
  4957. msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。"
  4958. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  4959. msgctxt "@tooltip"
  4960. msgid "The current temperature of this hotend."
  4961. msgstr "このホットエンドの現在の温度です。"
  4962. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  4963. msgctxt "@tooltip of temperature input"
  4964. msgid "The temperature to pre-heat the hotend to."
  4965. msgstr "ホットエンドをプリヒートする温度です。"
  4966. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  4967. msgctxt "@tooltip of pre-heat"
  4968. msgid ""
  4969. "Heat the hotend in advance before printing. You can continue adjusting your "
  4970. "print while it is heating, and you won't have to wait for the hotend to heat "
  4971. "up when you're ready to print."
  4972. msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。"
  4973. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  4974. msgctxt "@tooltip"
  4975. msgid "The colour of the material in this extruder."
  4976. msgstr "エクストルーダーのマテリアルの色。"
  4977. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  4978. msgctxt "@tooltip"
  4979. msgid "The material in this extruder."
  4980. msgstr "エクストルーダー入ったフィラメント。"
  4981. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  4982. msgctxt "@tooltip"
  4983. msgid "The nozzle inserted in this extruder."
  4984. msgstr "ノズルが入ったエクストルーダー。"
  4985. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  4986. msgctxt "@label"
  4987. msgid "Printer control"
  4988. msgstr "プリンターコントロール"
  4989. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  4990. msgctxt "@label"
  4991. msgid "Jog Position"
  4992. msgstr "ジョグの位置"
  4993. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  4994. msgctxt "@label"
  4995. msgid "X/Y"
  4996. msgstr "X/Y"
  4997. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  4998. msgctxt "@label"
  4999. msgid "Z"
  5000. msgstr "Z"
  5001. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5002. msgctxt "@label"
  5003. msgid "Jog Distance"
  5004. msgstr "ジョグの距離"
  5005. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5006. msgctxt "@label"
  5007. msgid "Send G-code"
  5008. msgstr "G-codeの送信"
  5009. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5010. msgctxt "@tooltip of G-code command input"
  5011. msgid ""
  5012. "Send a custom G-code command to the connected printer. Press 'enter' to send "
  5013. "the command."
  5014. msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。"
  5015. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:250
  5016. msgctxt "@label"
  5017. msgid "This package will be installed after restarting."
  5018. msgstr "このパッケージは再起動後にインストールされます。"
  5019. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:464
  5020. msgctxt "@title:tab"
  5021. msgid "Settings"
  5022. msgstr "設定"
  5023. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:587
  5024. msgctxt "@title:window %1 is the application name"
  5025. msgid "Closing %1"
  5026. msgstr "%1を閉じています"
  5027. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:588
  5028. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:597
  5029. msgctxt "@label %1 is the application name"
  5030. msgid "Are you sure you want to exit %1?"
  5031. msgstr "%1を終了しますか?"
  5032. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:740
  5033. msgctxt "@window:title"
  5034. msgid "Install Package"
  5035. msgstr "パッケージをインストール"
  5036. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:747
  5037. msgctxt "@title:window"
  5038. msgid "Open File(s)"
  5039. msgstr "ファイルを開く(s)"
  5040. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:749
  5041. msgctxt "@text:window"
  5042. msgid ""
  5043. "We have found one or more G-Code files within the files you have selected. "
  5044. "You can only open one G-Code file at a time. If you want to open a G-Code "
  5045. "file, please just select only one."
  5046. msgstr "選択したファイルの中に複数のG-codeが存在します。1つのG-codeのみ一度に開けます。G-codeファイルを開く場合は、1点のみ選んでください。"
  5047. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:829
  5048. msgctxt "@title:window"
  5049. msgid "Add Printer"
  5050. msgstr "プリンターを追加する"
  5051. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:837
  5052. msgctxt "@title:window"
  5053. msgid "What's New"
  5054. msgstr "新情報"
  5055. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:39
  5056. msgctxt "@text"
  5057. msgid ""
  5058. "- Add material profiles and plug-ins from the Marketplace\n"
  5059. "- Back-up and sync your material profiles and plug-ins\n"
  5060. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  5061. msgstr "- マーケットプレースから材料プロファイルとプラグインを追加\n- 材料プロファイルとプラグインのバックアップと同期\n- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう"
  5062. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:58
  5063. msgctxt "@button"
  5064. msgid "Create a free Ultimaker account"
  5065. msgstr "無料のUltimakerアカウントを作成"
  5066. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/AccountWidget.qml:24
  5067. msgctxt "@action:button"
  5068. msgid "Sign in"
  5069. msgstr "サインイン"
  5070. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:78
  5071. msgctxt "@label The argument is a timestamp"
  5072. msgid "Last update: %1"
  5073. msgstr "最終更新:%1"
  5074. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:107
  5075. msgctxt "@button"
  5076. msgid "Ultimaker Account"
  5077. msgstr "Ultimakerアカウント"
  5078. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:126
  5079. msgctxt "@button"
  5080. msgid "Sign Out"
  5081. msgstr "サインアウト"
  5082. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:35
  5083. msgctxt "@label"
  5084. msgid "Checking..."
  5085. msgstr "確認しています..."
  5086. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:42
  5087. msgctxt "@label"
  5088. msgid "Account synced"
  5089. msgstr "アカウント同期"
  5090. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:49
  5091. msgctxt "@label"
  5092. msgid "Something went wrong..."
  5093. msgstr "問題が発生しました..."
  5094. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:102
  5095. msgctxt "@button"
  5096. msgid "Install pending updates"
  5097. msgstr "保留中の更新をインストール"
  5098. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:123
  5099. msgctxt "@button"
  5100. msgid "Check for account updates"
  5101. msgstr "アカウントの更新を確認"
  5102. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  5103. msgctxt "@status"
  5104. msgid ""
  5105. "The cloud printer is offline. Please check if the printer is turned on and "
  5106. "connected to the internet."
  5107. msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。"
  5108. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  5109. msgctxt "@status"
  5110. msgid ""
  5111. "This printer is not linked to your account. Please visit the Ultimaker "
  5112. "Digital Factory to establish a connection."
  5113. msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。"
  5114. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  5115. msgctxt "@status"
  5116. msgid ""
  5117. "The cloud connection is currently unavailable. Please sign in to connect to "
  5118. "the cloud printer."
  5119. msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。"
  5120. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  5121. msgctxt "@status"
  5122. msgid ""
  5123. "The cloud connection is currently unavailable. Please check your internet "
  5124. "connection."
  5125. msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。"
  5126. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:237
  5127. msgctxt "@button"
  5128. msgid "Add printer"
  5129. msgstr "プリンターの追加"
  5130. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:254
  5131. msgctxt "@button"
  5132. msgid "Manage printers"
  5133. msgstr "プリンター管理"
  5134. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:34
  5135. msgctxt "@label"
  5136. msgid "Hide all connected printers"
  5137. msgstr "接続されているすべてのプリンターを隠す"
  5138. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:47
  5139. msgctxt "@label"
  5140. msgid "Show all connected printers"
  5141. msgstr "接続されているすべてのプリンターを表示する"
  5142. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  5143. msgctxt "@label"
  5144. msgid "Other printers"
  5145. msgstr "その他のプリンター"
  5146. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  5147. msgctxt "@label:PrintjobStatus"
  5148. msgid "Slicing..."
  5149. msgstr "スライス中..."
  5150. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78
  5151. msgctxt "@label:PrintjobStatus"
  5152. msgid "Unable to slice"
  5153. msgstr "スライスできません"
  5154. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  5155. msgctxt "@button"
  5156. msgid "Processing"
  5157. msgstr "処理"
  5158. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  5159. msgctxt "@button"
  5160. msgid "Slice"
  5161. msgstr "スライス"
  5162. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115
  5163. msgctxt "@label"
  5164. msgid "Start the slicing process"
  5165. msgstr "スライス処理の開始"
  5166. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132
  5167. msgctxt "@button"
  5168. msgid "Cancel"
  5169. msgstr "キャンセル"
  5170. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  5171. msgctxt "@label"
  5172. msgid "Time estimation"
  5173. msgstr "時間予測"
  5174. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107
  5175. msgctxt "@label"
  5176. msgid "Material estimation"
  5177. msgstr "材料予測"
  5178. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156
  5179. msgctxt "@label m for meter"
  5180. msgid "%1m"
  5181. msgstr "%1m"
  5182. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157
  5183. msgctxt "@label g for grams"
  5184. msgid "%1g"
  5185. msgstr "%1g"
  5186. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  5187. msgctxt "@label"
  5188. msgid "No time estimation available"
  5189. msgstr "時間予測がありません"
  5190. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  5191. msgctxt "@label"
  5192. msgid "No cost estimation available"
  5193. msgstr "コスト予測がありません"
  5194. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  5195. msgctxt "@button"
  5196. msgid "Preview"
  5197. msgstr "プレビュー"
  5198. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/JobSpecs.qml:93
  5199. msgctxt "@text Print job name"
  5200. msgid "Untitled"
  5201. msgstr "無題"
  5202. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Widgets/ComboBox.qml:18
  5203. msgctxt "@label"
  5204. msgid "No items to select from"
  5205. msgstr "選択するアイテムがありません"
  5206. #: /MachineSettingsAction/plugin.json
  5207. msgctxt "description"
  5208. msgid ""
  5209. "Provides a way to change machine settings (such as build volume, nozzle "
  5210. "size, etc.)."
  5211. msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)"
  5212. #: /MachineSettingsAction/plugin.json
  5213. msgctxt "name"
  5214. msgid "Machine Settings Action"
  5215. msgstr "プリンターの設定アクション"
  5216. #: /ImageReader/plugin.json
  5217. msgctxt "description"
  5218. msgid "Enables ability to generate printable geometry from 2D image files."
  5219. msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。"
  5220. #: /ImageReader/plugin.json
  5221. msgctxt "name"
  5222. msgid "Image Reader"
  5223. msgstr "画像リーダー"
  5224. #: /XRayView/plugin.json
  5225. msgctxt "description"
  5226. msgid "Provides the X-Ray view."
  5227. msgstr "透視ビューイング。"
  5228. #: /XRayView/plugin.json
  5229. msgctxt "name"
  5230. msgid "X-Ray View"
  5231. msgstr "透視ビュー"
  5232. #: /X3DReader/plugin.json
  5233. msgctxt "description"
  5234. msgid "Provides support for reading X3D files."
  5235. msgstr "X3Dファイルを読むこむためのサポートを供給する。"
  5236. #: /X3DReader/plugin.json
  5237. msgctxt "name"
  5238. msgid "X3D Reader"
  5239. msgstr "X3Dリーダー"
  5240. #: /CuraProfileReader/plugin.json
  5241. msgctxt "description"
  5242. msgid "Provides support for importing Cura profiles."
  5243. msgstr "Curaプロファイルを取り込むためのサポートを供給する。"
  5244. #: /CuraProfileReader/plugin.json
  5245. msgctxt "name"
  5246. msgid "Cura Profile Reader"
  5247. msgstr "Curaプロファイルリーダー"
  5248. #: /PostProcessingPlugin/plugin.json
  5249. msgctxt "description"
  5250. msgid "Extension that allows for user created scripts for post processing"
  5251. msgstr "後処理のためにユーザーが作成したスクリプト用拡張子"
  5252. #: /PostProcessingPlugin/plugin.json
  5253. msgctxt "name"
  5254. msgid "Post Processing"
  5255. msgstr "後処理"
  5256. #: /UM3NetworkPrinting/plugin.json
  5257. msgctxt "description"
  5258. msgid "Manages network connections to Ultimaker networked printers."
  5259. msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。"
  5260. #: /UM3NetworkPrinting/plugin.json
  5261. msgctxt "name"
  5262. msgid "Ultimaker Network Connection"
  5263. msgstr "Ultimakerネットワーク接続"
  5264. #: /3MFWriter/plugin.json
  5265. msgctxt "description"
  5266. msgid "Provides support for writing 3MF files."
  5267. msgstr "3MFファイルを読むこむためのサポートを供給する。"
  5268. #: /3MFWriter/plugin.json
  5269. msgctxt "name"
  5270. msgid "3MF Writer"
  5271. msgstr "3MFリーダー"
  5272. #: /CuraDrive/plugin.json
  5273. msgctxt "description"
  5274. msgid "Backup and restore your configuration."
  5275. msgstr "構成をバックアップしてリストアします。"
  5276. #: /CuraDrive/plugin.json
  5277. msgctxt "name"
  5278. msgid "Cura Backups"
  5279. msgstr "Cura バックアップ"
  5280. #: /SliceInfoPlugin/plugin.json
  5281. msgctxt "description"
  5282. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5283. msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。"
  5284. #: /SliceInfoPlugin/plugin.json
  5285. msgctxt "name"
  5286. msgid "Slice info"
  5287. msgstr "スライスインフォメーション"
  5288. #: /UFPWriter/plugin.json
  5289. msgctxt "description"
  5290. msgid "Provides support for writing Ultimaker Format Packages."
  5291. msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。"
  5292. #: /UFPWriter/plugin.json
  5293. msgctxt "name"
  5294. msgid "UFP Writer"
  5295. msgstr "UFPライター"
  5296. #: /DigitalLibrary/plugin.json
  5297. msgctxt "description"
  5298. msgid ""
  5299. "Connects to the Digital Library, allowing Cura to open files from and save "
  5300. "files to the Digital Library."
  5301. msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。"
  5302. #: /DigitalLibrary/plugin.json
  5303. msgctxt "name"
  5304. msgid "Ultimaker Digital Library"
  5305. msgstr "Ultimaker Digital Library"
  5306. #: /GCodeProfileReader/plugin.json
  5307. msgctxt "description"
  5308. msgid "Provides support for importing profiles from g-code files."
  5309. msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。"
  5310. #: /GCodeProfileReader/plugin.json
  5311. msgctxt "name"
  5312. msgid "G-code Profile Reader"
  5313. msgstr "G-codeプロファイルリーダー"
  5314. #: /GCodeReader/plugin.json
  5315. msgctxt "description"
  5316. msgid "Allows loading and displaying G-code files."
  5317. msgstr "G-codeファイルの読み込み、表示を許可する。"
  5318. #: /GCodeReader/plugin.json
  5319. msgctxt "name"
  5320. msgid "G-code Reader"
  5321. msgstr "G-codeリーダー"
  5322. #: /TrimeshReader/plugin.json
  5323. msgctxt "description"
  5324. msgid "Provides support for reading model files."
  5325. msgstr "モデルファイルを読み込むためのサポートを供給します。"
  5326. #: /TrimeshReader/plugin.json
  5327. msgctxt "name"
  5328. msgid "Trimesh Reader"
  5329. msgstr "Trimeshリーダー"
  5330. #: /UltimakerMachineActions/plugin.json
  5331. msgctxt "description"
  5332. msgid ""
  5333. "Provides machine actions for Ultimaker machines (such as bed leveling "
  5334. "wizard, selecting upgrades, etc.)."
  5335. msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)"
  5336. #: /UltimakerMachineActions/plugin.json
  5337. msgctxt "name"
  5338. msgid "Ultimaker machine actions"
  5339. msgstr "Ultimkerプリンターのアクション"
  5340. #: /GCodeGzReader/plugin.json
  5341. msgctxt "description"
  5342. msgid "Reads g-code from a compressed archive."
  5343. msgstr "圧縮ファイルからG-codeを読み取ります。"
  5344. #: /GCodeGzReader/plugin.json
  5345. msgctxt "name"
  5346. msgid "Compressed G-code Reader"
  5347. msgstr "圧縮G-codeリーダー"
  5348. #: /Marketplace/plugin.json
  5349. msgctxt "description"
  5350. msgid ""
  5351. "Manages extensions to the application and allows browsing extensions from "
  5352. "the Ultimaker website."
  5353. msgstr "アプリケーションの拡張機能を管理し、Ultimakerウェブサイトから拡張機能を参照できるようにします。"
  5354. #: /Marketplace/plugin.json
  5355. msgctxt "name"
  5356. msgid "Marketplace"
  5357. msgstr "マーケットプレース"
  5358. #: /RemovableDriveOutputDevice/plugin.json
  5359. msgctxt "description"
  5360. msgid "Provides removable drive hotplugging and writing support."
  5361. msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。"
  5362. #: /RemovableDriveOutputDevice/plugin.json
  5363. msgctxt "name"
  5364. msgid "Removable Drive Output Device Plugin"
  5365. msgstr "取り外し可能なドライブアウトプットデバイスプラグイン"
  5366. #: /MonitorStage/plugin.json
  5367. msgctxt "description"
  5368. msgid "Provides a monitor stage in Cura."
  5369. msgstr "Curaでモニターステージを提供します。"
  5370. #: /MonitorStage/plugin.json
  5371. msgctxt "name"
  5372. msgid "Monitor Stage"
  5373. msgstr "モニターステージ"
  5374. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  5375. msgctxt "description"
  5376. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5377. msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。"
  5378. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  5379. msgctxt "name"
  5380. msgid "Version Upgrade 2.5 to 2.6"
  5381. msgstr "2.5から2.6にバージョンアップグレート"
  5382. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5383. msgctxt "description"
  5384. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5385. msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。"
  5386. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5387. msgctxt "name"
  5388. msgid "Version Upgrade 2.6 to 2.7"
  5389. msgstr "2.6から2.7にバージョンアップグレート"
  5390. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5391. msgctxt "description"
  5392. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5393. msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。"
  5394. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5395. msgctxt "name"
  5396. msgid "Version Upgrade 4.13 to 5.0"
  5397. msgstr "バージョン4.13から5.0へのアップグレード"
  5398. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5399. msgctxt "description"
  5400. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5401. msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。"
  5402. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5403. msgctxt "name"
  5404. msgid "Version Upgrade 4.8 to 4.9"
  5405. msgstr "バージョン4.8から4.9へのアップグレード"
  5406. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5407. msgctxt "description"
  5408. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5409. msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。"
  5410. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5411. msgctxt "name"
  5412. msgid "Version Upgrade 3.4 to 3.5"
  5413. msgstr "3.4 から 3.5 にバージョンアップグレート"
  5414. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5415. msgctxt "description"
  5416. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5417. msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。"
  5418. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5419. msgctxt "name"
  5420. msgid "Version Upgrade 4.4 to 4.5"
  5421. msgstr "4.4から4.5にバージョンアップグレート"
  5422. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5423. msgctxt "description"
  5424. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5425. msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。"
  5426. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5427. msgctxt "name"
  5428. msgid "Version Upgrade 4.3 to 4.4"
  5429. msgstr "4.3から4.4にバージョンアップグレート"
  5430. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5431. msgctxt "description"
  5432. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5433. msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。"
  5434. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5435. msgctxt "name"
  5436. msgid "Version Upgrade 3.2 to 3.3"
  5437. msgstr "3.2から3.3にバージョンアップグレート"
  5438. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5439. msgctxt "description"
  5440. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5441. msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。"
  5442. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5443. msgctxt "name"
  5444. msgid "Version Upgrade 3.3 to 3.4"
  5445. msgstr "3.3から3.4にバージョンアップグレート"
  5446. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5447. msgctxt "description"
  5448. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5449. msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。"
  5450. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5451. msgctxt "name"
  5452. msgid "Version Upgrade 4.1 to 4.2"
  5453. msgstr "4.0 から 4.1 にバージョンアップグレート"
  5454. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5455. msgctxt "description"
  5456. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5457. msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。"
  5458. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5459. msgctxt "name"
  5460. msgid "Version Upgrade 4.2 to 4.3"
  5461. msgstr "4.2から4.3にバージョンをアップグレート"
  5462. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5463. msgctxt "description"
  5464. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5465. msgstr "構成をCura 4.6.2からCura 4.7に更新します。"
  5466. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5467. msgctxt "name"
  5468. msgid "Version Upgrade 4.6.2 to 4.7"
  5469. msgstr "4.6.2から4.7へのバージョン更新"
  5470. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5471. msgctxt "description"
  5472. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5473. msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。"
  5474. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5475. msgctxt "name"
  5476. msgid "Version Upgrade 3.5 to 4.0"
  5477. msgstr "3.5 から 4.0 にバージョンアップグレート"
  5478. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5479. msgctxt "description"
  5480. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5481. msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。"
  5482. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5483. msgctxt "name"
  5484. msgid "Version Upgrade 2.2 to 2.4"
  5485. msgstr "2.2 から2.4にバージョンアップグレート"
  5486. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5487. msgctxt "description"
  5488. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5489. msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。"
  5490. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5491. msgctxt "name"
  5492. msgid "Version Upgrade 2.1 to 2.2"
  5493. msgstr "2.1 から2.2にバージョンアップグレート"
  5494. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5495. msgctxt "description"
  5496. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5497. msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。"
  5498. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5499. msgctxt "name"
  5500. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5501. msgstr "4.6.0から4.6.2へのバージョン更新"
  5502. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5503. msgctxt "description"
  5504. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5505. msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。"
  5506. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5507. msgctxt "name"
  5508. msgid "Version Upgrade 4.7 to 4.8"
  5509. msgstr "バージョン4.7から4.8へのアップグレード"
  5510. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5511. msgctxt "description"
  5512. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5513. msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。"
  5514. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5515. msgctxt "name"
  5516. msgid "Version Upgrade 4.9 to 4.10"
  5517. msgstr "バージョン4.9から4.10へのアップグレード"
  5518. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5519. msgctxt "description"
  5520. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5521. msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。"
  5522. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5523. msgctxt "name"
  5524. msgid "Version Upgrade 4.5 to 4.6"
  5525. msgstr "バージョン4.5から4.6へのアップグレード"
  5526. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5527. msgctxt "description"
  5528. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5529. msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。"
  5530. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5531. msgctxt "name"
  5532. msgid "Version Upgrade 2.7 to 3.0"
  5533. msgstr "2.7から3.0にバージョンアップグレート"
  5534. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5535. msgctxt "description"
  5536. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5537. msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。"
  5538. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5539. msgctxt "name"
  5540. msgid "Version Upgrade 3.0 to 3.1"
  5541. msgstr "3.0から3.1にバージョンアップグレート"
  5542. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5543. msgctxt "description"
  5544. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5545. msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。"
  5546. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5547. msgctxt "name"
  5548. msgid "Version Upgrade 4.11 to 4.12"
  5549. msgstr "バージョン4.11から4.12へのアップグレード"
  5550. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5551. msgctxt "description"
  5552. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5553. msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。"
  5554. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5555. msgctxt "name"
  5556. msgid "Version Upgrade 4.0 to 4.1"
  5557. msgstr "4.0 から 4.1 にバージョンアップグレート"
  5558. #: /CuraEngineBackend/plugin.json
  5559. msgctxt "description"
  5560. msgid "Provides the link to the CuraEngine slicing backend."
  5561. msgstr "CuraEngineスライシングバックエンドにリンクを供給する。"
  5562. #: /CuraEngineBackend/plugin.json
  5563. msgctxt "name"
  5564. msgid "CuraEngine Backend"
  5565. msgstr "Curaエンジンバックエンド"
  5566. #: /3MFReader/plugin.json
  5567. msgctxt "description"
  5568. msgid "Provides support for reading 3MF files."
  5569. msgstr "3MFファイルを読むこむためのサポートを供給する。"
  5570. #: /3MFReader/plugin.json
  5571. msgctxt "name"
  5572. msgid "3MF Reader"
  5573. msgstr "3MFリーダー"
  5574. #: /PerObjectSettingsTool/plugin.json
  5575. msgctxt "description"
  5576. msgid "Provides the Per Model Settings."
  5577. msgstr "各モデル設定を与える。"
  5578. #: /PerObjectSettingsTool/plugin.json
  5579. msgctxt "name"
  5580. msgid "Per Model Settings Tool"
  5581. msgstr "各モデル設定ツール"
  5582. #: /XmlMaterialProfile/plugin.json
  5583. msgctxt "description"
  5584. msgid "Provides capabilities to read and write XML-based material profiles."
  5585. msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。"
  5586. #: /XmlMaterialProfile/plugin.json
  5587. msgctxt "name"
  5588. msgid "Material Profiles"
  5589. msgstr "フィラメントプロファイル"
  5590. #: /CuraProfileWriter/plugin.json
  5591. msgctxt "description"
  5592. msgid "Provides support for exporting Cura profiles."
  5593. msgstr "Curaプロファイルを書き出すためのサポートを供給する。"
  5594. #: /CuraProfileWriter/plugin.json
  5595. msgctxt "name"
  5596. msgid "Cura Profile Writer"
  5597. msgstr "Curaプロファイルライター"
  5598. #: /ModelChecker/plugin.json
  5599. msgctxt "description"
  5600. msgid ""
  5601. "Checks models and print configuration for possible printing issues and give "
  5602. "suggestions."
  5603. msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。"
  5604. #: /ModelChecker/plugin.json
  5605. msgctxt "name"
  5606. msgid "Model Checker"
  5607. msgstr "モデルチェッカー"
  5608. #: /USBPrinting/plugin.json
  5609. msgctxt "description"
  5610. msgid ""
  5611. "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5612. msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。"
  5613. #: /USBPrinting/plugin.json
  5614. msgctxt "name"
  5615. msgid "USB printing"
  5616. msgstr "USBプリンティング"
  5617. #: /PreviewStage/plugin.json
  5618. msgctxt "description"
  5619. msgid "Provides a preview stage in Cura."
  5620. msgstr "Curaでプレビューステージを提供します。"
  5621. #: /PreviewStage/plugin.json
  5622. msgctxt "name"
  5623. msgid "Preview Stage"
  5624. msgstr "プレビューステージ"
  5625. #: /GCodeWriter/plugin.json
  5626. msgctxt "description"
  5627. msgid "Writes g-code to a file."
  5628. msgstr "ファイルにG-codeを書き込みます。"
  5629. #: /GCodeWriter/plugin.json
  5630. msgctxt "name"
  5631. msgid "G-code Writer"
  5632. msgstr "G-codeライター"
  5633. #: /UFPReader/plugin.json
  5634. msgctxt "description"
  5635. msgid "Provides support for reading Ultimaker Format Packages."
  5636. msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。"
  5637. #: /UFPReader/plugin.json
  5638. msgctxt "name"
  5639. msgid "UFP Reader"
  5640. msgstr "UFP リーダー"
  5641. #: /FirmwareUpdater/plugin.json
  5642. msgctxt "description"
  5643. msgid "Provides a machine actions for updating firmware."
  5644. msgstr "ファームウェアアップデートのためのマシン操作を提供します。"
  5645. #: /FirmwareUpdater/plugin.json
  5646. msgctxt "name"
  5647. msgid "Firmware Updater"
  5648. msgstr "ファームウェアアップデーター"
  5649. #: /GCodeGzWriter/plugin.json
  5650. msgctxt "description"
  5651. msgid "Writes g-code to a compressed archive."
  5652. msgstr "圧縮ファイルにG-codeを書き込みます。"
  5653. #: /GCodeGzWriter/plugin.json
  5654. msgctxt "name"
  5655. msgid "Compressed G-code Writer"
  5656. msgstr "圧縮G-codeライター"
  5657. #: /SimulationView/plugin.json
  5658. msgctxt "description"
  5659. msgid "Provides the preview of sliced layerdata."
  5660. msgstr "スライスされたレイヤーデータのプレビューを提供します。"
  5661. #: /SimulationView/plugin.json
  5662. msgctxt "name"
  5663. msgid "Simulation View"
  5664. msgstr "シミュレーションビュー"
  5665. #: /LegacyProfileReader/plugin.json
  5666. msgctxt "description"
  5667. msgid "Provides support for importing profiles from legacy Cura versions."
  5668. msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。"
  5669. #: /LegacyProfileReader/plugin.json
  5670. msgctxt "name"
  5671. msgid "Legacy Cura Profile Reader"
  5672. msgstr "レガシーCuraプロファイルリーダー"
  5673. #: /AMFReader/plugin.json
  5674. msgctxt "description"
  5675. msgid "Provides support for reading AMF files."
  5676. msgstr "AMFファイルの読込みをサポートしています。"
  5677. #: /AMFReader/plugin.json
  5678. msgctxt "name"
  5679. msgid "AMF Reader"
  5680. msgstr "AMFリーダー"
  5681. #: /SolidView/plugin.json
  5682. msgctxt "description"
  5683. msgid "Provides a normal solid mesh view."
  5684. msgstr "ノーマルなソリットメッシュビューを供給する。"
  5685. #: /SolidView/plugin.json
  5686. msgctxt "name"
  5687. msgid "Solid View"
  5688. msgstr "ソリッドビュー"
  5689. #: /FirmwareUpdateChecker/plugin.json
  5690. msgctxt "description"
  5691. msgid "Checks for firmware updates."
  5692. msgstr "ファームウェアアップデートをチェックする。"
  5693. #: /FirmwareUpdateChecker/plugin.json
  5694. msgctxt "name"
  5695. msgid "Firmware Update Checker"
  5696. msgstr "ファームウェアアップデートチェッカー"
  5697. #: /SentryLogger/plugin.json
  5698. msgctxt "description"
  5699. msgid "Logs certain events so that they can be used by the crash reporter"
  5700. msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します"
  5701. #: /SentryLogger/plugin.json
  5702. msgctxt "name"
  5703. msgid "Sentry Logger"
  5704. msgstr "監視ロガー"
  5705. #: /SupportEraser/plugin.json
  5706. msgctxt "description"
  5707. msgid ""
  5708. "Creates an eraser mesh to block the printing of support in certain places"
  5709. msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する"
  5710. #: /SupportEraser/plugin.json
  5711. msgctxt "name"
  5712. msgid "Support Eraser"
  5713. msgstr "サポート消去機能"
  5714. #: /PrepareStage/plugin.json
  5715. msgctxt "description"
  5716. msgid "Provides a prepare stage in Cura."
  5717. msgstr "Curaで準備ステージを提供します。"
  5718. #: /PrepareStage/plugin.json
  5719. msgctxt "name"
  5720. msgid "Prepare Stage"
  5721. msgstr "ステージの準備"