cura.po 246 KB

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