cura.po 345 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.9\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-04-02 16:10+0200\n"
  10. "PO-Revision-Date: 2021-04-16 15:00+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Japanese <info@lionbridge.com>, Japanese <info@bothof.nl>\n"
  13. "Language: ja_JP\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=1; plural=0;\n"
  18. "X-Generator: Poedit 2.4.1\n"
  19. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
  20. msgctxt "@info:progress"
  21. msgid "Loading machines..."
  22. msgstr "プリンターを読み込み中..."
  23. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
  24. msgctxt "@info:progress"
  25. msgid "Setting up preferences..."
  26. msgstr "プレファレンスをセットアップ中..."
  27. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
  28. msgctxt "@info:progress"
  29. msgid "Initializing Active Machine..."
  30. msgstr "アクティブなプリンターを初期化中..."
  31. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
  32. msgctxt "@info:progress"
  33. msgid "Initializing machine manager..."
  34. msgstr "プリンターマネージャーを初期化中..."
  35. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
  36. msgctxt "@info:progress"
  37. msgid "Initializing build volume..."
  38. msgstr "ビルドボリュームを初期化中..."
  39. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
  40. msgctxt "@info:progress"
  41. msgid "Setting up scene..."
  42. msgstr "シーンをセットアップ中..."
  43. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
  44. msgctxt "@info:progress"
  45. msgid "Loading interface..."
  46. msgstr "インターフェイスを読み込み中..."
  47. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
  48. msgctxt "@info:progress"
  49. msgid "Initializing engine..."
  50. msgstr "エンジンを初期化中..."
  51. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
  52. #, python-format
  53. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  54. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  55. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  56. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
  57. #, python-brace-format
  58. msgctxt "@info:status"
  59. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  60. msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。"
  61. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  62. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  63. msgctxt "@info:title"
  64. msgid "Warning"
  65. msgstr "警告"
  66. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
  67. #, python-brace-format
  68. msgctxt "@info:status"
  69. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  70. msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。"
  71. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
  72. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  73. msgctxt "@info:title"
  74. msgid "Error"
  75. msgstr "エラー"
  76. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  77. #, python-brace-format
  78. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  79. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  80. msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。"
  81. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  82. msgctxt "@label"
  83. msgid "Custom Material"
  84. msgstr "カスタムフィラメント"
  85. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227 /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  86. msgctxt "@label"
  87. msgid "Custom"
  88. msgstr "カスタム"
  89. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  90. msgctxt "@label"
  91. msgid "Default"
  92. msgstr "Default"
  93. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  94. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  95. msgctxt "@label"
  96. msgid "Unknown"
  97. msgstr "不明"
  98. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
  99. msgctxt "@label"
  100. msgid "Custom profiles"
  101. msgstr "カスタムプロファイル"
  102. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
  103. #, python-brace-format
  104. msgctxt "@item:inlistbox"
  105. msgid "All Supported Types ({0})"
  106. msgstr "すべてのサポートのタイプ ({0})"
  107. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
  108. msgctxt "@item:inlistbox"
  109. msgid "All Files (*)"
  110. msgstr "全てのファイル"
  111. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  112. msgctxt "@label"
  113. msgid "Visual"
  114. msgstr "ビジュアル"
  115. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  116. msgctxt "@text"
  117. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  118. msgstr "ビジュアルプロファイルは、優れたビジュアルと表面品質を目的としたビジュアルプロトタイプやモデルをプリントするために設計されています。"
  119. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  120. msgctxt "@label"
  121. msgid "Engineering"
  122. msgstr "Engineering"
  123. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  124. msgctxt "@text"
  125. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  126. msgstr "エンジニアリングプロファイルは、精度向上と公差の厳格対応を目的とした機能プロトタイプや最終用途部品をプリントするために設計されています。"
  127. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  128. msgctxt "@label"
  129. msgid "Draft"
  130. msgstr "ドラフト"
  131. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  132. msgctxt "@text"
  133. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  134. msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。"
  135. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  136. msgctxt "@label"
  137. msgid "The printer(s) below cannot be connected because they are part of a group"
  138. msgstr "下のプリンターはグループの一員であるため接続できません"
  139. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  140. msgctxt "@label"
  141. msgid "Available networked printers"
  142. msgstr "ネットワークで利用可能なプリンター"
  143. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
  144. msgctxt "@menuitem"
  145. msgid "Not overridden"
  146. msgstr "上書きできません"
  147. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
  148. msgctxt "@title:window"
  149. msgid "Cura can't start"
  150. msgstr "Curaを開始できません"
  151. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
  152. msgctxt "@label crash message"
  153. msgid ""
  154. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  155. " <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"
  156. " <p>Backups can be found in the configuration folder.</p>\n"
  157. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  158. " "
  159. msgstr ""
  160. "<p><b>申し訳ありません。Ultimaker Cura で何らかの不具合が生じています。</p></b>\n"
  161. " <p>開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。</p>\n"
  162. " <p>バックアップは、設定フォルダに保存されます。</p>\n"
  163. " <p>問題解決のために、このクラッシュ報告をお送りください。</p>\n"
  164. " "
  165. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
  166. msgctxt "@action:button"
  167. msgid "Send crash report to Ultimaker"
  168. msgstr "クラッシュ報告をUltimakerに送信する"
  169. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
  170. msgctxt "@action:button"
  171. msgid "Show detailed crash report"
  172. msgstr "詳しいクラッシュ報告を表示する"
  173. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
  174. msgctxt "@action:button"
  175. msgid "Show configuration folder"
  176. msgstr "コンフィグレーションのフォルダーを表示する"
  177. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
  178. msgctxt "@action:button"
  179. msgid "Backup and Reset Configuration"
  180. msgstr "バックアップとリセットの設定"
  181. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
  182. msgctxt "@title:window"
  183. msgid "Crash Report"
  184. msgstr "クラッシュ報告"
  185. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
  186. msgctxt "@label crash message"
  187. msgid ""
  188. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  189. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  190. " "
  191. msgstr ""
  192. "<p><b>致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください</p></b>\n"
  193. " <p>「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください</p>\n"
  194. " "
  195. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
  196. msgctxt "@title:groupbox"
  197. msgid "System information"
  198. msgstr "システム情報"
  199. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
  200. msgctxt "@label unknown version of Cura"
  201. msgid "Unknown"
  202. msgstr "不明"
  203. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
  204. msgctxt "@label Cura version number"
  205. msgid "Cura version"
  206. msgstr "Curaバージョン"
  207. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
  208. msgctxt "@label"
  209. msgid "Cura language"
  210. msgstr "Cura言語"
  211. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
  212. msgctxt "@label"
  213. msgid "OS language"
  214. msgstr "OS言語"
  215. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
  216. msgctxt "@label Type of platform"
  217. msgid "Platform"
  218. msgstr "プラットフォーム"
  219. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
  220. msgctxt "@label"
  221. msgid "Qt version"
  222. msgstr "Qtバージョン"
  223. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
  224. msgctxt "@label"
  225. msgid "PyQt version"
  226. msgstr "PyQtバージョン"
  227. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
  228. msgctxt "@label OpenGL version"
  229. msgid "OpenGL"
  230. msgstr "OpenGL"
  231. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
  232. msgctxt "@label"
  233. msgid "Not yet initialized<br/>"
  234. msgstr "初期化されていません<br/>"
  235. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
  236. #, python-brace-format
  237. msgctxt "@label OpenGL version"
  238. msgid "<li>OpenGL Version: {version}</li>"
  239. msgstr "<li>OpenGLバージョン: {version}</li>"
  240. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
  241. #, python-brace-format
  242. msgctxt "@label OpenGL vendor"
  243. msgid "<li>OpenGL Vendor: {vendor}</li>"
  244. msgstr "<li>OpenGLベンダー: {vendor}</li>"
  245. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
  246. #, python-brace-format
  247. msgctxt "@label OpenGL renderer"
  248. msgid "<li>OpenGL Renderer: {renderer}</li>"
  249. msgstr "<li>OpenGLレンダラー: {renderer}</li>"
  250. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
  251. msgctxt "@title:groupbox"
  252. msgid "Error traceback"
  253. msgstr "エラー・トレースバック"
  254. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
  255. msgctxt "@title:groupbox"
  256. msgid "Logs"
  257. msgstr "ログ"
  258. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
  259. msgctxt "@action:button"
  260. msgid "Send report"
  261. msgstr "レポート送信"
  262. #: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
  263. msgctxt "@info:title"
  264. msgid "Login failed"
  265. msgstr "ログインに失敗しました"
  266. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  267. msgctxt "@message"
  268. msgid "Could not read response."
  269. msgstr "応答を読み取れません。"
  270. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
  271. msgctxt "@info"
  272. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  273. msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。"
  274. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  275. msgctxt "@info"
  276. msgid "Unable to reach the Ultimaker account server."
  277. msgstr "Ultimaker アカウントサーバーに到達できません。"
  278. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  279. msgctxt "@message"
  280. msgid "The provided state is not correct."
  281. msgstr "指定された状態が正しくありません。"
  282. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  283. msgctxt "@message"
  284. msgid "Please give the required permissions when authorizing this application."
  285. msgstr "このアプリケーションの許可において必要な権限を与えてください。"
  286. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  287. msgctxt "@message"
  288. msgid "Something unexpected happened when trying to log in, please try again."
  289. msgstr "ログイン時に予期しないエラーが発生しました。やり直してください。"
  290. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
  291. msgctxt "@title:window"
  292. msgid "File Already Exists"
  293. msgstr "すでに存在するファイルです"
  294. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
  295. #, python-brace-format
  296. msgctxt "@label Don't translate the XML tag <filename>!"
  297. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  298. msgstr "<filename>{0}</filename> は既に存在します。ファイルを上書きしますか?"
  299. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456 /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
  300. msgctxt "@info:status"
  301. msgid "Invalid file URL:"
  302. msgstr "無効なファイルのURL:"
  303. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  304. msgctxt "@label"
  305. msgid "Nozzle"
  306. msgstr "ノズル"
  307. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
  308. msgctxt "@info:message Followed by a list of settings."
  309. msgid "Settings have been changed to match the current availability of extruders:"
  310. msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:"
  311. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
  312. msgctxt "@info:title"
  313. msgid "Settings updated"
  314. msgstr "設定が更新されました"
  315. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
  316. msgctxt "@info:title"
  317. msgid "Extruder(s) Disabled"
  318. msgstr "エクストルーダーを無効にしました"
  319. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
  320. #, python-brace-format
  321. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  322. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  323. msgstr "<filename>{0}</filename>にプロファイルを書き出すのに失敗しました: <message>{1}</message>"
  324. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
  325. #, python-brace-format
  326. msgctxt "@info:status Don't translate the XML tag <filename>!"
  327. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  328. msgstr "<filename>{0}</filename>にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。"
  329. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
  330. #, python-brace-format
  331. msgctxt "@info:status Don't translate the XML tag <filename>!"
  332. msgid "Exported profile to <filename>{0}</filename>"
  333. msgstr "<filename>{0}</filename>にプロファイルを書き出しました"
  334. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
  335. msgctxt "@info:title"
  336. msgid "Export succeeded"
  337. msgstr "書き出し完了"
  338. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
  339. #, python-brace-format
  340. msgctxt "@info:status Don't translate the XML tags <filename>!"
  341. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  342. msgstr "<filename>{0}</filename>からプロファイルの取り込に失敗しました:{1}"
  343. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
  344. #, python-brace-format
  345. msgctxt "@info:status Don't translate the XML tags <filename>!"
  346. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  347. msgstr "プリンタを追加する前に、<filename>{0}</filename>からプロファイルの取り込はできません。"
  348. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
  349. #, python-brace-format
  350. msgctxt "@info:status Don't translate the XML tags <filename>!"
  351. msgid "No custom profile to import in file <filename>{0}</filename>"
  352. msgstr "ファイル<filename>{0}</filename>にはカスタムプロファイルがインポートされていません"
  353. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
  354. #, python-brace-format
  355. msgctxt "@info:status Don't translate the XML tags <filename>!"
  356. msgid "Failed to import profile from <filename>{0}</filename>:"
  357. msgstr "<filename>{0}</filename>からプロファイルの取り込に失敗しました:"
  358. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
  359. #, python-brace-format
  360. msgctxt "@info:status Don't translate the XML tags <filename>!"
  361. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  362. msgstr "このプロファイル<filename>{0}</filename>には、正しくないデータが含まれているため、インポートできません。"
  363. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
  364. #, python-brace-format
  365. msgctxt "@info:status Don't translate the XML tag <filename>!"
  366. msgid "Failed to import profile from <filename>{0}</filename>:"
  367. msgstr "<filename>{0}</filename>からプロファイルの取り込みに失敗しました:"
  368. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
  369. #, python-brace-format
  370. msgctxt "@info:status"
  371. msgid "Successfully imported profile {0}."
  372. msgstr "プロファイル{0}の取り込みが完了しました。"
  373. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
  374. #, python-brace-format
  375. msgctxt "@info:status"
  376. msgid "File {0} does not contain any valid profile."
  377. msgstr "ファイル{0}には、正しいプロファイルが含まれていません。"
  378. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
  379. #, python-brace-format
  380. msgctxt "@info:status"
  381. msgid "Profile {0} has an unknown file type or is corrupted."
  382. msgstr "プロファイル{0}は不特定なファイルまたは破損があります。"
  383. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
  384. msgctxt "@label"
  385. msgid "Custom profile"
  386. msgstr "カスタムプロファイル"
  387. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
  388. msgctxt "@info:status"
  389. msgid "Profile is missing a quality type."
  390. msgstr "プロファイルはクオリティータイプが不足しています。"
  391. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
  392. msgctxt "@info:status"
  393. msgid "There is no active printer yet."
  394. msgstr "アクティブなプリンターはありません。"
  395. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
  396. msgctxt "@info:status"
  397. msgid "Unable to add the profile."
  398. msgstr "プロファイルを追加できません。"
  399. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
  400. #, python-brace-format
  401. msgctxt "@info:status"
  402. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  403. msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。"
  404. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
  405. #, python-brace-format
  406. msgctxt "@info:status"
  407. 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."
  408. msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。"
  409. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
  410. msgctxt "@info:not supported profile"
  411. msgid "Not supported"
  412. msgstr "サポート対象外"
  413. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
  414. msgctxt "@info:No intent profile selected"
  415. msgid "Default"
  416. msgstr "Default"
  417. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  418. msgctxt "@info:status"
  419. msgid "Finding new location for objects"
  420. msgstr "造形物のために新しい位置を探索中"
  421. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  422. msgctxt "@info:title"
  423. msgid "Finding Location"
  424. msgstr "位置確認"
  425. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
  426. msgctxt "@info:status"
  427. msgid "Unable to find a location within the build volume for all objects"
  428. msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません"
  429. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  430. msgctxt "@info:title"
  431. msgid "Can't Find Location"
  432. msgstr "位置を確保できません"
  433. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
  434. #, python-brace-format
  435. msgctxt "@label"
  436. msgid "Group #{group_nr}"
  437. msgstr "グループ #{group_nr}"
  438. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
  439. msgctxt "@action:button"
  440. msgid "Skip"
  441. msgstr "スキップ"
  442. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60 /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  443. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
  444. msgctxt "@action:button"
  445. msgid "Close"
  446. msgstr "閉める"
  447. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
  448. msgctxt "@action:button"
  449. msgid "Next"
  450. msgstr "次"
  451. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272 /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
  452. msgctxt "@action:button"
  453. msgid "Finish"
  454. msgstr "終わる"
  455. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
  456. msgctxt "@tooltip"
  457. msgid "Outer Wall"
  458. msgstr "アウターウォール"
  459. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
  460. msgctxt "@tooltip"
  461. msgid "Inner Walls"
  462. msgstr "インナーウォール"
  463. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
  464. msgctxt "@tooltip"
  465. msgid "Skin"
  466. msgstr "スキン"
  467. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
  468. msgctxt "@tooltip"
  469. msgid "Infill"
  470. msgstr "インフィル"
  471. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
  472. msgctxt "@tooltip"
  473. msgid "Support Infill"
  474. msgstr "サポートイルフィル"
  475. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
  476. msgctxt "@tooltip"
  477. msgid "Support Interface"
  478. msgstr "サポートインターフェイス"
  479. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
  480. msgctxt "@tooltip"
  481. msgid "Support"
  482. msgstr "サポート"
  483. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
  484. msgctxt "@tooltip"
  485. msgid "Skirt"
  486. msgstr "スカート"
  487. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
  488. msgctxt "@tooltip"
  489. msgid "Prime Tower"
  490. msgstr "プライムタワー"
  491. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
  492. msgctxt "@tooltip"
  493. msgid "Travel"
  494. msgstr "移動"
  495. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
  496. msgctxt "@tooltip"
  497. msgid "Retractions"
  498. msgstr "退却"
  499. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
  500. msgctxt "@tooltip"
  501. msgid "Other"
  502. msgstr "他"
  503. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
  504. msgctxt "@action:button"
  505. msgid "Add"
  506. msgstr "追加"
  507. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  508. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  509. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
  510. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  511. msgctxt "@action:button"
  512. msgid "Cancel"
  513. msgstr "キャンセル"
  514. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
  515. msgctxt "@info:status"
  516. 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."
  517. msgstr "プリントシークエンス設定値により、ガントリーと造形物の衝突を避けるため印刷データの高さを低くしました。"
  518. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
  519. msgctxt "@info:title"
  520. msgid "Build Volume"
  521. msgstr "造形サイズ"
  522. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
  523. msgctxt "@info:backup_failed"
  524. msgid "Could not create archive from user data directory: {}"
  525. msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}"
  526. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  527. msgctxt "@info:title"
  528. msgid "Backup"
  529. msgstr "バックアップ"
  530. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
  531. msgctxt "@info:backup_failed"
  532. msgid "Tried to restore a Cura backup without having proper data or meta data."
  533. msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。"
  534. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
  535. msgctxt "@info:backup_failed"
  536. msgid "Tried to restore a Cura backup that is higher than the current version."
  537. msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。"
  538. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
  539. msgctxt "@info:status"
  540. msgid "Multiplying and placing objects"
  541. msgstr "造形データを増やす、配置する"
  542. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
  543. msgctxt "@info:title"
  544. msgid "Placing Objects"
  545. msgstr "造形データを配置"
  546. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
  547. msgctxt "@info:title"
  548. msgid "Placing Object"
  549. msgstr "造形データを配置"
  550. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  551. msgctxt "@action:button Preceded by 'Ready to'."
  552. msgid "Save to Removable Drive"
  553. msgstr "リムーバブルドライブに保存"
  554. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  555. #, python-brace-format
  556. msgctxt "@item:inlistbox"
  557. msgid "Save to Removable Drive {0}"
  558. msgstr "リムーバブルドライブ{0}に保存"
  559. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  560. msgctxt "@info:status"
  561. msgid "There are no file formats available to write with!"
  562. msgstr "書き出すために利用可能な形式のファイルがありません!"
  563. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  564. #, python-brace-format
  565. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  566. msgid "Saving to Removable Drive <filename>{0}</filename>"
  567. msgstr "リムーバブルドライブ<filename>{0}</filename>に保存中"
  568. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  569. msgctxt "@info:title"
  570. msgid "Saving"
  571. msgstr "保存中"
  572. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  573. #, python-brace-format
  574. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  575. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  576. msgstr "<filename>{0}</filename>を保存できませんでした: <message>{1}</message>"
  577. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  578. #, python-brace-format
  579. msgctxt "@info:status Don't translate the tag {device}!"
  580. msgid "Could not find a file name when trying to write to {device}."
  581. msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。"
  582. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  583. #, python-brace-format
  584. msgctxt "@info:status"
  585. msgid "Could not save to removable drive {0}: {1}"
  586. msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}"
  587. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  588. #, python-brace-format
  589. msgctxt "@info:status"
  590. msgid "Saved to Removable Drive {0} as {1}"
  591. msgstr "リムーバブルドライブ{0}に {1}として保存"
  592. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  593. msgctxt "@info:title"
  594. msgid "File Saved"
  595. msgstr "ファイル保存"
  596. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  597. msgctxt "@action:button"
  598. msgid "Eject"
  599. msgstr "取り出す"
  600. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  601. #, python-brace-format
  602. msgctxt "@action"
  603. msgid "Eject removable device {0}"
  604. msgstr "リムーバブルデバイス{0}を取り出す"
  605. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  606. #, python-brace-format
  607. msgctxt "@info:status"
  608. msgid "Ejected {0}. You can now safely remove the drive."
  609. msgstr "{0}取り出し完了。デバイスを安全に取り外せます。"
  610. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  611. msgctxt "@info:title"
  612. msgid "Safely Remove Hardware"
  613. msgstr "ハードウェアを安全に取り外します"
  614. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  615. #, python-brace-format
  616. msgctxt "@info:status"
  617. msgid "Failed to eject {0}. Another program may be using the drive."
  618. msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。"
  619. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  620. msgctxt "@item:intext"
  621. msgid "Removable Drive"
  622. msgstr "リムーバブルドライブ"
  623. #: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
  624. msgctxt "@item:inlistbox"
  625. msgid "AMF File"
  626. msgstr "AMF ファイル"
  627. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
  628. msgctxt "@item:inlistbox"
  629. msgid "G-code File"
  630. msgstr "G-codeファイル"
  631. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  632. msgctxt "@action"
  633. msgid "Update Firmware"
  634. msgstr "ファームウェアアップデート"
  635. #: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
  636. msgctxt "@item:inlistbox"
  637. msgid "X3D File"
  638. msgstr "X3Dファイル"
  639. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  640. msgctxt "@button"
  641. msgid "Decline"
  642. msgstr "拒否する"
  643. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  644. msgctxt "@button"
  645. msgid "Agree"
  646. msgstr "同意する"
  647. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  648. msgctxt "@title:window"
  649. msgid "Plugin License Agreement"
  650. msgstr "プラグインライセンス同意書"
  651. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  652. msgctxt "@button"
  653. msgid "Decline and remove from account"
  654. msgstr "拒否してアカウントから削除"
  655. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  656. msgctxt "@info:generic"
  657. msgid "{} plugins failed to download"
  658. msgstr "{}プラグインのダウンロードに失敗しました"
  659. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  660. msgctxt "@info:generic"
  661. msgid "Syncing..."
  662. msgstr "同期中..."
  663. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  664. msgctxt "@info:title"
  665. msgid "Changes detected from your Ultimaker account"
  666. msgstr "Ultimakerアカウントから変更が検出されました"
  667. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  668. msgctxt "@info:generic"
  669. msgid "You need to quit and restart {} before changes have effect."
  670. msgstr "変更を有効にするために{}を終了して再始動する必要があります。"
  671. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  672. msgctxt "@info:generic"
  673. msgid "Do you want to sync material and software packages with your account?"
  674. msgstr "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?"
  675. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  676. msgctxt "@action:button"
  677. msgid "Sync"
  678. msgstr "同期"
  679. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  680. msgctxt "@label"
  681. msgid "Per Model Settings"
  682. msgstr "各モデル設定"
  683. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  684. msgctxt "@info:tooltip"
  685. msgid "Configure Per Model Settings"
  686. msgstr "各モデル構成設定"
  687. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  688. msgctxt "@item:inmenu"
  689. msgid "Post Processing"
  690. msgstr "後処理"
  691. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  692. msgctxt "@item:inmenu"
  693. msgid "Modify G-Code"
  694. msgstr "G-codeを修正"
  695. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  696. msgctxt "@info:status"
  697. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  698. msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。"
  699. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  700. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  701. msgctxt "@info:title"
  702. msgid "Unable to slice"
  703. msgstr "スライスできません"
  704. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  705. #, python-brace-format
  706. msgctxt "@info:status"
  707. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  708. msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}"
  709. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
  710. #, python-brace-format
  711. msgctxt "@info:status"
  712. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  713. msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}"
  714. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
  715. msgctxt "@info:status"
  716. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  717. msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。"
  718. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  719. #, python-format
  720. msgctxt "@info:status"
  721. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  722. msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。"
  723. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
  724. msgctxt "@info:status"
  725. msgid ""
  726. "Please review settings and check if your models:\n"
  727. "- Fit within the build volume\n"
  728. "- Are assigned to an enabled extruder\n"
  729. "- Are not all set as modifier meshes"
  730. msgstr ""
  731. "設定を見直し、モデルが次の状態かどうかを確認してください。\n"
  732. "- 造形サイズに合っている\n"
  733. "- 有効なエクストルーダーに割り当てられている\n"
  734. "- すべてが修飾子メッシュとして設定されているわけではない"
  735. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  736. msgctxt "@info:status"
  737. msgid "Processing Layers"
  738. msgstr "レイヤーを処理しています"
  739. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  740. msgctxt "@info:title"
  741. msgid "Information"
  742. msgstr "インフォメーション"
  743. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  744. msgctxt "@item:inmenu"
  745. msgid "USB printing"
  746. msgstr "USBプリンティング"
  747. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  748. msgctxt "@action:button Preceded by 'Ready to'."
  749. msgid "Print via USB"
  750. msgstr "USBを使ってプリントする"
  751. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  752. msgctxt "@info:tooltip"
  753. msgid "Print via USB"
  754. msgstr "USBを使ってプリントする"
  755. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  756. msgctxt "@info:status"
  757. msgid "Connected via USB"
  758. msgstr "USBにて接続する"
  759. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  760. msgctxt "@label"
  761. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  762. msgstr "USBプリントを実行しています。Cura を閉じるとこのプリントも停止します。実行しますか?"
  763. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  764. msgctxt "@message"
  765. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  766. msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSBを介した次の印刷を開始できません。"
  767. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  768. msgctxt "@message"
  769. msgid "Print in Progress"
  770. msgstr "現在印刷中"
  771. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
  772. msgctxt "@item:inlistbox"
  773. msgid "Cura Profile"
  774. msgstr "Curaプロファイル"
  775. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  776. msgctxt "@action"
  777. msgid "Connect via Network"
  778. msgstr "ネットワーク上にて接続"
  779. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  780. msgctxt "info:status"
  781. msgid "New printer detected from your Ultimaker account"
  782. msgid_plural "New printers detected from your Ultimaker account"
  783. msgstr[0] "Ultimakerアカウントから新しいプリンターが検出されました"
  784. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  785. #, python-brace-format
  786. msgctxt "info:status Filled in with printer name and printer model."
  787. msgid "Adding printer {name} ({model}) from your account"
  788. msgstr "アカウントからプリンター{name}({model})を追加しています"
  789. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  790. #, python-brace-format
  791. msgctxt "info:{0} gets replaced by a number of printers"
  792. msgid "... and {0} other"
  793. msgid_plural "... and {0} others"
  794. msgstr[0] "...および{0}その他"
  795. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  796. msgctxt "info:status"
  797. msgid "Printers added from Digital Factory:"
  798. msgstr "Digital Factoryからプリンターが追加されました:"
  799. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  800. msgctxt "info:status"
  801. msgid "A cloud connection is not available for a printer"
  802. msgid_plural "A cloud connection is not available for some printers"
  803. msgstr[0] "一部のプリンターではクラウド接続は利用できません"
  804. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  805. msgctxt "info:status"
  806. msgid "This printer is not linked to the Digital Factory:"
  807. msgid_plural "These printers are not linked to the Digital Factory:"
  808. msgstr[0] "これらのプリンターはDigital Factoryとリンクされていません:"
  809. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  810. msgctxt "info:name"
  811. msgid "Ultimaker Digital Factory"
  812. msgstr "Ultimaker Digital Factory"
  813. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  814. #, python-brace-format
  815. msgctxt "info:status"
  816. msgid "To establish a connection, please visit the {website_link}"
  817. msgstr "接続を確立するには、{website_link}にアクセスしてください"
  818. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  819. msgctxt "@action:button"
  820. msgid "Keep printer configurations"
  821. msgstr "プリンターの構成を維持"
  822. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  823. msgctxt "@action:button"
  824. msgid "Remove printers"
  825. msgstr "プリンターを取り除く"
  826. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  827. #, python-brace-format
  828. msgctxt "@message {printer_name} is replaced with the name of the printer"
  829. msgid "{printer_name} will be removed until the next account sync."
  830. msgstr "次回のアカウントの同期までに{printer_name}は削除されます。"
  831. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  832. #, python-brace-format
  833. msgctxt "@message {printer_name} is replaced with the name of the printer"
  834. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  835. msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください"
  836. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  837. #, python-brace-format
  838. msgctxt "@message {printer_name} is replaced with the name of the printer"
  839. msgid "Are you sure you want to remove {printer_name} temporarily?"
  840. msgstr "{printer_name}を一時的に削除してもよろしいですか?"
  841. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  842. msgctxt "@title:window"
  843. msgid "Remove printers?"
  844. msgstr "プリンターを削除しますか?"
  845. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  846. #, python-brace-format
  847. msgctxt "@label"
  848. msgid ""
  849. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  850. "Are you sure you want to continue?"
  851. msgid_plural ""
  852. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  853. "Are you sure you want to continue?"
  854. msgstr[0] ""
  855. "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n"
  856. "続行してもよろしいですか?"
  857. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  858. msgctxt "@label"
  859. msgid ""
  860. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  861. "Are you sure you want to continue?"
  862. msgstr ""
  863. "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n"
  864. "続行してもよろしいですか?"
  865. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  866. msgctxt "@action:button"
  867. msgid "Print via cloud"
  868. msgstr "クラウドからプリントする"
  869. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  870. msgctxt "@properties:tooltip"
  871. msgid "Print via cloud"
  872. msgstr "クラウドからプリントする"
  873. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  874. msgctxt "@info:status"
  875. msgid "Connected via cloud"
  876. msgstr "クラウド経由で接続"
  877. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  878. #, python-brace-format
  879. msgctxt "@error:send"
  880. msgid "Unknown error code when uploading print job: {0}"
  881. msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}"
  882. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  883. msgctxt "@info:status"
  884. msgid "tomorrow"
  885. msgstr "翌日"
  886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  887. msgctxt "@info:status"
  888. msgid "today"
  889. msgstr "本日"
  890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  891. msgctxt "@info:status"
  892. msgid "Sending Print Job"
  893. msgstr "印刷ジョブ送信中"
  894. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  895. msgctxt "@info:status"
  896. msgid "Uploading print job to printer."
  897. msgstr "プリントジョブをプリンターにアップロードしています。"
  898. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  899. #, python-brace-format
  900. msgctxt "@info:status"
  901. 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."
  902. msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。"
  903. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  904. msgctxt "@info:title"
  905. msgid "Not a group host"
  906. msgstr "グループホストではありません"
  907. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  908. msgctxt "@action"
  909. msgid "Configure group"
  910. msgstr "グループの設定"
  911. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  912. msgctxt "@info:status"
  913. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  914. msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターします。"
  915. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  916. msgctxt "@info:status Ultimaker Cloud should not be translated."
  917. msgid "Connect to Ultimaker Digital Factory"
  918. msgstr "Ultimaker Digital Factoryに接続"
  919. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  920. msgctxt "@action"
  921. msgid "Get started"
  922. msgstr "はじめに"
  923. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  924. msgctxt "@info:status"
  925. msgid "Please wait until the current job has been sent."
  926. msgstr "現在のジョブが送信されるまで待機してください。"
  927. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  928. msgctxt "@info:title"
  929. msgid "Print error"
  930. msgstr "印刷エラー"
  931. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  932. msgctxt "@info:text"
  933. msgid "Could not upload the data to the printer."
  934. msgstr "データをプリンタにアップロードできませんでした。"
  935. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  936. msgctxt "@info:title"
  937. msgid "Network error"
  938. msgstr "ネットワークエラー"
  939. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  940. #, python-brace-format
  941. msgctxt "@info:status"
  942. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  943. msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。"
  944. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  945. msgctxt "@info:title"
  946. msgid "Sending materials to printer"
  947. msgstr "プリンターに材料を送信しています"
  948. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  949. msgctxt "@info:status"
  950. msgid "Print job queue is full. The printer can't accept a new job."
  951. msgstr "プリントジョブのキューがいっぱいです。プリンターは新しいジョブを処理できません。"
  952. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  953. msgctxt "@info:title"
  954. msgid "Queue Full"
  955. msgstr "キューがいっぱい"
  956. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  957. msgctxt "@info:status"
  958. msgid "Print job was successfully sent to the printer."
  959. msgstr "プリントジョブは正常にプリンターに送信されました。"
  960. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  961. msgctxt "@info:title"
  962. msgid "Data Sent"
  963. msgstr "データを送信しました"
  964. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  965. msgctxt "@info:status"
  966. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  967. msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。"
  968. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  969. msgctxt "@info:title"
  970. msgid "Update your printer"
  971. msgstr "プリンターの更新"
  972. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  973. msgctxt "@action:button Preceded by 'Ready to'."
  974. msgid "Print over network"
  975. msgstr "ネットワーク上のプリント"
  976. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  977. msgctxt "@properties:tooltip"
  978. msgid "Print over network"
  979. msgstr "ネットワークのプリント"
  980. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  981. msgctxt "@info:status"
  982. msgid "Connected over the network"
  983. msgstr "ネットワーク上で接続"
  984. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  985. msgctxt "@action"
  986. msgid "Select upgrades"
  987. msgstr "アップグレードを選択する"
  988. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  989. msgctxt "@action"
  990. msgid "Level build plate"
  991. msgstr "ビルドプレートを調整する"
  992. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  993. msgctxt "@title:tab"
  994. msgid "Recommended"
  995. msgstr "推奨"
  996. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  997. msgctxt "@title:tab"
  998. msgid "Custom"
  999. msgstr "カスタム"
  1000. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  1001. #, python-brace-format
  1002. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1003. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1004. msgstr "プロジェクトファイル <filename>{0}</filename> に不明なマシンタイプ <message>{1}</message> があります。マシンをインポートできません。代わりにモデルをインポートします。"
  1005. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  1006. msgctxt "@info:title"
  1007. msgid "Open Project File"
  1008. msgstr "プロジェクトファイルを開く"
  1009. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  1010. #, python-brace-format
  1011. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1012. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1013. msgstr "プロジェクトファイル<filename>{0}</filename>が突然アクセスできなくなりました:<message>{1}</message>。"
  1014. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  1015. msgctxt "@info:title"
  1016. msgid "Can't Open Project File"
  1017. msgstr "プロジェクトファイルを開けません"
  1018. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  1019. #, python-brace-format
  1020. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1021. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1022. msgstr "プロジェクトファイル<filename>{0}</filename>は破損しています:<message>{1}</message>。"
  1023. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  1024. #, python-brace-format
  1025. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1026. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1027. msgstr "プロジェクトファイル<filename>{0}</filename>はこのバージョンのUltimaker Curaでは認識できないプロファイルを使用して作成されています。"
  1028. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
  1029. msgctxt "@item:inlistbox"
  1030. msgid "3MF File"
  1031. msgstr "3MF ファイル"
  1032. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
  1033. msgctxt "@item:inlistbox"
  1034. msgid "Compressed G-code File"
  1035. msgstr "圧縮G-codeファイル"
  1036. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1037. msgctxt "@error:not supported"
  1038. msgid "GCodeGzWriter does not support text mode."
  1039. msgstr "GCodeGzWriter はテキストモードをサポートしていません。"
  1040. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
  1041. msgctxt "@info:title"
  1042. msgid "3D Model Assistant"
  1043. msgstr "3Dモデルアシスタント"
  1044. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
  1045. #, python-brace-format
  1046. msgctxt "@info:status"
  1047. msgid ""
  1048. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1049. "<p>{model_names}</p>\n"
  1050. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1051. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1052. msgstr ""
  1053. "<p>モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:</p>\n"
  1054. "<p>{model_names}</p>\n"
  1055. "<p>可能な限り最高の品質および信頼性を得る方法をご覧ください。</p>\n"
  1056. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">印字品質ガイドを見る</a></p>"
  1057. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1058. msgctxt "@info"
  1059. msgid "Could not access update information."
  1060. msgstr "必要なアップデートの情報にアクセスできません。"
  1061. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1062. #, python-brace-format
  1063. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1064. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  1065. msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。"
  1066. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1067. #, python-format
  1068. msgctxt "@info:title The %s gets replaced with the printer name."
  1069. msgid "New %s firmware available"
  1070. msgstr "新しい利用可能な%sファームウェアのアップデートがあります"
  1071. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1072. msgctxt "@action:button"
  1073. msgid "How to update"
  1074. msgstr "アップデートの仕方"
  1075. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
  1076. msgctxt "@item:inlistbox"
  1077. msgid "G File"
  1078. msgstr "Gファイル"
  1079. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
  1080. msgctxt "@info:status"
  1081. msgid "Parsing G-code"
  1082. msgstr "G-codeを解析"
  1083. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
  1084. msgctxt "@info:title"
  1085. msgid "G-code Details"
  1086. msgstr "G-codeの詳細"
  1087. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
  1088. msgctxt "@info:generic"
  1089. 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."
  1090. msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。"
  1091. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
  1092. msgctxt "@label"
  1093. msgid "Support Blocker"
  1094. msgstr "サポートブロッカー"
  1095. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
  1096. msgctxt "@info:tooltip"
  1097. msgid "Create a volume in which supports are not printed."
  1098. msgstr "サポートが印刷されないボリュームを作成します。"
  1099. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
  1100. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1101. msgid "Open Compressed Triangle Mesh"
  1102. msgstr "圧縮トライアングルメッシュを開く"
  1103. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
  1104. msgctxt "@item:inlistbox"
  1105. msgid "COLLADA Digital Asset Exchange"
  1106. msgstr "COLLADA Digital Asset Exchange"
  1107. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
  1108. msgctxt "@item:inlistbox"
  1109. msgid "glTF Binary"
  1110. msgstr "glTFバイナリ"
  1111. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
  1112. msgctxt "@item:inlistbox"
  1113. msgid "glTF Embedded JSON"
  1114. msgstr "glTF埋め込みJSON"
  1115. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
  1116. msgctxt "@item:inlistbox"
  1117. msgid "Stanford Triangle Format"
  1118. msgstr "Stanford Triangle Format"
  1119. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
  1120. msgctxt "@item:inlistbox"
  1121. msgid "Compressed COLLADA Digital Asset Exchange"
  1122. msgstr "圧縮COLLADA Digital Asset Exchange"
  1123. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22 /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
  1124. msgctxt "@item:inlistbox"
  1125. msgid "Ultimaker Format Package"
  1126. msgstr "Ultimakerフォーマットパッケージ"
  1127. #: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
  1128. msgctxt "@item:inlistbox"
  1129. msgid "Cura 15.04 profiles"
  1130. msgstr "Cura 15.04 プロファイル"
  1131. #: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
  1132. msgctxt "@item:inmenu"
  1133. msgid "Prepare"
  1134. msgstr "準備する"
  1135. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
  1136. msgctxt "@item:inmenu"
  1137. msgid "Monitor"
  1138. msgstr "モニター"
  1139. #: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
  1140. msgctxt "@item:inlistbox"
  1141. msgid "X-Ray view"
  1142. msgstr "透視ビューイング"
  1143. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  1144. msgctxt "@error:zip"
  1145. msgid "Error writing 3mf file."
  1146. msgstr "3Mf ファイルの書き込みエラー。"
  1147. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
  1148. msgctxt "@item:inlistbox"
  1149. msgid "3MF file"
  1150. msgstr "3MFファイル"
  1151. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
  1152. msgctxt "@item:inlistbox"
  1153. msgid "Cura Project 3MF file"
  1154. msgstr "Curaが3MF fileを算出します"
  1155. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1156. msgctxt "@error:zip"
  1157. msgid "3MF Writer plug-in is corrupt."
  1158. msgstr "3MFリーダーのプラグインが破損しています。"
  1159. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  1160. msgctxt "@error:zip"
  1161. msgid "No permission to write the workspace here."
  1162. msgstr "この作業スペースに書き込む権限がありません。"
  1163. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  1164. msgctxt "@error:zip"
  1165. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1166. msgstr "使用しているオペレーティングシステムでは、この場所またはこのファイル名でプロジェクトファイルを保存することはできません。"
  1167. #: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
  1168. msgctxt "@item:inmenu"
  1169. msgid "Preview"
  1170. msgstr "プレビュー"
  1171. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
  1172. msgctxt "@item:inlistbox"
  1173. msgid "Layer view"
  1174. msgstr "レイヤービュー"
  1175. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
  1176. msgctxt "@info:status"
  1177. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1178. msgstr "Curaはワイヤープリンティングが有効な場合は正確にレイヤーを表示しません。"
  1179. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
  1180. msgctxt "@info:title"
  1181. msgid "Simulation View"
  1182. msgstr "シミュレーションビュー"
  1183. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1184. msgctxt "@info:status"
  1185. msgid "Nothing is shown because you need to slice first."
  1186. msgstr "最初にスライスする必要があるため、何も表示されません。"
  1187. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1188. msgctxt "@info:title"
  1189. msgid "No layers to show"
  1190. msgstr "表示するレイヤーがありません"
  1191. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127 /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
  1192. msgctxt "@info:option_text"
  1193. msgid "Do not show this message again"
  1194. msgstr "今後このメッセージを表示しない"
  1195. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1196. msgctxt "@action"
  1197. msgid "Machine Settings"
  1198. msgstr "プリンターの設定"
  1199. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
  1200. msgctxt "@item:inmenu"
  1201. msgid "Solid view"
  1202. msgstr "ソリッドビュー"
  1203. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
  1204. msgctxt "@info:status"
  1205. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1206. msgstr "ハイライトされたエリアは、欠けている表面または無関係な表面を示します。モデルを修正してもう一度Curaを開いてください。"
  1207. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
  1208. msgctxt "@info:title"
  1209. msgid "Model Errors"
  1210. msgstr "モデルエラー"
  1211. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
  1212. msgctxt "@action:button"
  1213. msgid "Learn more"
  1214. msgstr "詳しく見る"
  1215. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
  1216. msgctxt "@info:error"
  1217. msgid "Can't write to UFP file:"
  1218. msgstr "UFPファイルに書き込めません:"
  1219. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1220. msgctxt "@error:not supported"
  1221. msgid "GCodeWriter does not support non-text mode."
  1222. msgstr "GCodeWriter は非テキストモードはサポートしていません。"
  1223. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1224. msgctxt "@warning:status"
  1225. msgid "Please prepare G-code before exporting."
  1226. msgstr "エクスポートする前にG-codeの準備をしてください。"
  1227. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
  1228. msgctxt "@item:inlistbox"
  1229. msgid "JPG Image"
  1230. msgstr "JPG画像"
  1231. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
  1232. msgctxt "@item:inlistbox"
  1233. msgid "JPEG Image"
  1234. msgstr "JPEG画像"
  1235. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
  1236. msgctxt "@item:inlistbox"
  1237. msgid "PNG Image"
  1238. msgstr "PNG画像"
  1239. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
  1240. msgctxt "@item:inlistbox"
  1241. msgid "BMP Image"
  1242. msgstr "BMP画像"
  1243. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
  1244. msgctxt "@item:inlistbox"
  1245. msgid "GIF Image"
  1246. msgstr "GIF画像"
  1247. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  1248. msgctxt "@info:backup_status"
  1249. msgid "There was an error trying to restore your backup."
  1250. msgstr "バックアップのリストア中にエラーが発生しました。"
  1251. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1252. msgctxt "@info:title"
  1253. msgid "Backups"
  1254. msgstr "バックアップ"
  1255. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  1256. msgctxt "@info:backup_status"
  1257. msgid "There was an error while uploading your backup."
  1258. msgstr "バックアップのアップロード中にエラーが発生しました。"
  1259. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  1260. msgctxt "@info:backup_status"
  1261. msgid "Creating your backup..."
  1262. msgstr "バックアップを作成しています..."
  1263. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  1264. msgctxt "@info:backup_status"
  1265. msgid "There was an error while creating your backup."
  1266. msgstr "バックアップの作成中にエラーが発生しました。"
  1267. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  1268. msgctxt "@info:backup_status"
  1269. msgid "Uploading your backup..."
  1270. msgstr "バックアップをアップロードしています..."
  1271. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  1272. msgctxt "@info:backup_status"
  1273. msgid "Your backup has finished uploading."
  1274. msgstr "バックアップのアップロードを完了しました。"
  1275. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  1276. msgctxt "@error:file_size"
  1277. msgid "The backup exceeds the maximum file size."
  1278. msgstr "バックアップが最大ファイルサイズを超えています。"
  1279. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  1280. msgctxt "@item:inmenu"
  1281. msgid "Manage backups"
  1282. msgstr "バックアップを管理する"
  1283. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1284. msgctxt "@title"
  1285. msgid "Update Firmware"
  1286. msgstr "ファームウェアアップデート"
  1287. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1288. msgctxt "@label"
  1289. 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."
  1290. msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。"
  1291. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1292. msgctxt "@label"
  1293. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1294. msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。"
  1295. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1296. msgctxt "@action:button"
  1297. msgid "Automatically upgrade Firmware"
  1298. msgstr "自動でファームウェアをアップグレード"
  1299. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1300. msgctxt "@action:button"
  1301. msgid "Upload custom Firmware"
  1302. msgstr "カスタムファームウェアをアップロードする"
  1303. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1304. msgctxt "@label"
  1305. msgid "Firmware can not be updated because there is no connection with the printer."
  1306. msgstr "プリンターと接続されていないため、ファームウェアをアップデートできません。"
  1307. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1308. msgctxt "@label"
  1309. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1310. msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。"
  1311. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1312. msgctxt "@title:window"
  1313. msgid "Select custom firmware"
  1314. msgstr "カスタムファームウェアを選択する"
  1315. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1316. msgctxt "@title:window"
  1317. msgid "Firmware Update"
  1318. msgstr "ファームウェアアップデート"
  1319. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1320. msgctxt "@label"
  1321. msgid "Updating firmware."
  1322. msgstr "ファームウェアアップデート中。"
  1323. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1324. msgctxt "@label"
  1325. msgid "Firmware update completed."
  1326. msgstr "ファームウェアアップデート完了。"
  1327. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1328. msgctxt "@label"
  1329. msgid "Firmware update failed due to an unknown error."
  1330. msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。"
  1331. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1332. msgctxt "@label"
  1333. msgid "Firmware update failed due to an communication error."
  1334. msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。"
  1335. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1336. msgctxt "@label"
  1337. msgid "Firmware update failed due to an input/output error."
  1338. msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。"
  1339. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1340. msgctxt "@label"
  1341. msgid "Firmware update failed due to missing firmware."
  1342. msgstr "ファームウェアが見つからず、ファームウェアアップデート失敗しました。"
  1343. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1344. msgctxt "@title"
  1345. msgid "Marketplace"
  1346. msgstr "マーケットプレース"
  1347. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  1348. msgctxt "@label"
  1349. msgid "You need to accept the license to install the package"
  1350. msgstr "パッケージをインストールするにはライセンスに同意する必要があります"
  1351. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1352. msgctxt "@title"
  1353. msgid "Changes from your account"
  1354. msgstr "アカウントにおける変更"
  1355. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1356. msgctxt "@button"
  1357. msgid "Dismiss"
  1358. msgstr "無視"
  1359. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
  1360. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1361. msgctxt "@button"
  1362. msgid "Next"
  1363. msgstr "次"
  1364. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1365. msgctxt "@label"
  1366. msgid "The following packages will be added:"
  1367. msgstr "次のパッケージが追加されます:"
  1368. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1369. msgctxt "@label"
  1370. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1371. msgstr "次のパッケージは、Curaバージョンに互換性がないため、インストールできません:"
  1372. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1373. msgctxt "@title:window"
  1374. msgid "Confirm uninstall"
  1375. msgstr "アンインストール確認"
  1376. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1377. msgctxt "@text:window"
  1378. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1379. msgstr "使用中の材料またはプロファイルをアンインストールしようとしています。確定すると以下の材料/プロファイルをデフォルトにリセットします。"
  1380. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  1381. msgctxt "@text:window"
  1382. msgid "Materials"
  1383. msgstr "材料"
  1384. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  1385. msgctxt "@text:window"
  1386. msgid "Profiles"
  1387. msgstr "プロファイル"
  1388. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  1389. msgctxt "@action:button"
  1390. msgid "Confirm"
  1391. msgstr "確認"
  1392. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  1393. msgctxt "@info"
  1394. msgid "Could not connect to the Cura Package database. Please check your connection."
  1395. msgstr "Curaパッケージデータベースに接続できません。接続を確認してください。"
  1396. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1397. msgctxt "@label"
  1398. msgid "Community Contributions"
  1399. msgstr "地域貢献"
  1400. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1401. msgctxt "@label"
  1402. msgid "Community Plugins"
  1403. msgstr "コミュニティプラグイン"
  1404. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  1405. msgctxt "@label"
  1406. msgid "Generic Materials"
  1407. msgstr "汎用材料"
  1408. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  1409. msgctxt "@label"
  1410. msgid "Version"
  1411. msgstr "バージョン"
  1412. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  1413. msgctxt "@label"
  1414. msgid "Last updated"
  1415. msgstr "最終更新日"
  1416. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1417. msgctxt "@label"
  1418. msgid "Brand"
  1419. msgstr "ブランド"
  1420. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  1421. msgctxt "@label"
  1422. msgid "Downloads"
  1423. msgstr "ダウンロード"
  1424. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  1425. msgctxt "@title:tab"
  1426. msgid "Installed plugins"
  1427. msgstr "インストールされたプラグイン"
  1428. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  1429. msgctxt "@info"
  1430. msgid "No plugin has been installed."
  1431. msgstr "プラグインはインストールされていません。"
  1432. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  1433. msgctxt "@title:tab"
  1434. msgid "Installed materials"
  1435. msgstr "インストールされた材料"
  1436. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  1437. msgctxt "@info"
  1438. msgid "No material has been installed."
  1439. msgstr "材料はインストールされていません。"
  1440. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  1441. msgctxt "@title:tab"
  1442. msgid "Bundled plugins"
  1443. msgstr "バンドルされたプラグイン"
  1444. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  1445. msgctxt "@title:tab"
  1446. msgid "Bundled materials"
  1447. msgstr "バンドルされた材料"
  1448. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  1449. msgctxt "@label"
  1450. msgid "Website"
  1451. msgstr "ウェブサイト"
  1452. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  1453. msgctxt "@label"
  1454. msgid "Email"
  1455. msgstr "電子メール"
  1456. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  1457. msgctxt "@description"
  1458. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  1459. msgstr "検証済みのUltimaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。"
  1460. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1461. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
  1462. msgctxt "@button"
  1463. msgid "Sign in"
  1464. msgstr "サインイン"
  1465. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  1466. msgctxt "@info"
  1467. msgid "Fetching packages..."
  1468. msgstr "パッケージ取得中..."
  1469. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1470. msgctxt "@label"
  1471. msgid "Compatibility"
  1472. msgstr "互換性"
  1473. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1474. msgctxt "@label:table_header"
  1475. msgid "Machine"
  1476. msgstr "プリンター"
  1477. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1478. msgctxt "@label:table_header"
  1479. msgid "Build Plate"
  1480. msgstr "ビルドプレート"
  1481. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1482. msgctxt "@label:table_header"
  1483. msgid "Support"
  1484. msgstr "サポート"
  1485. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1486. msgctxt "@label:table_header"
  1487. msgid "Quality"
  1488. msgstr "品質"
  1489. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1490. msgctxt "@action:label"
  1491. msgid "Technical Data Sheet"
  1492. msgstr "技術データシート"
  1493. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1494. msgctxt "@action:label"
  1495. msgid "Safety Data Sheet"
  1496. msgstr "安全データシート"
  1497. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1498. msgctxt "@action:label"
  1499. msgid "Printing Guidelines"
  1500. msgstr "印刷ガイドライン"
  1501. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1502. msgctxt "@action:label"
  1503. msgid "Website"
  1504. msgstr "ウェブサイト"
  1505. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1506. msgctxt "@title:tab"
  1507. msgid "Plugins"
  1508. msgstr "プラグイン"
  1509. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
  1510. msgctxt "@title:tab"
  1511. msgid "Materials"
  1512. msgstr "マテリアル"
  1513. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1514. msgctxt "@title:tab"
  1515. msgid "Installed"
  1516. msgstr "インストールした"
  1517. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1518. msgctxt "@info:tooltip"
  1519. msgid "Go to Web Marketplace"
  1520. msgstr "ウェブマーケットプレイスに移動"
  1521. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1522. msgctxt "@label"
  1523. msgid "Will install upon restarting"
  1524. msgstr "再起動時にインストール"
  1525. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1526. msgctxt "@action:button"
  1527. msgid "Update"
  1528. msgstr "アップデート"
  1529. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1530. msgctxt "@action:button"
  1531. msgid "Updating"
  1532. msgstr "更新中"
  1533. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1534. msgctxt "@action:button"
  1535. msgid "Updated"
  1536. msgstr "更新済み"
  1537. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1538. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1539. msgid "<a href='%1'>Log in</a> is required to update"
  1540. msgstr "アップデートには<a href='%1'>ログイン</a>が必要です"
  1541. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1542. msgctxt "@action:button"
  1543. msgid "Downgrade"
  1544. msgstr "ダウングレード"
  1545. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1546. msgctxt "@action:button"
  1547. msgid "Uninstall"
  1548. msgstr "アンインストール"
  1549. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1550. msgctxt "@action:button"
  1551. msgid "Installed"
  1552. msgstr "インストールした"
  1553. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1554. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1555. msgid "<a href='%1'>Log in</a> is required to install or update"
  1556. msgstr "インストールまたはアップデートには<a href='%1'>ログイン</a>が必要です"
  1557. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1558. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1559. msgid "<a href='%1'>Buy material spools</a>"
  1560. msgstr "<a href='%1'>材料スプールの購入</a>"
  1561. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1562. msgctxt "@label"
  1563. msgid "Premium"
  1564. msgstr "プレミアム"
  1565. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1566. msgctxt "@label"
  1567. msgid "Search materials"
  1568. msgstr "材料を検索"
  1569. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1570. msgctxt "@info"
  1571. msgid "You will need to restart Cura before changes in packages have effect."
  1572. msgstr "パッケージへの変更を有効にするためにCuraを再起動する必要があります。"
  1573. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1574. msgctxt "@info:button, %1 is the application name"
  1575. msgid "Quit %1"
  1576. msgstr "%1を終了する"
  1577. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1578. msgctxt "@action:button"
  1579. msgid "Back"
  1580. msgstr "戻る"
  1581. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1582. msgctxt "@action:button"
  1583. msgid "Install"
  1584. msgstr "インストール"
  1585. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1586. msgctxt "@label"
  1587. msgid "Mesh Type"
  1588. msgstr "メッシュタイプ"
  1589. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1590. msgctxt "@label"
  1591. msgid "Normal model"
  1592. msgstr "標準モデル"
  1593. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1594. msgctxt "@label"
  1595. msgid "Print as support"
  1596. msgstr "サポートとしてプリント"
  1597. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1598. msgctxt "@label"
  1599. msgid "Modify settings for overlaps"
  1600. msgstr "オーバーラップの設定を変更"
  1601. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1602. msgctxt "@label"
  1603. msgid "Don't support overlaps"
  1604. msgstr "オーバーラップをサポートしない"
  1605. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1606. msgctxt "@item:inlistbox"
  1607. msgid "Infill mesh only"
  1608. msgstr "インフィルメッシュのみ"
  1609. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1610. msgctxt "@item:inlistbox"
  1611. msgid "Cutting mesh"
  1612. msgstr "メッシュ切断"
  1613. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1614. msgctxt "@action:button"
  1615. msgid "Select settings"
  1616. msgstr "設定を選択する"
  1617. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1618. msgctxt "@title:window"
  1619. msgid "Select Settings to Customize for this model"
  1620. msgstr "このモデルをカスタマイズする設定を選択する"
  1621. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1622. msgctxt "@label:textbox"
  1623. msgid "Filter..."
  1624. msgstr "フィルター..."
  1625. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1626. msgctxt "@label:checkbox"
  1627. msgid "Show all"
  1628. msgstr "すべて表示する"
  1629. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1630. msgctxt "@title:window"
  1631. msgid "Post Processing Plugin"
  1632. msgstr "プラグイン処理後"
  1633. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1634. msgctxt "@label"
  1635. msgid "Post Processing Scripts"
  1636. msgstr "スクリプトの処理後"
  1637. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1638. msgctxt "@action"
  1639. msgid "Add a script"
  1640. msgstr "スクリプトを加える"
  1641. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1642. msgctxt "@label"
  1643. msgid "Settings"
  1644. msgstr "設定"
  1645. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1646. msgctxt "@info:tooltip"
  1647. msgid "Change active post-processing scripts."
  1648. msgstr "処理したアクティブなスクリプトを変更します。"
  1649. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1650. msgctxt "@info:tooltip"
  1651. msgid "The following script is active:"
  1652. msgid_plural "The following scripts are active:"
  1653. msgstr[0] "次のスクリプトがアクティブです:"
  1654. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1655. msgctxt "@label"
  1656. msgid "Queued"
  1657. msgstr "順番を待つ"
  1658. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  1659. msgctxt "@label link to connect manager"
  1660. msgid "Manage in browser"
  1661. msgstr "ブラウザで管理する"
  1662. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1663. msgctxt "@label"
  1664. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1665. msgstr "キューに印刷ジョブがありません。追加するには、スライスしてジョブを送信します。"
  1666. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  1667. msgctxt "@label"
  1668. msgid "Print jobs"
  1669. msgstr "プリントジョブ"
  1670. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  1671. msgctxt "@label"
  1672. msgid "Total print time"
  1673. msgstr "合計印刷時間"
  1674. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  1675. msgctxt "@label"
  1676. msgid "Waiting for"
  1677. msgstr "待ち時間"
  1678. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1679. msgctxt "@title:window"
  1680. msgid "Configuration Changes"
  1681. msgstr "構成の変更"
  1682. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1683. msgctxt "@action:button"
  1684. msgid "Override"
  1685. msgstr "上書き"
  1686. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1687. msgctxt "@label"
  1688. msgid "The assigned printer, %1, requires the following configuration change:"
  1689. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1690. msgstr[0] "割り当てられたプリンター %1 には以下の構成変更が必要です:"
  1691. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1692. msgctxt "@label"
  1693. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1694. msgstr "プリンター %1 が割り当てられましたが、ジョブには不明な材料構成があります。"
  1695. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1696. msgctxt "@label"
  1697. msgid "Change material %1 from %2 to %3."
  1698. msgstr "材料 %1 を %2 から %3 に変更します。"
  1699. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1700. msgctxt "@label"
  1701. msgid "Load %3 as material %1 (This cannot be overridden)."
  1702. msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。"
  1703. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1704. msgctxt "@label"
  1705. msgid "Change print core %1 from %2 to %3."
  1706. msgstr "プリントコア %1 を %2 から %3 に変更します。"
  1707. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1708. msgctxt "@label"
  1709. msgid "Change build plate to %1 (This cannot be overridden)."
  1710. msgstr "ビルドプレートを %1 に変更します(これは上書きできません)。"
  1711. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1712. msgctxt "@label"
  1713. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1714. msgstr "上書きは、既存のプリンタ構成で指定された設定を使用します。これにより、印刷が失敗する場合があります。"
  1715. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  1716. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  1717. msgctxt "@label"
  1718. msgid "Glass"
  1719. msgstr "ガラス"
  1720. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1721. msgctxt "@label"
  1722. msgid "Aluminum"
  1723. msgstr "アルミニウム"
  1724. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  1725. msgctxt "@label"
  1726. msgid "Unavailable printer"
  1727. msgstr "利用できないプリンター"
  1728. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  1729. msgctxt "@label"
  1730. msgid "First available"
  1731. msgstr "次の空き"
  1732. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  1733. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  1734. msgctxt "@info"
  1735. msgid "Please update your printer's firmware to manage the queue remotely."
  1736. msgstr "キューをリモートで管理するには、プリンターのファームウェアを更新してください。"
  1737. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1738. msgctxt "@title:window"
  1739. msgid "Connect to Networked Printer"
  1740. msgstr "ネットワーク上で繋がったプリンターに接続"
  1741. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1742. msgctxt "@label"
  1743. 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."
  1744. msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。"
  1745. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1746. msgctxt "@label"
  1747. msgid "Select your printer from the list below:"
  1748. msgstr "以下のリストからプリンタを選択します:"
  1749. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1750. msgctxt "@action:button"
  1751. msgid "Edit"
  1752. msgstr "編集"
  1753. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1754. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1755. msgctxt "@action:button"
  1756. msgid "Remove"
  1757. msgstr "取り除く"
  1758. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1759. msgctxt "@action:button"
  1760. msgid "Refresh"
  1761. msgstr "更新"
  1762. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1763. msgctxt "@label"
  1764. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1765. msgstr "お持ちのプリンターがリストにない場合、<a href='%1'>ネットワーク・プリンティング・トラブルシューティング・ガイド</a>を読んでください"
  1766. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1767. msgctxt "@label"
  1768. msgid "Type"
  1769. msgstr "タイプ"
  1770. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1771. msgctxt "@label"
  1772. msgid "Firmware version"
  1773. msgstr "ファームウェアバージョン"
  1774. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1775. msgctxt "@label"
  1776. msgid "Address"
  1777. msgstr "アドレス"
  1778. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1779. msgctxt "@label"
  1780. msgid "This printer is not set up to host a group of printers."
  1781. msgstr "このプリンターは、プリンターのグループをホストするために設定されていません。"
  1782. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1783. msgctxt "@label"
  1784. msgid "This printer is the host for a group of %1 printers."
  1785. msgstr "このプリンターは %1 プリンターのループのホストプリンターです。"
  1786. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1787. msgctxt "@label"
  1788. msgid "The printer at this address has not yet responded."
  1789. msgstr "このアドレスのプリンターは応答していません。"
  1790. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1791. msgctxt "@action:button"
  1792. msgid "Connect"
  1793. msgstr "接続"
  1794. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1795. msgctxt "@title:window"
  1796. msgid "Invalid IP address"
  1797. msgstr "無効なIPアドレス"
  1798. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1799. msgctxt "@text"
  1800. msgid "Please enter a valid IP address."
  1801. msgstr "有効なIPアドレスを入力してください。"
  1802. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1803. msgctxt "@title:window"
  1804. msgid "Printer Address"
  1805. msgstr "プリンターアドレス"
  1806. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1807. msgctxt "@label"
  1808. msgid "Enter the IP address of your printer on the network."
  1809. msgstr "ネットワーク内のプリンターのIPアドレスを入力してください。"
  1810. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
  1811. msgctxt "@action:button"
  1812. msgid "OK"
  1813. msgstr "OK"
  1814. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1815. msgctxt "@title:window"
  1816. msgid "Print over network"
  1817. msgstr "ネットワーク上のプリント"
  1818. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1819. msgctxt "@action:button"
  1820. msgid "Print"
  1821. msgstr "プリント"
  1822. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1823. msgctxt "@label"
  1824. msgid "Printer selection"
  1825. msgstr "プリンターの選択"
  1826. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1827. msgctxt "@label"
  1828. msgid "Move to top"
  1829. msgstr "最上位に移動"
  1830. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1831. msgctxt "@label"
  1832. msgid "Delete"
  1833. msgstr "削除"
  1834. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
  1835. msgctxt "@label"
  1836. msgid "Resume"
  1837. msgstr "再開"
  1838. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1839. msgctxt "@label"
  1840. msgid "Pausing..."
  1841. msgstr "一時停止しています..."
  1842. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1843. msgctxt "@label"
  1844. msgid "Resuming..."
  1845. msgstr "再開しています..."
  1846. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
  1847. msgctxt "@label"
  1848. msgid "Pause"
  1849. msgstr "一時停止"
  1850. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1851. msgctxt "@label"
  1852. msgid "Aborting..."
  1853. msgstr "中止しています..."
  1854. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1855. msgctxt "@label"
  1856. msgid "Abort"
  1857. msgstr "中止"
  1858. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1859. msgctxt "@label %1 is the name of a print job."
  1860. msgid "Are you sure you want to move %1 to the top of the queue?"
  1861. msgstr "%1 をキューの最上位に移動しますか?"
  1862. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1863. msgctxt "@window:title"
  1864. msgid "Move print job to top"
  1865. msgstr "印刷ジョブを最上位に移動する"
  1866. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1867. msgctxt "@label %1 is the name of a print job."
  1868. msgid "Are you sure you want to delete %1?"
  1869. msgstr "%1 を削除しますか?"
  1870. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1871. msgctxt "@window:title"
  1872. msgid "Delete print job"
  1873. msgstr "印刷ジョブの削除"
  1874. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1875. msgctxt "@label %1 is the name of a print job."
  1876. msgid "Are you sure you want to abort %1?"
  1877. msgstr "%1 を中止してよろしいですか?"
  1878. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
  1879. msgctxt "@window:title"
  1880. msgid "Abort print"
  1881. msgstr "プリント中止"
  1882. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1883. msgctxt "@label:status"
  1884. msgid "Aborted"
  1885. msgstr "中止しました"
  1886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1887. msgctxt "@label:status"
  1888. msgid "Finished"
  1889. msgstr "終了"
  1890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1891. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  1892. msgctxt "@label:status"
  1893. msgid "Preparing..."
  1894. msgstr "準備中..."
  1895. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1896. msgctxt "@label:status"
  1897. msgid "Aborting..."
  1898. msgstr "中止しています..."
  1899. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1900. msgctxt "@label:status"
  1901. msgid "Pausing..."
  1902. msgstr "一時停止しています..."
  1903. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1904. msgctxt "@label:status"
  1905. msgid "Paused"
  1906. msgstr "一時停止"
  1907. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1908. msgctxt "@label:status"
  1909. msgid "Resuming..."
  1910. msgstr "再開しています..."
  1911. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1912. msgctxt "@label:status"
  1913. msgid "Action required"
  1914. msgstr "アクションが必要です"
  1915. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1916. msgctxt "@label:status"
  1917. msgid "Finishes %1 at %2"
  1918. msgstr "%1 を %2 に終了します"
  1919. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  1920. msgctxt "@label link to Connect and Cloud interfaces"
  1921. msgid "Manage printer"
  1922. msgstr "プリンター管理"
  1923. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  1924. msgctxt "@label:status"
  1925. msgid "Loading..."
  1926. msgstr "読み込み中..."
  1927. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  1928. msgctxt "@label:status"
  1929. msgid "Unavailable"
  1930. msgstr "利用不可"
  1931. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1932. msgctxt "@label:status"
  1933. msgid "Unreachable"
  1934. msgstr "到達不能"
  1935. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  1936. msgctxt "@label:status"
  1937. msgid "Idle"
  1938. msgstr "アイドル"
  1939. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  1940. msgctxt "@label:status"
  1941. msgid "Printing"
  1942. msgstr "プリント中"
  1943. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  1944. msgctxt "@label"
  1945. msgid "Untitled"
  1946. msgstr "無題"
  1947. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  1948. msgctxt "@label"
  1949. msgid "Anonymous"
  1950. msgstr "匿名"
  1951. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  1952. msgctxt "@label:status"
  1953. msgid "Requires configuration changes"
  1954. msgstr "構成の変更が必要です"
  1955. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  1956. msgctxt "@action:button"
  1957. msgid "Details"
  1958. msgstr "詳細"
  1959. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  1960. msgctxt "@label"
  1961. msgid "Please select any upgrades made to this Ultimaker Original"
  1962. msgstr "このUltimaker Originalに施されたアップグレートを選択する"
  1963. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  1964. msgctxt "@label"
  1965. msgid "Heated Build Plate (official kit or self-built)"
  1966. msgstr "ヒーティッドビルドプレート(オフィシャルキットまたはセルフビルド)"
  1967. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  1968. msgctxt "@title"
  1969. msgid "Build Plate Leveling"
  1970. msgstr "ビルドプレートのレベリング"
  1971. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  1972. msgctxt "@label"
  1973. 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."
  1974. msgstr "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。"
  1975. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  1976. msgctxt "@label"
  1977. 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."
  1978. msgstr "すべてのポジションに。"
  1979. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  1980. msgctxt "@action:button"
  1981. msgid "Start Build Plate Leveling"
  1982. msgstr "ビルドプレートのレベリングを開始する"
  1983. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  1984. msgctxt "@action:button"
  1985. msgid "Move to Next Position"
  1986. msgstr "次のポジションに移動"
  1987. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1988. msgctxt "@title:window"
  1989. msgid "Open Project"
  1990. msgstr "プロジェクトを開く"
  1991. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1992. msgctxt "@action:ComboBox Update/override existing profile"
  1993. msgid "Update existing"
  1994. msgstr "既存を更新する"
  1995. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1996. msgctxt "@action:ComboBox Save settings in a new profile"
  1997. msgid "Create new"
  1998. msgstr "新しいものを作成する"
  1999. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  2000. msgctxt "@action:title"
  2001. msgid "Summary - Cura Project"
  2002. msgstr "サマリーCuraプロジェクト"
  2003. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  2004. msgctxt "@action:label"
  2005. msgid "Printer settings"
  2006. msgstr "プリンターの設定"
  2007. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  2008. msgctxt "@info:tooltip"
  2009. msgid "How should the conflict in the machine be resolved?"
  2010. msgstr "このプリンターの問題をどのように解決すればいいか?"
  2011. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  2012. msgctxt "@action:label"
  2013. msgid "Type"
  2014. msgstr "タイプ"
  2015. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2016. msgctxt "@action:label"
  2017. msgid "Printer Group"
  2018. msgstr "プリンターグループ"
  2019. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  2020. msgctxt "@action:label"
  2021. msgid "Profile settings"
  2022. msgstr "プロファイル設定"
  2023. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  2024. msgctxt "@info:tooltip"
  2025. msgid "How should the conflict in the profile be resolved?"
  2026. msgstr "このプロファイルの問題をどのように解決すればいいか?"
  2027. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  2029. msgctxt "@action:label"
  2030. msgid "Name"
  2031. msgstr "ネーム"
  2032. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  2033. msgctxt "@action:label"
  2034. msgid "Intent"
  2035. msgstr "Intent"
  2036. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2037. msgctxt "@action:label"
  2038. msgid "Not in profile"
  2039. msgstr "プロファイル内にない"
  2040. # Can’t edit the Japanese text
  2041. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  2042. msgctxt "@action:label"
  2043. msgid "%1 override"
  2044. msgid_plural "%1 overrides"
  2045. msgstr[0] "%1個の設定を上書き"
  2046. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  2047. msgctxt "@action:label"
  2048. msgid "Derivative from"
  2049. msgstr "次から引き出す"
  2050. # can’t inset the japanese text
  2051. # %1: print quality profile name
  2052. # %2: number of overridden ssettings
  2053. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  2054. msgctxt "@action:label"
  2055. msgid "%1, %2 override"
  2056. msgid_plural "%1, %2 overrides"
  2057. msgstr[0] "%2の%1個の設定を上書き"
  2058. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2059. msgctxt "@action:label"
  2060. msgid "Material settings"
  2061. msgstr "フィラメント設定"
  2062. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  2063. msgctxt "@info:tooltip"
  2064. msgid "How should the conflict in the material be resolved?"
  2065. msgstr "このフィラメントの問題をどのように解決すればいいか?"
  2066. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  2067. msgctxt "@action:label"
  2068. msgid "Setting visibility"
  2069. msgstr "視野設定"
  2070. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  2071. msgctxt "@action:label"
  2072. msgid "Mode"
  2073. msgstr "モード"
  2074. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2075. msgctxt "@action:label"
  2076. msgid "Visible settings:"
  2077. msgstr "ビジブル設定:"
  2078. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  2079. msgctxt "@action:label"
  2080. msgid "%1 out of %2"
  2081. msgstr "%2のうち%1"
  2082. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  2083. msgctxt "@action:warning"
  2084. msgid "Loading a project will clear all models on the build plate."
  2085. msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。"
  2086. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  2087. msgctxt "@action:button"
  2088. msgid "Open"
  2089. msgstr "開く"
  2090. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2091. msgctxt "@info:tooltip"
  2092. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2093. msgstr "このプリントの何かが問題です。クリックして調整のヒントをご覧ください。"
  2094. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2095. msgctxt "@info"
  2096. msgid ""
  2097. "Please make sure your printer has a connection:\n"
  2098. "- Check if the printer is turned on.\n"
  2099. "- Check if the printer is connected to the network.\n"
  2100. "- Check if you are signed in to discover cloud-connected printers."
  2101. msgstr ""
  2102. "プリンタが接続されているか確認し、以下を行います。\n"
  2103. "- プリンタの電源が入っているか確認します。\n"
  2104. "- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。"
  2105. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2106. msgctxt "@info"
  2107. msgid "Please connect your printer to the network."
  2108. msgstr "プリンターをネットワークに接続してください。"
  2109. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2110. msgctxt "@label link to technical assistance"
  2111. msgid "View user manuals online"
  2112. msgstr "ユーザーマニュアルをオンラインで見る"
  2113. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2114. msgctxt "@title:window"
  2115. msgid "More information on anonymous data collection"
  2116. msgstr "匿名データの収集に関する詳細"
  2117. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2118. msgctxt "@text:window"
  2119. 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:"
  2120. msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:"
  2121. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2122. msgctxt "@text:window"
  2123. msgid "I don't want to send anonymous data"
  2124. msgstr "匿名データは送信しない"
  2125. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2126. msgctxt "@text:window"
  2127. msgid "Allow sending anonymous data"
  2128. msgstr "匿名データの送信を許可する"
  2129. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2130. msgctxt "@label"
  2131. msgid "Color scheme"
  2132. msgstr "カラースキーム"
  2133. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2134. msgctxt "@label:listbox"
  2135. msgid "Material Color"
  2136. msgstr "フィラメントの色"
  2137. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2138. msgctxt "@label:listbox"
  2139. msgid "Line Type"
  2140. msgstr "ラインタイプ"
  2141. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2142. msgctxt "@label:listbox"
  2143. msgid "Speed"
  2144. msgstr "スピード"
  2145. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2146. msgctxt "@label:listbox"
  2147. msgid "Layer Thickness"
  2148. msgstr "レイヤーの厚さ"
  2149. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2150. msgctxt "@label:listbox"
  2151. msgid "Line Width"
  2152. msgstr "ライン幅"
  2153. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
  2154. msgctxt "@label"
  2155. msgid "Compatibility Mode"
  2156. msgstr "コンパティビリティモード"
  2157. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2158. msgctxt "@label"
  2159. msgid "Travels"
  2160. msgstr "移動"
  2161. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2162. msgctxt "@label"
  2163. msgid "Helpers"
  2164. msgstr "ヘルプ"
  2165. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2166. msgctxt "@label"
  2167. msgid "Shell"
  2168. msgstr "外郭"
  2169. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2170. msgctxt "@label"
  2171. msgid "Infill"
  2172. msgstr "インフィル"
  2173. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2174. msgctxt "@label"
  2175. msgid "Starts"
  2176. msgstr "開始"
  2177. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
  2178. msgctxt "@label"
  2179. msgid "Only Show Top Layers"
  2180. msgstr "トップのレイヤーを表示する"
  2181. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
  2182. msgctxt "@label"
  2183. msgid "Show 5 Detailed Layers On Top"
  2184. msgstr "トップの5レイヤーの詳細を表示する"
  2185. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
  2186. msgctxt "@label"
  2187. msgid "Top / Bottom"
  2188. msgstr "トップ/ボトム"
  2189. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
  2190. msgctxt "@label"
  2191. msgid "Inner Wall"
  2192. msgstr "インナーウォール"
  2193. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
  2194. msgctxt "@label"
  2195. msgid "min"
  2196. msgstr "最小"
  2197. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
  2198. msgctxt "@label"
  2199. msgid "max"
  2200. msgstr "最大"
  2201. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2202. msgctxt "@title:label"
  2203. msgid "Nozzle Settings"
  2204. msgstr "ノズル設定"
  2205. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2206. msgctxt "@label"
  2207. msgid "Nozzle size"
  2208. msgstr "ノズルサイズ"
  2209. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2210. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2211. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2212. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2213. msgctxt "@label"
  2214. msgid "mm"
  2215. msgstr "mm"
  2216. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2217. msgctxt "@label"
  2218. msgid "Compatible material diameter"
  2219. msgstr "適合する材料直径"
  2220. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2221. msgctxt "@label"
  2222. msgid "Nozzle offset X"
  2223. msgstr "ノズルオフセットX"
  2224. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2225. msgctxt "@label"
  2226. msgid "Nozzle offset Y"
  2227. msgstr "ノズルオフセットY"
  2228. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2229. msgctxt "@label"
  2230. msgid "Cooling Fan Number"
  2231. msgstr "冷却ファンの番号"
  2232. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2233. msgctxt "@title:label"
  2234. msgid "Extruder Start G-code"
  2235. msgstr "エクストルーダーがG-Codeを開始する"
  2236. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2237. msgctxt "@title:label"
  2238. msgid "Extruder End G-code"
  2239. msgstr "エクストルーダーがG-Codeを終了する"
  2240. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2241. msgctxt "@title:tab"
  2242. msgid "Printer"
  2243. msgstr "プリンター"
  2244. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2245. msgctxt "@title:label"
  2246. msgid "Printer Settings"
  2247. msgstr "プリンターの設定"
  2248. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2249. msgctxt "@label"
  2250. msgid "X (Width)"
  2251. msgstr "X(幅)"
  2252. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2253. msgctxt "@label"
  2254. msgid "Y (Depth)"
  2255. msgstr "Y (奥行き)"
  2256. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2257. msgctxt "@label"
  2258. msgid "Z (Height)"
  2259. msgstr "Z (高さ)"
  2260. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2261. msgctxt "@label"
  2262. msgid "Build plate shape"
  2263. msgstr "ビルドプレート形"
  2264. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2265. msgctxt "@label"
  2266. msgid "Origin at center"
  2267. msgstr "センターを出します"
  2268. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2269. msgctxt "@label"
  2270. msgid "Heated bed"
  2271. msgstr "ヒーテッドドベッド"
  2272. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2273. msgctxt "@label"
  2274. msgid "Heated build volume"
  2275. msgstr "加熱式ビルドボリューム"
  2276. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2277. msgctxt "@label"
  2278. msgid "G-code flavor"
  2279. msgstr "G-codeフレーバー"
  2280. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2281. msgctxt "@title:label"
  2282. msgid "Printhead Settings"
  2283. msgstr "プリントヘッド設定"
  2284. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2285. msgctxt "@label"
  2286. msgid "X min"
  2287. msgstr "X分"
  2288. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2289. msgctxt "@label"
  2290. msgid "Y min"
  2291. msgstr "Y分"
  2292. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2293. msgctxt "@label"
  2294. msgid "X max"
  2295. msgstr "最大X"
  2296. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2297. msgctxt "@label"
  2298. msgid "Y max"
  2299. msgstr "最大Y"
  2300. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2301. msgctxt "@label"
  2302. msgid "Gantry Height"
  2303. msgstr "ガントリーの高さ"
  2304. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2305. msgctxt "@label"
  2306. msgid "Number of Extruders"
  2307. msgstr "エクストルーダーの数"
  2308. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2309. msgctxt "@label"
  2310. msgid "Apply Extruder offsets to GCode"
  2311. msgstr "エクストルーダーのオフセットをGCodeに適用します"
  2312. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2313. msgctxt "@title:label"
  2314. msgid "Start G-code"
  2315. msgstr "G-Codeの開始"
  2316. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2317. msgctxt "@title:label"
  2318. msgid "End G-code"
  2319. msgstr "G-codeの終了"
  2320. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
  2321. msgctxt "@title:window"
  2322. msgid "Convert Image..."
  2323. msgstr "画像を変換する..."
  2324. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
  2325. msgctxt "@info:tooltip"
  2326. msgid "The maximum distance of each pixel from \"Base.\""
  2327. msgstr "“ベース”から各ピクセルへの最大距離。"
  2328. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
  2329. msgctxt "@action:label"
  2330. msgid "Height (mm)"
  2331. msgstr "高さ(mm)"
  2332. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
  2333. msgctxt "@info:tooltip"
  2334. msgid "The base height from the build plate in millimeters."
  2335. msgstr "ミリメートルでビルドプレートからベースの高さ。"
  2336. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
  2337. msgctxt "@action:label"
  2338. msgid "Base (mm)"
  2339. msgstr "ベース(mm)"
  2340. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
  2341. msgctxt "@info:tooltip"
  2342. msgid "The width in millimeters on the build plate."
  2343. msgstr "ビルドプレート上の幅ミリメートル。"
  2344. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
  2345. msgctxt "@action:label"
  2346. msgid "Width (mm)"
  2347. msgstr "幅(mm)"
  2348. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
  2349. msgctxt "@info:tooltip"
  2350. msgid "The depth in millimeters on the build plate"
  2351. msgstr "ビルドプレート上の奥行きミリメートル"
  2352. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
  2353. msgctxt "@action:label"
  2354. msgid "Depth (mm)"
  2355. msgstr "深さ(mm)"
  2356. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
  2357. msgctxt "@info:tooltip"
  2358. 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."
  2359. msgstr "リトフェインの場合、暗いピクセルは、より多くの光を通すために厚い場所に対応する必要があります。高さマップの場合、明るいピクセルは高い地形を表しているため、明るいピクセルは生成された3D モデルの厚い位置に対応する必要があります。"
  2360. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2361. msgctxt "@item:inlistbox"
  2362. msgid "Darker is higher"
  2363. msgstr "暗いほうを高く"
  2364. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2365. msgctxt "@item:inlistbox"
  2366. msgid "Lighter is higher"
  2367. msgstr "薄いほうを高く"
  2368. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
  2369. msgctxt "@info:tooltip"
  2370. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2371. msgstr "リトフェインの場合、半透明性を示す単純な対数モデルを利用できます。高さマップの場合、ピクセル値は高さに比例します。"
  2372. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2373. msgctxt "@item:inlistbox"
  2374. msgid "Linear"
  2375. msgstr "線形"
  2376. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
  2377. msgctxt "@item:inlistbox"
  2378. msgid "Translucency"
  2379. msgstr "半透明性"
  2380. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
  2381. msgctxt "@info:tooltip"
  2382. 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."
  2383. msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。この値を小さくすると、画像の暗い領域ではコントラストが増し、明るい領域ではコントラストが減少します。"
  2384. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
  2385. msgctxt "@action:label"
  2386. msgid "1mm Transmittance (%)"
  2387. msgstr "1mm透過率(%)"
  2388. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
  2389. msgctxt "@info:tooltip"
  2390. msgid "The amount of smoothing to apply to the image."
  2391. msgstr "画像に適応したスムージング量。"
  2392. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
  2393. msgctxt "@action:label"
  2394. msgid "Smoothing"
  2395. msgstr "スムージング"
  2396. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2397. msgctxt "@title"
  2398. msgid "My Backups"
  2399. msgstr "マイ バックアップ"
  2400. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2401. msgctxt "@empty_state"
  2402. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2403. msgstr "現在バックアップは存在しません。[今すぐバックアップする] を使用して作成してください。"
  2404. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2405. msgctxt "@backup_limit_info"
  2406. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2407. msgstr "プレビューではバックアップは5つまでに制限されています。古いバックアップは削除してください。"
  2408. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2409. msgctxt "@description"
  2410. msgid "Backup and synchronize your Cura settings."
  2411. msgstr "Cura のバックアップおよび同期を設定します。"
  2412. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2413. msgctxt "@button"
  2414. msgid "Want more?"
  2415. msgstr "詳しく知りたい?"
  2416. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2417. msgctxt "@button"
  2418. msgid "Backup Now"
  2419. msgstr "今すぐバックアップする"
  2420. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2421. msgctxt "@checkbox:description"
  2422. msgid "Auto Backup"
  2423. msgstr "自動バックアップ"
  2424. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2425. msgctxt "@checkbox:description"
  2426. msgid "Automatically create a backup each day that Cura is started."
  2427. msgstr "Cura を起動した日は常にバックアップを自動生成します。"
  2428. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2429. msgctxt "@backuplist:label"
  2430. msgid "Cura Version"
  2431. msgstr "Cura バージョン"
  2432. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2433. msgctxt "@backuplist:label"
  2434. msgid "Machines"
  2435. msgstr "プリンタ"
  2436. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2437. msgctxt "@backuplist:label"
  2438. msgid "Materials"
  2439. msgstr "材料"
  2440. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2441. msgctxt "@backuplist:label"
  2442. msgid "Profiles"
  2443. msgstr "プロファイル"
  2444. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2445. msgctxt "@backuplist:label"
  2446. msgid "Plugins"
  2447. msgstr "プラグイン"
  2448. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2449. msgctxt "@button"
  2450. msgid "Restore"
  2451. msgstr "リストア"
  2452. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2453. msgctxt "@dialog:title"
  2454. msgid "Delete Backup"
  2455. msgstr "バックアップの削除"
  2456. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2457. msgctxt "@dialog:info"
  2458. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2459. msgstr "このバックアップを削除しますか?これは取り消しできません。"
  2460. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2461. msgctxt "@dialog:title"
  2462. msgid "Restore Backup"
  2463. msgstr "バックアップのリストア"
  2464. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2465. msgctxt "@dialog:info"
  2466. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2467. msgstr "バックアップをリストアする前に Cura を再起動する必要があります。今すぐ Cura を閉じますか?"
  2468. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2469. msgctxt "@title:window"
  2470. msgid "Cura Backups"
  2471. msgstr "Cura バックアップ"
  2472. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
  2473. msgctxt "@label:category menu label"
  2474. msgid "Material"
  2475. msgstr "材料"
  2476. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
  2477. msgctxt "@label:category menu label"
  2478. msgid "Favorites"
  2479. msgstr "お気に入り"
  2480. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
  2481. msgctxt "@label:category menu label"
  2482. msgid "Generic"
  2483. msgstr "汎用"
  2484. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2485. msgctxt "@title:menu menubar:toplevel"
  2486. msgid "&File"
  2487. msgstr "&ファイル"
  2488. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
  2489. msgctxt "@title:menu menubar:file"
  2490. msgid "&Save Project..."
  2491. msgstr "プロジェクトを保存... (&S)"
  2492. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
  2493. msgctxt "@title:menu menubar:file"
  2494. msgid "&Export..."
  2495. msgstr "エクスポート... (&E)"
  2496. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
  2497. msgctxt "@action:inmenu menubar:file"
  2498. msgid "Export Selection..."
  2499. msgstr "選択エクスポート..."
  2500. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2501. msgctxt "@title:menu menubar:file"
  2502. msgid "Open &Recent"
  2503. msgstr "最近開いたファイルを開く"
  2504. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  2505. msgctxt "@label"
  2506. msgid "Select configuration"
  2507. msgstr "構成の選択"
  2508. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  2509. msgctxt "@label"
  2510. msgid "Configurations"
  2511. msgstr "構成"
  2512. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  2513. msgctxt "@header"
  2514. msgid "Configurations"
  2515. msgstr "構成"
  2516. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  2517. msgctxt "@header"
  2518. msgid "Custom"
  2519. msgstr "カスタム"
  2520. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  2521. msgctxt "@label"
  2522. msgid "Printer"
  2523. msgstr "プリンター"
  2524. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  2525. msgctxt "@label"
  2526. msgid "Enabled"
  2527. msgstr "有効"
  2528. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  2529. msgctxt "@label"
  2530. msgid "Material"
  2531. msgstr "フィラメント"
  2532. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  2533. msgctxt "@label"
  2534. msgid "Use glue for better adhesion with this material combination."
  2535. msgstr "この材料の組み合わせの接着に接着材を使用する。"
  2536. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  2537. msgctxt "@label"
  2538. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  2539. msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。"
  2540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  2541. msgctxt "@label"
  2542. msgid "Marketplace"
  2543. msgstr "マーケットプレース"
  2544. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  2545. msgctxt "@label"
  2546. msgid "Loading available configurations from the printer..."
  2547. msgstr "プリンタから利用可能な構成を読み込んでいます..."
  2548. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  2549. msgctxt "@label"
  2550. msgid "The configurations are not available because the printer is disconnected."
  2551. msgstr "プリンタが接続されていないため、構成は利用できません。"
  2552. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2553. msgctxt "@title:menu menubar:toplevel"
  2554. msgid "&View"
  2555. msgstr "&ビュー"
  2556. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
  2557. msgctxt "@action:inmenu menubar:view"
  2558. msgid "&Camera position"
  2559. msgstr "カメラ位置 (&C)"
  2560. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
  2561. msgctxt "@action:inmenu menubar:view"
  2562. msgid "Camera view"
  2563. msgstr "カメラビュー"
  2564. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
  2565. msgctxt "@action:inmenu menubar:view"
  2566. msgid "Perspective"
  2567. msgstr "パースペクティブ表示"
  2568. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
  2569. msgctxt "@action:inmenu menubar:view"
  2570. msgid "Orthographic"
  2571. msgstr "平行投影表示"
  2572. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
  2573. msgctxt "@action:inmenu menubar:view"
  2574. msgid "&Build plate"
  2575. msgstr "ビルドプレート (&B)"
  2576. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2577. msgctxt "@label:category menu label"
  2578. msgid "Network enabled printers"
  2579. msgstr "ネットワーク対応プリンター"
  2580. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2581. msgctxt "@label:category menu label"
  2582. msgid "Local printers"
  2583. msgstr "ローカルプリンター"
  2584. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2585. msgctxt "@action:inmenu"
  2586. msgid "Visible Settings"
  2587. msgstr "ビジブル設定"
  2588. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  2589. msgctxt "@action:inmenu"
  2590. msgid "Collapse All Categories"
  2591. msgstr "すべてのカテゴリを折りたたむ"
  2592. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  2593. msgctxt "@action:inmenu"
  2594. msgid "Manage Setting Visibility..."
  2595. msgstr "視野のセッティングを管理する..."
  2596. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  2597. msgctxt "@title:menu menubar:toplevel"
  2598. msgid "&Settings"
  2599. msgstr "&設定"
  2600. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
  2601. msgctxt "@title:menu menubar:settings"
  2602. msgid "&Printer"
  2603. msgstr "&プリンター"
  2604. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
  2605. msgctxt "@title:menu"
  2606. msgid "&Material"
  2607. msgstr "&フィラメント"
  2608. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
  2609. msgctxt "@action:inmenu"
  2610. msgid "Set as Active Extruder"
  2611. msgstr "アクティブエクストルーダーとしてセットする"
  2612. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
  2613. msgctxt "@action:inmenu"
  2614. msgid "Enable Extruder"
  2615. msgstr "エクストルーダーを有効にする"
  2616. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
  2617. msgctxt "@action:inmenu"
  2618. msgid "Disable Extruder"
  2619. msgstr "エクストルーダーを無効にする"
  2620. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  2621. msgctxt "@title:menu menubar:file"
  2622. msgid "Save Project..."
  2623. msgstr "プロジェクトを保存..."
  2624. # can’t enter japanese texts
  2625. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
  2626. msgctxt "@label"
  2627. msgid "Print Selected Model With:"
  2628. msgid_plural "Print Selected Models With:"
  2629. msgstr[0] "選択したモデルで印刷:"
  2630. # can’t eneter japanese texts
  2631. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
  2632. msgctxt "@title:window"
  2633. msgid "Multiply Selected Model"
  2634. msgid_plural "Multiply Selected Models"
  2635. msgstr[0] "選択した複数のモデル"
  2636. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
  2637. msgctxt "@label"
  2638. msgid "Number of Copies"
  2639. msgstr "コピーの数"
  2640. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2641. msgctxt "@title:menu menubar:file"
  2642. msgid "Open File(s)..."
  2643. msgstr "ファイルを開く..."
  2644. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  2645. msgctxt "@label:header"
  2646. msgid "Custom profiles"
  2647. msgstr "カスタムプロファイル"
  2648. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  2649. msgctxt "@action:button"
  2650. msgid "Discard current changes"
  2651. msgstr "今の変更を破棄する"
  2652. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2653. msgctxt "@label"
  2654. msgid "Profile"
  2655. msgstr "プロファイル"
  2656. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  2657. msgctxt "@tooltip"
  2658. msgid ""
  2659. "Some setting/override values are different from the values stored in the profile.\n"
  2660. "\n"
  2661. "Click to open the profile manager."
  2662. msgstr ""
  2663. "いくらかの設定プロファイルにある値とことなる場合無効にします。\n"
  2664. "プロファイルマネージャーをクリックして開いてください。"
  2665. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2666. msgctxt "@label:Should be short"
  2667. msgid "On"
  2668. msgstr "オン"
  2669. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2670. msgctxt "@label:Should be short"
  2671. msgid "Off"
  2672. msgstr "オフ"
  2673. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2674. msgctxt "@label"
  2675. msgid "Experimental"
  2676. msgstr "実験"
  2677. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2678. msgctxt "@button"
  2679. msgid "Recommended"
  2680. msgstr "推奨"
  2681. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2682. msgctxt "@button"
  2683. msgid "Custom"
  2684. msgstr "カスタム"
  2685. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2686. msgctxt "@label"
  2687. msgid "Print settings"
  2688. msgstr "プリント設定"
  2689. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2690. msgctxt "@label shown when we load a Gcode file"
  2691. msgid "Print setup disabled. G-code file can not be modified."
  2692. msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。"
  2693. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2694. msgctxt "@label"
  2695. msgid "Gradual infill"
  2696. msgstr "インフィル半減"
  2697. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2698. msgctxt "@label"
  2699. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2700. msgstr "グラデュアルインフィルはトップに向かうに従ってインフィルの量を増やします。"
  2701. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
  2702. msgctxt "@label"
  2703. msgid "Profiles"
  2704. msgstr "プロファイル"
  2705. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2706. msgctxt "@tooltip"
  2707. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2708. msgstr "プロファイルの設定がいくつか変更されました。変更を有効にするにはカスタムモードに移動してください。"
  2709. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2710. msgctxt "@label"
  2711. msgid "Support"
  2712. msgstr "サポート"
  2713. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2714. msgctxt "@label"
  2715. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2716. msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。"
  2717. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2718. msgctxt "@label"
  2719. msgid "Adhesion"
  2720. msgstr "密着性"
  2721. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2722. msgctxt "@label"
  2723. 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."
  2724. msgstr "ブリムまたはラフトのプリントの有効化。それぞれ、プリントの周り、また造形物の下に底面を加え切り取りやすくします。"
  2725. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2726. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  2727. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2728. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2729. msgstr[0] "エクストルーダー%2の設定には%1プロファイルがありません。代わりにデフォルトの目的が使用されます"
  2730. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
  2731. msgctxt "@label"
  2732. msgid "No items to select from"
  2733. msgstr "選択するアイテムがありません"
  2734. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
  2735. msgctxt "@label"
  2736. msgid "Active print"
  2737. msgstr "プリントをアクティベートする"
  2738. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
  2739. msgctxt "@label"
  2740. msgid "Job Name"
  2741. msgstr "ジョブネーム"
  2742. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
  2743. msgctxt "@label"
  2744. msgid "Printing Time"
  2745. msgstr "プリント時間"
  2746. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
  2747. msgctxt "@label"
  2748. msgid "Estimated time left"
  2749. msgstr "残り時間"
  2750. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2751. msgctxt "@title:window"
  2752. msgid "Discard or Keep changes"
  2753. msgstr "変更を取り消すか保存するか"
  2754. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2755. msgctxt "@text:window, %1 is a profile name"
  2756. msgid ""
  2757. "You have customized some profile settings.\n"
  2758. "Would you like to Keep these changed settings after switching profiles?\n"
  2759. "Alternatively, you can discard the changes to load the defaults from '%1'."
  2760. msgstr ""
  2761. "一部のプロファイル設定がカスタマイズされています。\n"
  2762. "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n"
  2763. "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。"
  2764. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  2765. msgctxt "@title:column"
  2766. msgid "Profile settings"
  2767. msgstr "プロファイル設定"
  2768. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  2769. msgctxt "@title:column"
  2770. msgid "Current changes"
  2771. msgstr "現在の変更"
  2772. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
  2773. msgctxt "@option:discardOrKeep"
  2774. msgid "Always ask me this"
  2775. msgstr "毎回確認する"
  2776. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  2777. msgctxt "@option:discardOrKeep"
  2778. msgid "Discard and never ask again"
  2779. msgstr "取り消し、再度確認しない"
  2780. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  2781. msgctxt "@option:discardOrKeep"
  2782. msgid "Keep and never ask again"
  2783. msgstr "キープし、再度確認しない"
  2784. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  2785. msgctxt "@action:button"
  2786. msgid "Discard changes"
  2787. msgstr "変更を破棄"
  2788. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  2789. msgctxt "@action:button"
  2790. msgid "Keep changes"
  2791. msgstr "変更を維持"
  2792. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2793. msgctxt "@title:window The argument is the application name."
  2794. msgid "About %1"
  2795. msgstr "%1について"
  2796. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2797. msgctxt "@label"
  2798. msgid "version: %1"
  2799. msgstr "バージョン: %1"
  2800. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2801. msgctxt "@label"
  2802. msgid "End-to-end solution for fused filament 3D printing."
  2803. msgstr "熱溶解積層型3Dプリンティングのエンドtoエンドソリューション。"
  2804. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2805. msgctxt "@info:credit"
  2806. msgid ""
  2807. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2808. "Cura proudly uses the following open source projects:"
  2809. msgstr "CuraはUltimakerB.Vのコミュニティの協力によって開発され、Curaはオープンソースで使えることを誇りに思います:"
  2810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2811. msgctxt "@label"
  2812. msgid "Graphical user interface"
  2813. msgstr "グラフィックユーザーインターフェイス"
  2814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2815. msgctxt "@label"
  2816. msgid "Application framework"
  2817. msgstr "アプリケーションフレームワーク"
  2818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2819. msgctxt "@label"
  2820. msgid "G-code generator"
  2821. msgstr "G-codeの生成"
  2822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2823. msgctxt "@label"
  2824. msgid "Interprocess communication library"
  2825. msgstr "インタープロセスコミュニケーションライブラリー"
  2826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2827. msgctxt "@label"
  2828. msgid "Programming language"
  2829. msgstr "プログラミング用語"
  2830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2831. msgctxt "@label"
  2832. msgid "GUI framework"
  2833. msgstr "GUIフレームワーク"
  2834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2835. msgctxt "@label"
  2836. msgid "GUI framework bindings"
  2837. msgstr "GUIフレームワークバインディング"
  2838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2839. msgctxt "@label"
  2840. msgid "C/C++ Binding library"
  2841. msgstr "C/C++ バインディングライブラリー"
  2842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2843. msgctxt "@label"
  2844. msgid "Data interchange format"
  2845. msgstr "データインターフェイスフォーマット"
  2846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2847. msgctxt "@label"
  2848. msgid "Support library for scientific computing"
  2849. msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート"
  2850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2851. msgctxt "@label"
  2852. msgid "Support library for faster math"
  2853. msgstr "ファターマスを操作するためのライブラリーサポート"
  2854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2855. msgctxt "@label"
  2856. msgid "Support library for handling STL files"
  2857. msgstr "STLファイルを操作するためのライブラリーサポート"
  2858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2859. msgctxt "@label"
  2860. msgid "Support library for handling planar objects"
  2861. msgstr "平面対象物を操作するためのライブラリーサポート"
  2862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2863. msgctxt "@label"
  2864. msgid "Support library for handling triangular meshes"
  2865. msgstr "参画メッシュを操作するためのライブラリーサポート"
  2866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2867. msgctxt "@label"
  2868. msgid "Support library for handling 3MF files"
  2869. msgstr "3MFファイルを操作するためのライブラリーサポート"
  2870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2871. msgctxt "@label"
  2872. msgid "Support library for file metadata and streaming"
  2873. msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート"
  2874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2875. msgctxt "@label"
  2876. msgid "Serial communication library"
  2877. msgstr "シリアルコミュニケーションライブラリー"
  2878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2879. msgctxt "@label"
  2880. msgid "ZeroConf discovery library"
  2881. msgstr "ZeroConfディスカバリーライブラリー"
  2882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2883. msgctxt "@label"
  2884. msgid "Polygon clipping library"
  2885. msgstr "ポリゴンクリッピングライブラリー"
  2886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2887. msgctxt "@Label"
  2888. msgid "Static type checker for Python"
  2889. msgstr "Python用の静的型チェッカー"
  2890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2891. msgctxt "@Label"
  2892. msgid "Root Certificates for validating SSL trustworthiness"
  2893. msgstr "SSLの信頼性を検証するためのルート証明書"
  2894. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2895. msgctxt "@Label"
  2896. msgid "Python Error tracking library"
  2897. msgstr "Pythonエラー追跡ライブラリー"
  2898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2899. msgctxt "@label"
  2900. msgid "Polygon packing library, developed by Prusa Research"
  2901. msgstr "Prusa Research開発のポリゴンパッキングライブラリー"
  2902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2903. msgctxt "@label"
  2904. msgid "Python bindings for libnest2d"
  2905. msgstr "libnest2dのPythonバインディング"
  2906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  2907. msgctxt "@label"
  2908. msgid "Support library for system keyring access"
  2909. msgstr "システムキーリングアクセスを操作するためのライブラリーサポート"
  2910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  2911. msgctxt "@label"
  2912. msgid "Python extensions for Microsoft Windows"
  2913. msgstr "Microsoft Windows用のPython拡張機能"
  2914. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  2915. msgctxt "@label"
  2916. msgid "Font"
  2917. msgstr "フォント"
  2918. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  2919. msgctxt "@label"
  2920. msgid "SVG icons"
  2921. msgstr "SVGアイコン"
  2922. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  2923. msgctxt "@label"
  2924. msgid "Linux cross-distribution application deployment"
  2925. msgstr "Linux 分散アプリケーションの開発"
  2926. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
  2927. msgctxt "@title:window"
  2928. msgid "Open file(s)"
  2929. msgstr "ファイルを開く"
  2930. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  2931. msgctxt "@text:window"
  2932. 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?"
  2933. msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?"
  2934. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  2935. msgctxt "@action:button"
  2936. msgid "Import all as models"
  2937. msgstr "すべてをモデルとして取り入れる"
  2938. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  2939. msgctxt "@title:window"
  2940. msgid "Save Project"
  2941. msgstr "プロジェクトを保存"
  2942. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  2943. msgctxt "@action:label"
  2944. msgid "Extruder %1"
  2945. msgstr "エクストルーダー%1"
  2946. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  2947. msgctxt "@action:label"
  2948. msgid "%1 & material"
  2949. msgstr "%1とフィラメント"
  2950. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  2951. msgctxt "@action:label"
  2952. msgid "Material"
  2953. msgstr "材料"
  2954. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  2955. msgctxt "@action:label"
  2956. msgid "Don't show project summary on save again"
  2957. msgstr "保存中のプロジェクトサマリーを非表示にする"
  2958. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  2959. msgctxt "@action:button"
  2960. msgid "Save"
  2961. msgstr "保存"
  2962. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  2963. msgctxt "@title:window"
  2964. msgid "Open project file"
  2965. msgstr "プロジェクトを開く"
  2966. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  2967. msgctxt "@text:window"
  2968. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2969. msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?"
  2970. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  2971. msgctxt "@text:window"
  2972. msgid "Remember my choice"
  2973. msgstr "選択を記憶させる"
  2974. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  2975. msgctxt "@action:button"
  2976. msgid "Open as project"
  2977. msgstr "プロジェクトを開く"
  2978. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  2979. msgctxt "@action:button"
  2980. msgid "Import models"
  2981. msgstr "モデルを取り込む"
  2982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
  2983. msgctxt "@text Print job name"
  2984. msgid "Untitled"
  2985. msgstr "無題"
  2986. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  2987. msgctxt "@label"
  2988. msgid "Welcome to Ultimaker Cura"
  2989. msgstr "Ultimaker Cura にようこそ"
  2990. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  2991. msgctxt "@text"
  2992. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  2993. msgstr ""
  2994. "以下の手順で\n"
  2995. "Ultimaker Cura を設定してください。数秒で完了します。"
  2996. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  2997. msgctxt "@button"
  2998. msgid "Get started"
  2999. msgstr "はじめに"
  3000. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3001. msgctxt "@label"
  3002. msgid "Empty"
  3003. msgstr "空にする"
  3004. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3005. msgctxt "@label"
  3006. msgid "Help us to improve Ultimaker Cura"
  3007. msgstr "Ultimaker Cura の改善にご協力ください"
  3008. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3009. msgctxt "@text"
  3010. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3011. msgstr "Ultimaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために以下の匿名データを収集します:"
  3012. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3013. msgctxt "@text"
  3014. msgid "Machine types"
  3015. msgstr "プリンターのタイプ"
  3016. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3017. msgctxt "@text"
  3018. msgid "Material usage"
  3019. msgstr "材料の利用状況"
  3020. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3021. msgctxt "@text"
  3022. msgid "Number of slices"
  3023. msgstr "スライスの数"
  3024. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3025. msgctxt "@text"
  3026. msgid "Print settings"
  3027. msgstr "プリント設定"
  3028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3029. msgctxt "@text"
  3030. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3031. msgstr "Ultimaker Cura が収集したデータには個人データは含まれません。"
  3032. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3033. msgctxt "@text"
  3034. msgid "More information"
  3035. msgstr "詳細"
  3036. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3037. msgctxt "@label"
  3038. msgid "Add printer by IP address"
  3039. msgstr "IP アドレスでプリンターを追加"
  3040. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3041. msgctxt "@text"
  3042. msgid "Enter your printer's IP address."
  3043. msgstr "プリンターのIPアドレスを入力します。"
  3044. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3045. msgctxt "@button"
  3046. msgid "Add"
  3047. msgstr "追加"
  3048. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  3049. msgctxt "@label"
  3050. msgid "Could not connect to device."
  3051. msgstr "デバイスに接続できません。"
  3052. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  3053. msgctxt "@label"
  3054. msgid "Can't connect to your Ultimaker printer?"
  3055. msgstr "Ultimakerプリンターに接続できませんか?"
  3056. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  3057. msgctxt "@label"
  3058. msgid "The printer at this address has not responded yet."
  3059. msgstr "このアドレスのプリンターは応答していません。"
  3060. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  3061. msgctxt "@label"
  3062. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3063. msgstr "このプリンタは不明なプリンタであるか、またはグループのホストではないため、追加できません。"
  3064. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3065. msgctxt "@button"
  3066. msgid "Back"
  3067. msgstr "戻る"
  3068. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  3069. msgctxt "@button"
  3070. msgid "Connect"
  3071. msgstr "接続"
  3072. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3073. msgctxt "@label"
  3074. msgid "Add a printer"
  3075. msgstr "プリンターの追加"
  3076. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3077. msgctxt "@label"
  3078. msgid "Add a networked printer"
  3079. msgstr "ネットワークプリンターの追加"
  3080. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  3081. msgctxt "@label"
  3082. msgid "Add a non-networked printer"
  3083. msgstr "非ネットワークプリンターの追加"
  3084. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3085. msgctxt "@label"
  3086. msgid "What's New"
  3087. msgstr "新情報"
  3088. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3089. msgctxt "@label"
  3090. msgid "Add a Cloud printer"
  3091. msgstr "クラウドプリンターを追加"
  3092. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  3093. msgctxt "@label"
  3094. msgid "Waiting for Cloud response"
  3095. msgstr "クラウドの応答を待機しています"
  3096. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  3097. msgctxt "@label"
  3098. msgid "No printers found in your account?"
  3099. msgstr "アカウントにプリンターが見つかりませんか?"
  3100. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  3101. msgctxt "@label"
  3102. msgid "The following printers in your account have been added in Cura:"
  3103. msgstr "アカウントの以下のプリンターがCuraに追加されました。"
  3104. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  3105. msgctxt "@button"
  3106. msgid "Add printer manually"
  3107. msgstr "プリンタを手動で追加する"
  3108. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
  3109. msgctxt "@label"
  3110. msgid "Sign in to the Ultimaker platform"
  3111. msgstr "Ultimakerのプラットフォームにサインイン"
  3112. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  3113. msgctxt "@text"
  3114. msgid "Add material settings and plugins from the Marketplace"
  3115. msgstr "マーケットプレイスから材料設定とプラグインを追加"
  3116. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  3117. msgctxt "@text"
  3118. msgid "Backup and sync your material settings and plugins"
  3119. msgstr "材料設定とプラグインのバックアップと同期"
  3120. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  3121. msgctxt "@text"
  3122. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3123. msgstr "Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう"
  3124. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  3125. msgctxt "@text"
  3126. msgid "Create a free Ultimaker Account"
  3127. msgstr "無料のUltimakerアカウントを作成"
  3128. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  3129. msgctxt "@button"
  3130. msgid "Skip"
  3131. msgstr "スキップ"
  3132. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3133. msgctxt "@label"
  3134. msgid "User Agreement"
  3135. msgstr "ユーザー用使用許諾契約"
  3136. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3137. msgctxt "@button"
  3138. msgid "Decline and close"
  3139. msgstr "拒否して閉じる"
  3140. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3141. msgctxt "@label"
  3142. msgid "Release Notes"
  3143. msgstr "リリースノート"
  3144. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3145. msgctxt "@label"
  3146. msgid "There is no printer found over your network."
  3147. msgstr "ネットワークにプリンターはありません。"
  3148. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  3149. msgctxt "@label"
  3150. msgid "Refresh"
  3151. msgstr "更新"
  3152. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3153. msgctxt "@label"
  3154. msgid "Add printer by IP"
  3155. msgstr "IP でプリンターを追加"
  3156. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3157. msgctxt "@label"
  3158. msgid "Add cloud printer"
  3159. msgstr "クラウドプリンターを追加"
  3160. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  3161. msgctxt "@label"
  3162. msgid "Troubleshooting"
  3163. msgstr "トラブルシューティング"
  3164. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  3165. msgctxt "@label"
  3166. msgid "Manufacturer"
  3167. msgstr "製造元"
  3168. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  3169. msgctxt "@label"
  3170. msgid "Profile author"
  3171. msgstr "プロファイル作成者"
  3172. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  3173. msgctxt "@label"
  3174. msgid "Printer name"
  3175. msgstr "プリンター名"
  3176. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  3177. msgctxt "@text"
  3178. msgid "Please name your printer"
  3179. msgstr "プリンターに名前を付けてください"
  3180. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
  3181. msgctxt "@label The argument is a timestamp"
  3182. msgid "Last update: %1"
  3183. msgstr "最終更新:%1"
  3184. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
  3185. msgctxt "@button"
  3186. msgid "Ultimaker Account"
  3187. msgstr "Ultimakerアカウント"
  3188. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
  3189. msgctxt "@button"
  3190. msgid "Sign Out"
  3191. msgstr "サインアウト"
  3192. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
  3193. msgctxt "@text"
  3194. msgid ""
  3195. "- Add material profiles and plug-ins from the Marketplace\n"
  3196. "- Back-up and sync your material profiles and plug-ins\n"
  3197. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3198. msgstr ""
  3199. "- マーケットプレースから材料プロファイルとプラグインを追加\n"
  3200. "- 材料プロファイルとプラグインのバックアップと同期\n"
  3201. "- Ultimakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう"
  3202. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
  3203. msgctxt "@button"
  3204. msgid "Create a free Ultimaker account"
  3205. msgstr "無料のUltimakerアカウントを作成"
  3206. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
  3207. msgctxt "@action:button"
  3208. msgid "Sign in"
  3209. msgstr "サインイン"
  3210. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
  3211. msgctxt "@label"
  3212. msgid "Checking..."
  3213. msgstr "確認しています..."
  3214. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
  3215. msgctxt "@label"
  3216. msgid "Account synced"
  3217. msgstr "アカウント同期"
  3218. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
  3219. msgctxt "@label"
  3220. msgid "Something went wrong..."
  3221. msgstr "問題が発生しました..."
  3222. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
  3223. msgctxt "@button"
  3224. msgid "Install pending updates"
  3225. msgstr "保留中の更新をインストール"
  3226. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
  3227. msgctxt "@button"
  3228. msgid "Check for account updates"
  3229. msgstr "アカウントの更新を確認"
  3230. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
  3231. msgctxt "@label"
  3232. msgid "Object list"
  3233. msgstr "オブジェクトリスト"
  3234. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
  3235. msgctxt "@action:inmenu"
  3236. msgid "Show Online Troubleshooting Guide"
  3237. msgstr "オンラインでトラブルシューティングガイドを表示する"
  3238. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
  3239. msgctxt "@action:inmenu"
  3240. msgid "Toggle Full Screen"
  3241. msgstr "留め金 フルスクリーン"
  3242. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
  3243. msgctxt "@action:inmenu"
  3244. msgid "Exit Full Screen"
  3245. msgstr "全画面表示を終了する"
  3246. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
  3247. msgctxt "@action:inmenu menubar:edit"
  3248. msgid "&Undo"
  3249. msgstr "&取り消す"
  3250. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
  3251. msgctxt "@action:inmenu menubar:edit"
  3252. msgid "&Redo"
  3253. msgstr "&やりなおす"
  3254. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
  3255. msgctxt "@action:inmenu menubar:file"
  3256. msgid "&Quit"
  3257. msgstr "&やめる"
  3258. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
  3259. msgctxt "@action:inmenu menubar:view"
  3260. msgid "3D View"
  3261. msgstr "3Dビュー"
  3262. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
  3263. msgctxt "@action:inmenu menubar:view"
  3264. msgid "Front View"
  3265. msgstr "フロントビュー"
  3266. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
  3267. msgctxt "@action:inmenu menubar:view"
  3268. msgid "Top View"
  3269. msgstr "トップビュー"
  3270. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
  3271. msgctxt "@action:inmenu menubar:view"
  3272. msgid "Left Side View"
  3273. msgstr "左サイドビュー"
  3274. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
  3275. msgctxt "@action:inmenu menubar:view"
  3276. msgid "Right Side View"
  3277. msgstr "右サイドビュー"
  3278. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
  3279. msgctxt "@action:inmenu"
  3280. msgid "Configure Cura..."
  3281. msgstr "Curaを構成する..."
  3282. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
  3283. msgctxt "@action:inmenu menubar:printer"
  3284. msgid "&Add Printer..."
  3285. msgstr "&プリンターを追加する..."
  3286. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
  3287. msgctxt "@action:inmenu menubar:printer"
  3288. msgid "Manage Pr&inters..."
  3289. msgstr "プリンターを管理する..."
  3290. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
  3291. msgctxt "@action:inmenu"
  3292. msgid "Manage Materials..."
  3293. msgstr "フィラメントを管理する..."
  3294. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
  3295. msgctxt "@action:inmenu"
  3296. msgid "Add more materials from Marketplace"
  3297. msgstr "マーケットプレイスから材料を追加"
  3298. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
  3299. msgctxt "@action:inmenu menubar:profile"
  3300. msgid "&Update profile with current settings/overrides"
  3301. msgstr "&現在の設定/無効にプロファイルをアップデートする"
  3302. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
  3303. msgctxt "@action:inmenu menubar:profile"
  3304. msgid "&Discard current changes"
  3305. msgstr "&変更を破棄する"
  3306. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
  3307. msgctxt "@action:inmenu menubar:profile"
  3308. msgid "&Create profile from current settings/overrides..."
  3309. msgstr "&今の設定/無効からプロファイルを作成する..."
  3310. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
  3311. msgctxt "@action:inmenu menubar:profile"
  3312. msgid "Manage Profiles..."
  3313. msgstr "プロファイルを管理する..."
  3314. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
  3315. msgctxt "@action:inmenu menubar:help"
  3316. msgid "Show Online &Documentation"
  3317. msgstr "オンラインドキュメントを表示する"
  3318. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
  3319. msgctxt "@action:inmenu menubar:help"
  3320. msgid "Report a &Bug"
  3321. msgstr "報告&バグ"
  3322. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
  3323. msgctxt "@action:inmenu menubar:help"
  3324. msgid "What's New"
  3325. msgstr "新情報"
  3326. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
  3327. msgctxt "@action:inmenu menubar:help"
  3328. msgid "About..."
  3329. msgstr "アバウト..."
  3330. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
  3331. msgctxt "@action:inmenu menubar:edit"
  3332. msgid "Delete Selected"
  3333. msgstr "選択内容を削除"
  3334. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
  3335. msgctxt "@action:inmenu menubar:edit"
  3336. msgid "Center Selected"
  3337. msgstr "選択内容を中央に移動"
  3338. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
  3339. msgctxt "@action:inmenu menubar:edit"
  3340. msgid "Multiply Selected"
  3341. msgstr "選択内容を増倍"
  3342. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
  3343. msgctxt "@action:inmenu"
  3344. msgid "Delete Model"
  3345. msgstr "モデルを消去する"
  3346. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
  3347. msgctxt "@action:inmenu"
  3348. msgid "Ce&nter Model on Platform"
  3349. msgstr "プラットホームの中心にモデルを配置"
  3350. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
  3351. msgctxt "@action:inmenu menubar:edit"
  3352. msgid "&Group Models"
  3353. msgstr "&モデルグループ"
  3354. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
  3355. msgctxt "@action:inmenu menubar:edit"
  3356. msgid "Ungroup Models"
  3357. msgstr "モデルを非グループ化"
  3358. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
  3359. msgctxt "@action:inmenu menubar:edit"
  3360. msgid "&Merge Models"
  3361. msgstr "モ&デルの合体"
  3362. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
  3363. msgctxt "@action:inmenu"
  3364. msgid "&Multiply Model..."
  3365. msgstr "&モデルを増倍する..."
  3366. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
  3367. msgctxt "@action:inmenu menubar:edit"
  3368. msgid "Select All Models"
  3369. msgstr "すべてのモデル選択"
  3370. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
  3371. msgctxt "@action:inmenu menubar:edit"
  3372. msgid "Clear Build Plate"
  3373. msgstr "ビルドプレート上のクリア"
  3374. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
  3375. msgctxt "@action:inmenu menubar:file"
  3376. msgid "Reload All Models"
  3377. msgstr "すべてのモデルを読み込む"
  3378. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
  3379. msgctxt "@action:inmenu menubar:edit"
  3380. msgid "Arrange All Models To All Build Plates"
  3381. msgstr "すべてのモデルをすべてのビルドプレートに配置"
  3382. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
  3383. msgctxt "@action:inmenu menubar:edit"
  3384. msgid "Arrange All Models"
  3385. msgstr "すべてのモデルをアレンジする"
  3386. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
  3387. msgctxt "@action:inmenu menubar:edit"
  3388. msgid "Arrange Selection"
  3389. msgstr "選択をアレンジする"
  3390. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
  3391. msgctxt "@action:inmenu menubar:edit"
  3392. msgid "Reset All Model Positions"
  3393. msgstr "すべてのモデルのポジションをリセットする"
  3394. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
  3395. msgctxt "@action:inmenu menubar:edit"
  3396. msgid "Reset All Model Transformations"
  3397. msgstr "すべてのモデル&変更点をリセットする"
  3398. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
  3399. msgctxt "@action:inmenu menubar:file"
  3400. msgid "&Open File(s)..."
  3401. msgstr "&ファイルを開く(s)..."
  3402. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
  3403. msgctxt "@action:inmenu menubar:file"
  3404. msgid "&New Project..."
  3405. msgstr "&新しいプロジェクト..."
  3406. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
  3407. msgctxt "@action:inmenu menubar:help"
  3408. msgid "Show Configuration Folder"
  3409. msgstr "コンフィグレーションのフォルダーを表示する"
  3410. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445 /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
  3411. msgctxt "@action:menu"
  3412. msgid "Configure setting visibility..."
  3413. msgstr "視野のセッティングを構成する..."
  3414. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
  3415. msgctxt "@action:menu"
  3416. msgid "&Marketplace"
  3417. msgstr "&マーケットプレース"
  3418. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3419. msgctxt "@info:status"
  3420. msgid "Calculated"
  3421. msgstr "計算された"
  3422. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3423. msgctxt "@title:column"
  3424. msgid "Setting"
  3425. msgstr "設定"
  3426. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3427. msgctxt "@title:column"
  3428. msgid "Profile"
  3429. msgstr "プロファイル"
  3430. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3431. msgctxt "@title:column"
  3432. msgid "Current"
  3433. msgstr "現在"
  3434. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3435. msgctxt "@title:column"
  3436. msgid "Unit"
  3437. msgstr "ユニット"
  3438. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3439. msgctxt "@title"
  3440. msgid "Information"
  3441. msgstr "インフォメーション"
  3442. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3443. msgctxt "@title:window"
  3444. msgid "Confirm Diameter Change"
  3445. msgstr "直径変更の確認"
  3446. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3447. msgctxt "@label (%1 is a number)"
  3448. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3449. msgstr "新しいフィラメントの直径は %1 mm に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?"
  3450. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3451. msgctxt "@label"
  3452. msgid "Display Name"
  3453. msgstr "ディスプレイ名"
  3454. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3455. msgctxt "@label"
  3456. msgid "Material Type"
  3457. msgstr "フィラメントタイプ"
  3458. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3459. msgctxt "@label"
  3460. msgid "Color"
  3461. msgstr "色"
  3462. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3463. msgctxt "@label"
  3464. msgid "Properties"
  3465. msgstr "プロパティ"
  3466. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3467. msgctxt "@label"
  3468. msgid "Density"
  3469. msgstr "密度"
  3470. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3471. msgctxt "@label"
  3472. msgid "Diameter"
  3473. msgstr "直径"
  3474. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3475. msgctxt "@label"
  3476. msgid "Filament Cost"
  3477. msgstr "フィラメントコスト"
  3478. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3479. msgctxt "@label"
  3480. msgid "Filament weight"
  3481. msgstr "フィラメントの重さ"
  3482. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3483. msgctxt "@label"
  3484. msgid "Filament length"
  3485. msgstr "フィラメントの長さ"
  3486. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3487. msgctxt "@label"
  3488. msgid "Cost per Meter"
  3489. msgstr "毎メーターコスト"
  3490. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3491. msgctxt "@label"
  3492. msgid "This material is linked to %1 and shares some of its properties."
  3493. msgstr "このフィラメントは %1にリンクすプロパティーを共有する。"
  3494. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3495. msgctxt "@label"
  3496. msgid "Unlink Material"
  3497. msgstr "フィラメントをリンクを外す"
  3498. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3499. msgctxt "@label"
  3500. msgid "Description"
  3501. msgstr "記述"
  3502. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3503. msgctxt "@label"
  3504. msgid "Adhesion Information"
  3505. msgstr "接着のインフォメーション"
  3506. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3507. msgctxt "@action:button"
  3508. msgid "Activate"
  3509. msgstr "アクティベート"
  3510. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3511. msgctxt "@action:button"
  3512. msgid "Create"
  3513. msgstr "作成する"
  3514. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3515. msgctxt "@action:button"
  3516. msgid "Duplicate"
  3517. msgstr "複製"
  3518. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3519. msgctxt "@action:button"
  3520. msgid "Import"
  3521. msgstr "取り込む"
  3522. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3523. msgctxt "@action:button"
  3524. msgid "Export"
  3525. msgstr "書き出す"
  3526. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3527. msgctxt "@action:label"
  3528. msgid "Printer"
  3529. msgstr "プリンター"
  3530. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3531. msgctxt "@title:window"
  3532. msgid "Confirm Remove"
  3533. msgstr "モデルを取り除きました"
  3534. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3535. msgctxt "@label (%1 is object name)"
  3536. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3537. msgstr "%1を取り外しますか?この作業はやり直しが効きません!"
  3538. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3539. msgctxt "@title:window"
  3540. msgid "Import Material"
  3541. msgstr "フィラメントを取り込む"
  3542. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3543. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3544. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3545. msgstr "<filename>%1</filename>フィラメントを取り込むことができない: <message>%2</message>"
  3546. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3547. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3548. msgid "Successfully imported material <filename>%1</filename>"
  3549. msgstr "フィラメント<filename>%1</filename>の取り込みに成功しました"
  3550. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3551. msgctxt "@title:window"
  3552. msgid "Export Material"
  3553. msgstr "フィラメントを書き出す"
  3554. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3555. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3556. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3557. msgstr "フィラメントの書き出しに失敗しました <filename>%1</filename>: <message>%2</message>"
  3558. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3559. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3560. msgid "Successfully exported material to <filename>%1</filename>"
  3561. msgstr "フィラメントの<filename>%1</filename>への書き出しが完了ました"
  3562. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
  3563. msgctxt "@title:tab"
  3564. msgid "Printers"
  3565. msgstr "プリンター"
  3566. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3567. msgctxt "@action:button"
  3568. msgid "Rename"
  3569. msgstr "名を変える"
  3570. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
  3571. msgctxt "@title:tab"
  3572. msgid "Profiles"
  3573. msgstr "プロファイル"
  3574. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3575. msgctxt "@label"
  3576. msgid "Create"
  3577. msgstr "作成する"
  3578. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3579. msgctxt "@label"
  3580. msgid "Duplicate"
  3581. msgstr "複製"
  3582. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3583. msgctxt "@title:window"
  3584. msgid "Create Profile"
  3585. msgstr "プロファイルを作る"
  3586. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3587. msgctxt "@info"
  3588. msgid "Please provide a name for this profile."
  3589. msgstr "このプロファイルの名前を指定してください。"
  3590. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3591. msgctxt "@title:window"
  3592. msgid "Duplicate Profile"
  3593. msgstr "プロファイルを複製する"
  3594. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3595. msgctxt "@title:window"
  3596. msgid "Rename Profile"
  3597. msgstr "プロファイル名を変える"
  3598. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3599. msgctxt "@title:window"
  3600. msgid "Import Profile"
  3601. msgstr "プロファイルを取り込む"
  3602. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3603. msgctxt "@title:window"
  3604. msgid "Export Profile"
  3605. msgstr "プロファイルを書き出す"
  3606. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3607. msgctxt "@label %1 is printer name"
  3608. msgid "Printer: %1"
  3609. msgstr "プリンター:%1"
  3610. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3611. msgctxt "@action:button"
  3612. msgid "Update profile with current settings/overrides"
  3613. msgstr "プロファイルを現在のセッティング"
  3614. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3615. msgctxt "@action:label"
  3616. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3617. msgstr "このプロファイルはプリンターによりデフォルトを使用、従いこのプロファイルはセッティング/書き換えが以下のリストにありません。"
  3618. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3619. msgctxt "@action:label"
  3620. msgid "Your current settings match the selected profile."
  3621. msgstr "設定は選択したプロファイルにマッチしています。"
  3622. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3623. msgctxt "@title:tab"
  3624. msgid "Global Settings"
  3625. msgstr "グローバル設定"
  3626. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3627. msgctxt "@title:tab"
  3628. msgid "Setting Visibility"
  3629. msgstr "視野設定"
  3630. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3631. msgctxt "@label:textbox"
  3632. msgid "Check all"
  3633. msgstr "全てを調べる"
  3634. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
  3635. msgctxt "@title:tab"
  3636. msgid "General"
  3637. msgstr "一般"
  3638. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3639. msgctxt "@label"
  3640. msgid "Interface"
  3641. msgstr "インターフェイス"
  3642. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3643. msgctxt "@label"
  3644. msgid "Currency:"
  3645. msgstr "通貨:"
  3646. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3647. msgctxt "@label"
  3648. msgid "Theme:"
  3649. msgstr "テーマ:"
  3650. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3651. msgctxt "@label"
  3652. msgid "You will need to restart the application for these changes to have effect."
  3653. msgstr "それらの変更を有効にするためにはアプリケーションを再起動しなけらばなりません。"
  3654. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3655. msgctxt "@info:tooltip"
  3656. msgid "Slice automatically when changing settings."
  3657. msgstr "セッティングを変更すると自動にスライスします。"
  3658. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3659. msgctxt "@option:check"
  3660. msgid "Slice automatically"
  3661. msgstr "自動的にスライスする"
  3662. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3663. msgctxt "@label"
  3664. msgid "Viewport behavior"
  3665. msgstr "ビューポイント機能"
  3666. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3667. msgctxt "@info:tooltip"
  3668. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3669. msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。"
  3670. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3671. msgctxt "@option:check"
  3672. msgid "Display overhang"
  3673. msgstr "ディスプレイオーバーハング"
  3674. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3675. msgctxt "@info:tooltip"
  3676. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3677. msgstr "モデルの欠けている部分または不要な表面部分を、警告マークを使用してハイライトします。ツールパスは意図したジオメトリの欠けている部分になることが多くあります。"
  3678. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3679. msgctxt "@option:check"
  3680. msgid "Display model errors"
  3681. msgstr "モデルエラーを表示"
  3682. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3683. msgctxt "@info:tooltip"
  3684. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3685. msgstr "モデルの選択時にモデルがカメラの中心に見えるようにカメラを移動する"
  3686. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3687. msgctxt "@action:button"
  3688. msgid "Center camera when item is selected"
  3689. msgstr "アイテムを選択するとカメラが中心にきます"
  3690. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3691. msgctxt "@info:tooltip"
  3692. msgid "Should the default zoom behavior of cura be inverted?"
  3693. msgstr "Curaのデフォルトのズーム機能は変更できるべきか?"
  3694. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3695. msgctxt "@action:button"
  3696. msgid "Invert the direction of camera zoom."
  3697. msgstr "カメラのズーム方向を反転する。"
  3698. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3699. msgctxt "@info:tooltip"
  3700. msgid "Should zooming move in the direction of the mouse?"
  3701. msgstr "ズームはマウスの方向に動くべきか?"
  3702. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3703. msgctxt "@info:tooltip"
  3704. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3705. msgstr "マウスに対するズームは、正射投影ではサポートされていません。"
  3706. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3707. msgctxt "@action:button"
  3708. msgid "Zoom toward mouse direction"
  3709. msgstr "マウスの方向にズームする"
  3710. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3711. msgctxt "@info:tooltip"
  3712. msgid "Should models on the platform be moved so that they no longer intersect?"
  3713. msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?"
  3714. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3715. msgctxt "@option:check"
  3716. msgid "Ensure models are kept apart"
  3717. msgstr "モデルの距離が離れているように確認する"
  3718. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3719. msgctxt "@info:tooltip"
  3720. msgid "Should models on the platform be moved down to touch the build plate?"
  3721. msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?"
  3722. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3723. msgctxt "@option:check"
  3724. msgid "Automatically drop models to the build plate"
  3725. msgstr "自動的にモデルをビルドプレートに落とす"
  3726. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3727. msgctxt "@info:tooltip"
  3728. msgid "Show caution message in g-code reader."
  3729. msgstr "G-codeリーダーに注意メッセージを表示します。"
  3730. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3731. msgctxt "@option:check"
  3732. msgid "Caution message in g-code reader"
  3733. msgstr "G-codeリーダーに注意メッセージ"
  3734. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3735. msgctxt "@info:tooltip"
  3736. msgid "Should layer be forced into compatibility mode?"
  3737. msgstr "レイヤーはコンパティビリティモードに強制されるべきか?"
  3738. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3739. msgctxt "@option:check"
  3740. msgid "Force layer view compatibility mode (restart required)"
  3741. msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)"
  3742. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3743. msgctxt "@info:tooltip"
  3744. msgid "Should Cura open at the location it was closed?"
  3745. msgstr "Curaを終了した場所で開くようにしますか?"
  3746. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3747. msgctxt "@option:check"
  3748. msgid "Restore window position on start"
  3749. msgstr "開始時にウィンドウの位置を復元"
  3750. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3751. msgctxt "@info:tooltip"
  3752. msgid "What type of camera rendering should be used?"
  3753. msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?"
  3754. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3755. msgctxt "@window:text"
  3756. msgid "Camera rendering:"
  3757. msgstr "カメラレンダリング:"
  3758. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3759. msgid "Perspective"
  3760. msgstr "パースペクティブ表示"
  3761. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3762. msgid "Orthographic"
  3763. msgstr "平行投影表示"
  3764. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3765. msgctxt "@label"
  3766. msgid "Opening and saving files"
  3767. msgstr "ファイルを開くまた保存"
  3768. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3769. msgctxt "@info:tooltip"
  3770. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3771. msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?"
  3772. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3773. msgctxt "@option:check"
  3774. msgid "Use a single instance of Cura"
  3775. msgstr "Curaの単一インスタンスを使用"
  3776. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3777. msgctxt "@info:tooltip"
  3778. msgid "Should models be scaled to the build volume if they are too large?"
  3779. msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?"
  3780. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3781. msgctxt "@option:check"
  3782. msgid "Scale large models"
  3783. msgstr "大きなモデルをスケールする"
  3784. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3785. msgctxt "@info:tooltip"
  3786. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3787. msgstr "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?"
  3788. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3789. msgctxt "@option:check"
  3790. msgid "Scale extremely small models"
  3791. msgstr "極端に小さなモデルをスケールアップする"
  3792. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3793. msgctxt "@info:tooltip"
  3794. msgid "Should models be selected after they are loaded?"
  3795. msgstr "モデルはロード後に選択しますか?"
  3796. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3797. msgctxt "@option:check"
  3798. msgid "Select models when loaded"
  3799. msgstr "ロード後にモデルを選択"
  3800. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3801. msgctxt "@info:tooltip"
  3802. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3803. msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?"
  3804. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3805. msgctxt "@option:check"
  3806. msgid "Add machine prefix to job name"
  3807. msgstr "プリンターの敬称をジョブネームに加える"
  3808. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3809. msgctxt "@info:tooltip"
  3810. msgid "Should a summary be shown when saving a project file?"
  3811. msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?"
  3812. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3813. msgctxt "@option:check"
  3814. msgid "Show summary dialog when saving project"
  3815. msgstr "プロジェクトを保存時にダイアログサマリーを表示する"
  3816. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3817. msgctxt "@info:tooltip"
  3818. msgid "Default behavior when opening a project file"
  3819. msgstr "プロジェクトファイルを開く際のデフォルト機能"
  3820. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3821. msgctxt "@window:text"
  3822. msgid "Default behavior when opening a project file: "
  3823. msgstr "プロジェクトファイル開く際のデフォルト機能: "
  3824. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3825. msgctxt "@option:openProject"
  3826. msgid "Always ask me this"
  3827. msgstr "毎回確認する"
  3828. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3829. msgctxt "@option:openProject"
  3830. msgid "Always open as a project"
  3831. msgstr "常にプロジェクトとして開く"
  3832. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3833. msgctxt "@option:openProject"
  3834. msgid "Always import models"
  3835. msgstr "常にモデルを取り込む"
  3836. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3837. msgctxt "@info:tooltip"
  3838. 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."
  3839. msgstr "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。"
  3840. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3841. msgctxt "@window:text"
  3842. msgid "Default behavior for changed setting values when switching to a different profile: "
  3843. msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: "
  3844. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3845. msgctxt "@option:discardOrKeep"
  3846. msgid "Always discard changed settings"
  3847. msgstr "常に変更した設定を廃棄する"
  3848. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3849. msgctxt "@option:discardOrKeep"
  3850. msgid "Always transfer changed settings to new profile"
  3851. msgstr "常に変更した設定を新しいプロファイルに送信する"
  3852. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
  3853. msgctxt "@label"
  3854. msgid "Privacy"
  3855. msgstr "プライバシー"
  3856. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
  3857. msgctxt "@info:tooltip"
  3858. msgid "Should Cura check for updates when the program is started?"
  3859. msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?"
  3860. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
  3861. msgctxt "@option:check"
  3862. msgid "Check for updates on start"
  3863. msgstr "スタート時にアップデートあるかどうかのチェック"
  3864. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
  3865. msgctxt "@info:tooltip"
  3866. 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."
  3867. msgstr "プリンターの不明なデータをUltimakerにおくりますか?メモ、モデル、IPアドレス、個人的な情報は送信されたり保存されたりはしません。"
  3868. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
  3869. msgctxt "@option:check"
  3870. msgid "Send (anonymous) print information"
  3871. msgstr "(不特定な) プリントインフォメーションを送信"
  3872. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
  3873. msgctxt "@action:button"
  3874. msgid "More information"
  3875. msgstr "詳細"
  3876. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
  3877. msgctxt "@label"
  3878. msgid "View type"
  3879. msgstr "タイプ表示"
  3880. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
  3881. msgctxt "@label:MonitorStatus"
  3882. msgid "Not connected to a printer"
  3883. msgstr "プリンターにつながっていません"
  3884. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
  3885. msgctxt "@label:MonitorStatus"
  3886. msgid "Printer does not accept commands"
  3887. msgstr "今プリンタはコマンドを処理できません"
  3888. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
  3889. msgctxt "@label:MonitorStatus"
  3890. msgid "In maintenance. Please check the printer"
  3891. msgstr "メンテナンス。プリンターをチェックしてください"
  3892. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
  3893. msgctxt "@label:MonitorStatus"
  3894. msgid "Lost connection with the printer"
  3895. msgstr "プリンターへの接続が切断されました"
  3896. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
  3897. msgctxt "@label:MonitorStatus"
  3898. msgid "Printing..."
  3899. msgstr "プリント中..."
  3900. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
  3901. msgctxt "@label:MonitorStatus"
  3902. msgid "Paused"
  3903. msgstr "一時停止しました"
  3904. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
  3905. msgctxt "@label:MonitorStatus"
  3906. msgid "Preparing..."
  3907. msgstr "準備中..."
  3908. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
  3909. msgctxt "@label:MonitorStatus"
  3910. msgid "Please remove the print"
  3911. msgstr "造形物を取り出してください"
  3912. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
  3913. msgctxt "@label"
  3914. msgid "Abort Print"
  3915. msgstr "プリント中止"
  3916. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
  3917. msgctxt "@label"
  3918. msgid "Are you sure you want to abort the print?"
  3919. msgstr "本当にプリントを中止してもいいですか?"
  3920. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
  3921. msgctxt "@label:textbox"
  3922. msgid "Search settings"
  3923. msgstr "検索設定"
  3924. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
  3925. msgctxt "@action:menu"
  3926. msgid "Copy value to all extruders"
  3927. msgstr "すべてのエクストルーダーの値をコピーする"
  3928. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
  3929. msgctxt "@action:menu"
  3930. msgid "Copy all changed values to all extruders"
  3931. msgstr "すべてのエクストルーダーに対して変更された値をコピーする"
  3932. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
  3933. msgctxt "@action:menu"
  3934. msgid "Hide this setting"
  3935. msgstr "この設定を非表示にする"
  3936. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
  3937. msgctxt "@action:menu"
  3938. msgid "Don't show this setting"
  3939. msgstr "この設定を表示しない"
  3940. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
  3941. msgctxt "@action:menu"
  3942. msgid "Keep this setting visible"
  3943. msgstr "常に見えるように設定する"
  3944. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
  3945. msgctxt "@label"
  3946. msgid ""
  3947. "Some hidden settings use values different from their normal calculated value.\n"
  3948. "\n"
  3949. "Click to make these settings visible."
  3950. msgstr ""
  3951. "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n"
  3952. "表示されるようにクリックしてください。"
  3953. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
  3954. msgctxt "@label"
  3955. msgid "This setting is not used because all the settings that it influences are overridden."
  3956. msgstr "影響を与えるすべての設定がオーバーライドされるため、この設定は使用されません。"
  3957. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
  3958. msgctxt "@label Header for list of settings."
  3959. msgid "Affects"
  3960. msgstr "影響"
  3961. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
  3962. msgctxt "@label Header for list of settings."
  3963. msgid "Affected By"
  3964. msgstr "次によって影響を受ける"
  3965. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
  3966. msgctxt "@label"
  3967. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3968. msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。"
  3969. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
  3970. msgctxt "@label"
  3971. msgid "This setting is resolved from conflicting extruder-specific values:"
  3972. msgstr "この設定はエクストルーダー固有の競合する値から取得します:"
  3973. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
  3974. msgctxt "@label"
  3975. msgid ""
  3976. "This setting has a value that is different from the profile.\n"
  3977. "\n"
  3978. "Click to restore the value of the profile."
  3979. msgstr ""
  3980. "この設定にプロファイルと異なった値があります。\n"
  3981. "プロファイルの値を戻すためにクリックしてください。"
  3982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
  3983. msgctxt "@label"
  3984. msgid ""
  3985. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3986. "\n"
  3987. "Click to restore the calculated value."
  3988. msgstr ""
  3989. "このセッティングは通常計算されます、今は絶対値に固定されています。\n"
  3990. "計算された値に変更するためにクリックを押してください。"
  3991. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
  3992. msgctxt "@info:tooltip"
  3993. msgid "3D View"
  3994. msgstr "3Dビュー"
  3995. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
  3996. msgctxt "@info:tooltip"
  3997. msgid "Front View"
  3998. msgstr "フロントビュー"
  3999. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
  4000. msgctxt "@info:tooltip"
  4001. msgid "Top View"
  4002. msgstr "トップビュー"
  4003. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
  4004. msgctxt "@info:tooltip"
  4005. msgid "Left View"
  4006. msgstr "左ビュー"
  4007. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
  4008. msgctxt "@info:tooltip"
  4009. msgid "Right View"
  4010. msgstr "右ビュー"
  4011. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4012. msgctxt "@label"
  4013. msgid "Extruder"
  4014. msgstr "エクストルーダー"
  4015. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4016. msgctxt "@tooltip"
  4017. 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."
  4018. msgstr "ホットエンドの目標温度。ホットエンドはこの温度に向けて上がったり下がったりします。これが0の場合、ホットエンドの加熱はオフになっています。"
  4019. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4020. msgctxt "@tooltip"
  4021. msgid "The current temperature of this hotend."
  4022. msgstr "このホットエンドの現在の温度です。"
  4023. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4024. msgctxt "@tooltip of temperature input"
  4025. msgid "The temperature to pre-heat the hotend to."
  4026. msgstr "ホットエンドをプリヒートする温度です。"
  4027. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4028. msgctxt "@button Cancel pre-heating"
  4029. msgid "Cancel"
  4030. msgstr "キャンセル"
  4031. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4032. msgctxt "@button"
  4033. msgid "Pre-heat"
  4034. msgstr "プレヒート"
  4035. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4036. msgctxt "@tooltip of pre-heat"
  4037. 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."
  4038. msgstr "プリント開始前にホットエンドを加熱します。加熱中もプリントの調整を行えます、またホットエンドが加熱するまでプリント開始を待つ必要もありません。"
  4039. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4040. msgctxt "@tooltip"
  4041. msgid "The colour of the material in this extruder."
  4042. msgstr "エクストルーダーのマテリアルの色。"
  4043. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4044. msgctxt "@tooltip"
  4045. msgid "The material in this extruder."
  4046. msgstr "エクストルーダー入ったフィラメント。"
  4047. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4048. msgctxt "@tooltip"
  4049. msgid "The nozzle inserted in this extruder."
  4050. msgstr "ノズルが入ったエクストルーダー。"
  4051. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4052. msgctxt "@label"
  4053. msgid "Build plate"
  4054. msgstr "ビルドプレート"
  4055. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4056. msgctxt "@tooltip"
  4057. 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."
  4058. msgstr "ヒーティッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。"
  4059. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4060. msgctxt "@tooltip"
  4061. msgid "The current temperature of the heated bed."
  4062. msgstr "現在のヒーティッドベッドの温度。"
  4063. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4064. msgctxt "@tooltip of temperature input"
  4065. msgid "The temperature to pre-heat the bed to."
  4066. msgstr "ベッドのプリヒート温度。"
  4067. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4068. msgctxt "@tooltip of pre-heat"
  4069. 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."
  4070. msgstr "プリント開始前にベッドを加熱します。加熱中もプリントの調整を行えます、またべットが加熱するまでプリント開始を待つ必要もありません。"
  4071. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4072. msgctxt "@label"
  4073. msgid "Printer control"
  4074. msgstr "プリンターコントロール"
  4075. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4076. msgctxt "@label"
  4077. msgid "Jog Position"
  4078. msgstr "ジョグの位置"
  4079. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4080. msgctxt "@label"
  4081. msgid "X/Y"
  4082. msgstr "X/Y"
  4083. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4084. msgctxt "@label"
  4085. msgid "Z"
  4086. msgstr "Z"
  4087. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4088. msgctxt "@label"
  4089. msgid "Jog Distance"
  4090. msgstr "ジョグの距離"
  4091. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4092. msgctxt "@label"
  4093. msgid "Send G-code"
  4094. msgstr "G-codeの送信"
  4095. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4096. msgctxt "@tooltip of G-code command input"
  4097. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4098. msgstr "カスタムG-codeコマンドを接続されているプリンターに送信します。「Enter」を押してコマンドを送信します。"
  4099. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4100. msgctxt "@info:status"
  4101. msgid "The printer is not connected."
  4102. msgstr "このプリンターはつながっていません。"
  4103. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
  4104. msgctxt "@label"
  4105. msgid "Is printed as support."
  4106. msgstr "サポートとしてプリントされます。"
  4107. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
  4108. msgctxt "@label"
  4109. msgid "Other models overlapping with this model are modified."
  4110. msgstr "このモデルに重なる他のモデルは修正されます。"
  4111. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
  4112. msgctxt "@label"
  4113. msgid "Infill overlapping with this model is modified."
  4114. msgstr "このモデルとのインフィル交差は修正されます。"
  4115. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
  4116. msgctxt "@label"
  4117. msgid "Overlaps with this model are not supported."
  4118. msgstr "このモデルとの重なりはサポートされません。"
  4119. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
  4120. msgctxt "@label %1 is the number of settings it overrides."
  4121. msgid "Overrides %1 setting."
  4122. msgid_plural "Overrides %1 settings."
  4123. msgstr[0] "%1個の設定を上書きします。"
  4124. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  4125. msgctxt "@action:button"
  4126. msgid "Marketplace"
  4127. msgstr "マーケットプレース"
  4128. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  4129. msgctxt "@title:menu menubar:toplevel"
  4130. msgid "&Edit"
  4131. msgstr "&編集"
  4132. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  4133. msgctxt "@title:menu menubar:toplevel"
  4134. msgid "E&xtensions"
  4135. msgstr "拡張子"
  4136. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  4137. msgctxt "@title:menu menubar:toplevel"
  4138. msgid "P&references"
  4139. msgstr "プレファレンス"
  4140. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  4141. msgctxt "@title:menu menubar:toplevel"
  4142. msgid "&Help"
  4143. msgstr "ヘルプ"
  4144. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  4145. msgctxt "@title:window"
  4146. msgid "New project"
  4147. msgstr "新しいプロジェクト"
  4148. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  4149. msgctxt "@info:question"
  4150. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4151. msgstr "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。"
  4152. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
  4153. msgctxt "@label"
  4154. msgid "This package will be installed after restarting."
  4155. msgstr "このパッケージは再起動後にインストールされます。"
  4156. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
  4157. msgctxt "@title:tab"
  4158. msgid "Settings"
  4159. msgstr "設定"
  4160. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
  4161. msgctxt "@title:window %1 is the application name"
  4162. msgid "Closing %1"
  4163. msgstr "%1を閉じています"
  4164. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
  4165. msgctxt "@label %1 is the application name"
  4166. msgid "Are you sure you want to exit %1?"
  4167. msgstr "%1を終了しますか?"
  4168. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
  4169. msgctxt "@window:title"
  4170. msgid "Install Package"
  4171. msgstr "パッケージをインストール"
  4172. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
  4173. msgctxt "@title:window"
  4174. msgid "Open File(s)"
  4175. msgstr "ファイルを開く(s)"
  4176. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
  4177. msgctxt "@text:window"
  4178. 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."
  4179. msgstr "選択したファイルの中に複数のG-codeが存在します。1つのG-codeのみ一度に開けます。G-codeファイルを開く場合は、1点のみ選んでください。"
  4180. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
  4181. msgctxt "@title:window"
  4182. msgid "Add Printer"
  4183. msgstr "プリンターを追加する"
  4184. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
  4185. msgctxt "@title:window"
  4186. msgid "What's New"
  4187. msgstr "新情報"
  4188. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4189. msgctxt "@status"
  4190. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4191. msgstr "クラウドプリンターがオフラインです。プリンターの電源が入っている状態で、インターネットに接続されているかどうかを確認してください。"
  4192. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4193. msgctxt "@status"
  4194. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4195. msgstr "このプリンターはお使いのアカウントにリンクされていません。Ultimaker Digital Factoryにアクセスして接続を確立してください。"
  4196. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4197. msgctxt "@status"
  4198. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4199. msgstr "クラウド接続は現在利用できません。サインインしてクラウドプリンターに接続してください。"
  4200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4201. msgctxt "@status"
  4202. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4203. msgstr "クラウド接続は現在利用できません。インターネット接続を確認してください。"
  4204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4205. msgctxt "@button"
  4206. msgid "Add printer"
  4207. msgstr "プリンターの追加"
  4208. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4209. msgctxt "@button"
  4210. msgid "Manage printers"
  4211. msgstr "プリンター管理"
  4212. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4213. msgctxt "@label"
  4214. msgid "Connected printers"
  4215. msgstr "キャンセルしたプリンター"
  4216. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4217. msgctxt "@label"
  4218. msgid "Preset printers"
  4219. msgstr "プリンターのプリセット"
  4220. # can’t enter japanese
  4221. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
  4222. msgctxt "@label %1 is filled in with the name of an extruder"
  4223. msgid "Print Selected Model with %1"
  4224. msgid_plural "Print Selected Models with %1"
  4225. msgstr[0] "選択したモデルを%1で印刷する"
  4226. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4227. msgctxt "@label"
  4228. msgid "Time estimation"
  4229. msgstr "時間予測"
  4230. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  4231. msgctxt "@label"
  4232. msgid "Material estimation"
  4233. msgstr "材料予測"
  4234. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  4235. msgctxt "@label m for meter"
  4236. msgid "%1m"
  4237. msgstr "%1m"
  4238. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  4239. msgctxt "@label g for grams"
  4240. msgid "%1g"
  4241. msgstr "%1g"
  4242. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  4243. msgctxt "@label:PrintjobStatus"
  4244. msgid "Slicing..."
  4245. msgstr "スライス中..."
  4246. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  4247. msgctxt "@label:PrintjobStatus"
  4248. msgid "Unable to slice"
  4249. msgstr "スライスできません"
  4250. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4251. msgctxt "@button"
  4252. msgid "Processing"
  4253. msgstr "処理"
  4254. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4255. msgctxt "@button"
  4256. msgid "Slice"
  4257. msgstr "スライス"
  4258. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  4259. msgctxt "@label"
  4260. msgid "Start the slicing process"
  4261. msgstr "スライス処理の開始"
  4262. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  4263. msgctxt "@button"
  4264. msgid "Cancel"
  4265. msgstr "キャンセル"
  4266. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4267. msgctxt "@label"
  4268. msgid "No time estimation available"
  4269. msgstr "時間予測がありません"
  4270. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4271. msgctxt "@label"
  4272. msgid "No cost estimation available"
  4273. msgstr "コスト予測がありません"
  4274. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4275. msgctxt "@button"
  4276. msgid "Preview"
  4277. msgstr "プレビュー"
  4278. #: RemovableDriveOutputDevice/plugin.json
  4279. msgctxt "description"
  4280. msgid "Provides removable drive hotplugging and writing support."
  4281. msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。"
  4282. #: RemovableDriveOutputDevice/plugin.json
  4283. msgctxt "name"
  4284. msgid "Removable Drive Output Device Plugin"
  4285. msgstr "取り外し可能なドライブアウトプットデバイスプラグイン"
  4286. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4287. msgctxt "description"
  4288. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4289. msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。"
  4290. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4291. msgctxt "name"
  4292. msgid "Version Upgrade 3.5 to 4.0"
  4293. msgstr "3.5 から 4.0 にバージョンアップグレート"
  4294. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4295. msgctxt "description"
  4296. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4297. msgstr "構成をCura 4.6.2からCura 4.7に更新します。"
  4298. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4299. msgctxt "name"
  4300. msgid "Version Upgrade 4.6.2 to 4.7"
  4301. msgstr "4.6.2から4.7へのバージョン更新"
  4302. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4303. msgctxt "description"
  4304. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4305. msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。"
  4306. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4307. msgctxt "name"
  4308. msgid "Version Upgrade 2.2 to 2.4"
  4309. msgstr "2.2 から2.4にバージョンアップグレート"
  4310. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4311. msgctxt "description"
  4312. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4313. msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。"
  4314. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4315. msgctxt "name"
  4316. msgid "Version Upgrade 4.2 to 4.3"
  4317. msgstr "4.2から4.3にバージョンをアップグレート"
  4318. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4319. msgctxt "description"
  4320. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4321. msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。"
  4322. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4323. msgctxt "name"
  4324. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4325. msgstr "4.6.0から4.6.2へのバージョン更新"
  4326. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4327. msgctxt "description"
  4328. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4329. msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。"
  4330. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4331. msgctxt "name"
  4332. msgid "Version Upgrade 3.0 to 3.1"
  4333. msgstr "3.0から3.1にバージョンアップグレート"
  4334. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4335. msgctxt "description"
  4336. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4337. msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。"
  4338. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4339. msgctxt "name"
  4340. msgid "Version Upgrade 4.0 to 4.1"
  4341. msgstr "4.0 から 4.1 にバージョンアップグレート"
  4342. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4343. msgctxt "description"
  4344. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4345. msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。"
  4346. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4347. msgctxt "name"
  4348. msgid "Version Upgrade 2.6 to 2.7"
  4349. msgstr "2.6から2.7にバージョンアップグレート"
  4350. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4351. msgctxt "description"
  4352. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4353. msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。"
  4354. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4355. msgctxt "name"
  4356. msgid "Version Upgrade 2.5 to 2.6"
  4357. msgstr "2.5から2.6にバージョンアップグレート"
  4358. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4359. msgctxt "description"
  4360. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4361. msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。"
  4362. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4363. msgctxt "name"
  4364. msgid "Version Upgrade 4.1 to 4.2"
  4365. msgstr "4.0 から 4.1 にバージョンアップグレート"
  4366. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4367. msgctxt "description"
  4368. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4369. msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。"
  4370. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4371. msgctxt "name"
  4372. msgid "Version Upgrade 2.1 to 2.2"
  4373. msgstr "2.1 から2.2にバージョンアップグレート"
  4374. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4375. msgctxt "description"
  4376. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4377. msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。"
  4378. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4379. msgctxt "name"
  4380. msgid "Version Upgrade 3.2 to 3.3"
  4381. msgstr "3.2から3.3にバージョンアップグレート"
  4382. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4383. msgctxt "description"
  4384. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4385. msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。"
  4386. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4387. msgctxt "name"
  4388. msgid "Version Upgrade 4.5 to 4.6"
  4389. msgstr "バージョン4.5から4.6へのアップグレード"
  4390. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4391. msgctxt "description"
  4392. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4393. msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。"
  4394. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4395. msgctxt "name"
  4396. msgid "Version Upgrade 4.4 to 4.5"
  4397. msgstr "4.4から4.5にバージョンアップグレート"
  4398. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4399. msgctxt "description"
  4400. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4401. msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。"
  4402. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4403. msgctxt "name"
  4404. msgid "Version Upgrade 4.7 to 4.8"
  4405. msgstr "バージョン4.7から4.8へのアップグレード"
  4406. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4407. msgctxt "description"
  4408. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4409. msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。"
  4410. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4411. msgctxt "name"
  4412. msgid "Version Upgrade 3.3 to 3.4"
  4413. msgstr "3.3から3.4にバージョンアップグレート"
  4414. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4415. msgctxt "description"
  4416. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4417. msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。"
  4418. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4419. msgctxt "name"
  4420. msgid "Version Upgrade 4.3 to 4.4"
  4421. msgstr "4.3から4.4にバージョンアップグレート"
  4422. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4423. msgctxt "description"
  4424. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4425. msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。"
  4426. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4427. msgctxt "name"
  4428. msgid "Version Upgrade 3.4 to 3.5"
  4429. msgstr "3.4 から 3.5 にバージョンアップグレート"
  4430. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4431. msgctxt "description"
  4432. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4433. msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。"
  4434. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4435. msgctxt "name"
  4436. msgid "Version Upgrade 2.7 to 3.0"
  4437. msgstr "2.7から3.0にバージョンアップグレート"
  4438. #: AMFReader/plugin.json
  4439. msgctxt "description"
  4440. msgid "Provides support for reading AMF files."
  4441. msgstr "AMFファイルの読込みをサポートしています。"
  4442. #: AMFReader/plugin.json
  4443. msgctxt "name"
  4444. msgid "AMF Reader"
  4445. msgstr "AMFリーダー"
  4446. #: GCodeProfileReader/plugin.json
  4447. msgctxt "description"
  4448. msgid "Provides support for importing profiles from g-code files."
  4449. msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。"
  4450. #: GCodeProfileReader/plugin.json
  4451. msgctxt "name"
  4452. msgid "G-code Profile Reader"
  4453. msgstr "G-codeプロファイルリーダー"
  4454. #: FirmwareUpdater/plugin.json
  4455. msgctxt "description"
  4456. msgid "Provides a machine actions for updating firmware."
  4457. msgstr "ファームウェアアップデートのためのマシン操作を提供します。"
  4458. #: FirmwareUpdater/plugin.json
  4459. msgctxt "name"
  4460. msgid "Firmware Updater"
  4461. msgstr "ファームウェアアップデーター"
  4462. #: X3DReader/plugin.json
  4463. msgctxt "description"
  4464. msgid "Provides support for reading X3D files."
  4465. msgstr "X3Dファイルを読むこむためのサポートを供給する。"
  4466. #: X3DReader/plugin.json
  4467. msgctxt "name"
  4468. msgid "X3D Reader"
  4469. msgstr "X3Dリーダー"
  4470. #: Toolbox/plugin.json
  4471. msgctxt "description"
  4472. msgid "Find, manage and install new Cura packages."
  4473. msgstr "新しいCuraパッケージを検索、管理、インストールします。"
  4474. #: Toolbox/plugin.json
  4475. msgctxt "name"
  4476. msgid "Toolbox"
  4477. msgstr "ツールボックス"
  4478. #: PerObjectSettingsTool/plugin.json
  4479. msgctxt "description"
  4480. msgid "Provides the Per Model Settings."
  4481. msgstr "各モデル設定を与える。"
  4482. #: PerObjectSettingsTool/plugin.json
  4483. msgctxt "name"
  4484. msgid "Per Model Settings Tool"
  4485. msgstr "各モデル設定ツール"
  4486. #: PostProcessingPlugin/plugin.json
  4487. msgctxt "description"
  4488. msgid "Extension that allows for user created scripts for post processing"
  4489. msgstr "後処理のためにユーザーが作成したスクリプト用拡張子"
  4490. #: PostProcessingPlugin/plugin.json
  4491. msgctxt "name"
  4492. msgid "Post Processing"
  4493. msgstr "後処理"
  4494. #: CuraEngineBackend/plugin.json
  4495. msgctxt "description"
  4496. msgid "Provides the link to the CuraEngine slicing backend."
  4497. msgstr "CuraEngineスライシングバックエンドにリンクを供給する。"
  4498. #: CuraEngineBackend/plugin.json
  4499. msgctxt "name"
  4500. msgid "CuraEngine Backend"
  4501. msgstr "Curaエンジンバックエンド"
  4502. #: USBPrinting/plugin.json
  4503. msgctxt "description"
  4504. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4505. msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。"
  4506. #: USBPrinting/plugin.json
  4507. msgctxt "name"
  4508. msgid "USB printing"
  4509. msgstr "USBプリンティング"
  4510. #: CuraProfileWriter/plugin.json
  4511. msgctxt "description"
  4512. msgid "Provides support for exporting Cura profiles."
  4513. msgstr "Curaプロファイルを書き出すためのサポートを供給する。"
  4514. #: CuraProfileWriter/plugin.json
  4515. msgctxt "name"
  4516. msgid "Cura Profile Writer"
  4517. msgstr "Curaプロファイルライター"
  4518. #: UM3NetworkPrinting/plugin.json
  4519. msgctxt "description"
  4520. msgid "Manages network connections to Ultimaker networked printers."
  4521. msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。"
  4522. #: UM3NetworkPrinting/plugin.json
  4523. msgctxt "name"
  4524. msgid "Ultimaker Network Connection"
  4525. msgstr "Ultimakerネットワーク接続"
  4526. #: UltimakerMachineActions/plugin.json
  4527. msgctxt "description"
  4528. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4529. msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)"
  4530. #: UltimakerMachineActions/plugin.json
  4531. msgctxt "name"
  4532. msgid "Ultimaker machine actions"
  4533. msgstr "Ultimkerプリンターのアクション"
  4534. #: 3MFReader/plugin.json
  4535. msgctxt "description"
  4536. msgid "Provides support for reading 3MF files."
  4537. msgstr "3MFファイルを読むこむためのサポートを供給する。"
  4538. #: 3MFReader/plugin.json
  4539. msgctxt "name"
  4540. msgid "3MF Reader"
  4541. msgstr "3MFリーダー"
  4542. #: GCodeGzWriter/plugin.json
  4543. msgctxt "description"
  4544. msgid "Writes g-code to a compressed archive."
  4545. msgstr "圧縮ファイルにG-codeを書き込みます。"
  4546. #: GCodeGzWriter/plugin.json
  4547. msgctxt "name"
  4548. msgid "Compressed G-code Writer"
  4549. msgstr "圧縮G-codeライター"
  4550. #: GCodeGzReader/plugin.json
  4551. msgctxt "description"
  4552. msgid "Reads g-code from a compressed archive."
  4553. msgstr "圧縮ファイルからG-codeを読み取ります。"
  4554. #: GCodeGzReader/plugin.json
  4555. msgctxt "name"
  4556. msgid "Compressed G-code Reader"
  4557. msgstr "圧縮G-codeリーダー"
  4558. #: ModelChecker/plugin.json
  4559. msgctxt "description"
  4560. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4561. msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。"
  4562. #: ModelChecker/plugin.json
  4563. msgctxt "name"
  4564. msgid "Model Checker"
  4565. msgstr "モデルチェッカー"
  4566. #: FirmwareUpdateChecker/plugin.json
  4567. msgctxt "description"
  4568. msgid "Checks for firmware updates."
  4569. msgstr "ファームウェアアップデートをチェックする。"
  4570. #: FirmwareUpdateChecker/plugin.json
  4571. msgctxt "name"
  4572. msgid "Firmware Update Checker"
  4573. msgstr "ファームウェアアップデートチェッカー"
  4574. #: GCodeReader/plugin.json
  4575. msgctxt "description"
  4576. msgid "Allows loading and displaying G-code files."
  4577. msgstr "G-codeファイルの読み込み、表示を許可する。"
  4578. #: GCodeReader/plugin.json
  4579. msgctxt "name"
  4580. msgid "G-code Reader"
  4581. msgstr "G-codeリーダー"
  4582. #: SupportEraser/plugin.json
  4583. msgctxt "description"
  4584. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4585. msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する"
  4586. #: SupportEraser/plugin.json
  4587. msgctxt "name"
  4588. msgid "Support Eraser"
  4589. msgstr "サポート消去機能"
  4590. #: TrimeshReader/plugin.json
  4591. msgctxt "description"
  4592. msgid "Provides support for reading model files."
  4593. msgstr "モデルファイルを読み込むためのサポートを供給します。"
  4594. #: TrimeshReader/plugin.json
  4595. msgctxt "name"
  4596. msgid "Trimesh Reader"
  4597. msgstr "Trimeshリーダー"
  4598. #: SentryLogger/plugin.json
  4599. msgctxt "description"
  4600. msgid "Logs certain events so that they can be used by the crash reporter"
  4601. msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します"
  4602. #: SentryLogger/plugin.json
  4603. msgctxt "name"
  4604. msgid "Sentry Logger"
  4605. msgstr "監視ロガー"
  4606. #: UFPReader/plugin.json
  4607. msgctxt "description"
  4608. msgid "Provides support for reading Ultimaker Format Packages."
  4609. msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。"
  4610. #: UFPReader/plugin.json
  4611. msgctxt "name"
  4612. msgid "UFP Reader"
  4613. msgstr "UFP リーダー"
  4614. #: LegacyProfileReader/plugin.json
  4615. msgctxt "description"
  4616. msgid "Provides support for importing profiles from legacy Cura versions."
  4617. msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。"
  4618. #: LegacyProfileReader/plugin.json
  4619. msgctxt "name"
  4620. msgid "Legacy Cura Profile Reader"
  4621. msgstr "レガシーCuraプロファイルリーダー"
  4622. #: PrepareStage/plugin.json
  4623. msgctxt "description"
  4624. msgid "Provides a prepare stage in Cura."
  4625. msgstr "Curaで準備ステージを提供します。"
  4626. #: PrepareStage/plugin.json
  4627. msgctxt "name"
  4628. msgid "Prepare Stage"
  4629. msgstr "ステージの準備"
  4630. #: MonitorStage/plugin.json
  4631. msgctxt "description"
  4632. msgid "Provides a monitor stage in Cura."
  4633. msgstr "Curaでモニターステージを提供します。"
  4634. #: MonitorStage/plugin.json
  4635. msgctxt "name"
  4636. msgid "Monitor Stage"
  4637. msgstr "モニターステージ"
  4638. #: XRayView/plugin.json
  4639. msgctxt "description"
  4640. msgid "Provides the X-Ray view."
  4641. msgstr "透視ビューイング。"
  4642. #: XRayView/plugin.json
  4643. msgctxt "name"
  4644. msgid "X-Ray View"
  4645. msgstr "透視ビュー"
  4646. #: 3MFWriter/plugin.json
  4647. msgctxt "description"
  4648. msgid "Provides support for writing 3MF files."
  4649. msgstr "3MFファイルを読むこむためのサポートを供給する。"
  4650. #: 3MFWriter/plugin.json
  4651. msgctxt "name"
  4652. msgid "3MF Writer"
  4653. msgstr "3MFリーダー"
  4654. #: SliceInfoPlugin/plugin.json
  4655. msgctxt "description"
  4656. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4657. msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。"
  4658. #: SliceInfoPlugin/plugin.json
  4659. msgctxt "name"
  4660. msgid "Slice info"
  4661. msgstr "スライスインフォメーション"
  4662. #: PreviewStage/plugin.json
  4663. msgctxt "description"
  4664. msgid "Provides a preview stage in Cura."
  4665. msgstr "Curaでプレビューステージを提供します。"
  4666. #: PreviewStage/plugin.json
  4667. msgctxt "name"
  4668. msgid "Preview Stage"
  4669. msgstr "プレビューステージ"
  4670. #: SimulationView/plugin.json
  4671. msgctxt "description"
  4672. msgid "Provides the Simulation view."
  4673. msgstr "シミュレーションビューを提供します。"
  4674. #: SimulationView/plugin.json
  4675. msgctxt "name"
  4676. msgid "Simulation View"
  4677. msgstr "シミュレーションビュー"
  4678. #: MachineSettingsAction/plugin.json
  4679. msgctxt "description"
  4680. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4681. msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)"
  4682. #: MachineSettingsAction/plugin.json
  4683. msgctxt "name"
  4684. msgid "Machine Settings Action"
  4685. msgstr "プリンターの設定アクション"
  4686. #: XmlMaterialProfile/plugin.json
  4687. msgctxt "description"
  4688. msgid "Provides capabilities to read and write XML-based material profiles."
  4689. msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。"
  4690. #: XmlMaterialProfile/plugin.json
  4691. msgctxt "name"
  4692. msgid "Material Profiles"
  4693. msgstr "フィラメントプロファイル"
  4694. #: SolidView/plugin.json
  4695. msgctxt "description"
  4696. msgid "Provides a normal solid mesh view."
  4697. msgstr "ノーマルなソリットメッシュビューを供給する。"
  4698. #: SolidView/plugin.json
  4699. msgctxt "name"
  4700. msgid "Solid View"
  4701. msgstr "ソリッドビュー"
  4702. #: CuraProfileReader/plugin.json
  4703. msgctxt "description"
  4704. msgid "Provides support for importing Cura profiles."
  4705. msgstr "Curaプロファイルを取り込むためのサポートを供給する。"
  4706. #: CuraProfileReader/plugin.json
  4707. msgctxt "name"
  4708. msgid "Cura Profile Reader"
  4709. msgstr "Curaプロファイルリーダー"
  4710. #: UFPWriter/plugin.json
  4711. msgctxt "description"
  4712. msgid "Provides support for writing Ultimaker Format Packages."
  4713. msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。"
  4714. #: UFPWriter/plugin.json
  4715. msgctxt "name"
  4716. msgid "UFP Writer"
  4717. msgstr "UFPライター"
  4718. #: GCodeWriter/plugin.json
  4719. msgctxt "description"
  4720. msgid "Writes g-code to a file."
  4721. msgstr "ファイルにG-codeを書き込みます。"
  4722. #: GCodeWriter/plugin.json
  4723. msgctxt "name"
  4724. msgid "G-code Writer"
  4725. msgstr "G-codeライター"
  4726. #: ImageReader/plugin.json
  4727. msgctxt "description"
  4728. msgid "Enables ability to generate printable geometry from 2D image files."
  4729. msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。"
  4730. #: ImageReader/plugin.json
  4731. msgctxt "name"
  4732. msgid "Image Reader"
  4733. msgstr "画像リーダー"
  4734. #: CuraDrive/plugin.json
  4735. msgctxt "description"
  4736. msgid "Backup and restore your configuration."
  4737. msgstr "構成をバックアップしてリストアします。"
  4738. #: CuraDrive/plugin.json
  4739. msgctxt "name"
  4740. msgid "Cura Backups"
  4741. msgstr "Cura バックアップ"
  4742. #~ msgctxt "@info:status"
  4743. #~ msgid "Global stack is missing."
  4744. #~ msgstr "グローバルスタックがありません。"
  4745. #~ msgctxt "@info:status"
  4746. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  4747. #~ msgstr "モデルはマニホールドではありません。ハイライトされたエリアは、欠けている表面または無関係な表面を示します。"
  4748. #~ msgctxt "@info:title"
  4749. #~ msgid "Model errors"
  4750. #~ msgstr "モデルエラー"
  4751. #~ msgctxt "@label:listbox"
  4752. #~ msgid "Layer thickness"
  4753. #~ msgstr "レイヤーの厚さ"
  4754. #~ msgctxt "@label"
  4755. #~ msgid "Your key to connected 3D printing"
  4756. #~ msgstr "3Dプリンティング活用の鍵"
  4757. #~ msgctxt "@text"
  4758. #~ msgid ""
  4759. #~ "- Customize your experience with more print profiles and plugins\n"
  4760. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4761. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4762. #~ msgstr ""
  4763. #~ "- より多くのプリントプロファイルとプラグインを使用して作業をカスタマイズする\n"
  4764. #~ "- 設定を同期させ、どこにでも読み込めるようにすることで柔軟性を保つ\n"
  4765. #~ "- Ultimakerプリンターのリモートワークフローを活用して効率を高める"
  4766. #~ msgctxt "@button"
  4767. #~ msgid "Create account"
  4768. #~ msgstr "アカウントを作成する"
  4769. # can’t enter japanese text
  4770. #~ msgctxt "@action:inmenu menubar:edit"
  4771. #~ msgid "Delete Selected Model"
  4772. #~ msgid_plural "Delete Selected Models"
  4773. #~ msgstr[0] "&選択したモデルを削除"
  4774. # can’t enter japanese text
  4775. #~ msgctxt "@action:inmenu menubar:edit"
  4776. #~ msgid "Center Selected Model"
  4777. #~ msgid_plural "Center Selected Models"
  4778. #~ msgstr[0] "選択したモデルを中央に移動"
  4779. # can’t edit japanese text
  4780. #~ msgctxt "@action:inmenu menubar:edit"
  4781. #~ msgid "Multiply Selected Model"
  4782. #~ msgid_plural "Multiply Selected Models"
  4783. #~ msgstr[0] "選択した複数のモデル"
  4784. #~ msgctxt "@button"
  4785. #~ msgid "Finish"
  4786. #~ msgstr "終わる"
  4787. #~ msgctxt "@label"
  4788. #~ msgid "Ultimaker Account"
  4789. #~ msgstr "Ultimakerアカウント"
  4790. #~ msgctxt "@text"
  4791. #~ msgid "Your key to connected 3D printing"
  4792. #~ msgstr "3Dプリンティング活用の鍵"
  4793. #~ msgctxt "@text"
  4794. #~ msgid "- Customize your experience with more print profiles and plugins"
  4795. #~ msgstr "- より多くの成果物プロファイルとプラグインを使用して作業をカスタマイズする"
  4796. #~ msgctxt "@text"
  4797. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4798. #~ msgstr "- 設定を同期させ、どこにでも読み込めるようにすることで柔軟性を保つ"
  4799. #~ msgctxt "@text"
  4800. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4801. #~ msgstr "- Ultimakerプリンターのリモートワークフローを活用して効率を高める"
  4802. #~ msgctxt "@text"
  4803. #~ msgid ""
  4804. #~ "Please follow these steps to set up\n"
  4805. #~ "Ultimaker Cura. This will only take a few moments."
  4806. #~ msgstr ""
  4807. #~ "以下の手順で\n"
  4808. #~ "Ultimaker Cura を設定してください。数秒で完了します。"
  4809. #~ msgctxt "@label"
  4810. #~ msgid "What's new in Ultimaker Cura"
  4811. #~ msgstr "Ultimaker Cura の新機能"
  4812. #~ msgctxt "@label ({} is object name)"
  4813. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4814. #~ msgstr "{}を取り除いてもよろしいですか?この操作は元に戻せません。"
  4815. #~ msgctxt "@info:status"
  4816. #~ msgid "The selected model was too small to load."
  4817. #~ msgstr "選択したモデルは読み込むのに小さすぎます。"
  4818. #~ msgctxt "@info:status"
  4819. #~ msgid "Successfully imported profile {0}"
  4820. #~ msgstr "プロファイル {0}の取り込み完了"
  4821. #~ msgctxt "@info:status"
  4822. #~ msgid "Could not find a quality type {0} for the current configuration."
  4823. #~ msgstr "進行中のプリント構成にあったクオリティータイプ{0}が見つかりませんでした。"
  4824. #~ msgctxt "info:status"
  4825. #~ msgid "Adding printer {} ({}) from your account"
  4826. #~ msgstr "アカウントからプリンター{}({})を追加しています"
  4827. #~ msgctxt "info:hidden list items"
  4828. #~ msgid "<li>... and {} others</li>"
  4829. #~ msgstr "<li>...および{}その他</li>"
  4830. #~ msgctxt "info:status"
  4831. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4832. #~ msgstr "Digital Factoryからプリンターが追加されました:<ul>{}</ul>"
  4833. #~ msgctxt "info:status"
  4834. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4835. #~ msgstr "<ul>{}</ul>接続を確立するには、<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>にアクセスしてください。"
  4836. #~ msgctxt "@label ({} is printer name)"
  4837. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  4838. #~ msgstr "次回のアカウントの同期までに{}は削除されます。<br>{}を完全に削除するには、<a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>にアクセスします。<br><br>{}を一時的に削除してもよろしいですか?"
  4839. #~ msgctxt "@label"
  4840. #~ msgid ""
  4841. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  4842. #~ "Are you sure you want to continue?"
  4843. #~ msgstr ""
  4844. #~ "Curaから{}台のプリンターを削除しようとしています。この操作は元に戻せません。\n"
  4845. #~ "続行してもよろしいですか?"
  4846. #~ msgctxt "@label"
  4847. #~ msgid ""
  4848. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  4849. #~ "Are you sure you want to continue?"
  4850. #~ msgstr ""
  4851. #~ "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n"
  4852. #~ "続行してもよろしいですか?"
  4853. #~ msgctxt "@action:ComboBox option"
  4854. #~ msgid "Update"
  4855. #~ msgstr "アップデート"
  4856. #~ msgctxt "@action:ComboBox option"
  4857. #~ msgid "Create new"
  4858. #~ msgstr "新しいものを作成する"
  4859. #~ msgctxt "@label"
  4860. #~ msgid "Shared Heater"
  4861. #~ msgstr "共有ヒーター"
  4862. #~ msgctxt "@info"
  4863. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4864. #~ msgstr "クラウドプリンタをモニタリングしている場合は、ウェブカムを利用できません。"
  4865. #~ msgctxt "@button"
  4866. #~ msgid "Ultimaker Digital Factory"
  4867. #~ msgstr "Ultimaker Digital Factory"
  4868. #~ msgctxt "@text:window, %1 is a profile name"
  4869. #~ msgid ""
  4870. #~ "You have customized some profile settings.\n"
  4871. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  4872. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  4873. #~ msgstr ""
  4874. #~ "一部のプロファイル設定がカスタマイズされています。\n"
  4875. #~ "これらの変更された設定をプロファイルの切り替え後も維持しますか?\n"
  4876. #~ "変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。"
  4877. #~ msgctxt "@label"
  4878. #~ msgid "Overrides %1 setting."
  4879. #~ msgid_plural "Overrides %1 settings."
  4880. #~ msgstr[0] "%1個の設定を上書きします。"
  4881. #~ msgctxt "@text"
  4882. #~ msgid "Please give your printer a name"
  4883. #~ msgstr "プリンター名を入力してください"
  4884. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4885. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4886. #~ msgstr "{machine_name} で利用可能な新しい機能があります。プリンターのファームウェアをアップデートしてください。"
  4887. #~ msgctxt "@action:button"
  4888. #~ msgid "Print via Cloud"
  4889. #~ msgstr "クラウドからプリントする"
  4890. #~ msgctxt "@properties:tooltip"
  4891. #~ msgid "Print via Cloud"
  4892. #~ msgstr "クラウドからプリントする"
  4893. #~ msgctxt "@info:status"
  4894. #~ msgid "Connected via Cloud"
  4895. #~ msgstr "クラウドを使って接続しました"
  4896. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4897. #~ msgid "Connect to Ultimaker Cloud"
  4898. #~ msgstr "Ultimaker Cloud に接続する"
  4899. #~ msgctxt "@label"
  4900. #~ msgid "You need to login first before you can rate"
  4901. #~ msgstr "評価する前にはログインが必要です"
  4902. #~ msgctxt "@label"
  4903. #~ msgid "You need to install the package before you can rate"
  4904. #~ msgstr "評価する前にはパッケージをインストールする必要があります"
  4905. #~ msgctxt "@label"
  4906. #~ msgid "ratings"
  4907. #~ msgstr "評価"
  4908. #~ msgctxt "@label"
  4909. #~ msgid "Featured"
  4910. #~ msgstr "特長"
  4911. #~ msgctxt "@label"
  4912. #~ msgid "Your rating"
  4913. #~ msgstr "ユーザー評価"
  4914. #~ msgctxt "@label"
  4915. #~ msgid "Author"
  4916. #~ msgstr "著者"
  4917. #~ msgctxt "@description"
  4918. #~ msgid "Get plugins and materials verified by Ultimaker"
  4919. #~ msgstr "Ultimakerによって検証されたプラグインや材料を入手する"
  4920. #~ msgctxt "@label The argument is a username."
  4921. #~ msgid "Hi %1"
  4922. #~ msgstr "高 %1"
  4923. #~ msgctxt "@button"
  4924. #~ msgid "Ultimaker account"
  4925. #~ msgstr "Ultimaker アカウント"
  4926. #~ msgctxt "@button"
  4927. #~ msgid "Sign out"
  4928. #~ msgstr "サインアウト"
  4929. #~ msgctxt "@label"
  4930. #~ msgid "Support library for analysis of complex networks"
  4931. #~ msgstr "複雑なネットワークを分析するためのライブラリーサポート"
  4932. #~ msgctxt "@Label"
  4933. #~ msgid "Python HTTP library"
  4934. #~ msgstr "Python HTTPライブラリー"
  4935. #~ msgctxt "@text:window"
  4936. #~ msgid ""
  4937. #~ "You have customized some profile settings.\n"
  4938. #~ "Would you like to keep or discard those settings?"
  4939. #~ msgstr "プロファイル設定をカスタマイズしました。この設定をキープしますか、キャンセルしますか?"
  4940. #~ msgctxt "@title:column"
  4941. #~ msgid "Default"
  4942. #~ msgstr "デフォルト"
  4943. #~ msgctxt "@title:column"
  4944. #~ msgid "Customized"
  4945. #~ msgstr "カスタマイズ"
  4946. #~ msgctxt "@action:button"
  4947. #~ msgid "Discard"
  4948. #~ msgstr "取り消す"
  4949. #~ msgctxt "@action:button"
  4950. #~ msgid "Keep"
  4951. #~ msgstr "キープする"
  4952. #~ msgctxt "@action:button"
  4953. #~ msgid "Create New Profile"
  4954. #~ msgstr "新しいプロファイルを作る"
  4955. #~ msgctxt "@title:menu menubar:file"
  4956. #~ msgid "&Save..."
  4957. #~ msgstr "&保存..."
  4958. #~ msgctxt "@text"
  4959. #~ msgid "Place enter your printer's IP address."
  4960. #~ msgstr "プリンターの IP アドレスを入力してください。"
  4961. #~ msgctxt "@button"
  4962. #~ msgid "Create an account"
  4963. #~ msgstr "アカウント作成"
  4964. #~ msgctxt "@info:generic"
  4965. #~ msgid ""
  4966. #~ "\n"
  4967. #~ "Do you want to sync material and software packages with your account?"
  4968. #~ msgstr ""
  4969. #~ "\n"
  4970. #~ "材料パッケージとソフトウェアパッケージをアカウントと同期しますか?"
  4971. #~ msgctxt "@info:generic"
  4972. #~ msgid ""
  4973. #~ "\n"
  4974. #~ "Syncing..."
  4975. #~ msgstr ""
  4976. #~ "\n"
  4977. #~ "同期中..."
  4978. #~ msgctxt "@info:status"
  4979. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  4980. #~ msgstr "ビルドモジュールに合うモデルがない、または無効なエクストルーダーに割り当てられているため、スライスできるものがありません。モデルが合うように拡張または回転させるか、エクストルーダーを有効にしてください。"
  4981. #~ msgctxt "@info:backup_status"
  4982. #~ msgid "There was an error listing your backups."
  4983. #~ msgstr "バックアップのリスト作成時にエラーが発生しました。"
  4984. #~ msgctxt "@title:groupbox"
  4985. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  4986. #~ msgstr "ユーザー説明 (注: 開発者はユーザーの言語を理解できない場合があるため、可能な限り英語を使用してください)"
  4987. #~ msgctxt "@title:window"
  4988. #~ msgid "Closing Cura"
  4989. #~ msgstr "Cura を閉じる"
  4990. #~ msgctxt "@label"
  4991. #~ msgid "Are you sure you want to exit Cura?"
  4992. #~ msgstr "Cura を終了しますか?"
  4993. #~ msgctxt "@label"
  4994. #~ msgid "Language:"
  4995. #~ msgstr "言語:"
  4996. #~ msgctxt "@label"
  4997. #~ msgid "Ultimaker Cloud"
  4998. #~ msgstr "Ultimaker Cloud"
  4999. #~ msgctxt "@text"
  5000. #~ msgid "The next generation 3D printing workflow"
  5001. #~ msgstr "次世代 3D 印刷ワークフロー"
  5002. #~ msgctxt "@text"
  5003. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5004. #~ msgstr "- 印刷ジョブをローカルネットワークの外から Ultimaker プリンターに送信します"
  5005. #~ msgctxt "@text"
  5006. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5007. #~ msgstr "- Ultimaker Cura の設定をクラウドに保管してどこらでも利用でいるようにします"
  5008. #~ msgctxt "@text"
  5009. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5010. #~ msgstr "- 有名ブランドから材料プロファイルへの例外アクセスを取得します"
  5011. #~ msgctxt "@label"
  5012. #~ msgid "The value is resolved from per-extruder values "
  5013. #~ msgstr "この値は各エクストルーダーの値から取得します "
  5014. #~ msgctxt "@label"
  5015. #~ msgid "The next generation 3D printing workflow"
  5016. #~ msgstr "次世代 3D 印刷ワークフロー"
  5017. #~ msgctxt "@text"
  5018. #~ msgid ""
  5019. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5020. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5021. #~ "- Get exclusive access to print profiles from leading brands"
  5022. #~ msgstr ""
  5023. #~ "印刷ジョブをローカルネットワークの外の Ultimaker プリンタに送信します\n"
  5024. #~ "- Ultimaker Cura の設定をクラウドに保管してどこからでも利用できるようにします\n"
  5025. #~ "- 有名ブランドから印刷プロファイルへの例外アクセスを取得します"
  5026. #~ msgctxt "@title:window"
  5027. #~ msgid "About "
  5028. #~ msgstr "バージョン情報 "
  5029. #~ msgctxt "@info:button"
  5030. #~ msgid "Quit Cura"
  5031. #~ msgstr "Curaを終了する"
  5032. #~ msgctxt "@action:checkbox"
  5033. #~ msgid "Infill only"
  5034. #~ msgstr "インフィルのみ"
  5035. #~ msgctxt "@info:tooltip"
  5036. #~ msgid "Change active post-processing scripts"
  5037. #~ msgstr "処理したスクリプトを変更する"
  5038. #~ msgctxt "@label:listbox"
  5039. #~ msgid "Feedrate"
  5040. #~ msgstr "送り速度"
  5041. #~ msgctxt "name"
  5042. #~ msgid "Machine Settings action"
  5043. #~ msgstr "プリンターの設定アクション"
  5044. #~ msgctxt "@info:title"
  5045. #~ msgid "New cloud printers found"
  5046. #~ msgstr "新しいクラウドプリンターが見つかりました"
  5047. #~ msgctxt "@info:message"
  5048. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5049. #~ msgstr "アカウントに接続された新しいプリンターが見つかりました。検出されたプリンターのリストで確認できます。"
  5050. #~ msgctxt "@info:status"
  5051. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5052. #~ msgstr "Curaはワイヤープリンティング設定中には正確にレイヤーを表示しません"
  5053. #~ msgctxt "@label"
  5054. #~ msgid "Pre-sliced file {0}"
  5055. #~ msgstr "スライス前ファイル {0}"
  5056. #~ msgctxt "@label"
  5057. #~ msgid ""
  5058. #~ "This plugin contains a license.\n"
  5059. #~ "You need to accept this license to install this plugin.\n"
  5060. #~ "Do you agree with the terms below?"
  5061. #~ msgstr ""
  5062. #~ "このプラグインにはライセンスが含まれています。\n"
  5063. #~ "このプラグインをインストールするにはこのライセンスに同意する必要があります。\n"
  5064. #~ "下の利用規約に同意しますか?"
  5065. #~ msgctxt "@action:button"
  5066. #~ msgid "Accept"
  5067. #~ msgstr "承認する"
  5068. #~ msgctxt "@action:button"
  5069. #~ msgid "Decline"
  5070. #~ msgstr "拒否する"
  5071. #~ msgctxt "@action:inmenu"
  5072. #~ msgid "Show All Settings"
  5073. #~ msgstr "すべての設定を表示"
  5074. #~ msgctxt "@title:window"
  5075. #~ msgid "Ultimaker Cura"
  5076. #~ msgstr "Ultimaker Cura"
  5077. #~ msgctxt "@title:window"
  5078. #~ msgid "About Cura"
  5079. #~ msgstr "Curaについて"
  5080. #~ msgctxt "@item:inmenu"
  5081. #~ msgid "Flatten active settings"
  5082. #~ msgstr "アクティブ設定を平らにします"
  5083. #~ msgctxt "@info:status"
  5084. #~ msgid "Profile has been flattened & activated."
  5085. #~ msgstr "プロファイルが平らになり、アクティベートされました。"
  5086. #~ msgctxt "X3g Writer Plugin Description"
  5087. #~ msgid "Writes X3g to files"
  5088. #~ msgstr "X3Gをファイルに書き込む"
  5089. #~ msgctxt "X3g Writer File Description"
  5090. #~ msgid "X3g File"
  5091. #~ msgstr "X3Gファイル"
  5092. #~ msgctxt "X3G Writer File Description"
  5093. #~ msgid "X3G File"
  5094. #~ msgstr "X3Gファイル"
  5095. #~ msgctxt "@item:inlistbox"
  5096. #~ msgid "Open Compressed Triangle Mesh"
  5097. #~ msgstr "圧縮トライアングルメッシュを開く"
  5098. #~ msgctxt "@item:inmenu"
  5099. #~ msgid "Profile Assistant"
  5100. #~ msgstr "プロファイルアシスタント"
  5101. #~ msgctxt "@item:inlistbox"
  5102. #~ msgid "Profile Assistant"
  5103. #~ msgstr "プロファイルアシスタント"
  5104. #~ msgctxt "@action:button"
  5105. #~ msgid "Retry"
  5106. #~ msgstr "再試行"
  5107. #~ msgctxt "@label:table_header"
  5108. #~ msgid "Print Core"
  5109. #~ msgstr "プリントコア"
  5110. #~ msgctxt "@label"
  5111. #~ msgid "Don't support overlap with other models"
  5112. #~ msgstr "他のモデルとのオーバーラップは未サポート"
  5113. #~ msgctxt "@label"
  5114. #~ msgid "Modify settings for overlap with other models"
  5115. #~ msgstr "他のモデルとのオーバーラップの設定を変更"
  5116. #~ msgctxt "@label"
  5117. #~ msgid "Modify settings for infill of other models"
  5118. #~ msgstr "他のモデルのインフィルの設定を変更"
  5119. #~ msgctxt "@action:ComboBox option"
  5120. #~ msgid "Update existing"
  5121. #~ msgstr "現在のプロファイルに読み込む"
  5122. #~ msgctxt "@label"
  5123. #~ msgid "Not supported"
  5124. #~ msgstr "サポート対象外"
  5125. #~ msgctxt "@action:button"
  5126. #~ msgid "Previous"
  5127. #~ msgstr "前"
  5128. #~ msgctxt "@label"
  5129. #~ msgid "Tip"
  5130. #~ msgstr "ヒント"
  5131. #~ msgctxt "@label"
  5132. #~ msgid "Print experiment"
  5133. #~ msgstr "試し印刷"
  5134. #~ msgctxt "@label"
  5135. #~ msgid "Checklist"
  5136. #~ msgstr "チェックリスト"
  5137. #~ msgctxt "@label"
  5138. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5139. #~ msgstr "このUltimaker2に施したアップグレードを選択してください。"
  5140. #~ msgctxt "@label"
  5141. #~ msgid "Olsson Block"
  5142. #~ msgstr "Olsson Block"
  5143. #~ msgctxt "@window:text"
  5144. #~ msgid "Camera rendering: "
  5145. #~ msgstr "カメラレンダリング: "
  5146. #~ msgctxt "@info:tooltip"
  5147. #~ msgid "Use multi build plate functionality"
  5148. #~ msgstr "マルチビルドプレート機能を使用"
  5149. #~ msgctxt "@option:check"
  5150. #~ msgid "Use multi build plate functionality (restart required)"
  5151. #~ msgstr "マルチビルドプレート機能を使用 (再起動が必要)"
  5152. #~ msgctxt "@label"
  5153. #~ msgid "Default profiles"
  5154. #~ msgstr "デフォルトプロファイル"
  5155. #~ msgctxt "@label:textbox"
  5156. #~ msgid "search settings"
  5157. #~ msgstr "検索設定"
  5158. #~ msgctxt "@label"
  5159. #~ msgid "Layer Height"
  5160. #~ msgstr "レイヤーの高さ"
  5161. #~ msgctxt "@tooltip"
  5162. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5163. #~ msgstr "この品質プロファイルは、現在の材料およびノズル構成では使用できません。この品質プロファイルを有効にするには、これらを変更してください。"
  5164. #~ msgctxt "@tooltip"
  5165. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5166. #~ msgstr "カスタムプロファイルが有効になっています。品質スライダーを有効にするには、カスタムタブでデフォルトの品質プロファイルを選択してください"
  5167. #~ msgctxt "@title:menu"
  5168. #~ msgid "&Build plate"
  5169. #~ msgstr "ビルドプレート (&B)"
  5170. #~ msgctxt "@title:settings"
  5171. #~ msgid "&Profile"
  5172. #~ msgstr "&プロファイル"
  5173. #~ msgctxt "@action:label"
  5174. #~ msgid "Build plate"
  5175. #~ msgstr "ビルドプレート"
  5176. #~ msgctxt "description"
  5177. #~ msgid "Dump the contents of all settings to a HTML file."
  5178. #~ msgstr "HTMLファイルに設定内容を放置する。"
  5179. #~ msgctxt "name"
  5180. #~ msgid "God Mode"
  5181. #~ msgstr "Godモード"
  5182. #~ msgctxt "description"
  5183. #~ msgid "Create a flattened quality changes profile."
  5184. #~ msgstr "プロファイルを変更するフラットエンドクオリティーを作成する。"
  5185. #~ msgctxt "name"
  5186. #~ msgid "Profile Flattener"
  5187. #~ msgstr "プロファイルフラッター"
  5188. #~ msgctxt "description"
  5189. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5190. #~ msgstr "材料メーカーがドロップインUIを使用して新しい材料と品質のプロファイルを作成できるようにします。"
  5191. #~ msgctxt "name"
  5192. #~ msgid "Print Profile Assistant"
  5193. #~ msgstr "プリントプロファイルアシスタント"
  5194. #~ msgctxt "@info:status"
  5195. #~ msgid "Connected over the network."
  5196. #~ msgstr "ネットワーク上で接続。"
  5197. #~ msgctxt "@info:status"
  5198. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5199. #~ msgstr "ネットワーク上で接続。プリンタへのリクエストを承認してください。"
  5200. #~ msgctxt "@info:status"
  5201. #~ msgid "Connected over the network. No access to control the printer."
  5202. #~ msgstr "ネットワーク上で接続。プリントを操作するアクセス権がありません。"
  5203. #~ msgctxt "@info:status"
  5204. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5205. #~ msgstr "プリンターへのアクセスが申請されました。プリンタへのリクエストを承認してください"
  5206. #~ msgctxt "@info:title"
  5207. #~ msgid "Authentication status"
  5208. #~ msgstr "認証ステータス"
  5209. #~ msgctxt "@info:title"
  5210. #~ msgid "Authentication Status"
  5211. #~ msgstr "認証ステータス"
  5212. #~ msgctxt "@info:tooltip"
  5213. #~ msgid "Re-send the access request"
  5214. #~ msgstr "アクセスリクエストを再送信"
  5215. #~ msgctxt "@info:status"
  5216. #~ msgid "Access to the printer accepted"
  5217. #~ msgstr "プリンターへのアクセスが承認されました"
  5218. #~ msgctxt "@info:status"
  5219. #~ msgid "No access to print with this printer. Unable to send print job."
  5220. #~ msgstr "このプリンターへのアクセスが許可されていないため、プリントジョブの送信ができませんでした。"
  5221. #~ msgctxt "@action:button"
  5222. #~ msgid "Request Access"
  5223. #~ msgstr "アクセスのリクエスト"
  5224. #~ msgctxt "@info:tooltip"
  5225. #~ msgid "Send access request to the printer"
  5226. #~ msgstr "アクセスのリクエスト送信"
  5227. #~ msgctxt "@label"
  5228. #~ msgid "Unable to start a new print job."
  5229. #~ msgstr "新しいプリントジョブを開始できません。"
  5230. #~ msgctxt "@label"
  5231. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5232. #~ msgstr "Ultimakerの設定に問題があるため、印刷が開始できません。問題を解消してからやり直してください。"
  5233. #~ msgctxt "@window:title"
  5234. #~ msgid "Mismatched configuration"
  5235. #~ msgstr "ミスマッチの構成"
  5236. #~ msgctxt "@label"
  5237. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5238. #~ msgstr "選択された構成にてプリントを開始してもいいですか?"
  5239. #~ msgctxt "@label"
  5240. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5241. #~ msgstr "プリンターの設定、キャリブレーションとCuraの構成にミスマッチがあります。プリンターに設置されたプリントコア及びフィラメントを元にCuraをスライスすることで最良の印刷結果を出すことができます。"
  5242. #~ msgctxt "@info:status"
  5243. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5244. #~ msgstr "新しいデータの送信 (temporarily) をブロックします、前のプリントジョブが送信中です。"
  5245. #~ msgctxt "@info:status"
  5246. #~ msgid "Sending data to printer"
  5247. #~ msgstr "プリンターにプリントデータを送信中"
  5248. #~ msgctxt "@info:title"
  5249. #~ msgid "Sending Data"
  5250. #~ msgstr "プリントデータを送信中"
  5251. #~ msgctxt "@info:status"
  5252. #~ msgid "No Printcore loaded in slot {slot_number}"
  5253. #~ msgstr "プリントコアがスロット{slot_number}に入っていません。"
  5254. #~ msgctxt "@info:status"
  5255. #~ msgid "No material loaded in slot {slot_number}"
  5256. #~ msgstr "材料がスロット{slot_number}に入っていません。"
  5257. #~ msgctxt "@label"
  5258. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5259. #~ msgstr "エクストルーダー {extruder_id} に対して異なるプリントコア(Cura: {cura_printcore_name}, プリンター: {remote_printcore_name})が選択されています。"
  5260. #~ msgctxt "@label"
  5261. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5262. #~ msgstr "異なるフィラメントが入っています(Cura:{0}, プリンター{1})エクストルーダー{2}"
  5263. #~ msgctxt "@window:title"
  5264. #~ msgid "Sync with your printer"
  5265. #~ msgstr "プリンターと同期する"
  5266. #~ msgctxt "@label"
  5267. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5268. #~ msgstr "Curaで設定しているプリンタ構成を使用されますか?"
  5269. #~ msgctxt "@label"
  5270. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5271. #~ msgstr "プリンターのプリントコア及びフィラメントが現在のプロジェクトと異なります。最善な印刷結果のために、プリンタに装着しているプリントコア、フィラメントに合わせてスライスして頂くことをお勧めします。"
  5272. #~ msgctxt "@action:button"
  5273. #~ msgid "View in Monitor"
  5274. #~ msgstr "モニター表示"
  5275. #~ msgctxt "@info:status"
  5276. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5277. #~ msgstr "プリンター’{printer_name}’が’{job_name}’のプリントを終了しました。"
  5278. #~ msgctxt "@info:status"
  5279. #~ msgid "The print job '{job_name}' was finished."
  5280. #~ msgstr "プリントジョブ '{job_name}' は完了しました。"
  5281. #~ msgctxt "@info:status"
  5282. #~ msgid "Print finished"
  5283. #~ msgstr "プリント終了"
  5284. #~ msgctxt "@label:material"
  5285. #~ msgid "Empty"
  5286. #~ msgstr "空にする"
  5287. #~ msgctxt "@label:material"
  5288. #~ msgid "Unknown"
  5289. #~ msgstr "不明"
  5290. #~ msgctxt "@info:title"
  5291. #~ msgid "Cloud error"
  5292. #~ msgstr "クラウドエラー"
  5293. #~ msgctxt "@info:status"
  5294. #~ msgid "Could not export print job."
  5295. #~ msgstr "印刷ジョブをエクスポートできませんでした。"
  5296. #~ msgctxt "@info:description"
  5297. #~ msgid "There was an error connecting to the cloud."
  5298. #~ msgstr "クラウドの接続時にエラーが発生しました。"
  5299. #~ msgctxt "@info:status"
  5300. #~ msgid "Uploading via Ultimaker Cloud"
  5301. #~ msgstr "Ultimaker Cloud 経由でアップロード中"
  5302. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5303. #~ msgid "Connect to Ultimaker Cloud"
  5304. #~ msgstr "Ultimaker Cloud に接続する"
  5305. #~ msgctxt "@action"
  5306. #~ msgid "Don't ask me again for this printer."
  5307. #~ msgstr "このプリンタでは次回から質問しない。"
  5308. #~ msgctxt "@info:status"
  5309. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5310. #~ msgstr "Ultimaker のアカウントを使用して、どこからでも印刷ジョブを送信およびモニターできるようになりました。"
  5311. #~ msgctxt "@info:status"
  5312. #~ msgid "Connected!"
  5313. #~ msgstr "接続しました!"
  5314. #~ msgctxt "@action"
  5315. #~ msgid "Review your connection"
  5316. #~ msgstr "接続の確認"
  5317. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5318. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5319. #~ msgstr "プロファイル<filename>{0}</filename>の中で定義されているマシン({1})は、現在お使いのマシン({2})と一致しないため、インポートできませんでした。"
  5320. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5321. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5322. #~ msgstr "<filename>{0}</filename>からプロファイルの取り込に失敗しました:"
  5323. #~ msgctxt "@window:title"
  5324. #~ msgid "Existing Connection"
  5325. #~ msgstr "既存の接続"
  5326. #~ msgctxt "@message:text"
  5327. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5328. #~ msgstr "このプリンター/グループはすでにCuraに追加されています。別のプリンター/グループを選択しえください。"
  5329. #~ msgctxt "@label"
  5330. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5331. #~ msgstr "ネットワーク内のプリンターのIPアドレスまたはホストネームを入力してください。"
  5332. #~ msgctxt "@info:tooltip"
  5333. #~ msgid "Connect to a printer"
  5334. #~ msgstr "プリンターにつなぐ"
  5335. #~ msgctxt "@title"
  5336. #~ msgid "Cura Settings Guide"
  5337. #~ msgstr "Cura 設定ガイド"
  5338. #~ msgctxt "@info:tooltip"
  5339. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5340. #~ msgstr "平行投影表示では、マウスの方向にズームする操作がサポートされていません。"
  5341. #~ msgid "Orthogonal"
  5342. #~ msgstr "平行投影表示"
  5343. #~ msgctxt "description"
  5344. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5345. #~ msgstr "Ultimaker3のプリンターのネットワーク接続を管理する。"
  5346. #~ msgctxt "name"
  5347. #~ msgid "UM3 Network Connection"
  5348. #~ msgstr "UM3ネットワークコネクション"
  5349. #~ msgctxt "description"
  5350. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5351. #~ msgstr "画像とアニメーションで、Cura の設定に関する追加情報と説明を提供します。"
  5352. #~ msgctxt "name"
  5353. #~ msgid "Settings Guide"
  5354. #~ msgstr "設定ガイド"
  5355. #~ msgctxt "@item:inmenu"
  5356. #~ msgid "Cura Settings Guide"
  5357. #~ msgstr "Cura 設定ガイド"
  5358. #~ msgctxt "@info:generic"
  5359. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5360. #~ msgstr "現在利用可能なエクストルーダー [%s] に合わせて設定が変更されました。"
  5361. #~ msgctxt "@title:groupbox"
  5362. #~ msgid "User description"
  5363. #~ msgstr "ユーザー詳細"
  5364. #~ msgctxt "@info"
  5365. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5366. #~ msgstr "クラウドプリンタをモニタリングしている場合は、これらのオプションは利用できません。"
  5367. #~ msgctxt "@label link to connect manager"
  5368. #~ msgid "Go to Cura Connect"
  5369. #~ msgstr "Cura Connectに移動する"
  5370. #~ msgctxt "@info"
  5371. #~ msgid "All jobs are printed."
  5372. #~ msgstr "すべてのジョブが印刷されます。"
  5373. #~ msgctxt "@label link to connect manager"
  5374. #~ msgid "View print history"
  5375. #~ msgstr "印刷履歴の表示"
  5376. #~ msgctxt "@label"
  5377. #~ msgid ""
  5378. #~ "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.\n"
  5379. #~ "\n"
  5380. #~ "Select your printer from the list below:"
  5381. #~ msgstr ""
  5382. #~ "ネットワーク接続にて直接プリントするためには、必ずケーブルまたはWifiネットワークにて繋がっていることを確認してください。Curaをプリンターに接続していない場合でも、USBメモリを使って直接プリンターにg-codeファイルをトランスファーできます。\n"
  5383. #~ "\n"
  5384. #~ "下のリストからプリンターを選択してください:"
  5385. #~ msgctxt "@info"
  5386. #~ msgid ""
  5387. #~ "Please make sure your printer has a connection:\n"
  5388. #~ "- Check if the printer is turned on.\n"
  5389. #~ "- Check if the printer is connected to the network."
  5390. #~ msgstr ""
  5391. #~ "プリンタが接続されていること確認してください:\n"
  5392. #~ "- プリンタの電源が入っていることを確認してください。\n"
  5393. #~ "- プリンタがネットワークに接続されているか確認してください。"
  5394. #~ msgctxt "@option:check"
  5395. #~ msgid "See only current build plate"
  5396. #~ msgstr "現在のビルドプレートのみを表示"
  5397. #~ msgctxt "@action:button"
  5398. #~ msgid "Arrange to all build plates"
  5399. #~ msgstr "すべてのビルドプレートに配置"
  5400. #~ msgctxt "@action:button"
  5401. #~ msgid "Arrange current build plate"
  5402. #~ msgstr "現在のビルドプレートを配置"
  5403. #~ msgctxt "description"
  5404. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5405. #~ msgstr "結果スライスをX3Gファイルとして保存して、このフォーマット(Malyan、Makerbot、およびその他のSailfishベースのプリンター)を読むプリンターをサポートできるようにします。"
  5406. #~ msgctxt "name"
  5407. #~ msgid "X3GWriter"
  5408. #~ msgstr "X3GWriter"
  5409. #~ msgctxt "description"
  5410. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5411. #~ msgstr "プリンターの動きをデバッグするためのツールパスとして SVG ファイルを読み込みます。"
  5412. #~ msgctxt "name"
  5413. #~ msgid "SVG Toolpath Reader"
  5414. #~ msgstr "SVG ツールパスリーダー"
  5415. #~ msgctxt "@item:inmenu"
  5416. #~ msgid "Changelog"
  5417. #~ msgstr "Changelog"
  5418. #~ msgctxt "@item:inmenu"
  5419. #~ msgid "Show Changelog"
  5420. #~ msgstr "Changelogの表示"
  5421. #~ msgctxt "@info:status"
  5422. #~ msgid "Sending data to remote cluster"
  5423. #~ msgstr "リモートクラスタにデータ送信中"
  5424. #~ msgctxt "@info:status"
  5425. #~ msgid "Connect to Ultimaker Cloud"
  5426. #~ msgstr "Ultimaker Cloud に接続する"
  5427. #~ msgctxt "@info"
  5428. #~ msgid "Cura collects anonymized usage statistics."
  5429. #~ msgstr "Curaは、匿名化した利用統計を収集します。"
  5430. #~ msgctxt "@info:title"
  5431. #~ msgid "Collecting Data"
  5432. #~ msgstr "データを収集中"
  5433. #~ msgctxt "@action:button"
  5434. #~ msgid "More info"
  5435. #~ msgstr "詳細"
  5436. #~ msgctxt "@action:tooltip"
  5437. #~ msgid "See more information on what data Cura sends."
  5438. #~ msgstr "Curaが送信するデータについて詳しくご覧ください。"
  5439. #~ msgctxt "@action:button"
  5440. #~ msgid "Allow"
  5441. #~ msgstr "許可"
  5442. #~ msgctxt "@action:tooltip"
  5443. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5444. #~ msgstr "Curaが匿名化した利用統計を送信することを許可し、Curaの将来の改善を優先的に行うことに貢献します。プレファレンスと設定の一部、Curaのバージョン、スライスしているモデルのハッシュが送信されます。"
  5445. #~ msgctxt "@item:inmenu"
  5446. #~ msgid "Evaluation"
  5447. #~ msgstr "評価"
  5448. #~ msgctxt "@info:title"
  5449. #~ msgid "Network enabled printers"
  5450. #~ msgstr "ネットワーク対応プリンター"
  5451. #~ msgctxt "@info:title"
  5452. #~ msgid "Local printers"
  5453. #~ msgstr "ローカルプリンター"
  5454. #~ msgctxt "@info:backup_failed"
  5455. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5456. #~ msgstr "現行バージョンと一致しないCuraバックアップをリストアしようとしました。"
  5457. #~ msgctxt "@title"
  5458. #~ msgid "Machine Settings"
  5459. #~ msgstr "プリンターの設定"
  5460. #~ msgctxt "@label"
  5461. #~ msgid "Printer Settings"
  5462. #~ msgstr "プリンターの設定"
  5463. #~ msgctxt "@option:check"
  5464. #~ msgid "Origin at center"
  5465. #~ msgstr "センターを出します"
  5466. #~ msgctxt "@option:check"
  5467. #~ msgid "Heated bed"
  5468. #~ msgstr "ヒーテッドドベッド"
  5469. #~ msgctxt "@label"
  5470. #~ msgid "Printhead Settings"
  5471. #~ msgstr "プリントヘッド設定"
  5472. #~ msgctxt "@tooltip"
  5473. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5474. #~ msgstr "プリントヘッド左側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。"
  5475. #~ msgctxt "@tooltip"
  5476. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5477. #~ msgstr "プリントヘッド前部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。"
  5478. #~ msgctxt "@tooltip"
  5479. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5480. #~ msgstr "プリントヘッド右側からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。"
  5481. #~ msgctxt "@tooltip"
  5482. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5483. #~ msgstr "プリントヘッド後部からノズルの中心までの距離。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。"
  5484. #~ msgctxt "@label"
  5485. #~ msgid "Gantry height"
  5486. #~ msgstr "ガントリーの高さ"
  5487. #~ msgctxt "@tooltip"
  5488. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5489. #~ msgstr "(X 軸及びY軸)ノズルの先端とガントリーシステムの高さに相違があります。印刷時に前の造形物とプリントヘッドとの衝突を避けるために “1プリントづつ”印刷を使用。"
  5490. #~ msgctxt "@label"
  5491. #~ msgid "Start G-code"
  5492. #~ msgstr "G-Codeの開始"
  5493. #~ msgctxt "@tooltip"
  5494. #~ msgid "G-code commands to be executed at the very start."
  5495. #~ msgstr "G-codeコマンドが最初に実行されるようにします。"
  5496. #~ msgctxt "@label"
  5497. #~ msgid "End G-code"
  5498. #~ msgstr "G-codeの終了"
  5499. #~ msgctxt "@tooltip"
  5500. #~ msgid "G-code commands to be executed at the very end."
  5501. #~ msgstr "G-codeコマンドが最後に実行されるようにします。"
  5502. #~ msgctxt "@label"
  5503. #~ msgid "Nozzle Settings"
  5504. #~ msgstr "ノズル設定"
  5505. #~ msgctxt "@tooltip"
  5506. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5507. #~ msgstr "プリンターに対応したフィラメントの直径。正確な直径はフィラメント及びまたはプロファイルに変動します。"
  5508. #~ msgctxt "@label"
  5509. #~ msgid "Extruder Start G-code"
  5510. #~ msgstr "エクストルーダーがG-Codeを開始する"
  5511. #~ msgctxt "@label"
  5512. #~ msgid "Extruder End G-code"
  5513. #~ msgstr "エクストルーダーがG-Codeを終了する"
  5514. #~ msgctxt "@label"
  5515. #~ msgid "Changelog"
  5516. #~ msgstr "Changelogの表示"
  5517. #~ msgctxt "@title:window"
  5518. #~ msgid "User Agreement"
  5519. #~ msgstr "ユーザー用使用許諾契約"
  5520. #~ msgctxt "@alabel"
  5521. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5522. #~ msgstr "ネットワーク内のプリンターのIPアドレスまたはホストネームを入力してください。"
  5523. #~ msgctxt "@info"
  5524. #~ msgid "Please select a network connected printer to monitor."
  5525. #~ msgstr "モニターするプリンタが接続されているネットワークを選択してください。"
  5526. #~ msgctxt "@info"
  5527. #~ msgid "Please connect your Ultimaker printer to your local network."
  5528. #~ msgstr "Ultimaker プリンタをローカルネットワークに接続してください。"
  5529. #~ msgctxt "@text:window"
  5530. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5531. #~ msgstr "Curaは印刷の品質とユーザー体験を向上させるために匿名のデータをUltimakerに送信します。以下は送信される全テータの例です。"
  5532. #~ msgctxt "@text:window"
  5533. #~ msgid "I don't want to send this data"
  5534. #~ msgstr "このデータは送信しない"
  5535. #~ msgctxt "@text:window"
  5536. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5537. #~ msgstr "Ultimakerへのデータ送信を許可し、Curaの改善を手助けする"
  5538. #~ msgctxt "@label"
  5539. #~ msgid "No print selected"
  5540. #~ msgstr "プリンタが選択されていません"
  5541. #~ msgctxt "@info:tooltip"
  5542. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5543. #~ msgstr "デフォルトで、白ピクセルはメッシュの高いポイントを表し、黒ピクセルはメッシュの低いポイントを表します。このオプションをリバースするために変更し、黒ピクセルがメッシュの高いポイントを表し、白ピクセルがメッシュの低いポイントを表すようにする。"
  5544. #~ msgctxt "@title"
  5545. #~ msgid "Select Printer Upgrades"
  5546. #~ msgstr "プリンターアップグレードを選択する"
  5547. #~ msgctxt "@label"
  5548. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5549. #~ msgstr "サポートに使うエクストルーダーを選択してください。モデルの垂れや中空プリントを避けるためにモデルの下にサポート構造を生成します。"
  5550. #~ msgctxt "@tooltip"
  5551. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5552. #~ msgstr "この品質プロファイルは現在の材料およびノズル構成では使用できません。この品質プロファイルを使用できるように変更してください"
  5553. #~ msgctxt "@label shown when we load a Gcode file"
  5554. #~ msgid "Print setup disabled. G code file can not be modified."
  5555. #~ msgstr "印刷の設定を無効にしました。G コードファイルは変更できません。"
  5556. #~ msgctxt "@label"
  5557. #~ msgid "See the material compatibility chart"
  5558. #~ msgstr "材料の適合性チャートをご覧ください"
  5559. #~ msgctxt "@label"
  5560. #~ msgid "View types"
  5561. #~ msgstr "タイプ表示"
  5562. #~ msgctxt "@label"
  5563. #~ msgid "Hi "
  5564. #~ msgstr "こんにちわ "
  5565. #~ msgctxt "@text"
  5566. #~ msgid ""
  5567. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5568. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5569. #~ "- Get exclusive access to material profiles from leading brands"
  5570. #~ msgstr ""
  5571. #~ "- 印刷ジョブをローカルネットワークの外の Ultimaker プリンタに送信します\n"
  5572. #~ "- Ultimaker Cura の設定をクラウドに保管してどこからでも利用できるようにします\n"
  5573. #~ "- 有名ブランドから材料プロファイルへの例外アクセスを取得します"
  5574. #~ msgctxt "@label:PrintjobStatus"
  5575. #~ msgid "Unable to Slice"
  5576. #~ msgstr "スライスできません"
  5577. #~ msgctxt "@label"
  5578. #~ msgid "Time specification"
  5579. #~ msgstr "時間仕様"
  5580. #~ msgctxt "@label"
  5581. #~ msgid "Material specification"
  5582. #~ msgstr "材料仕様"
  5583. #~ msgctxt "@title:tab"
  5584. #~ msgid "Add a printer to Cura"
  5585. #~ msgstr "プリンターを Cura に追加"
  5586. #~ msgctxt "@title:tab"
  5587. #~ msgid ""
  5588. #~ "Select the printer you want to use from the list below.\n"
  5589. #~ "\n"
  5590. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5591. #~ msgstr ""
  5592. #~ "下のリストから使用するプリンターを選択します。\n"
  5593. #~ "\n"
  5594. #~ "プリンターがリストにない場合は、「カスタム」カテゴリの「カスタムFFFプリンター」を使用して、次のダイアログでプリンターに合う設定に調整します。"
  5595. #~ msgctxt "@label"
  5596. #~ msgid "Printer Name"
  5597. #~ msgstr "プリンター名"
  5598. #~ msgctxt "@action:button"
  5599. #~ msgid "Add Printer"
  5600. #~ msgstr "プリンターについて"
  5601. #~ msgid "Modify G-Code"
  5602. #~ msgstr "G-codeを修正"
  5603. #~ msgctxt "@info:status"
  5604. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5605. #~ msgstr "モデルのデータがビルトボリュームに入っていないためスライスできるものがありません。スケールやローテーションにて合うように設定してください。"
  5606. #~ msgctxt "@info:status"
  5607. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5608. #~ msgstr "選択されたフィラメントはプリンターとそのプリント構成に適応しておりません。"
  5609. #~ msgctxt "@info:title"
  5610. #~ msgid "Incompatible Material"
  5611. #~ msgstr "不適合フィラメント"
  5612. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5613. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5614. #~ msgstr "<filename>{0}</filename>: <message>{1}</message>からプロファイルを取り込むことに失敗しました"
  5615. #~ msgctxt "@title"
  5616. #~ msgid "Toolbox"
  5617. #~ msgstr "ツールボックス"
  5618. #~ msgctxt "@label"
  5619. #~ msgid "Not available"
  5620. #~ msgstr "利用できません"
  5621. #~ msgctxt "@label"
  5622. #~ msgid "Unreachable"
  5623. #~ msgstr "到達不能"
  5624. #~ msgctxt "@label"
  5625. #~ msgid "Available"
  5626. #~ msgstr "利用可能"
  5627. #~ msgctxt "@label:status"
  5628. #~ msgid "Preparing"
  5629. #~ msgstr "準備中"
  5630. #~ msgctxt "@label:status"
  5631. #~ msgid "Pausing"
  5632. #~ msgstr "一時停止中"
  5633. #~ msgctxt "@label:status"
  5634. #~ msgid "Resuming"
  5635. #~ msgstr "再開"
  5636. #~ msgctxt "@label"
  5637. #~ msgid "Waiting for: Unavailable printer"
  5638. #~ msgstr "待ち時間: 利用できないプリンター"
  5639. #~ msgctxt "@label"
  5640. #~ msgid "Waiting for: First available"
  5641. #~ msgstr "待ち時間: 次の空き"
  5642. #~ msgctxt "@label"
  5643. #~ msgid "Waiting for: "
  5644. #~ msgstr "待ち時間: "
  5645. #~ msgctxt "@label"
  5646. #~ msgid "Configuration change"
  5647. #~ msgstr "構成の変更"
  5648. #~ msgctxt "@label"
  5649. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5650. #~ msgstr "割り当てられたプリンター %1 には以下の構成変更が必要です。"
  5651. #~ msgctxt "@label"
  5652. #~ msgid "Override"
  5653. #~ msgstr "上書き"
  5654. #~ msgctxt "@label"
  5655. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  5656. #~ msgstr "互換性のない構成で印刷ジョブを開始すると3Dプリンターを損傷することがあります。構成と印刷 %1 を上書きしますか?"
  5657. #~ msgctxt "@window:title"
  5658. #~ msgid "Override configuration configuration and start print"
  5659. #~ msgstr "構成を上書きしてから印刷を開始"
  5660. #~ msgctxt "@label link to connect manager"
  5661. #~ msgid "Manage queue"
  5662. #~ msgstr "キュー管理"
  5663. #~ msgctxt "@label"
  5664. #~ msgid "Printing"
  5665. #~ msgstr "プリント中"
  5666. #~ msgctxt "@label link to connect manager"
  5667. #~ msgid "Manage printers"
  5668. #~ msgstr "プリンター管理"
  5669. #~ msgctxt "@action:button"
  5670. #~ msgid "Activate Configuration"
  5671. #~ msgstr "プリント構成をアクティベートする"
  5672. #~ msgctxt "@info:tooltip"
  5673. #~ msgid "Load the configuration of the printer into Cura"
  5674. #~ msgstr "プリンターの構成をCuraに取り入れる"
  5675. #~ msgctxt "@label"
  5676. #~ msgid "Show Travels"
  5677. #~ msgstr "移動を表示する"
  5678. #~ msgctxt "@label"
  5679. #~ msgid "Show Helpers"
  5680. #~ msgstr "ヘルプを表示する"
  5681. #~ msgctxt "@label"
  5682. #~ msgid "Show Shell"
  5683. #~ msgstr "シェルを表示する"
  5684. #~ msgctxt "@label"
  5685. #~ msgid "Show Infill"
  5686. #~ msgstr "インフィルを表示する"
  5687. #~ msgctxt "@text:window"
  5688. #~ msgid "I don't want to send these data"
  5689. #~ msgstr "そのようなデータは送信しない"
  5690. #~ msgctxt "@text:window"
  5691. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5692. #~ msgstr "Ultimakerへのデータ送信を許可し、Curaの改善を手助けする"
  5693. #~ msgctxt "@label"
  5694. #~ msgid "Printer type:"
  5695. #~ msgstr "プリンタータイプ:"
  5696. #~ msgctxt "@label"
  5697. #~ msgid "Connection:"
  5698. #~ msgstr "コネクション:"
  5699. #~ msgctxt "@label"
  5700. #~ msgid "State:"
  5701. #~ msgstr "ステート:"
  5702. #~ msgctxt "@label:MonitorStatus"
  5703. #~ msgid "Waiting for a printjob"
  5704. #~ msgstr "プリントジョブの待機中"
  5705. #~ msgctxt "@label:MonitorStatus"
  5706. #~ msgid "Waiting for someone to clear the build plate"
  5707. #~ msgstr "ビルドプレートの掃除を待つ"
  5708. #~ msgctxt "@label:MonitorStatus"
  5709. #~ msgid "Aborting print..."
  5710. #~ msgstr "プリントを停止します…"
  5711. #~ msgctxt "@label"
  5712. #~ msgid "Protected profiles"
  5713. #~ msgstr "保護されたプロファイル"
  5714. #~ msgctxt "@label"
  5715. #~ msgid "Printer Name:"
  5716. #~ msgstr "プリンター名:"
  5717. #~ msgctxt "@label"
  5718. #~ msgid "Profile:"
  5719. #~ msgstr "プロファイル:"
  5720. #~ msgctxt "@label:textbox"
  5721. #~ msgid "Search..."
  5722. #~ msgstr "検索…"
  5723. #~ msgctxt "@action:inmenu"
  5724. #~ msgid "Collapse All"
  5725. #~ msgstr "すべて折りたたむ"
  5726. #~ msgctxt "@action:inmenu"
  5727. #~ msgid "Expand All"
  5728. #~ msgstr "すべて展開する"
  5729. #~ msgctxt "@label:header configurations"
  5730. #~ msgid "Available configurations"
  5731. #~ msgstr "利用可能な構成"
  5732. #~ msgctxt "@label:extruder label"
  5733. #~ msgid "Extruder"
  5734. #~ msgstr "エクストルーダー"
  5735. #~ msgctxt "@label:extruder label"
  5736. #~ msgid "Yes"
  5737. #~ msgstr "はい"
  5738. #~ msgctxt "@label:extruder label"
  5739. #~ msgid "No"
  5740. #~ msgstr "いいえ"
  5741. #~ msgctxt "@label:listbox"
  5742. #~ msgid "Print Setup"
  5743. #~ msgstr "プリントセットアップ"
  5744. #~ msgctxt "@label:listbox"
  5745. #~ msgid ""
  5746. #~ "Print Setup disabled\n"
  5747. #~ "G-code files cannot be modified"
  5748. #~ msgstr ""
  5749. #~ "プリントセットアップが無効\n"
  5750. #~ "G-codeファイルを修正することができません"
  5751. #~ msgctxt "@label Hours and minutes"
  5752. #~ msgid "00h 00min"
  5753. #~ msgstr "00時間 00分"
  5754. #~ msgctxt "@tooltip"
  5755. #~ msgid "Time specification"
  5756. #~ msgstr "時間仕様"
  5757. #~ msgctxt "@label"
  5758. #~ msgid "Cost specification"
  5759. #~ msgstr "コスト仕様"
  5760. #~ msgctxt "@label"
  5761. #~ msgid "Total:"
  5762. #~ msgstr "合計:"
  5763. #~ msgctxt "@tooltip"
  5764. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5765. #~ msgstr "<b>おすすめプリントセットアップ</b><br/><br/>選択されたプリンターにておすすめの設定、フィラメント、質にてプリントしてください。"
  5766. #~ msgctxt "@tooltip"
  5767. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5768. #~ msgstr "<b>カスタムプリントセットアップ</b><br/><br/>スライス処理のきめ細かなコントロールにてプリントする。"
  5769. #~ msgctxt "@action:inmenu menubar:help"
  5770. #~ msgid "Show Engine &Log..."
  5771. #~ msgstr "エンジン&ログを表示する…"
  5772. #~ msgctxt "@action:menu"
  5773. #~ msgid "Browse packages..."
  5774. #~ msgstr "パッケージを見る…"
  5775. #~ msgctxt "@action:inmenu menubar:view"
  5776. #~ msgid "Expand/Collapse Sidebar"
  5777. #~ msgstr "サイドバーを展開する/たたむ"
  5778. #~ msgctxt "@label:PrintjobStatus"
  5779. #~ msgid "Please load a 3D model"
  5780. #~ msgstr "3Dモデルをロードしてください"
  5781. #~ msgctxt "@label:PrintjobStatus"
  5782. #~ msgid "Ready to slice"
  5783. #~ msgstr "スライスの準備ができました"
  5784. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5785. #~ msgid "Ready to %1"
  5786. #~ msgstr "%1の準備完了"
  5787. #~ msgctxt "@label:PrintjobStatus"
  5788. #~ msgid "Slicing unavailable"
  5789. #~ msgstr "スライスが利用不可能"
  5790. #~ msgctxt "@info:tooltip"
  5791. #~ msgid "Slice current printjob"
  5792. #~ msgstr "現在のプリントジョブをスライスします"
  5793. #~ msgctxt "@info:tooltip"
  5794. #~ msgid "Cancel slicing process"
  5795. #~ msgstr "スライスプロセスをキャンセルします"
  5796. #~ msgctxt "@label:Printjob"
  5797. #~ msgid "Prepare"
  5798. #~ msgstr "準備する"
  5799. #~ msgctxt "@label:Printjob"
  5800. #~ msgid "Cancel"
  5801. #~ msgstr "キャンセル"
  5802. #~ msgctxt "@info:tooltip"
  5803. #~ msgid "Select the active output device"
  5804. #~ msgstr "アクティブなアウトプットデバイスを選択する"
  5805. #~ msgctxt "@title:menu"
  5806. #~ msgid "&View"
  5807. #~ msgstr "&ビュー"
  5808. #~ msgctxt "@title:menu"
  5809. #~ msgid "&Settings"
  5810. #~ msgstr "&設定"
  5811. #~ msgctxt "@title:menu menubar:toplevel"
  5812. #~ msgid "&Toolbox"
  5813. #~ msgstr "&ツールボックス"
  5814. #~ msgctxt "@action:button"
  5815. #~ msgid "Open File"
  5816. #~ msgstr "ファイルを開く"
  5817. #~ msgctxt "@tooltip"
  5818. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5819. #~ msgstr "この品質プロファイルは現在の材料およびノズル構成では使用できません。この品質プロファイルを使用できるように変更してください"
  5820. #~ msgctxt "@label"
  5821. #~ msgid "Print Speed"
  5822. #~ msgstr "プリントスピード"
  5823. #~ msgctxt "@label"
  5824. #~ msgid "Slower"
  5825. #~ msgstr "ゆっくり"
  5826. #~ msgctxt "@label"
  5827. #~ msgid "Faster"
  5828. #~ msgstr "早く"
  5829. #~ msgctxt "@label"
  5830. #~ msgid "Enable gradual"
  5831. #~ msgstr "グラデュアルを有効にする"
  5832. #~ msgctxt "@label"
  5833. #~ msgid "Generate Support"
  5834. #~ msgstr "サポートを生成します"
  5835. #~ msgctxt "@label"
  5836. #~ msgid "Build Plate Adhesion"
  5837. #~ msgstr "ビルドプレートの接着"
  5838. #~ msgctxt "@label"
  5839. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5840. #~ msgstr "プリントにヘルプが必要ですか?<br> <a href='%1'>Ultimakerトラブルシューティングガイド</a>を読んでください"
  5841. #~ msgctxt "@title:window"
  5842. #~ msgid "Engine Log"
  5843. #~ msgstr "エンジンログ"
  5844. #~ msgctxt "@label"
  5845. #~ msgid "Printer type"
  5846. #~ msgstr "プリンタータイプ"
  5847. #~ msgctxt "@label"
  5848. #~ msgid "Use glue with this material combination"
  5849. #~ msgstr "この材料の組み合わせで接着する"
  5850. #~ msgctxt "@label"
  5851. #~ msgid "Check compatibility"
  5852. #~ msgstr "互換性の確認"
  5853. #~ msgctxt "@tooltip"
  5854. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5855. #~ msgstr "Ultimaker.comにてマテリアルのコンパティビリティを調べるためにクリック。"
  5856. #~ msgctxt "description"
  5857. #~ msgid "Shows changes since latest checked version."
  5858. #~ msgstr "最新の更新バージョンの変更点を表示する。"
  5859. #~ msgctxt "name"
  5860. #~ msgid "Changelog"
  5861. #~ msgstr "Changelog"
  5862. #~ msgctxt "description"
  5863. #~ msgid "Create a flattend quality changes profile."
  5864. #~ msgstr "プロファイルを変更するフラットエンドクオリティーを作成する。"
  5865. #~ msgctxt "name"
  5866. #~ msgid "Profile flatener"
  5867. #~ msgstr "プロファイルフラットナー"
  5868. #~ msgctxt "description"
  5869. #~ msgid "Ask the user once if he/she agrees with our license."
  5870. #~ msgstr "ライセンスに同意するかどうかユーザーに1回だけ確認する。"
  5871. #~ msgctxt "name"
  5872. #~ msgid "UserAgreement"
  5873. #~ msgstr "UserAgreement"
  5874. #~ msgctxt "@warning:status"
  5875. #~ msgid "Please generate G-code before saving."
  5876. #~ msgstr "保存する前に G-code を生成してください。"
  5877. #~ msgctxt "@action"
  5878. #~ msgid "Upgrade Firmware"
  5879. #~ msgstr "ファームウェアをアップグレード"
  5880. #~ msgctxt "@label unknown material"
  5881. #~ msgid "Unknown"
  5882. #~ msgstr "不明"
  5883. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5884. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5885. #~ msgstr "ファイル<filename>{0}</filename>にはカスタムプロファイルがインポートされていません"
  5886. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5887. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5888. #~ msgstr "このプロファイル<filename>{0}</filename>には、正しくないデータが含まれていて、インポートできません。"
  5889. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5890. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5891. #~ msgstr "プロファイル<filename>{0}</filename>の中で定義されているマシン({1})は、現在お使いのマシン({2})と一致しませんので、インポートできませんでした。"
  5892. #~ msgctxt "@title:window"
  5893. #~ msgid "Confirm uninstall "
  5894. #~ msgstr "アンインストール確認 "
  5895. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5896. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5897. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5898. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5899. #~ msgid "%1m / ~ %2g"
  5900. #~ msgstr "%1m / ~ %2g"
  5901. #~ msgctxt "@title"
  5902. #~ msgid "Upgrade Firmware"
  5903. #~ msgstr "ファームウェアをアップグレード"
  5904. #~ msgctxt "@action:button"
  5905. #~ msgid "Print with Doodle3D WiFi-Box"
  5906. #~ msgstr "Doodle3D WiFi-Boxでプリントする"
  5907. #~ msgctxt "@properties:tooltip"
  5908. #~ msgid "Print with Doodle3D WiFi-Box"
  5909. #~ msgstr "Doodle3D WiFi-Boxでプリント"
  5910. #~ msgctxt "@info:status"
  5911. #~ msgid "Connecting to Doodle3D Connect"
  5912. #~ msgstr "Doodle3D Connectに接続する"
  5913. #~ msgctxt "@info:status"
  5914. #~ msgid "Sending data to Doodle3D Connect"
  5915. #~ msgstr "Doodle3D Connectにデータを送信"
  5916. #~ msgctxt "@info:status"
  5917. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5918. #~ msgstr "Doodle3D Connectにデータを送れませんでした。他のジョブはまだアクティブですか?"
  5919. #~ msgctxt "@info:status"
  5920. #~ msgid "Storing data on Doodle3D Connect"
  5921. #~ msgstr "Doodle3D Connectにデータを保存"
  5922. #~ msgctxt "@info:status"
  5923. #~ msgid "File sent to Doodle3D Connect"
  5924. #~ msgstr "Doodle3D Connectにファイル送信完了"
  5925. #~ msgctxt "@action:button"
  5926. #~ msgid "Open Connect..."
  5927. #~ msgstr "Connectを開いています..."
  5928. #~ msgctxt "@info:tooltip"
  5929. #~ msgid "Open the Doodle3D Connect web interface"
  5930. #~ msgstr "Doodle3D Connect web interfaceを開く"
  5931. #~ msgctxt "@item:inlistbox"
  5932. #~ msgid "Blender file"
  5933. #~ msgstr "Blenderファイル"
  5934. #~ msgctxt "@info:status"
  5935. #~ msgid ""
  5936. #~ "Could not export using \"{}\" quality!\n"
  5937. #~ "Felt back to \"{}\"."
  5938. #~ msgstr ""
  5939. #~ "\"{}\"品質を使用したエクスポートができませんでした!\n"
  5940. #~ "\"{}\"になりました。"
  5941. #~ msgctxt "@label"
  5942. #~ msgid "Contact"
  5943. #~ msgstr "連絡"
  5944. #~ msgctxt "@label"
  5945. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5946. #~ msgstr "Ultimaker3のグループをホストするために設定されていません。"
  5947. #~ msgctxt "@label"
  5948. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5949. #~ msgstr "このプリンターはUltimaker3 %1グループのホストプリンターです。"
  5950. #~ msgctxt "@label: arg 1 is group name"
  5951. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5952. #~ msgstr "%1は、繋がっているUltimaker3プリンターのグループをホストするために設定されていません。"
  5953. #~ msgctxt "@label link to connect manager"
  5954. #~ msgid "Add/Remove printers"
  5955. #~ msgstr "プリンターの追加/削除"
  5956. #~ msgctxt "@info:tooltip"
  5957. #~ msgid "Opens the print jobs page with your default web browser."
  5958. #~ msgstr "デフォルトのウェブブラウザで印刷ジョブページを開きます。"
  5959. #~ msgctxt "@action:button"
  5960. #~ msgid "View print jobs"
  5961. #~ msgstr "プリントジョブを見る"
  5962. #~ msgctxt "@label:status"
  5963. #~ msgid "Preparing to print"
  5964. #~ msgstr "印刷の準備をする"
  5965. #~ msgctxt "@label:status"
  5966. #~ msgid "Available"
  5967. #~ msgstr "利用可能"
  5968. #~ msgctxt "@label:status"
  5969. #~ msgid "Lost connection with the printer"
  5970. #~ msgstr "プリンターへの接続が切断されました。"
  5971. #~ msgctxt "@label:status"
  5972. #~ msgid "Unknown"
  5973. #~ msgstr "不明"
  5974. #~ msgctxt "@label:status"
  5975. #~ msgid "Disabled"
  5976. #~ msgstr "無効"
  5977. #~ msgctxt "@label:status"
  5978. #~ msgid "Reserved"
  5979. #~ msgstr "予約済み"
  5980. #~ msgctxt "@label"
  5981. #~ msgid "Preparing to print"
  5982. #~ msgstr "プリントの準備をする"
  5983. #~ msgctxt "@label:status"
  5984. #~ msgid "Print aborted"
  5985. #~ msgstr "プリント中止"
  5986. #~ msgctxt "@label"
  5987. #~ msgid "Not accepting print jobs"
  5988. #~ msgstr "プリントデータを確認できない"
  5989. #~ msgctxt "@label"
  5990. #~ msgid "Finishes at: "
  5991. #~ msgstr "この層で終了します:"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "Clear build plate"
  5994. #~ msgstr "ビルドプレートをクリアにする"
  5995. #~ msgctxt "@label"
  5996. #~ msgid "Waiting for configuration change"
  5997. #~ msgstr "プリント構成の変更を待っている"
  5998. #~ msgctxt "@title"
  5999. #~ msgid "Print jobs"
  6000. #~ msgstr "プリントジョブ"
  6001. #~ msgctxt "@label:title"
  6002. #~ msgid "Printers"
  6003. #~ msgstr "複数のプリンター"
  6004. #~ msgctxt "@action:button"
  6005. #~ msgid "View printers"
  6006. #~ msgstr "複数のプリンターをみる"
  6007. #~ msgctxt "@label:"
  6008. #~ msgid "Pause"
  6009. #~ msgstr "一時停止"
  6010. #~ msgctxt "@label:"
  6011. #~ msgid "Resume"
  6012. #~ msgstr "再開"
  6013. #~ msgctxt "@label:"
  6014. #~ msgid "Abort Print"
  6015. #~ msgstr "プリント中止"
  6016. #~ msgctxt "@option:openProject"
  6017. #~ msgid "Always ask"
  6018. #~ msgstr "いつもお尋ねください。"
  6019. #~ msgctxt "@label"
  6020. #~ msgid "Override Profile"
  6021. #~ msgstr "プロファイルを無効にする"
  6022. #~ msgctxt "@info:tooltip"
  6023. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6024. #~ msgstr "新たにロードしたモデルをビルドプレート上に配置すべきですか? マルチビルドプレートと共に使用 (実験的)"
  6025. #~ msgctxt "@option:check"
  6026. #~ msgid "Do not arrange objects on load"
  6027. #~ msgstr "ロード時にオブジェクトを配置しません"
  6028. #~ msgctxt "@action:inmenu menubar:file"
  6029. #~ msgid "&Save Selection to File"
  6030. #~ msgstr "フ&ァイルに選択したものを保存"
  6031. #~ msgctxt "@title:menu menubar:file"
  6032. #~ msgid "Save &As..."
  6033. #~ msgstr "名前をつけて保存"
  6034. #~ msgctxt "@title:menu menubar:file"
  6035. #~ msgid "Save &Project..."
  6036. #~ msgstr "プロジェクトの保存 (&P)..."
  6037. #~ msgctxt "@label"
  6038. #~ msgid "Use adhesion sheet or glue with this material combination"
  6039. #~ msgstr "密着性シートを使用する、またはこの材料の組み合わせで接着する"
  6040. #~ msgctxt "description"
  6041. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6042. #~ msgstr "G-codeを承認し、Doodle3D WiFi-ボックスにWifi上にて送る"
  6043. #~ msgctxt "name"
  6044. #~ msgid "Doodle3D WiFi-Box"
  6045. #~ msgstr "Doodle3D WiFi-Box"
  6046. #~ msgctxt "description"
  6047. #~ msgid "Provides an edit window for direct script editing."
  6048. #~ msgstr "直接スクリプト編集のための編集ウィンドウを提供します。"
  6049. #~ msgctxt "name"
  6050. #~ msgid "Live scripting tool"
  6051. #~ msgstr "ライブスクリプティングツール"
  6052. #~ msgctxt "description"
  6053. #~ msgid "Helps to open Blender files directly in Cura."
  6054. #~ msgstr "Curaの中で直接Blenderファイルを開くために役立ちます。"
  6055. #~ msgctxt "name"
  6056. #~ msgid "Blender Integration (experimental)"
  6057. #~ msgstr "Blender統合 (実験的)"
  6058. #~ msgctxt "@info:title"
  6059. #~ msgid "Model Checker Warning"
  6060. #~ msgstr "モデルチェッカー警告"
  6061. #~ msgctxt "@info:status"
  6062. #~ msgid ""
  6063. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6064. #~ "Tips that may be useful to improve the print quality:\n"
  6065. #~ "1) Use rounded corners.\n"
  6066. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6067. #~ "3) Use a different material."
  6068. #~ msgstr ""
  6069. #~ "オブジェクトサイズや選択した材料などにより一部のモデルが印刷されないことがあります: {model_names}.\n"
  6070. #~ "印刷の品質を高める便利なヒント:\n"
  6071. #~ "1) 縁を丸くする\n"
  6072. #~ "2) ファンを切る(モデルに詳細がない場合のみ)\n"
  6073. #~ "3) 異なる材料を使う"
  6074. #~ msgctxt "@info:status"
  6075. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6076. #~ msgstr "ソリッドワークスがファイルを開く際にエラーを報告しました。ソリッドワークス内で問題を解決することをお勧めします。"
  6077. #~ msgctxt "@info:status"
  6078. #~ msgid ""
  6079. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6080. #~ "\n"
  6081. #~ "Thanks!"
  6082. #~ msgstr ""
  6083. #~ "図面の中にモデルが見つかりません。中身を確認し、パートかアセンブリーが中に入っていることを確認してください。\n"
  6084. #~ "\n"
  6085. #~ " 再確認をお願いします。"
  6086. #~ msgctxt "@info:status"
  6087. #~ msgid ""
  6088. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6089. #~ "\n"
  6090. #~ "Sorry!"
  6091. #~ msgstr ""
  6092. #~ "図面の中にパートかアセンブリーが2個以上見つかりました。今のところ、本製品はパートかアセンブリーが1個の図面のみに対応しています。\n"
  6093. #~ "\n"
  6094. #~ "申し訳ありません。"
  6095. #~ msgctxt "@item:inlistbox"
  6096. #~ msgid "SolidWorks part file"
  6097. #~ msgstr "ソリッドワークスパートファイル"
  6098. #~ msgctxt "@item:inlistbox"
  6099. #~ msgid "SolidWorks assembly file"
  6100. #~ msgstr "ソリッドワークスアセンブリーファイル"
  6101. #~ msgctxt "@item:inlistbox"
  6102. #~ msgid "SolidWorks drawing file"
  6103. #~ msgstr "ソリッドワークス図面ファイル"
  6104. #~ msgctxt "@info:status"
  6105. #~ msgid ""
  6106. #~ "Dear customer,\n"
  6107. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6108. #~ "\n"
  6109. #~ "With kind regards\n"
  6110. #~ " - Thomas Karl Pietrowski"
  6111. #~ msgstr ""
  6112. #~ "お客様へ\n"
  6113. #~ "システム上に正規のソリッドワークスがインストールされていません。つまり、ソリッドワークスがインストールされていないか、有効なライセンスが存在しません。ソリッドワークスだけを問題なく使用できるようになっているか確認するか、自社のIT部門にご相談ください。\n"
  6114. #~ "\n"
  6115. #~ "お願いいたします。\n"
  6116. #~ " - Thomas Karl Pietrowski"
  6117. #~ msgctxt "@info:status"
  6118. #~ msgid ""
  6119. #~ "Dear customer,\n"
  6120. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6121. #~ "\n"
  6122. #~ "With kind regards\n"
  6123. #~ " - Thomas Karl Pietrowski"
  6124. #~ msgstr ""
  6125. #~ "お客様へ\n"
  6126. #~ "このプラグインは現在Windows以外のOSで実行されています。このプラグインは、ソリッドワークスがインストールされたWindowsでしか動作しません。有効なライセンスも必要です。ソリッドワークスがインストールされたWindowsマシンにこのプラグインをインストールしてください。\n"
  6127. #~ "\n"
  6128. #~ "お願いいたします。\n"
  6129. #~ " - Thomas Karl Pietrowski"
  6130. #~ msgid "Configure"
  6131. #~ msgstr "構成"
  6132. #~ msgid "Installation guide for SolidWorks macro"
  6133. #~ msgstr "ソリッドワークス・マクロのインストールガイド"
  6134. #~ msgctxt "@action:button"
  6135. #~ msgid "Disable"
  6136. #~ msgstr "無効化"
  6137. #~ msgctxt "@action:tooltip"
  6138. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6139. #~ msgstr "Curaが匿名化した利用統計を送信することを許可しません。プレファレンスで許可に変更することができます。"
  6140. #~ msgid "Install"
  6141. #~ msgstr "インストール"
  6142. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6143. #~ msgstr "Siemens NXプラグインファイルのコピーに失敗しました。UGII_USER_DIRを確認してください。ディレクトリに割り当てられていません。"
  6144. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6145. #~ msgstr "Siemens NX Curaプラグインを正常にインストールしました。"
  6146. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6147. #~ msgstr "Siemens NXプラグインファイルのコピーに失敗しました。UGII_USER_DIRを確認してください。"
  6148. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6149. #~ msgstr "Siemens NXプラグインのインストールに失敗しました。Siemens NX用の環境変数UGII_USER_DIRが設定できませんでした。"
  6150. #~ msgctxt "@info:status"
  6151. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6152. #~ msgstr "<filename>{0}</filename>からプラグインIDを取得することに失敗しました。"
  6153. #~ msgctxt "@info:tile"
  6154. #~ msgid "Warning"
  6155. #~ msgstr "警告"
  6156. #~ msgctxt "@window:title"
  6157. #~ msgid "Plugin browser"
  6158. #~ msgstr "プラグインブラウザー"
  6159. #~ msgctxt "@label"
  6160. #~ msgid "Ultimaker 3"
  6161. #~ msgstr "Ultimaker 3"
  6162. #~ msgctxt "@label"
  6163. #~ msgid "Ultimaker 3 Extended"
  6164. #~ msgstr "Ultimaker 3 Extended"
  6165. #~ msgctxt "@title:window"
  6166. #~ msgid "SolidWorks: Export wizard"
  6167. #~ msgstr "ソリッドワークス: エクスポートウィザード"
  6168. #~ msgctxt "@action:label"
  6169. #~ msgid "Quality:"
  6170. #~ msgstr "品質: "
  6171. #~ msgctxt "@option:curaSolidworksStlQuality"
  6172. #~ msgid "Fine (3D-printing)"
  6173. #~ msgstr "精細 (3Dプリント)"
  6174. #~ msgctxt "@option:curaSolidworksStlQuality"
  6175. #~ msgid "Coarse (3D-printing)"
  6176. #~ msgstr "大まか (3Dプリント)"
  6177. #~ msgctxt "@option:curaSolidworksStlQuality"
  6178. #~ msgid "Fine (SolidWorks)"
  6179. #~ msgstr "精細 (ソリッドワークス)"
  6180. #~ msgctxt "@option:curaSolidworksStlQuality"
  6181. #~ msgid "Coarse (SolidWorks)"
  6182. #~ msgstr "大まか (ソリッドワークス)"
  6183. #~ msgctxt "@text:window"
  6184. #~ msgid "Show this dialog again"
  6185. #~ msgstr "このダイアログを再度表示する"
  6186. #~ msgctxt "@action:button"
  6187. #~ msgid "Continue"
  6188. #~ msgstr "続行"
  6189. #~ msgctxt "@action:button"
  6190. #~ msgid "Abort"
  6191. #~ msgstr "中断"
  6192. #~ msgctxt "@title:window"
  6193. #~ msgid "How to install Cura SolidWorks macro"
  6194. #~ msgstr "Curaソリッドワークス・マクロのインストール方法"
  6195. #~ msgctxt "@description:label"
  6196. #~ msgid "Steps:"
  6197. #~ msgstr "ステップ: "
  6198. #~ msgctxt "@action:button"
  6199. #~ msgid ""
  6200. #~ "Open the directory\n"
  6201. #~ "with macro and icon"
  6202. #~ msgstr ""
  6203. #~ "ディレクトリーを開きます\n"
  6204. #~ "(マクロとアイコンで)"
  6205. #~ msgctxt "@description:label"
  6206. #~ msgid "Instructions:"
  6207. #~ msgstr "指示: "
  6208. #~ msgctxt "@action:playpause"
  6209. #~ msgid "Play"
  6210. #~ msgstr "実行"
  6211. #~ msgctxt "@action:playpause"
  6212. #~ msgid "Pause"
  6213. #~ msgstr "一時停止"
  6214. #~ msgctxt "@action:button"
  6215. #~ msgid "Previous Step"
  6216. #~ msgstr "前のステップ"
  6217. #~ msgctxt "@action:button"
  6218. #~ msgid "Done"
  6219. #~ msgstr "完了"
  6220. #~ msgctxt "@action:button"
  6221. #~ msgid "Next Step"
  6222. #~ msgstr "次のステップ"
  6223. #~ msgctxt "@title:window"
  6224. #~ msgid "SolidWorks plugin: Configuration"
  6225. #~ msgstr "ソリッドワークスプラグイン: コンフィグレーション"
  6226. #~ msgctxt "@title:tab"
  6227. #~ msgid "Conversion settings"
  6228. #~ msgstr "変換設定"
  6229. #~ msgctxt "@label"
  6230. #~ msgid "First choice:"
  6231. #~ msgstr "最初の選択: "
  6232. #~ msgctxt "@text:menu"
  6233. #~ msgid "Latest installed version (Recommended)"
  6234. #~ msgstr "インストールされている最新バージョン (推奨)"
  6235. #~ msgctxt "@text:menu"
  6236. #~ msgid "Default version"
  6237. #~ msgstr "デフォルトバージョン"
  6238. #~ msgctxt "@label"
  6239. #~ msgid "Show wizard before opening SolidWorks files"
  6240. #~ msgstr "ソリッドワークスのファイルを開く前にウィザードを表示"
  6241. #~ msgctxt "@label"
  6242. #~ msgid "Automatically rotate opened file into normed orientation"
  6243. #~ msgstr "開いたファイルを自動的に正規の向きに回転"
  6244. #~ msgctxt "@title:tab"
  6245. #~ msgid "Installation(s)"
  6246. #~ msgstr "インストール"
  6247. #~ msgctxt "@label"
  6248. #~ msgid "COM service found"
  6249. #~ msgstr "COMサービスが存在"
  6250. #~ msgctxt "@label"
  6251. #~ msgid "Executable found"
  6252. #~ msgstr "実行ファイルが存在"
  6253. #~ msgctxt "@label"
  6254. #~ msgid "COM starting"
  6255. #~ msgstr "COM開始"
  6256. #~ msgctxt "@label"
  6257. #~ msgid "Revision number"
  6258. #~ msgstr "改訂番号"
  6259. #~ msgctxt "@label"
  6260. #~ msgid "Functions available"
  6261. #~ msgstr "利用可能な関数"
  6262. #~ msgctxt "@label (%1 is object name)"
  6263. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6264. #~ msgstr "新しい材料の直径は %1 mm に設定されています。これは現在のマシンに適応していません。続行しますか?"
  6265. #~ msgctxt "@action:menu"
  6266. #~ msgid "Browse plugins..."
  6267. #~ msgstr "プラグインをみる"
  6268. #~ msgctxt "@title:menu menubar:toplevel"
  6269. #~ msgid "P&lugins"
  6270. #~ msgstr "プラグイン"
  6271. #~ msgctxt "@window:title"
  6272. #~ msgid "Install Plugin"
  6273. #~ msgstr "プラグインをインストール"
  6274. #~ msgctxt "description"
  6275. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6276. #~ msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)"
  6277. #~ msgctxt "description"
  6278. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6279. #~ msgstr "Ultimaker3のプリンターのネットワーク接続を管理する。"
  6280. #~ msgctxt "description"
  6281. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6282. #~ msgstr "ソリッドワークス自体を使って特定のファイルを開くことが可能です。変換はこのプラグインによって行われ、追加の最適化も行われます。"
  6283. #~ msgctxt "name"
  6284. #~ msgid "SolidWorks Integration"
  6285. #~ msgstr "ソリッドワークスインタグレーション"
  6286. #~ msgctxt "description"
  6287. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6288. #~ msgstr "変更後プリンターやプロファイルプレファレンスを自動的に保存します、"
  6289. #~ msgctxt "name"
  6290. #~ msgid "Auto Save"
  6291. #~ msgstr "自動保存"
  6292. #~ msgctxt "description"
  6293. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6294. #~ msgstr "Siemens NXの「Curaにエクスポート」ボタンをインストールできるようにします。"
  6295. #~ msgctxt "name"
  6296. #~ msgid "Siemens NX Integration"
  6297. #~ msgstr "Siemens NX Integration"
  6298. #~ msgctxt "description"
  6299. #~ msgid "Find, manage and install new plugins."
  6300. #~ msgstr "探す、新しいプラグインを管理、インストール"
  6301. #~ msgctxt "name"
  6302. #~ msgid "Plugin Browser"
  6303. #~ msgstr "プラグインブラウザー"
  6304. #~ msgctxt "description"
  6305. #~ msgid "Ask the user once if he/she agrees with our license"
  6306. #~ msgstr "ライセンスに同意するかどうかユーザーに1回だけ確認する"
  6307. #~ msgctxt "description"
  6308. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6309. #~ msgstr "Ultimakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)"
  6310. #~ msgctxt "@item:inlistbox"
  6311. #~ msgid "GCode File"
  6312. #~ msgstr "GCodeファイル"
  6313. #~ msgctxt "@info:status"
  6314. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6315. #~ msgstr "新しいプリントジョブをはじめることができません。プリンターが使用中または接続できていません。"
  6316. #~ msgctxt "@info:title"
  6317. #~ msgid "Printer Unavailable"
  6318. #~ msgstr "プリンターが利用できません"
  6319. #~ msgctxt "@info:status"
  6320. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6321. #~ msgstr "UltiGCodeを使用中のため、USBからのプリントができません。"
  6322. #~ msgctxt "@info:title"
  6323. #~ msgid "USB Printing"
  6324. #~ msgstr "USBプリント"
  6325. #~ msgctxt "@info:status"
  6326. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6327. #~ msgstr "USBでの印刷ができないため、新しいプリントジョブができません。"
  6328. #~ msgctxt "@info"
  6329. #~ msgid "Unable to update firmware because there are no printers connected."
  6330. #~ msgstr "プリンターが未接続のため、ファームウェアをアップデートできません。"
  6331. #~ msgctxt "@info"
  6332. #~ msgid "Could not find firmware required for the printer at %s."
  6333. #~ msgstr "プリンター(%s)に必要なファームウェアを探せませんでした。"
  6334. #~ msgctxt "@info:title"
  6335. #~ msgid "Printer Firmware"
  6336. #~ msgstr "ファームウェア"
  6337. #~ msgctxt "@info:title"
  6338. #~ msgid "Connection status"
  6339. #~ msgstr "コネクションのステータス"
  6340. #~ msgctxt "@info:title"
  6341. #~ msgid "Connection Status"
  6342. #~ msgstr "コネクションステータス"
  6343. #~ msgctxt "@info:status"
  6344. #~ msgid "Access request was denied on the printer."
  6345. #~ msgstr "プリンターへのアクセス権"
  6346. #~ msgctxt "@info:status"
  6347. #~ msgid "Access request failed due to a timeout."
  6348. #~ msgstr "時間制限によりアクセスが却下されました。"
  6349. #~ msgctxt "@info:status"
  6350. #~ msgid "The connection with the network was lost."
  6351. #~ msgstr "ネットワークへの接続が切断されました。"
  6352. #~ msgctxt "@info:status"
  6353. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6354. #~ msgstr "ネットワークへの接続が切断されました。プリンターの接続状態を確認ください。"
  6355. #~ msgctxt "@info:status"
  6356. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6357. #~ msgstr "プリンターが利用中です。新しいプリントジョブを開始することができませんでした。現在のプリンターのステータスは%sです。"
  6358. #~ msgctxt "@info:title"
  6359. #~ msgid "Printer Status"
  6360. #~ msgstr "プリンターのステータス"
  6361. #~ msgctxt "@info:status"
  6362. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6363. #~ msgstr "プリントコアがスロット{0}に入っていません。プリントジョブを開始できません。"
  6364. #~ msgctxt "@info:status"
  6365. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6366. #~ msgstr "フィラメントがスロット{0}に入っていません。プリントジョブを開始できません。"
  6367. #~ msgctxt "@label"
  6368. #~ msgid "Not enough material for spool {0}."
  6369. #~ msgstr "フィラメント{0}の残量が足りません。"
  6370. #~ msgctxt "@label"
  6371. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6372. #~ msgstr "異なるプリントコアが入っています(Cura:{0}, プリンター{1})エクストルーダー{2}"
  6373. #~ msgctxt "@label"
  6374. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6375. #~ msgstr "プリントコア{0}が適切にキャリブレーションできていません。XYキャリブレーションをプリンターで行ってください。"
  6376. #~ msgctxt "@info:status"
  6377. #~ msgid "Unable to send data to printer. Is another job still active?"
  6378. #~ msgstr "データをプリンターに送ることができません。他のプリントジョブは進行中ですか?"
  6379. #~ msgctxt "@label:MonitorStatus"
  6380. #~ msgid "Print aborted. Please check the printer"
  6381. #~ msgstr "プリントを中止しました。プリンターを確認してください。"
  6382. #~ msgctxt "@label:MonitorStatus"
  6383. #~ msgid "Pausing print..."
  6384. #~ msgstr "プリントを一時停止します…"
  6385. #~ msgctxt "@label:MonitorStatus"
  6386. #~ msgid "Resuming print..."
  6387. #~ msgstr "プリント再開します…"
  6388. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6389. #~ msgstr "このプリンターは、繋がっているUltimaker3プリンターをホストするために設定されていません。"
  6390. #~ msgctxt "Count is number of printers."
  6391. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6392. #~ msgstr "このプリンターは{count}繋がっているUltimaker3プリンターのグループのホストプリンターです。"
  6393. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6394. #~ msgstr "{printer_name}は ‘{job_name}’印刷を終了しました。造形物を確認し、ビルドプレートから取り出してください。"
  6395. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6396. #~ msgstr "{printer_name} は '{job_name}'.を印刷予定です。印刷を開始するためにジョブに合わせた構成に変更してください。"
  6397. #~ msgctxt "@info:status"
  6398. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6399. #~ msgstr "新しいプリントジョブをお送りできません。この3Dプリンターは繋がっているUltimaker3のグループをホストするために設定されていません。"
  6400. #~ msgctxt "@info:status"
  6401. #~ msgid "Unable to send print job to group {cluster_name}."
  6402. #~ msgstr "プリントジョブをグループに送ることができません。{cluster_name}."
  6403. #~ msgctxt "@info:status"
  6404. #~ msgid "Sent {file_name} to group {cluster_name}."
  6405. #~ msgstr "グループに送信完了{file_name} {cluster_name}."
  6406. #~ msgctxt "@action:button"
  6407. #~ msgid "Show print jobs"
  6408. #~ msgstr "プリントジョブを見る"
  6409. #~ msgctxt "@info:tooltip"
  6410. #~ msgid "Opens the print jobs interface in your browser."
  6411. #~ msgstr "プリントジョブのインターフェイスをブラウザーで開く"
  6412. #~ msgctxt "@label Printer name"
  6413. #~ msgid "Unknown"
  6414. #~ msgstr "不明"
  6415. #~ msgctxt "@info:progress"
  6416. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6417. #~ msgstr "グループに送信中<filename>{file_name}</filename> {cluster_name}"
  6418. #~ msgctxt "@info:status"
  6419. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6420. #~ msgstr "ソリッドワークスがファイルを開く際にエラーを報告しました。ソリッドワークス内で問題を解決することをお勧めします。"
  6421. #~ msgctxt "@info:status"
  6422. #~ msgid ""
  6423. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6424. #~ "\n"
  6425. #~ " Thanks!."
  6426. #~ msgstr ""
  6427. #~ "図面の中にモデルが見つかりません。中身を確認し、パートかアセンブリーが中に入っていることを確認してください。\n"
  6428. #~ "\n"
  6429. #~ " 再確認をお願いします。"
  6430. #~ msgctxt "@info:status"
  6431. #~ msgid ""
  6432. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6433. #~ "\n"
  6434. #~ "Sorry!"
  6435. #~ msgstr ""
  6436. #~ "図面の中にパートかアセンブリーが2個以上見つかりました。今のところ、本製品はパートかアセンブリーが1個の図面のみに対応しています。\n"
  6437. #~ "\n"
  6438. #~ "申し訳ありません。"
  6439. #~ msgctxt "@item:material"
  6440. #~ msgid "No material loaded"
  6441. #~ msgstr "フィラメントがロードされていません。"
  6442. #~ msgctxt "@item:material"
  6443. #~ msgid "Unknown material"
  6444. #~ msgstr "未確認のフィラメント"
  6445. #~ msgctxt "@info:status Has a cancel button next to it."
  6446. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6447. #~ msgstr "選択したフィラメントの直径が、現在選択中のプリンターに適応していません。"
  6448. #~ msgctxt "@action:button"
  6449. #~ msgid "Undo"
  6450. #~ msgstr "取り消す"
  6451. #~ msgctxt "@action"
  6452. #~ msgid "Undo changing the material diameter."
  6453. #~ msgstr "フィラメント直径を変更を取り消す"
  6454. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6455. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6456. #~ msgstr "プロファイル<filename>{0}</filename>の中で定義されているマシンは、現在お使いのマシンと一致しませんので、インポートできませんでした。"
  6457. #~ msgctxt "@label crash message"
  6458. #~ msgid ""
  6459. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6460. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6461. #~ " "
  6462. #~ msgstr ""
  6463. #~ "<p><b>致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください</p></b>\n"
  6464. #~ " <p>「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください</p>\n"
  6465. #~ " "
  6466. #~ msgctxt "@label"
  6467. #~ msgid "not yet initialised<br/>"
  6468. #~ msgstr "初期化されていません<br/>"
  6469. #~ msgctxt "@label"
  6470. #~ msgid "Gcode flavor"
  6471. #~ msgstr "Gcodeフレーバー"
  6472. #~ msgctxt "@label"
  6473. #~ msgid "Start Gcode"
  6474. #~ msgstr "G-codeをスタートします。"
  6475. #~ msgctxt "@tooltip"
  6476. #~ msgid "Gcode commands to be executed at the very start."
  6477. #~ msgstr "G-codeが最初に起動するようにします。"
  6478. #~ msgctxt "@label"
  6479. #~ msgid "End Gcode"
  6480. #~ msgstr "G-codeを終了"
  6481. #~ msgctxt "@tooltip"
  6482. #~ msgid "Gcode commands to be executed at the very end."
  6483. #~ msgstr "G-codeが最後にに起動するようにします。"
  6484. #~ msgctxt "@label"
  6485. #~ msgid "Extruder Start Gcode"
  6486. #~ msgstr "エクストルーダーがGcodeを開始します。"
  6487. #~ msgctxt "@label"
  6488. #~ msgid "Extruder End Gcode"
  6489. #~ msgstr "エクストルーダーがGcodeを終了します。"
  6490. #~ msgctxt "@label"
  6491. #~ msgid "Starting firmware update, this may take a while."
  6492. #~ msgstr "ファームウェアアップデートを開始します、時間が少しかかるかもしれません。"
  6493. #~ msgctxt "@label"
  6494. #~ msgid "Unknown error code: %1"
  6495. #~ msgstr "不特定エラーコード: %1"
  6496. #~ msgctxt "@label Printer name"
  6497. #~ msgid "Ultimaker 3"
  6498. #~ msgstr "Ultimaker 3"
  6499. #~ msgctxt "@label Printer name"
  6500. #~ msgid "Ultimaker 3 Extended"
  6501. #~ msgstr "Ultimaker 3 Extended"
  6502. #~ msgctxt "@label Printer status"
  6503. #~ msgid "Unknown"
  6504. #~ msgstr "不明"
  6505. #~ msgctxt "@title:window"
  6506. #~ msgid "Find & Update plugins"
  6507. #~ msgstr "探す&アップデートプラグイン"
  6508. #~ msgctxt "@label"
  6509. #~ msgid "Here you can find a list of Third Party plugins."
  6510. #~ msgstr "サードパーティのプラグインのリストをここで見つけることができます。"
  6511. #~ msgctxt "@action:button"
  6512. #~ msgid "Upgrade"
  6513. #~ msgstr "アップグレード"
  6514. #~ msgctxt "@action:button"
  6515. #~ msgid "Download"
  6516. #~ msgstr "ダウンロード"
  6517. #~ msgctxt "@info:tooltip"
  6518. #~ msgid "Show caution message in gcode reader."
  6519. #~ msgstr "gcodeリーダーに注意メッセージを表示する"
  6520. #~ msgctxt "@option:check"
  6521. #~ msgid "Caution message in gcode reader"
  6522. #~ msgstr "gcodeリーダーの注意メッセージ"
  6523. #~ msgctxt "@window:title"
  6524. #~ msgid "Import Profile"
  6525. #~ msgstr "プロファイルを取り込む"
  6526. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6527. #~ msgid "Printer: %1, %2: %3"
  6528. #~ msgstr "プリンター: %1, %2: %3"
  6529. #~ msgctxt "@action:label %1 is printer name"
  6530. #~ msgid "Printer: %1"
  6531. #~ msgstr "プリンター:%1"
  6532. #~ msgctxt "@label"
  6533. #~ msgid "GCode generator"
  6534. #~ msgstr "Gcodeジェネレーター"
  6535. #~ msgctxt "@action:menu"
  6536. #~ msgid "Configure setting visiblity..."
  6537. #~ msgstr "視野のセッティングを構成する"
  6538. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6539. #~ msgid "Automatic: %1"
  6540. #~ msgstr "自動選択: %1"
  6541. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6542. #~ msgid "Automatic: %1"
  6543. #~ msgstr "自動選択: %1"
  6544. #~ msgctxt "@info:status"
  6545. #~ msgid "No printer connected"
  6546. #~ msgstr "接続中のプリンターはありません。"
  6547. #~ msgctxt "@tooltip"
  6548. #~ msgid "The current temperature of this extruder."
  6549. #~ msgstr "現在のエクストルーダーの温度"
  6550. #~ msgctxt "@action:menu"
  6551. #~ msgid "Installed plugins..."
  6552. #~ msgstr "インストールされたプラグイン"
  6553. #~ msgctxt "@label"
  6554. #~ msgid "Support Extruder"
  6555. #~ msgstr "サポートエクストルーダー"
  6556. #~ msgctxt "description"
  6557. #~ msgid "Writes GCode to a file."
  6558. #~ msgstr "ファイルにGCodeを書く"
  6559. #~ msgctxt "name"
  6560. #~ msgid "GCode Writer"
  6561. #~ msgstr "GCodeライター"
  6562. #~ msgctxt "name"
  6563. #~ msgid "GCode Profile Reader"
  6564. #~ msgstr "GCodeプロファイルリーダー"
  6565. #~ msgctxt "@info:status"
  6566. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6567. #~ msgstr "ソリッドワークスのファイルを開く際にエラーが発生しました!ソリッドワークスで、問題なく開くことができるか確認してください。"
  6568. #~ msgctxt "@info:status"
  6569. #~ msgid "Error while starting %s!"
  6570. #~ msgstr "%sを開始中にエラーが発生"
  6571. #~ msgctxt "@item:inlistbox"
  6572. #~ msgid "Simulation view"
  6573. #~ msgstr "シミュレーションビュー"
  6574. #~ msgctxt "@info"
  6575. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6576. #~ msgstr "Curaが非特定なスライスされた数字を集めました。プレファレンス内で無効にできます。"
  6577. #~ msgctxt "@action:button"
  6578. #~ msgid "Dismiss"
  6579. #~ msgstr "却下する"
  6580. #~ msgctxt "@menuitem"
  6581. #~ msgid "Global"
  6582. #~ msgstr "グローバル"
  6583. #~ msgctxt "@label crash message"
  6584. #~ msgid ""
  6585. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6586. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6587. #~ " "
  6588. #~ msgstr ""
  6589. #~ "<p><b>致命的な例外が発生しました。問題解決のためこのクラッシュレポートを送信してください</p></b>\n"
  6590. #~ " <p>「レポート送信」ボタンを使用してバグレポートが自動的にサーバーに送られるようにしてください</p>\n"
  6591. #~ " "
  6592. #~ msgctxt "@label Cura version"
  6593. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6594. #~ msgstr "<b>Curaバージョン:</b> {version}<br/>"
  6595. #~ msgctxt "@label Platform"
  6596. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6597. #~ msgstr "<b>プラットフォーム:</b> {platform}<br/>"
  6598. #~ msgctxt "@label Qt version"
  6599. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6600. #~ msgstr "<b>Qtバージョン:</b> {qt}<br/>"
  6601. #~ msgctxt "@label PyQt version"
  6602. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6603. #~ msgstr "<b>PyQtバージョン:</b> {pyqt}<br/>"
  6604. #~ msgctxt "@label OpenGL"
  6605. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6606. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6607. #~ msgctxt "@title:groupbox"
  6608. #~ msgid "Exception traceback"
  6609. #~ msgstr "例外トレースバック"
  6610. #~ msgctxt "@label"
  6611. #~ msgid "Material diameter"
  6612. #~ msgstr "フィラメント直径"
  6613. #~ msgctxt "@title:window"
  6614. #~ msgid "Cura SolidWorks Plugin Configuration"
  6615. #~ msgstr "Curaソリッドワークスプラグインコンフィグレーション"
  6616. #~ msgctxt "@action:label"
  6617. #~ msgid "Default quality of the exported STL:"
  6618. #~ msgstr "書き出されたSTLのクオリティーデフォルト"
  6619. #~ msgctxt "@option:curaSolidworksStlQuality"
  6620. #~ msgid "Always ask"
  6621. #~ msgstr "毎回確認"
  6622. #~ msgctxt "@option:curaSolidworksStlQuality"
  6623. #~ msgid "Always use Fine quality"
  6624. #~ msgstr "常にファインクオリティーを使用する"
  6625. #~ msgctxt "@option:curaSolidworksStlQuality"
  6626. #~ msgid "Always use Coarse quality"
  6627. #~ msgstr "常に粗めのクオリティーを使用する"
  6628. #~ msgctxt "@title:window"
  6629. #~ msgid "Import SolidWorks File as STL..."
  6630. #~ msgstr "ソリッドワークスのファイルをSTLとして取り込む"
  6631. #~ msgctxt "@info:tooltip"
  6632. #~ msgid "Quality of the Exported STL"
  6633. #~ msgstr "書き出されたSTLのクオリティー"
  6634. #~ msgctxt "@action:label"
  6635. #~ msgid "Quality"
  6636. #~ msgstr "クオリティー"
  6637. #~ msgctxt "@option:curaSolidworksStlQuality"
  6638. #~ msgid "Coarse"
  6639. #~ msgstr "粗い"
  6640. #~ msgctxt "@option:curaSolidworksStlQuality"
  6641. #~ msgid "Fine"
  6642. #~ msgstr "ファイン"
  6643. #~ msgctxt "@"
  6644. #~ msgid "No Profile Available"
  6645. #~ msgstr "利用可能なプロファイルがありません"
  6646. #~ msgctxt "@label"
  6647. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6648. #~ msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。"
  6649. #~ msgctxt "@tooltip"
  6650. #~ msgid "<b>Time specification</b><br/><table>"
  6651. #~ msgstr "<b>時間仕様</b><br/><table>"
  6652. #~ msgctxt "@action:inmenu menubar:view"
  6653. #~ msgid "&Reset camera position"
  6654. #~ msgstr "&カメラ位置のリセット"
  6655. #~ msgctxt "@title:menu menubar:file"
  6656. #~ msgid "Save project"
  6657. #~ msgstr "プロジェクトを保存"
  6658. #~ msgctxt "@title:tab"
  6659. #~ msgid "Prepare"
  6660. #~ msgstr "準備する"
  6661. #~ msgctxt "@title:tab"
  6662. #~ msgid "Monitor"
  6663. #~ msgstr "モニター"
  6664. #~ msgctxt "@label"
  6665. #~ msgid "<a href='%1'>Check compatibility</a>"
  6666. #~ msgstr "<a href='%1'>互換性の確認</a>"
  6667. #~ msgctxt "description"
  6668. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6669. #~ msgstr "ソリッドワークスにて特定のファイルを開くことが可能です。その後変換され、Curaに取り込めます。"
  6670. #~ msgctxt "@label:status"
  6671. #~ msgid "Blocked"
  6672. #~ msgstr "ブロックされました"
  6673. #~ msgctxt "@label:status"
  6674. #~ msgid "Can't start print"
  6675. #~ msgstr "プリントを開始できません。"
  6676. #~ msgctxt "@action:button"
  6677. #~ msgid "Open Connect.."
  6678. #~ msgstr "Connect..を開く"
  6679. #~ msgctxt "@info:title"
  6680. #~ msgid "Print Details"
  6681. #~ msgstr "プリント詳細"
  6682. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6683. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6684. #~ msgstr "{machine_name}が最新の機能を得るために、定期的にファームウェアをアップデートすることをお勧めします。{machine_name}(ネットワーク上で接続)またはUSBにて行ってください。 "
  6685. #~ msgctxt "@info:title"
  6686. #~ msgid "Layer View"
  6687. #~ msgstr "レイヤービュー"
  6688. #~ msgctxt "@menuitem"
  6689. #~ msgid "Browse plugins"
  6690. #~ msgstr "プラグインを見る"
  6691. #~ msgctxt "@info:title"
  6692. #~ msgid "Export Details"
  6693. #~ msgstr "詳細を書き出す"
  6694. #~ msgctxt "@label"
  6695. #~ msgid ""
  6696. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6697. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6698. #~ " "
  6699. #~ msgstr ""
  6700. #~ "<p>不可解なエラーが発生しリカバリーできませんでした。</p>\n"
  6701. #~ "<p>この情報をバグとして報告してください。 <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6702. #~ " "
  6703. #~ msgctxt "@action:button"
  6704. #~ msgid "Open Web Page"
  6705. #~ msgstr "ウェブページを開く"
  6706. #~ msgctxt "@action:button"
  6707. #~ msgid "Ok"
  6708. #~ msgstr "OK"
  6709. #~ msgctxt "@label"
  6710. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6711. #~ msgstr "このプリンターは、繋がっているUltimaker3プリンターをホストするために設定されていません。"
  6712. #~ msgctxt "@label"
  6713. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6714. #~ msgstr "このプリンターは繋がっているUltimaker3プリンターの%1グループのホストです。"
  6715. #~ msgctxt "@label"
  6716. #~ msgid "Completed on: "
  6717. #~ msgstr "完了:"
  6718. #~ msgctxt "@info:tooltip"
  6719. #~ msgid "Opens the print jobs page with your default web browser."
  6720. #~ msgstr "デフォルトのウェブブラウザーにてプリントジョブを開く"
  6721. #~ msgctxt "@label"
  6722. #~ msgid "PRINTER GROUP"
  6723. #~ msgstr "プリンターグループ"
  6724. #~ msgctxt "@action:warning"
  6725. #~ msgid "Loading a project will clear all models on the buildplate"
  6726. #~ msgstr "プロジェクトを入れることでビルド上のモデルがすべて消滅します。"
  6727. #~ msgctxt "@label"
  6728. #~ msgid ""
  6729. #~ " plugin contains a license.\n"
  6730. #~ "You need to accept this license to install this plugin.\n"
  6731. #~ "Do you agree with the terms below?"
  6732. #~ msgstr ""
  6733. #~ "プラグインがライセンスを保持しています。\n"
  6734. #~ "このライセンスを承認しプラグインをインストールしてください。\n"
  6735. #~ "下記項目に賛成しますか?"
  6736. #~ msgctxt "@label"
  6737. #~ msgid "00h 00min"
  6738. #~ msgstr "00h 00min"
  6739. #~ msgctxt "@tooltip"
  6740. #~ msgid "<b>Time information</b>"
  6741. #~ msgstr "<b>Time information</b>"
  6742. #~ msgctxt "@description"
  6743. #~ msgid "Print time"
  6744. #~ msgstr "プリント時間"
  6745. #~ msgctxt "@label"
  6746. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6747. #~ msgstr "%1分 / ~ %2g / ~ %4 %3"
  6748. #~ msgctxt "@label"
  6749. #~ msgid "%1m / ~ %2g"
  6750. #~ msgstr "%1分/ ~ %2g"
  6751. #~ msgctxt "@title:window"
  6752. #~ msgid "Cura"
  6753. #~ msgstr "Cura"
  6754. #~ msgctxt "@label"
  6755. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6756. #~ msgstr "<a href='%1'>マテリアルのコンパティビリティを確認</a>"
  6757. #~ msgctxt "name"
  6758. #~ msgid "UM3 Network Connection (Cluster)"
  6759. #~ msgstr "UM3 ネットワークコネクション(クラスター)"
  6760. #~ msgctxt "description"
  6761. #~ msgid "Provides the Layer view."
  6762. #~ msgstr "レイヤービューを供給する"
  6763. #~ msgctxt "name"
  6764. #~ msgid "Layer View"
  6765. #~ msgstr "レイヤービュー"