base.po 391 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2021-04-21 12:02+0000\n"
  7. "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
  8. "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/luci/ja/"
  9. ">\n"
  10. "Language: ja\n"
  11. "MIME-Version: 1.0\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8bit\n"
  14. "Plural-Forms: nplurals=1; plural=0;\n"
  15. "X-Generator: Weblate 4.7-dev\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  17. msgid "%.1f dB"
  18. msgstr "%.1f dB"
  19. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  20. msgid "%d Bit"
  21. msgstr "%d ビット"
  22. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3710
  23. msgid "%d invalid field(s)"
  24. msgstr "無効な入力欄: %d個"
  25. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  26. msgid "%s is untagged in multiple VLANs!"
  27. msgstr "%sは複数のVLANでタグなしに設定されています!"
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:294
  29. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:403
  30. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:270
  31. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  32. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  33. msgid "(%d minute window, %d second interval)"
  34. msgstr "(グラフ表示範囲: %d分、更新間隔: %d秒)"
  35. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  36. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  37. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  38. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  39. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  40. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  41. msgid "(empty)"
  42. msgstr "(空)"
  43. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  44. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  45. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  46. msgid "(no interfaces attached)"
  47. msgstr "(インターフェースが接続されていません)"
  48. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  49. msgid "-- Additional Field --"
  50. msgstr "-- 追加項目 --"
  51. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  52. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  53. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  54. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  55. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  56. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1993
  57. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  58. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  59. msgid "-- Please choose --"
  60. msgstr "-- 選択してください --"
  61. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  62. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  63. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1994
  64. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  65. msgid "-- custom --"
  66. msgstr "-- カスタム --"
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  68. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  69. msgid "-- match by label --"
  70. msgstr "-- ラベルを指定 --"
  71. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  72. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  73. msgid "-- match by uuid --"
  74. msgstr "-- UUID を指定 --"
  75. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  76. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  77. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  78. msgid "-- please select --"
  79. msgstr "-- 選択してください --"
  80. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  81. msgctxt "sstp log level value"
  82. msgid "0"
  83. msgstr "0"
  84. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  85. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  86. msgstr "0: RSSIしきい値を使用しない、1: ドライバーのデフォルトを使用"
  87. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  88. msgctxt "sstp log level value"
  89. msgid "1"
  90. msgstr "1"
  91. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231
  92. msgid "1 Minute Load:"
  93. msgstr "過去1分間の負荷:"
  94. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:251
  95. msgid "15 Minute Load:"
  96. msgstr "過去15分間の負荷:"
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  98. msgctxt "sstp log level value"
  99. msgid "2"
  100. msgstr "2"
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  102. msgctxt "sstp log level value"
  103. msgid "3"
  104. msgstr "3"
  105. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  106. msgctxt "sstp log level value"
  107. msgid "4"
  108. msgstr "4"
  109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  110. msgid "4-character hexadecimal ID"
  111. msgstr "4文字の16進数ID"
  112. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  113. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  114. msgid "464XLAT (CLAT)"
  115. msgstr "464XLAT(CLAT)"
  116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:241
  117. msgid "5 Minute Load:"
  118. msgstr "過去5分間の負荷:"
  119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  120. msgid "6-octet identifier as a hex string - no colons"
  121. msgstr "16進数6オクテットの識別子(コロンを含まない)"
  122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  123. msgid "802.11r Fast Transition"
  124. msgstr "802.11r高速ローミング"
  125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  126. msgid "802.11w Association SA Query maximum timeout"
  127. msgstr "802.11wアソシエーションSAクエリの最大タイムアウト"
  128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  129. msgid "802.11w Association SA Query retry timeout"
  130. msgstr "802.11wアソシエーションSAクエリの再試行タイムアウト"
  131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  132. msgid "802.11w Management Frame Protection"
  133. msgstr "802.11w管理フレーム保護"
  134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1657
  135. msgid "802.11w maximum timeout"
  136. msgstr "802.11w最大タイムアウト"
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1664
  138. msgid "802.11w retry timeout"
  139. msgstr "802.11w再試行タイムアウト"
  140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  141. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  142. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  144. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  145. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> クエリポート"
  146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  147. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  148. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> サーバーポート"
  149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  150. msgid ""
  151. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  152. "order of the resolvfile"
  153. msgstr ""
  154. "リゾルバファイルの順番に<abbr title=\"Domain Name System\">DNS</abbr>サーバー"
  155. "に問い合わせる"
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  157. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  158. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  160. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  161. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-アドレス"
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  163. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  164. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-ゲートウェイ"
  165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  167. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  168. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-ネットマスク"
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  170. msgid ""
  171. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  172. "(CIDR)"
  173. msgstr ""
  174. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-アドレスまたはネット"
  175. "ワーク(CIDR)"
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  177. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  178. msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-ゲートウェイ"
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  180. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  181. msgstr ""
  182. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス(16進"
  183. "数)"
  184. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  185. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  186. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>設定"
  187. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  188. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  189. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>名"
  190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  191. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  192. msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-アドレス"
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  194. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  195. msgstr ""
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  197. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  200. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  203. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  206. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:751
  209. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  210. msgstr ""
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  212. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  213. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  215. msgid ""
  216. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  217. "Protocol\">DHCP</abbr> leases"
  218. msgstr ""
  219. "最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>割り当て数"
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  221. msgid ""
  222. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  223. "Domain Name System\">EDNS0</abbr> packet size"
  224. msgstr ""
  225. "最大<abbr title=\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>"
  226. "パケットサイズ"
  227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  228. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  229. msgstr "最大並列処理クエリ"
  230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  231. msgid ""
  232. "<br/>Note: you need to manually restart the cron service if the crontab file "
  233. "was empty before editing."
  234. msgstr ""
  235. "<br />注意: 編集前のcrontabファイルが空の場合、手動でcronサービスを再起動する"
  236. "必要があります。"
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:420
  238. msgid "A configuration for the device \"%s\" already exists"
  239. msgstr "デバイス \"%s\" の設定は既に存在しています"
  240. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2739
  241. msgid "A directory with the same name already exists."
  242. msgstr "同じ名前のディレクトリがすでに存在します。"
  243. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  244. msgid "A new login is required since the authentication session expired."
  245. msgstr "認証セッションの期限が切れたため、再ログインが必要です。"
  246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  247. msgid "A43C + J43 + A43"
  248. msgstr "A43C + J43 + A43"
  249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1461
  250. msgid "A43C + J43 + A43 + V43"
  251. msgstr "A43C + J43 + A43 + V43"
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  253. msgid "ADSL"
  254. msgstr "ADSL"
  255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  256. msgid "ANSI T1.413"
  257. msgstr "ANSI T1.413"
  258. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  259. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  260. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  261. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  262. msgid "APN"
  263. msgstr "APN"
  264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  266. msgid "ARP"
  267. msgstr "ARP"
  268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  269. msgid "ARP IP Targets"
  270. msgstr "ARP IPターゲット"
  271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  272. msgid "ARP Interval"
  273. msgstr "ARP間隔"
  274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  275. msgid "ARP Validation"
  276. msgstr "ARP検証"
  277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  278. msgid "ARP mode to consider a slave as being up"
  279. msgstr "スレーブが稼働していると見なすARPモード"
  280. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  281. msgid "ARP monitoring is not supported for the selected policy!"
  282. msgstr "選択したポリシーではARPモニタリングはサポートされていません!"
  283. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  284. msgid "ARP retry threshold"
  285. msgstr "ARP再試行しきい値"
  286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1468
  287. msgid "ATM (Asynchronous Transfer Mode)"
  288. msgstr "ATM(非同期転送モード)"
  289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  290. msgid "ATM Bridges"
  291. msgstr "ATMブリッジ"
  292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1521
  293. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  294. msgid "ATM Virtual Channel Identifier (VCI)"
  295. msgstr "ATM仮想チャネル識別子(VCI)"
  296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  297. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  298. msgid "ATM Virtual Path Identifier (VPI)"
  299. msgstr "ATM仮想パス識別子(VPI)"
  300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1489
  301. msgid ""
  302. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  303. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  304. "to dial into the provider network."
  305. msgstr ""
  306. "ATMブリッジは、AAL5接続でカプセル化されたイーサネットを仮想Linuxネットワーク"
  307. "インターフェイスとして公開し、DHCPまたはPPPと組み合わせて使用し、プロバイダー"
  308. "ネットワークにダイヤルできます。"
  309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  310. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  311. msgid "ATM device number"
  312. msgstr "ATMデバイス番号"
  313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  314. msgid "ATU-C System Vendor ID"
  315. msgstr "ATU-CシステムベンダーID"
  316. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  317. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  318. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  319. msgid "Absent Interface"
  320. msgstr "存在しないインターフェース"
  321. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  322. msgid "Accept local"
  323. msgstr "ローカルを許可"
  324. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  325. msgid "Accept packets with local source addresses"
  326. msgstr "送信元がローカルアドレスであるパケットを許可します"
  327. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  328. msgid "Access Concentrator"
  329. msgstr "アクセスコンセントレータ"
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  332. msgid "Access Point"
  333. msgstr "アクセスポイント"
  334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  335. msgid "Actions"
  336. msgstr "操作"
  337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  338. msgid "Active"
  339. msgstr "アクティブ"
  340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  341. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  342. msgstr ""
  343. "アクティブな<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>ルート"
  344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  345. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  346. msgstr ""
  347. "アクティブな<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>ルート"
  348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  349. msgid "Active Connections"
  350. msgstr "アクティブな接続"
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  353. msgid "Active DHCP Leases"
  354. msgstr "アクティブなDHCP割り当て"
  355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  357. msgid "Active DHCPv6 Leases"
  358. msgstr "アクティブなDHCPv6割り当て"
  359. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  360. msgid "Active-Backup policy (active-backup, 1)"
  361. msgstr "アクティブ-バックアップポリシー(active-backup、1)"
  362. #: modules/luci-base/htdocs/luci-static/resources/network.js:3822
  363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  364. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  365. msgid "Ad-Hoc"
  366. msgstr "アドホック"
  367. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  368. msgid "Adaptive load balancing (balance-alb, 6)"
  369. msgstr "アダプティブな負荷分散(balance-alb、6)"
  370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  371. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  372. msgstr "アダプティブな送信負荷分散(balance-tlb、5)"
  373. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  374. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  375. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  376. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  377. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  378. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  379. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  380. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  381. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  382. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  383. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:851
  385. msgid "Add"
  386. msgstr "追加"
  387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  388. msgid "Add ATM Bridge"
  389. msgstr "ATMブリッジを追加"
  390. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  391. msgid "Add IPv4 address…"
  392. msgstr "IPv4アドレスを追加…"
  393. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  394. msgid "Add IPv6 address…"
  395. msgstr "IPv6アドレスを追加…"
  396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  397. msgid "Add LED action"
  398. msgstr "LEDの動作を追加"
  399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  400. msgid "Add VLAN"
  401. msgstr "VLANを追加"
  402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  403. msgid "Add device configuration"
  404. msgstr "デバイス設定を追加"
  405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  406. msgid "Add device configuration…"
  407. msgstr "デバイス設定を追加…"
  408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  409. msgid "Add instance"
  410. msgstr "インスタンスを追加"
  411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  414. msgid "Add key"
  415. msgstr "公開鍵を追加"
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  417. msgid "Add local domain suffix to names served from hosts files"
  418. msgstr "hostsファイルから提供される名前にローカルドメインサフィックスを追加"
  419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:453
  420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  421. msgid "Add new interface..."
  422. msgstr "インターフェースを新規作成..."
  423. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  424. msgid "Add peer"
  425. msgstr "ピアを追加"
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  427. msgid "Add to Blacklist"
  428. msgstr "ブラックリストに追加"
  429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  430. msgid "Add to Whitelist"
  431. msgstr "ホワイトリストに追加"
  432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  433. msgid "Additional Hosts files"
  434. msgstr "追加のホストファイル"
  435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  436. msgid "Additional servers file"
  437. msgstr "追加のサーバーファイル"
  438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  448. msgid "Address"
  449. msgstr "アドレス"
  450. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  451. msgid "Address to access local relay bridge"
  452. msgstr "ローカル リレーブリッジにアクセスするためのアドレス"
  453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  454. msgid "Addresses"
  455. msgstr "アドレス一覧"
  456. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  457. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  458. msgid "Administration"
  459. msgstr "管理"
  460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:466
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:621
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:890
  466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  467. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  468. msgid "Advanced Settings"
  469. msgstr "詳細設定"
  470. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  471. msgid "Advanced device options"
  472. msgstr "デバイスの詳細オプション"
  473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  474. msgid "Ageing time"
  475. msgstr "エージング時間"
  476. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  477. msgid "Aggregate Transmit Power (ACTATP)"
  478. msgstr "総送信電力(ACTATP)"
  479. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  480. msgid "Aggregation Selection Logic"
  481. msgstr "集計の選択ロジック"
  482. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  483. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  484. msgstr ""
  485. "アグリゲーター: すべてのスレーブがダウンしているか、スレーブなし(安定、0)"
  486. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  487. msgid ""
  488. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  489. "state changes (count, 2)"
  490. msgstr ""
  491. "アグリゲーター: ポートの最大数 + スレーブ追加/削除または状態変更によって変更"
  492. "(カウント、2)"
  493. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  494. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  495. msgstr "アグリゲーター: スレーブの追加/削除または状態の変更(帯域幅、1)"
  496. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  497. msgid "Alert"
  498. msgstr "アラート"
  499. #: modules/luci-base/htdocs/luci-static/resources/network.js:2984
  500. #: modules/luci-compat/luasrc/model/network.lua:1417
  501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  502. msgid "Alias Interface"
  503. msgstr "エイリアスインターフェース"
  504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  505. msgid "Alias of \"%s\""
  506. msgstr "\"%s\"のエイリアス"
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  508. msgid "All Servers"
  509. msgstr "すべてのサーバー"
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  511. msgid ""
  512. "Allocate IP addresses sequentially, starting from the lowest available "
  513. "address"
  514. msgstr "利用可能な最小IPアドレスから順番に割り当てる"
  515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  516. msgid "Allocate IP sequentially"
  517. msgstr "順次IP割り当て"
  518. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  519. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  520. msgstr "<abbr title=\"Secure Shell\">SSH</abbr>パスワード認証を許可"
  521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  522. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  523. msgstr "APモードで、低ACK状態のSTAの切断を許可"
  524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1055
  525. msgid "Allow all except listed"
  526. msgstr "リスト内以外のすべてを許可"
  527. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  528. msgid "Allow full UCI access for legacy applications"
  529. msgstr "レガシーアプリケーションにUCIのフルアクセスを許可"
  530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  531. msgid "Allow legacy 802.11b rates"
  532. msgstr "レガシー802.11bレートを許可"
  533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1054
  534. msgid "Allow listed only"
  535. msgstr "リスト内のみアクセスを許可"
  536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  537. msgid "Allow localhost"
  538. msgstr "ローカルホストを許可"
  539. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  540. msgid "Allow rebooting the device"
  541. msgstr "デバイスの再起動を許可"
  542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  543. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  544. msgstr "リモートホストがSSH転送されたローカルのポートに接続することを許可"
  545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  546. msgid "Allow root logins with password"
  547. msgstr "パスワードでの root ログインを許可"
  548. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  549. msgid "Allow system feature probing"
  550. msgstr "システム機能の調査を許可"
  551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  552. msgid "Allow the <em>root</em> user to login with password"
  553. msgstr "パスワードでの <em>root</em> 権限へのログインを許可します"
  554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  555. msgid ""
  556. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  557. msgstr ""
  558. "RBLサービスなどで使用される、上位サーバーからの特定範囲内(127.0.0.0/8)の応"
  559. "答を許可"
  560. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  561. msgid "Allowed IPs"
  562. msgstr "許可されたIP"
  563. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  564. msgid "Always"
  565. msgstr "常に"
  566. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  567. msgid "Always off (kernel: none)"
  568. msgstr "常にオフ(kernel: none)"
  569. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  570. msgid "Always on (kernel: default-on)"
  571. msgstr "常にオン(kernel: default-on)"
  572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  573. msgid ""
  574. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  575. "option does not comply with IEEE 802.11n-2009!"
  576. msgstr ""
  577. "セカンダリチャンネルの重複にかかわらず、常に40MHzチャンネルを使用します。この"
  578. "オプションは、IEEE 802.11n-2009に準拠しません!"
  579. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  580. msgid "Amount of Duplicate Address Detection probes to send"
  581. msgstr "送信に用いる重複アドレス検出(DAD)の数です"
  582. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  583. msgid "An error occurred while saving the form:"
  584. msgstr "フォームの保存中にエラーが発生しました:"
  585. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  586. msgid "An optional, short description for this device"
  587. msgstr ""
  588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1441
  589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  590. msgid "Annex"
  591. msgstr "Annex"
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  593. msgid "Annex A + L + M (all)"
  594. msgstr "Annex A + L + M(すべて)"
  595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  596. msgid "Annex A G.992.1"
  597. msgstr "Annex A G.992.1"
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  599. msgid "Annex A G.992.2"
  600. msgstr "Annex A G.992.2"
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  602. msgid "Annex A G.992.3"
  603. msgstr "Annex A G.992.3"
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  605. msgid "Annex A G.992.5"
  606. msgstr "Annex A G.992.5"
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1443
  608. msgid "Annex B (all)"
  609. msgstr "Annex B(すべて)"
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  611. msgid "Annex B G.992.1"
  612. msgstr "Annex B G.992.1"
  613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  614. msgid "Annex B G.992.3"
  615. msgstr "Annex B G.992.3"
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  617. msgid "Annex B G.992.5"
  618. msgstr "Annex B G.992.5"
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1444
  620. msgid "Annex J (all)"
  621. msgstr "Annex J(すべて)"
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  623. msgid "Annex L G.992.3 POTS 1"
  624. msgstr "Annex L G.992.3 POTS 1"
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  626. msgid "Annex M (all)"
  627. msgstr "Annex M(すべて)"
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  629. msgid "Annex M G.992.3"
  630. msgstr "Annex M G.992.3"
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  632. msgid "Annex M G.992.5"
  633. msgstr "Annex M G.992.5"
  634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  635. msgid "Announce this device as IPv6 DNS server."
  636. msgstr ""
  637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  638. msgid ""
  639. "Announce this device as default router if a local IPv6 default route is "
  640. "present."
  641. msgstr ""
  642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  643. msgid ""
  644. "Announce this device as default router if a public IPv6 prefix is available, "
  645. "regardless of local default route availability."
  646. msgstr ""
  647. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  648. msgid ""
  649. "Announce this device as default router regardless of whether a prefix or "
  650. "default route is present."
  651. msgstr ""
  652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  653. msgid "Announced DNS domains"
  654. msgstr "アナウンスされたDNSドメイン"
  655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:866
  656. msgid "Announced IPv6 DNS servers"
  657. msgstr ""
  658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  659. msgid "Anonymous Identity"
  660. msgstr "匿名アイデンティティ"
  661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  662. msgid "Anonymous Mount"
  663. msgstr "匿名マウント"
  664. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  665. msgid "Anonymous Swap"
  666. msgstr "匿名スワップ"
  667. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  668. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  669. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  670. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  671. msgid "Any zone"
  672. msgstr "すべてのゾーン"
  673. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  674. msgid "Apply backup?"
  675. msgstr "バックアップを適用しますか?"
  676. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4297
  677. msgid "Apply request failed with status <code>%h</code>"
  678. msgstr "適用のリクエストに失敗しました ステータスコード:<code>%h</code>"
  679. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  680. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4163
  681. msgid "Apply unchecked"
  682. msgstr "チェックなしの適用"
  683. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4236
  684. msgid "Applying configuration changes… %ds"
  685. msgstr "設定を適用中… 残り最大%d秒"
  686. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  687. msgid "Architecture"
  688. msgstr "アーキテクチャ"
  689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  690. msgid ""
  691. "Assign a part of given length of every public IPv6-prefix to this interface"
  692. msgstr ""
  693. "パブリックIPv6プレフィックスのうち、指定されたプレフィックス長の一部をこのイ"
  694. "ンターフェースに割り当てる"
  695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  696. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  697. msgid ""
  698. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  699. msgstr ""
  700. "このサブプレフィックスID(16進数)を使用するプレフィックス領域を、このイン"
  701. "ターフェースに割り当てます。"
  702. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2125
  703. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  704. msgid "Associated Stations"
  705. msgstr "接続済み端末"
  706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  707. msgid "Associations"
  708. msgstr "接続数"
  709. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  710. msgid "Attempt to enable configured mount points for attached devices"
  711. msgstr "接続済みデバイスに対して構成済みのマウントポイントを有効化"
  712. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  713. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  714. msgid "Auth Group"
  715. msgstr "認証グループ"
  716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  717. msgid "Authentication"
  718. msgstr "認証"
  719. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  720. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  721. msgid "Authentication Type"
  722. msgstr "認証タイプ"
  723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  724. msgid "Authoritative"
  725. msgstr "権威"
  726. #: modules/luci-base/luasrc/view/sysauth.htm:17
  727. msgid "Authorization Required"
  728. msgstr "ログイン"
  729. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  730. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  731. msgid "Auto Refresh"
  732. msgstr "自動更新"
  733. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  734. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  735. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  736. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  737. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  738. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  739. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  742. msgid "Automatic"
  743. msgstr "自動"
  744. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  745. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  746. msgid "Automatic Homenet (HNCP)"
  747. msgstr "自動ホームネット(HNCP)"
  748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  749. msgid "Automatically check filesystem for errors before mounting"
  750. msgstr "マウントする前にファイルシステムのエラーを自動的にチェック"
  751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  752. msgid "Automatically mount filesystems on hotplug"
  753. msgstr "ファイルシステムをホットプラグによって自動的にマウント"
  754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  755. msgid "Automatically mount swap on hotplug"
  756. msgstr "スワップをホットプラグによって自動的にマウント"
  757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  758. msgid "Automount Filesystem"
  759. msgstr "ファイルシステムを自動的にマウント"
  760. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  761. msgid "Automount Swap"
  762. msgstr "スワップを自動的にマウント"
  763. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  764. msgid "Available"
  765. msgstr "利用可能"
  766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:268
  767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:278
  768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:329
  769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:339
  770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:349
  771. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:234
  772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:244
  773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:254
  774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:291
  777. msgid "Average:"
  778. msgstr "平均:"
  779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  780. msgid "B43 + B43C"
  781. msgstr "B43 + B43C"
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  783. msgid "B43 + B43C + V43"
  784. msgstr "B43 + B43C + V43"
  785. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  786. msgid "BR / DMR / AFTR"
  787. msgstr "BR / DMR / AFTR"
  788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  791. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  792. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  793. msgid "BSSID"
  794. msgstr "BSSID"
  795. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  796. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  797. msgid "Back to Overview"
  798. msgstr "概要へ戻る"
  799. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  800. msgid "Back to configuration"
  801. msgstr "設定へ戻る"
  802. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  803. msgid "Backup"
  804. msgstr "バックアップ"
  805. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  806. msgid "Backup / Flash Firmware"
  807. msgstr "バックアップ/フラッシュ"
  808. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  809. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  810. msgid "Backup file list"
  811. msgstr "バックアップファイルリスト"
  812. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:473
  814. msgid "Band"
  815. msgstr "バンド"
  816. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  817. msgid "Base device"
  818. msgstr "ベース デバイス"
  819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:940
  820. msgid "Beacon Interval"
  821. msgstr "ビーコン間隔"
  822. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  823. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  824. msgid ""
  825. "Below is the determined list of files to backup. It consists of changed "
  826. "configuration files marked by opkg, essential base files and the user "
  827. "defined backup patterns."
  828. msgstr ""
  829. "以下は、バックアップの際に含まれるファイルのリストです。このリストは、変更が"
  830. "opkgに認識されている設定ファイル、重要な基本ファイル、ユーザーが設定したパ"
  831. "ターンに一致したファイルの一覧です。"
  832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  833. msgid ""
  834. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  835. "linux default)"
  836. msgstr ""
  837. "ワイルドカードアドレスよりもインターフェースへ動的にバインド(Linuxのデフォル"
  838. "トとして推奨)"
  839. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  840. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  843. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  844. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  845. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  846. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  847. msgid "Bind interface"
  848. msgstr "インターフェースをバインド"
  849. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  850. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  851. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  852. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  853. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  854. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  855. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  856. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  857. msgid "Bind the tunnel to this interface (optional)."
  858. msgstr "トンネルをこのインターフェースにバインド(オプション)。"
  859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  861. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  862. msgid "Bitrate"
  863. msgstr "ビットレート"
  864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  865. msgid "Bogus NX Domain Override"
  866. msgstr "本物でないNXドメインを上書き"
  867. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  868. msgid "Bonding Policy"
  869. msgstr "ボンディングポリシー"
  870. #: modules/luci-base/htdocs/luci-static/resources/network.js:2990
  871. #: modules/luci-compat/luasrc/model/network.lua:1421
  872. msgid "Bridge"
  873. msgstr "ブリッジ"
  874. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:476
  875. msgctxt "MACVLAN mode"
  876. msgid "Bridge (Support direct communication between MAC VLANs)"
  877. msgstr "ブリッジ(MAC ベース VLAN間の直接通信をサポート)"
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:469
  880. msgid "Bridge VLAN filtering"
  881. msgstr "ブリッジ VLAN フィルタリング"
  882. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1364
  884. msgid "Bridge device"
  885. msgstr "ブリッジ デバイス"
  886. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:396
  887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:468
  888. msgid "Bridge port specific options"
  889. msgstr "ブリッジ ポート用オプション"
  890. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:503
  891. msgid "Bridge ports"
  892. msgstr "ブリッジ ポート"
  893. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  894. msgid "Bridge unit number"
  895. msgstr "ブリッジユニット番号"
  896. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  897. msgid "Bring up empty bridge"
  898. msgstr "空のブリッジを起動"
  899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:563
  900. msgid "Bring up on boot"
  901. msgstr "ブート時に起動"
  902. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:540
  903. msgid "Bring up the bridge interface even if no ports are attached"
  904. msgstr "ポートがアタッチされていなくてもブリッジ インターフェースを起動します"
  905. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  906. msgid "Broadcast policy (broadcast, 3)"
  907. msgstr "ブロードキャストポリシー(broadcast、3)"
  908. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2829
  909. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3820
  910. msgid "Browse…"
  911. msgstr "参照…"
  912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  913. msgid "Buffered"
  914. msgstr "バッファ済み"
  915. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  916. msgid "CA certificate; if empty it will be saved after the first connection."
  917. msgstr "CA証明書(空白の場合、最初の接続後に保存されます。)"
  918. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  919. msgid "CLAT configuration failed"
  920. msgstr "CLATの構成に失敗しました"
  921. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  922. msgid "CPU usage (%)"
  923. msgstr "CPU使用率(%)"
  924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  925. msgid "Cached"
  926. msgstr "キャッシュ済"
  927. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  928. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  929. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  930. msgid "Call failed"
  931. msgstr "呼び出しに失敗しました"
  932. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  933. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3829
  934. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  935. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1108
  938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1999
  939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  940. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  941. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  942. msgid "Cancel"
  943. msgstr "キャンセル"
  944. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  945. msgid "Category"
  946. msgstr "カテゴリー"
  947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  948. msgid "Certificate constraint (Domain)"
  949. msgstr "証明書制限(ドメイン)"
  950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  951. msgid "Certificate constraint (SAN)"
  952. msgstr "証明書制限(SAN)"
  953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  954. msgid "Certificate constraint (Subject)"
  955. msgstr "証明書制限(サブジェクト)"
  956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  957. msgid "Certificate constraint (Wildcard)"
  958. msgstr "証明書制限(ワイルドカード)"
  959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1552
  960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  961. msgid ""
  962. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  963. "`logread -f` during handshake for actual values"
  964. msgstr ""
  965. "証明書制限の一部(例: /CN=wifi.mycompany.com)<br />実際の値については、ハン"
  966. "ドシェイク中に`logread -f`で確認してください"
  967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  969. msgid ""
  970. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  971. "Subject CN (exact match)"
  972. msgstr ""
  973. "DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(完"
  974. "全一致)"
  975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1561
  976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  977. msgid ""
  978. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  979. "Subject CN (suffix match)"
  980. msgstr ""
  981. "DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(サ"
  982. "フィックス一致)"
  983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555
  984. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  985. msgid ""
  986. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  987. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  988. msgstr ""
  989. "サブジェクト代替名によって証明書の制限を行います<br />(サポートされる属性: "
  990. "EMAIL, DNS, URI(例: DNS:wifi.mycompany.com))"
  991. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  992. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  993. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  994. msgid "Chain"
  995. msgstr "チェイン"
  996. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  997. msgid "Changes"
  998. msgstr "変更"
  999. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4332
  1000. msgid "Changes have been reverted."
  1001. msgstr "変更は取り消されました。"
  1002. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1003. msgid "Changes the administrator password for accessing the device"
  1004. msgstr "デバイスにアクセスするための管理者パスワードを変更"
  1005. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1008. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:482
  1009. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1700
  1010. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  1011. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  1012. msgid "Channel"
  1013. msgstr "チャンネル"
  1014. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  1015. msgid "Channel Analysis"
  1016. msgstr "チャネル分析"
  1017. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  1018. msgid "Channel Width"
  1019. msgstr "チャネル幅"
  1020. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1021. msgid "Check filesystems before mount"
  1022. msgstr "マウント前にファイルシステムをチェック"
  1023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  1024. msgid "Check this option to delete the existing networks from this radio."
  1025. msgstr ""
  1026. "この無線から既存のネットワークを削除する場合、このオプションを有効にしてくだ"
  1027. "さい。"
  1028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1029. msgid "Checking archive…"
  1030. msgstr "アーカイブのチェック中…"
  1031. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1032. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1033. msgid "Checking image…"
  1034. msgstr "イメージのチェック中…"
  1035. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1036. msgid "Choose mtdblock"
  1037. msgstr "mtdblockを選択"
  1038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  1039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  1040. msgid ""
  1041. "Choose the firewall zone you want to assign to this interface. Select "
  1042. "<em>unspecified</em> to remove the interface from the associated zone or "
  1043. "fill out the <em>custom</em> field to define a new zone and attach the "
  1044. "interface to it."
  1045. msgstr ""
  1046. "このインターフェースに割り当てるファイアウォールゾーンを選択してください。"
  1047. "<em>設定しない</em>を選択すると、割り当てられたゾーンを削除します。<em>カスタ"
  1048. "ム</em>フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインター"
  1049. "フェースを追加します。"
  1050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  1051. msgid ""
  1052. "Choose the network(s) you want to attach to this wireless interface or fill "
  1053. "out the <em>custom</em> field to define a new network."
  1054. msgstr ""
  1055. "この無線インターフェースを追加するネットワークを選択してください。<em>カスタ"
  1056. "ム</em>フィールドにネットワーク名を入力すると新規ネットワークを作成します。"
  1057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1187
  1058. msgid "Cipher"
  1059. msgstr "暗号"
  1060. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1061. msgid "Cisco UDP encapsulation"
  1062. msgstr "Cisco UDPカプセル化"
  1063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1064. msgid ""
  1065. "Click \"Generate archive\" to download a tar archive of the current "
  1066. "configuration files."
  1067. msgstr ""
  1068. "\"アーカイブを生成\"をクリックすると、現在の設定ファイルをtar形式のアーカイブ"
  1069. "ファイルとしてダウンロードします。"
  1070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1071. msgid ""
  1072. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1073. "FEATURE IS FOR PROFESSIONALS! )"
  1074. msgstr ""
  1075. "\"mtdblockを保存\"をクリックすると、指定したmtdblockファイルをダウンロードし"
  1076. "ます。(注意: この機能はプロ向けです!)"
  1077. #: modules/luci-base/htdocs/luci-static/resources/network.js:3821
  1078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  1080. msgid "Client"
  1081. msgstr "クライアント"
  1082. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1083. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1084. msgid "Client ID to send when requesting DHCP"
  1085. msgstr "DHCPリクエスト時に送信するクライアントID"
  1086. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4066
  1087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1089. msgid "Close"
  1090. msgstr "閉じる"
  1091. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1092. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1093. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1094. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1095. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1096. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1097. msgid ""
  1098. "Close inactive connection after the given amount of seconds, use 0 to "
  1099. "persist connection"
  1100. msgstr ""
  1101. "設定した秒数後に、非アクティブな接続を閉じます。0を設定した場合、接続を維持し"
  1102. "ます"
  1103. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1104. msgid "Close list..."
  1105. msgstr "リストを閉じる..."
  1106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2123
  1109. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:389
  1110. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1111. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1112. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1113. msgid "Collecting data..."
  1114. msgstr "データを収集中..."
  1115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1116. msgid "Command"
  1117. msgstr "コマンド"
  1118. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1119. msgid "Command OK"
  1120. msgstr "コマンドOK"
  1121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1122. msgid "Command failed"
  1123. msgstr "コマンド実行失敗"
  1124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1125. msgid "Comment"
  1126. msgstr "コメント"
  1127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1128. msgid ""
  1129. "Complicates key reinstallation attacks on the client side by disabling "
  1130. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1131. "workaround might cause interoperability issues and reduced robustness of key "
  1132. "negotiation especially in environments with heavy traffic load."
  1133. msgstr ""
  1134. "キーのインストールに使用されるEAPOLキーフレームの再送信を無効化することによ"
  1135. "り、クライアント側のKey Reinstallation Attacks(KRACK)を困難にします。これは"
  1136. "互換性の問題を発生させたり、主に高負荷のトラフィック環境下におけるキーネゴシ"
  1137. "エーションの信頼性低下の原因になることがあります。"
  1138. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1139. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1140. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1141. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1142. msgid "Compute outgoing checksum (optional)."
  1143. msgstr "送信チェックサムを計算します(オプション)。"
  1144. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4049
  1145. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1146. msgid "Configuration"
  1147. msgstr "設定"
  1148. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4211
  1149. msgid "Configuration changes applied."
  1150. msgstr "設定が適用されました。"
  1151. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4149
  1152. msgid "Configuration changes have been rolled back!"
  1153. msgstr "設定がロールバックされました!"
  1154. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1155. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1156. msgid "Configuration failed"
  1157. msgstr "設定に失敗しました"
  1158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1159. #, fuzzy
  1160. msgid ""
  1161. "Configures data rates based on the coverage cell density. Normal configures "
  1162. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1163. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1164. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1165. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1166. "offered."
  1167. msgstr ""
  1168. "通話エリアの密度に基づいてデータレートを設定します。密度が通常の場合、従来の"
  1169. "802.11bレートが5.5、11Mbps以外で使用されていない場合に基本レートを6、12、"
  1170. "24Mbpsに設定します。密度が高い場合、従来の802.11bレートが11Mbps以外で使用され"
  1171. "ていない場合に基本レートを12、24Mbpsに設定します。密度がとても高い場合、基本"
  1172. "レートを24Mbpsに設定します。サポートされているレートが最小の基本レートよりも"
  1173. "低い場合は提供されません。"
  1174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  1175. msgid ""
  1176. "Configures the default router advertisement in <abbr title=\"Router "
  1177. "Advertisement\">RA</abbr> messages."
  1178. msgstr ""
  1179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:752
  1180. msgid ""
  1181. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1182. "\">RA</abbr> service on this interface."
  1183. msgstr ""
  1184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:856
  1185. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1186. msgstr ""
  1187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  1188. msgid ""
  1189. "Configures the operation mode of the NDP proxy service on this interface."
  1190. msgstr ""
  1191. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1192. msgid "Configure…"
  1193. msgstr "設定…"
  1194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1195. msgid "Confirm disconnect"
  1196. msgstr "切断の確認"
  1197. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1198. msgid "Confirmation"
  1199. msgstr "確認"
  1200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1202. msgid "Connected"
  1203. msgstr "接続中"
  1204. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1205. #: modules/luci-compat/luasrc/model/network.lua:27
  1206. msgid "Connection attempt failed"
  1207. msgstr "接続の試行に失敗しました"
  1208. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1209. msgid "Connection attempt failed."
  1210. msgstr "接続の試行に失敗しました。"
  1211. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1212. msgid "Connection lost"
  1213. msgstr "接続が失われました"
  1214. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1215. msgid "Connections"
  1216. msgstr "接続数"
  1217. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1218. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1219. msgstr "すべてのARP IPターゲットが到達可能な場合に、スレーブと見なす(all、1)"
  1220. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1221. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1222. msgstr "任意のARP IPターゲットが到達可能な場合に、スレーブと見なす(any、0)"
  1223. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1224. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1226. msgid "Contents have been saved."
  1227. msgstr "内容が保存されました。"
  1228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:387
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:421
  1230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:766
  1231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1232. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1233. msgid "Continue"
  1234. msgstr "続行"
  1235. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4185
  1236. msgid ""
  1237. "Could not regain access to the device after applying the configuration "
  1238. "changes. You might need to reconnect if you modified network related "
  1239. "settings such as the IP address or wireless security credentials."
  1240. msgstr ""
  1241. "設定の変更を適用後、デバイスに再接続できませんでした。IPアドレスや無線のセ"
  1242. "キュリティ認証情報などのネットワーク関連の設定を変更した場合、手動で再接続す"
  1243. "る必要があるかもしれません。"
  1244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1245. msgid "Country"
  1246. msgstr "国"
  1247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:916
  1248. msgid "Country Code"
  1249. msgstr "国コード"
  1250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:919
  1251. msgid "Coverage cell density"
  1252. msgstr "通信エリアの密度"
  1253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:568
  1254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1989
  1255. msgid "Create / Assign firewall-zone"
  1256. msgstr "ファイアウォールゾーンの作成または割り当て"
  1257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1137
  1258. msgid "Create interface"
  1259. msgstr "インターフェースを作成"
  1260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1261. msgid "Critical"
  1262. msgstr "重大"
  1263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1264. msgid "Cron Log Level"
  1265. msgstr "Cronログレベル"
  1266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:557
  1267. msgid "Current power"
  1268. msgstr "現在の出力"
  1269. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1270. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1271. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1272. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1273. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1274. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1275. msgid "Custom Interface"
  1276. msgstr "カスタマイズされたインターフェース"
  1277. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1278. msgid ""
  1279. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1280. "this, perform a factory-reset first."
  1281. msgstr ""
  1282. "カスタムファイル(証明書、スクリプト)がシステムに残ることがあります。これを"
  1283. "防ぐには、最初に初期化を行ってください。"
  1284. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1285. msgid "Custom flash interval (kernel: timer)"
  1286. msgstr "任意の点滅間隔(kernel: timer)"
  1287. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1288. msgid ""
  1289. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1290. "\">LED</abbr>s if possible."
  1291. msgstr ""
  1292. "デバイスの<abbr title=\"Light Emitting Diode\">LED</abbr>の動作をカスタマイズ"
  1293. "します(デバイスが対応している場合)。"
  1294. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:719
  1295. msgid "DAD transmits"
  1296. msgstr ""
  1297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1392
  1298. msgid "DAE-Client"
  1299. msgstr "DAEクライアント"
  1300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1301. msgid "DAE-Port"
  1302. msgstr "DAEポート"
  1303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1402
  1304. msgid "DAE-Secret"
  1305. msgstr "DAEシークレット"
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:471
  1307. msgid "DHCP Server"
  1308. msgstr "DHCPサーバー"
  1309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1310. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1311. msgid "DHCP and DNS"
  1312. msgstr "DHCPおよびDNS"
  1313. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  1314. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1315. #: modules/luci-compat/luasrc/model/network.lua:969
  1316. msgid "DHCP client"
  1317. msgstr "DHCPクライアント"
  1318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1319. msgid "DHCP-Options"
  1320. msgstr "DHCPオプション"
  1321. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1322. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1323. msgid "DHCPv6 client"
  1324. msgstr "DHCPv6クライアント"
  1325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:855
  1326. msgid "DHCPv6-Service"
  1327. msgstr "DHCPv6-サービス"
  1328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1329. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1332. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1333. msgid "DNS"
  1334. msgstr "DNS"
  1335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1336. msgid "DNS forwardings"
  1337. msgstr "DNSフォワーディング"
  1338. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:920
  1339. msgid "DNS search domains"
  1340. msgstr "DNS 検索ドメイン"
  1341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1342. msgid "DNS weight"
  1343. msgstr "DNS ウェイト"
  1344. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1345. msgid "DNS-Label / FQDN"
  1346. msgstr "DNS-ラベル / FQDN"
  1347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1348. msgid "DNSSEC"
  1349. msgstr "DNSSEC"
  1350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1351. msgid "DNSSEC check unsigned"
  1352. msgstr "DNSSEC未署名チェック"
  1353. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1354. msgid "DPD Idle Timeout"
  1355. msgstr "DPDアイドルタイムアウト"
  1356. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1357. msgid "DS-Lite AFTR address"
  1358. msgstr "DS-Lite AFTRアドレス"
  1359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1438
  1360. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1361. msgid "DSL"
  1362. msgstr "DSL"
  1363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1364. msgid "DSL Status"
  1365. msgstr "DSLステータス"
  1366. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  1367. msgid "DSL line mode"
  1368. msgstr "DSL回線モード"
  1369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1370. msgid "DTIM Interval"
  1371. msgstr "DTIM間隔"
  1372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1374. msgid "DUID"
  1375. msgstr "DUID"
  1376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1377. msgid "Data Rate"
  1378. msgstr "データレート"
  1379. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1380. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1381. msgid "Debug"
  1382. msgstr "デバッグ"
  1383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  1384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  1385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  1386. msgid "Default %d"
  1387. msgstr "デフォルト %d"
  1388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:762
  1389. msgid "Default router"
  1390. msgstr ""
  1391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1392. msgid "Default state"
  1393. msgstr "デフォルト状態"
  1394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:695
  1395. msgid ""
  1396. "Define additional DHCP options, for example "
  1397. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1398. "servers to clients."
  1399. msgstr ""
  1400. "追加のDHCPオプションを設定します(例: クライアントに指定のDNSサーバーを通知す"
  1401. "るには、\"<code>6,192.168.2.1,192.168.2.2</code>\"と設定します)。"
  1402. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1403. msgid ""
  1404. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1405. "but for outgoing frames"
  1406. msgstr ""
  1407. "Linux 内部パケット優先度から VLAN ヘッダー優先度フィールドへのマッピングを定"
  1408. "義します(送信フレーム用)"
  1409. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1410. msgid ""
  1411. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1412. "priority on incoming frames"
  1413. msgstr ""
  1414. "VLAN ヘッダー優先度フィールドから Linux 内部パケット優先度へのマッピングを定"
  1415. "義します(受信フレーム用)"
  1416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1417. msgid "Delegate IPv6 prefixes"
  1418. msgstr "IPv6 プレフィックスの委任"
  1419. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1420. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1421. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1422. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1423. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2891
  1424. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1425. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1426. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1427. msgid "Delete"
  1428. msgstr "削除"
  1429. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1430. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1431. msgid "Delete key"
  1432. msgstr "鍵を削除"
  1433. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2788
  1434. msgid "Delete request failed: %s"
  1435. msgstr "削除の要求に失敗しました: %s"
  1436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:871
  1437. msgid "Delete this network"
  1438. msgstr "このネットワークを削除"
  1439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1127
  1440. msgid "Delivery Traffic Indication Message Interval"
  1441. msgstr "Delivery Traffic Indication Message(DTIM)間隔"
  1442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1444. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1445. msgid "Description"
  1446. msgstr "説明"
  1447. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2887
  1448. msgid "Deselect"
  1449. msgstr "選択を解除"
  1450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1451. msgid "Design"
  1452. msgstr "デザイン"
  1453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  1454. msgid "Designated master"
  1455. msgstr ""
  1456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  1457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1458. msgid "Destination"
  1459. msgstr "宛先"
  1460. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1461. msgid "Destination port"
  1462. msgstr "宛先ポート"
  1463. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1464. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1465. msgid "Destination zone"
  1466. msgstr "宛先ゾーン"
  1467. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1468. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1469. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:557
  1473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1090
  1474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  1475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1477. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1480. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1481. msgid "Device"
  1482. msgstr "デバイス"
  1483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:885
  1484. msgid "Device Configuration"
  1485. msgstr "デバイス設定"
  1486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1487. msgid "Device is not active"
  1488. msgstr "デバイスはアクティブではありません"
  1489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:623
  1491. msgid "Device is restarting…"
  1492. msgstr "デバイスを再起動中…"
  1493. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:480
  1494. msgid "Device name"
  1495. msgstr "デバイス名"
  1496. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1497. msgid "Device not managed by ModemManager."
  1498. msgstr "モデムマネージャーはデバイスを管理していません。"
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1355
  1500. msgid "Device not present"
  1501. msgstr "デバイスが存在しません"
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  1503. msgid "Device type"
  1504. msgstr "デバイス タイプ"
  1505. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4184
  1506. msgid "Device unreachable!"
  1507. msgstr "デバイスにアクセスできません!"
  1508. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1509. msgid "Device unreachable! Still waiting for device..."
  1510. msgstr "デバイスにアクセスできません!まだデバイスを待っています..."
  1511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1212
  1512. msgid "Devices"
  1513. msgstr "デバイス"
  1514. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1515. msgid "Diagnostics"
  1516. msgstr "診断"
  1517. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1518. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1519. msgid "Dial number"
  1520. msgstr "ダイヤル番号"
  1521. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2684
  1522. msgid "Directory"
  1523. msgstr "ディレクトリ"
  1524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1526. msgid "Disable"
  1527. msgstr "無効"
  1528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  1529. msgid ""
  1530. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1531. "this interface."
  1532. msgstr ""
  1533. "このインターフェースでの<abbr title=\"Dynamic Host Configuration Protocol"
  1534. "\">DHCP</abbr>を無効化。"
  1535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1537. msgid "Disable DNS lookups"
  1538. msgstr "DNS逆引きを無効化"
  1539. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1540. msgid "Disable Encryption"
  1541. msgstr "暗号化を無効化"
  1542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1137
  1543. msgid "Disable Inactivity Polling"
  1544. msgstr "非アクティブ状態のポーリングを無効化"
  1545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1546. msgid "Disable this network"
  1547. msgstr "このネットワークを無効化"
  1548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:920
  1549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  1550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1552. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1553. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1554. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1555. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1556. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1557. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1558. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1559. msgid "Disabled"
  1560. msgstr "無効"
  1561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  1562. #, fuzzy
  1563. msgid "Disassociate On Low Acknowledgement"
  1564. msgstr "確認応答が不安定な場合、接続解除"
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1566. msgid "Discard upstream RFC1918 responses"
  1567. msgstr "アップストリームのRFC1918応答を破棄します"
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:689
  1570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1572. msgid "Disconnect"
  1573. msgstr "切断"
  1574. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1575. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1576. msgid "Disconnection attempt failed"
  1577. msgstr "切断の試行に失敗しました"
  1578. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1579. msgid "Disconnection attempt failed."
  1580. msgstr "切断の試行に失敗しました。"
  1581. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1582. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1583. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3328
  1584. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4155
  1585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1725
  1586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1587. msgid "Dismiss"
  1588. msgstr "閉じる"
  1589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1590. msgid "Distance Optimization"
  1591. msgstr "距離最適化"
  1592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:925
  1593. msgid "Distance to farthest network member in meters."
  1594. msgstr "一番遠い端末との距離(メートル単位)。"
  1595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1596. msgid ""
  1597. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1598. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1599. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1600. "firewalls"
  1601. msgstr ""
  1602. "Dnsmasqは、<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1603. "サーバーと<abbr title=\"Network Address Translation\">NAT</abbr>ファイア"
  1604. "ウォールのための<abbr title=\"Domain Name System\">DNS</abbr>フォワーダーの両"
  1605. "方を提供します"
  1606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1607. msgid "Do not cache negative replies, e.g. for not existing domains"
  1608. msgstr "無効な応答をキャッシュしない(存在しないドメインからの応答など)"
  1609. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1610. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1611. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1612. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1613. msgid "Do not create host route to peer (optional)."
  1614. msgstr "ピアへのホストルートを作成しない(オプション)。"
  1615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1616. msgid "Do not forward requests that cannot be answered by public name servers"
  1617. msgstr "パブリックDNSサーバーが応答できないリクエストを転送しない"
  1618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1619. msgid "Do not forward reverse lookups for local networks"
  1620. msgstr "ローカルネットワークへの逆引きを転送しない"
  1621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  1622. msgid "Do not offer DHCPv6 service on this interface."
  1623. msgstr ""
  1624. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:208
  1625. msgctxt "VLAN port state"
  1626. msgid "Do not participate"
  1627. msgstr "不参加"
  1628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:888
  1629. msgid ""
  1630. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1631. "packets."
  1632. msgstr ""
  1633. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1634. msgid "Do not send a hostname"
  1635. msgstr "ホスト名を送信しない"
  1636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:754
  1637. msgid ""
  1638. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1639. "abbr> messages on this interface."
  1640. msgstr ""
  1641. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1642. msgid "Do you really want to delete \"%s\" ?"
  1643. msgstr "本当に\"%s\"を削除しますか?"
  1644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1645. msgid "Do you really want to delete the following SSH key?"
  1646. msgstr "本当に以下のSSH公開鍵を削除しますか?"
  1647. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1648. msgid "Do you really want to erase all settings?"
  1649. msgstr "本当にすべての設定を消去しますか?"
  1650. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2772
  1651. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1652. msgstr "本当にディレクトリ\"%s\"を再帰的に削除しますか?"
  1653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1654. msgid "Domain required"
  1655. msgstr "ドメイン必須"
  1656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1657. msgid "Domain whitelist"
  1658. msgstr "ドメインホワイトリスト"
  1659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1660. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1661. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1662. msgid "Don't Fragment"
  1663. msgstr "IPフラグメンテーションを行わない"
  1664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1665. msgid ""
  1666. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1667. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1668. msgstr ""
  1669. "<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain "
  1670. "Name System\">DNS</abbr> リクエストを転送しない"
  1671. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1672. msgid "Down"
  1673. msgstr "下へ"
  1674. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1675. msgid "Down Delay"
  1676. msgstr "ダウンディレイ"
  1677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1678. msgid "Download backup"
  1679. msgstr "バックアップをダウンロード"
  1680. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1681. msgid "Download mtdblock"
  1682. msgstr "mtdblockをダウンロード"
  1683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  1684. msgid "Downstream SNR offset"
  1685. msgstr "下りSNRオフセット"
  1686. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1687. msgid "Drag to reorder"
  1688. msgstr "ドラッグして並び替え"
  1689. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1690. msgid "Drop Duplicate Frames"
  1691. msgstr "重複フレームをドロップ"
  1692. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1693. msgid "Dropbear Instance"
  1694. msgstr "Dropbearインスタンス"
  1695. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1696. msgid ""
  1697. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1698. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1699. msgstr ""
  1700. "Dropbearは<abbr title=\"Secure Shell\">SSH</abbr>ネットワークへのシェルアクセ"
  1701. "スと統合された<abbr title=\"Secure Copy\">SCP</abbr>サーバーを提供します"
  1702. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1703. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1704. msgid "Dual-Stack Lite (RFC6333)"
  1705. msgstr "Dual-Stack Lite (RFC6333)"
  1706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1707. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1708. msgstr "動的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1709. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1710. msgid "Dynamic tunnel"
  1711. msgstr "動的トンネル"
  1712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:671
  1713. msgid ""
  1714. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1715. "having static leases will be served."
  1716. msgstr ""
  1717. "クライアントに対して動的にDHCPアドレスを割り振ります。無効化した場合、固定IP"
  1718. "アドレスが設定されたクライアントのみ接続できます。"
  1719. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1720. msgid "EA-bits length"
  1721. msgstr "EAビット長"
  1722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1530
  1723. msgid "EAP-Method"
  1724. msgstr "EAPメソッド"
  1725. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1726. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1727. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1728. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1729. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:868
  1732. msgid "Edit"
  1733. msgstr "編集"
  1734. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1735. msgid ""
  1736. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1737. "reload the page."
  1738. msgstr ""
  1739. "上記の設定データを編集してエラーを修正し、\"保存\"ボタンを押してページを再読"
  1740. "み込みしてください。"
  1741. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:866
  1742. msgid "Edit this network"
  1743. msgstr "このネットワークを編集"
  1744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:817
  1745. msgid "Edit wireless network"
  1746. msgstr "無線ネットワークを編集"
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:497
  1748. msgid "Egress QoS mapping"
  1749. msgstr "Egress QoS マッピング"
  1750. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:216
  1751. msgctxt "VLAN port state"
  1752. msgid "Egress tagged"
  1753. msgstr "Egress タグ付き"
  1754. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:212
  1755. msgctxt "VLAN port state"
  1756. msgid "Egress untagged"
  1757. msgstr "Egress タグ無し"
  1758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1759. msgid "Emergency"
  1760. msgstr "緊急"
  1761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:863
  1762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:903
  1763. msgid "Enable"
  1764. msgstr "有効化"
  1765. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1766. msgid ""
  1767. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1768. "snooping"
  1769. msgstr ""
  1770. "<abbr title=\"Internet Group Management Protocol\">IGMP</abbr>スヌーピングを"
  1771. "有効化"
  1772. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1773. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1774. msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効化"
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:773
  1776. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1777. msgstr ""
  1778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:367
  1780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:373
  1781. msgid "Enable DNS lookups"
  1782. msgstr "DNS逆引きを有効化"
  1783. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1784. msgid "Enable Dynamic Shuffling Of Flows"
  1785. msgstr "フローの動的シャッフルを有効化"
  1786. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1787. msgid "Enable HE.net dynamic endpoint update"
  1788. msgstr "HE.netの動的エンドポイント更新を有効化"
  1789. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:709
  1790. msgid "Enable IPv6"
  1791. msgstr "IPv6 を有効化"
  1792. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1793. msgid "Enable IPv6 negotiation"
  1794. msgstr "IPv6ネゴシエーションを有効化"
  1795. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1796. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1797. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1798. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1799. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1800. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1801. msgid "Enable IPv6 negotiation on the PPP link"
  1802. msgstr "PPPリンクのIPv6ネゴシエーションを有効化"
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1804. msgid "Enable Jumbo Frame passthrough"
  1805. msgstr "ジャンボフレームパススルーを有効化"
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:743
  1807. msgid "Enable MAC address learning"
  1808. msgstr "MAC アドレス学習を有効化"
  1809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1810. msgid "Enable NTP client"
  1811. msgstr "NTPクライアントを有効化"
  1812. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1813. msgid "Enable Single DES"
  1814. msgstr "シングルDESを有効化"
  1815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1816. msgid "Enable TFTP server"
  1817. msgstr "TFTPサーバーを有効化"
  1818. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  1819. msgid "Enable VLAN filterering"
  1820. msgstr "VLAN フィルタリングを有効化"
  1821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1822. msgid "Enable VLAN functionality"
  1823. msgstr "VLAN機能を有効化"
  1824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1675
  1825. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1826. msgstr "WPSプッシュボタンを有効にします。WPA(2)-PSK/WPA3-SAEが必要です"
  1827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:943
  1828. msgid ""
  1829. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1830. msgstr ""
  1831. "このデバイスで利用可能な IPv6 プレフィックスのダウンストリーム委任を有効にし"
  1832. "ます"
  1833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  1834. msgid "Enable key reinstallation (KRACK) countermeasures"
  1835. msgstr "Key Reinstallation(KRACK)対策を有効化"
  1836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1837. #, fuzzy
  1838. msgid "Enable learning and aging"
  1839. msgstr "ラーニングエイジング機能を有効化"
  1840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1841. msgid "Enable mirroring of incoming packets"
  1842. msgstr "受信パケットのミラーリングを有効化"
  1843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1844. msgid "Enable mirroring of outgoing packets"
  1845. msgstr "送信パケットのミラーリングを有効化"
  1846. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:765
  1847. msgid "Enable multicast fast leave"
  1848. msgstr "マルチキャスト高速脱退を有効化"
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:583
  1850. msgid "Enable multicast querier"
  1851. msgstr "マルチキャスト クエリアーを有効化"
  1852. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  1853. msgid "Enable multicast support"
  1854. msgstr "マルチキャスト サポートを有効化"
  1855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  1856. msgid ""
  1857. "Enable packet steering across all CPUs. May help or hinder network speed."
  1858. msgstr ""
  1859. "すべてのCPUでパケットステアリングを有効にします。 ネットワーク速度を向上また"
  1860. "は低下させることがあります。"
  1861. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:659
  1862. msgid "Enable promiscuous mode"
  1863. msgstr "プロミスキャス モードを有効化"
  1864. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1865. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1866. msgid "Enable rx checksum"
  1867. msgstr "rxチェックサムを有効化"
  1868. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1869. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1870. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1871. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1872. msgid "Enable support for multicast traffic (optional)."
  1873. msgstr "マルチキャストトラフィックのサポートを有効化(オプション)。"
  1874. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1875. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1876. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1877. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1878. msgstr "カプセル化されたパケットの DF(Don't Fragment)フラグを有効にします。"
  1879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:861
  1880. msgid "Enable this network"
  1881. msgstr "このネットワークを有効化"
  1882. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1883. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1884. msgid "Enable tx checksum"
  1885. msgstr "txチェックサムを有効化"
  1886. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  1887. msgid "Enable unicast flooding"
  1888. msgstr "ユニキャスト フラッディングを有効化"
  1889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1890. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1891. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1892. msgid "Enabled"
  1893. msgstr "有効"
  1894. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:574
  1895. msgid "Enables IGMP snooping on this bridge"
  1896. msgstr "このブリッジのIGMPスヌーピングを有効化"
  1897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  1898. msgid ""
  1899. "Enables fast roaming among access points that belong to the same Mobility "
  1900. "Domain"
  1901. msgstr "同じモビリティドメインを持つアクセスポイント間の高速ローミングを有効化"
  1902. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:554
  1903. msgid "Enables the Spanning Tree Protocol on this bridge"
  1904. msgstr "このブリッジのスパニングツリープロトコル(STP)を有効化"
  1905. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1906. msgid "Encapsulation limit"
  1907. msgstr "カプセル化限度"
  1908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  1909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1524
  1910. msgid "Encapsulation mode"
  1911. msgstr "カプセル化モード"
  1912. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1156
  1915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1703
  1916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1917. msgid "Encryption"
  1918. msgstr "暗号化"
  1919. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1920. msgid "Endpoint Host"
  1921. msgstr "エンドポイントホスト"
  1922. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1923. msgid "Endpoint Port"
  1924. msgstr "エンドポイントポート"
  1925. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:731
  1926. msgid "Enforce IGMPv1"
  1927. msgstr "IGMPv1 を強制"
  1928. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:732
  1929. msgid "Enforce IGMPv2"
  1930. msgstr "IGMPv2 を強制"
  1931. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  1932. msgid "Enforce IGMPv3"
  1933. msgstr "IGMPv3 を強制"
  1934. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:738
  1935. msgid "Enforce MLD version 1"
  1936. msgstr "MLD バージョン1を強制"
  1937. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:739
  1938. msgid "Enforce MLD version 2"
  1939. msgstr "MLD バージョン2を強制"
  1940. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1941. msgid "Enter custom value"
  1942. msgstr "カスタム値を入力"
  1943. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1944. msgid "Enter custom values"
  1945. msgstr "カスタム値を入力"
  1946. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1947. msgid "Erasing..."
  1948. msgstr "消去中..."
  1949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1954. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1955. msgid "Error"
  1956. msgstr "エラー"
  1957. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1958. msgid "Errored seconds (ES)"
  1959. msgstr "エラー秒数(ES)"
  1960. #: modules/luci-base/htdocs/luci-static/resources/network.js:3003
  1961. #: modules/luci-compat/luasrc/model/network.lua:1433
  1962. msgid "Ethernet Adapter"
  1963. msgstr "イーサネットアダプタ"
  1964. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  1965. #: modules/luci-compat/luasrc/model/network.lua:1423
  1966. msgid "Ethernet Switch"
  1967. msgstr "イーサネットスイッチ"
  1968. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1969. msgid "Every 30 seconds (slow, 0)"
  1970. msgstr "30秒ごと(slow、0)"
  1971. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1972. msgid "Every second (fast, 1)"
  1973. msgstr "毎秒(fast、1)"
  1974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1975. msgid "Exclude interfaces"
  1976. msgstr "除外するインターフェース"
  1977. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:408
  1978. msgid "Existing device"
  1979. msgstr "存在するデバイス"
  1980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1981. msgid "Expand hosts"
  1982. msgstr "拡張ホスト"
  1983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:960
  1984. #, fuzzy
  1985. msgid "Expecting a hexadecimal assignment hint"
  1986. msgstr "16進数の割り当てヒントである必要があります"
  1987. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1988. msgid "Expecting a valid IPv4 address"
  1989. msgstr ""
  1990. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:17
  1991. msgid "Expecting a valid IPv6 address"
  1992. msgstr ""
  1993. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:44
  1994. msgid "Expecting two priority values separated by a colon"
  1995. msgstr "コロンで区切られた2つの優先度の値である必要があります"
  1996. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  2000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  2001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  2002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  2003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  2004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  2005. msgid "Expecting: %s"
  2006. msgstr "%sである必要があります"
  2007. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  2008. msgid "Expecting: non-empty value"
  2009. msgstr "空ではない値である必要があります"
  2010. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2011. msgid "Expires"
  2012. msgstr "期限切れ"
  2013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  2014. msgid ""
  2015. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2016. msgstr "リース期間は、最短で2分です(<code>2m</code>)。"
  2017. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2018. msgid "External"
  2019. msgstr "外部"
  2020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  2021. msgid "External R0 Key Holder List"
  2022. msgstr "外部R0キーホルダーリスト"
  2023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  2024. msgid "External R1 Key Holder List"
  2025. msgstr "外部R1キーホルダーリスト"
  2026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  2027. msgid "External system log server"
  2028. msgstr "外部システムログサーバー"
  2029. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  2030. msgid "External system log server port"
  2031. msgstr "外部システムログサーバーポート"
  2032. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  2033. msgid "External system log server protocol"
  2034. msgstr "外部システムログサーバープロトコル"
  2035. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2036. msgid "Extra SSH command options"
  2037. msgstr "拡張SSHコマンドオプション"
  2038. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2039. msgid "Extra pppd options"
  2040. msgstr "追加のpppdオプション"
  2041. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2042. msgid "Extra sstpc options"
  2043. msgstr "追加のsstpcオプション"
  2044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1495
  2045. msgid "FT over DS"
  2046. msgstr "FT over DS"
  2047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1496
  2048. msgid "FT over the Air"
  2049. msgstr "FT over the Air"
  2050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1493
  2051. msgid "FT protocol"
  2052. msgstr "FTプロトコル"
  2053. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2054. msgid "Failed to change the system password."
  2055. msgstr "システムパスワードの変更に失敗しました。"
  2056. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4143
  2057. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2058. msgstr "%d秒以内に適用できませんでした。ロールバック中です…"
  2059. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2060. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2061. msgstr "\"/etc/init.d/%s %s\"の実行に失敗しました: %s"
  2062. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2692
  2063. msgid "File"
  2064. msgstr "ファイル"
  2065. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2639
  2066. msgid "File not accessible"
  2067. msgstr "ファイルにアクセスできません"
  2068. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2830
  2069. msgid "Filename"
  2070. msgstr "ファイル名"
  2071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  2072. msgid "Filename of the boot image advertised to clients"
  2073. msgstr "クライアントに通知するブートイメージのファイル名"
  2074. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2075. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  2076. msgid "Filesystem"
  2077. msgstr "ファイルシステム"
  2078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2079. msgid "Filter private"
  2080. msgstr "プライベートフィルター"
  2081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2082. #, fuzzy
  2083. msgid "Filter useless"
  2084. msgstr "不要パケットフィルター"
  2085. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2086. msgid "Filtering for all slaves, no validation"
  2087. msgstr "すべてのスレーブをフィルタリング(検証なし)"
  2088. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2089. msgid "Filtering for all slaves, validation only for active slave"
  2090. msgstr "すべてのスレーブをフィルタリング(アクティブなスレーブのみ検証)"
  2091. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2092. msgid "Filtering for all slaves, validation only for backup slaves"
  2093. msgstr "すべてのスレーブをフィルタリング(バックアップスレーブのみ検証)"
  2094. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2095. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2096. msgid "Finalizing failed"
  2097. msgstr "ファイナライズに失敗しました"
  2098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2099. msgid ""
  2100. "Find all currently attached filesystems and swap and replace configuration "
  2101. "with defaults based on what was detected"
  2102. msgstr ""
  2103. "現在接続されているすべてのファイルシステムとスワップを検索し、検索結果に基づ"
  2104. "いてデフォルト設定に置き換える"
  2105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:844
  2106. msgid "Find and join network"
  2107. msgstr "ネットワークの検索と参加"
  2108. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2109. msgid "Finish"
  2110. msgstr "終了"
  2111. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2112. msgid "Firewall"
  2113. msgstr "ファイアウォール"
  2114. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2115. msgid "Firewall Mark"
  2116. msgstr "ファイアウォールマーク"
  2117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:470
  2118. msgid "Firewall Settings"
  2119. msgstr "ファイアウォール設定"
  2120. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2121. msgid "Firewall Status"
  2122. msgstr "ファイアウォールステータス"
  2123. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1483
  2124. msgid "Firmware File"
  2125. msgstr "ファームウェアファイル"
  2126. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2127. msgid "Firmware Version"
  2128. msgstr "ファームウェア バージョン"
  2129. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2130. msgid "Fixed source port for outbound DNS queries"
  2131. msgstr "DNSクエリを送信する送信元ポートを固定"
  2132. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2133. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2134. msgid "Flash image..."
  2135. msgstr "イメージファイルをフラッシュ..."
  2136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2137. msgid "Flash image?"
  2138. msgstr "イメージファイルをフラッシュしますか?"
  2139. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2140. msgid "Flash new firmware image"
  2141. msgstr "新しいファームウェアイメージをフラッシュ"
  2142. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2143. msgid "Flash operations"
  2144. msgstr "フラッシュ操作"
  2145. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2146. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2147. msgid "Flashing…"
  2148. msgstr "フラッシュ中…"
  2149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2150. msgid "Force"
  2151. msgstr "強制"
  2152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937
  2153. msgid "Force 40MHz mode"
  2154. msgstr "強制40MHzモード"
  2155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1197
  2156. msgid "Force CCMP (AES)"
  2157. msgstr "強制CCMP(AES)"
  2158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2159. msgid "Force DHCP on this network even if another server is detected."
  2160. msgstr ""
  2161. "別のDHCPサーバーが検出された場合でも、このネットワークのDHCPサーバー機能を強"
  2162. "制します。"
  2163. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2164. msgid "Force IGMP version"
  2165. msgstr "IGMP バージョンの強制"
  2166. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:736
  2167. msgid "Force MLD version"
  2168. msgstr "MLD バージョンの強制"
  2169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2170. msgid "Force TKIP"
  2171. msgstr "強制TKIP"
  2172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1199
  2173. msgid "Force TKIP and CCMP (AES)"
  2174. msgstr "強制TKIP及びCCMP(AES)"
  2175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  2176. msgid "Force link"
  2177. msgstr "強制リンク"
  2178. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2179. msgid ""
  2180. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2181. "format check fails. Use only if you are sure that the firmware is correct "
  2182. "and meant for your device!"
  2183. msgstr ""
  2184. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2185. msgid "Force use of NAT-T"
  2186. msgstr "NAT-Tを強制的に使用"
  2187. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2188. msgid "Form token mismatch"
  2189. msgstr "フォームトークンの不一致"
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  2191. msgid ""
  2192. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2193. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2194. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2195. "interface and downstream interfaces."
  2196. msgstr ""
  2197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:758
  2198. msgid ""
  2199. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2200. "messages received on the designated master interface to downstream "
  2201. "interfaces."
  2202. msgstr ""
  2203. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2204. msgid "Forward DHCP traffic"
  2205. msgstr "DHCPトラフィックを転送"
  2206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:862
  2207. msgid ""
  2208. "Forward DHCPv6 messages between the designated master interface and "
  2209. "downstream interfaces."
  2210. msgstr ""
  2211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2212. msgid "Forward Error Correction Seconds (FECS)"
  2213. msgstr "前方誤り訂正秒(FECS)"
  2214. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2215. msgid "Forward broadcast traffic"
  2216. msgstr "ブロードキャストトラフィックを転送"
  2217. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  2218. msgid "Forward delay"
  2219. msgstr "転送遅延"
  2220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  2221. msgid "Forward mesh peer traffic"
  2222. msgstr "メッシュピアトラフィックを転送"
  2223. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  2224. msgid "Forward multicast packets as unicast packets on this device."
  2225. msgstr ""
  2226. "このデバイス上では、マルチキャスト パケットをユニキャスト パケットとして転送"
  2227. "します。"
  2228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2229. msgid "Forwarding mode"
  2230. msgstr "転送モード"
  2231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  2232. msgid "Fragmentation Threshold"
  2233. msgstr "フラグメンテーションしきい値"
  2234. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2235. msgid ""
  2236. "Further information about WireGuard interfaces and peers at <a href='http://"
  2237. "wireguard.com'>wireguard.com</a>."
  2238. msgstr ""
  2239. "WireGuardインターフェースとピアについての詳細情報については<a href='http://"
  2240. "wireguard.com'>wireguard.com</a>を参照してください。"
  2241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2243. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2244. msgid "GHz"
  2245. msgstr "GHz"
  2246. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2247. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2248. msgid "GPRS only"
  2249. msgstr "GPRSのみ"
  2250. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2251. msgid "GRE tunnel over IPv4"
  2252. msgstr "IPv4上のGREトンネル"
  2253. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2254. msgid "GRE tunnel over IPv6"
  2255. msgstr "IPv6上のGREトンネル"
  2256. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2257. msgid "GRETAP tunnel over IPv4"
  2258. msgstr "IPv4上のGRETAPトンネル"
  2259. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2260. msgid "GRETAP tunnel over IPv6"
  2261. msgstr "IPv6上のGRETAPトンネル"
  2262. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2263. msgid "Gateway"
  2264. msgstr "ゲートウェイ"
  2265. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2266. msgid "Gateway Ports"
  2267. msgstr "ゲートウェイポート"
  2268. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2269. #: modules/luci-compat/luasrc/model/network.lua:29
  2270. msgid "Gateway address is invalid"
  2271. msgstr "無効なゲートウェイアドレス"
  2272. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  2274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2275. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2276. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2277. msgid "General Settings"
  2278. msgstr "一般設定"
  2279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:620
  2280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1518
  2281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2282. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  2283. msgid "General Setup"
  2284. msgstr "一般設定"
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:394
  2286. msgid "General device options"
  2287. msgstr "デバイスの一般オプション"
  2288. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2289. msgid "Generate Config"
  2290. msgstr "設定を生成"
  2291. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2292. msgid "Generate Key"
  2293. msgstr "キーを生成"
  2294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  2295. msgid "Generate PMK locally"
  2296. msgstr "ローカルでPMKを生成"
  2297. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2298. msgid "Generate archive"
  2299. msgstr "アーカイブを生成"
  2300. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2301. msgid "Given password confirmation did not match, password not changed!"
  2302. msgstr ""
  2303. "入力された確認用パスワードが一致していません。パスワードは変更されませんでし"
  2304. "た!"
  2305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2306. msgid "Global Settings"
  2307. msgstr "全体設定"
  2308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  2309. msgid "Global network options"
  2310. msgstr "グローバルネットワークオプション"
  2311. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2312. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2313. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2314. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2315. msgid "Go to password configuration..."
  2316. msgstr "パスワード設定へ移動..."
  2317. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2318. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2319. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2320. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2321. msgid "Go to relevant configuration page"
  2322. msgstr "関連する設定ページへ移動"
  2323. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2324. msgid "Grant access to DHCP configuration"
  2325. msgstr "DHCP設定へのアクセスを許可"
  2326. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2327. msgid "Grant access to DHCP status display"
  2328. msgstr "DHCPステータス表示へのアクセスを許可"
  2329. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2330. msgid "Grant access to DSL status display"
  2331. msgstr "DSLステータス表示へのアクセスを許可"
  2332. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2333. msgid "Grant access to LuCI OpenConnect procedures"
  2334. msgstr "LuCI OpenConnectプロシージャへのアクセスを許可"
  2335. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2336. msgid "Grant access to LuCI Wireguard procedures"
  2337. msgstr "LuCI Wireguardプロシージャへのアクセスを許可"
  2338. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2339. msgid "Grant access to SSH configuration"
  2340. msgstr "SSH設定へのアクセスを許可"
  2341. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2342. msgid "Grant access to basic LuCI procedures"
  2343. msgstr "基本的なLuCIプロシージャへのアクセスを許可"
  2344. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2345. msgid "Grant access to crontab configuration"
  2346. msgstr "crontab設定へのアクセスを許可"
  2347. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2348. msgid "Grant access to firewall status"
  2349. msgstr "ファイアウォールステータスへのアクセスを許可"
  2350. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2351. msgid "Grant access to flash operations"
  2352. msgstr "フラッシュ操作へのアクセスを許可"
  2353. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2354. msgid "Grant access to main status display"
  2355. msgstr "メインステータス表示へのアクセスを許可"
  2356. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2357. msgid "Grant access to mmcli"
  2358. msgstr "mmcliへのアクセスを許可"
  2359. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2360. msgid "Grant access to mount configuration"
  2361. msgstr "マウント設定へのアクセスを許可"
  2362. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2363. msgid "Grant access to network configuration"
  2364. msgstr "ネットワーク設定へのアクセスを許可"
  2365. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2366. msgid "Grant access to network diagnostic tools"
  2367. msgstr "ネットワーク診断ツールへのアクセスを許可"
  2368. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2369. msgid "Grant access to network status information"
  2370. msgstr "ネットワークステータス情報へのアクセスを許可"
  2371. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2372. msgid "Grant access to process status"
  2373. msgstr "プロセスステータスへのアクセスを許可"
  2374. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2375. msgid "Grant access to realtime statistics"
  2376. msgstr "リアルタイム統計へのアクセスを許可"
  2377. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2378. msgid "Grant access to startup configuration"
  2379. msgstr "スタートアップ設定へのアクセスを許可"
  2380. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2381. msgid "Grant access to system configuration"
  2382. msgstr "システム設定へのアクセスを許可"
  2383. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2384. msgid "Grant access to system logs"
  2385. msgstr "システムログへのアクセスを許可"
  2386. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2387. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2388. msgid "Grant access to the system route status"
  2389. msgstr "システムルートステータスへのアクセスを許可"
  2390. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2391. msgid "Grant access to wireless status display"
  2392. msgstr "無線ステータス表示へのアクセスを許可"
  2393. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2394. msgid "Group Password"
  2395. msgstr "グループパスワード"
  2396. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2397. msgid "Guest"
  2398. msgstr "ゲスト"
  2399. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2400. msgid "HE.net password"
  2401. msgstr "HE.netパスワード"
  2402. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2403. msgid "HE.net username"
  2404. msgstr "HE.netユーザー名"
  2405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2406. msgid "Hang Up"
  2407. msgstr "ハングアップ"
  2408. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2409. msgid "Header Error Code Errors (HEC)"
  2410. msgstr "ヘッダーエラーコードエラー(HEC)"
  2411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2412. msgid "Heartbeat interval (kernel: heartbeat)"
  2413. msgstr "ハートビート(kernel: heartbeat)"
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2415. msgid "Hello interval"
  2416. msgstr "ハロー間隔"
  2417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2418. msgid ""
  2419. "Here you can configure the basic aspects of your device like its hostname or "
  2420. "the timezone."
  2421. msgstr ""
  2422. "ここではホスト名やタイムゾーンなどのデバイスの基本的な設定をすることができま"
  2423. "す。"
  2424. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  2425. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2426. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>を非表示"
  2427. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2428. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2429. msgid "Hide empty chains"
  2430. msgstr "空のチェインを非表示"
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2432. msgid "High"
  2433. msgstr "高"
  2434. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2117
  2436. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2437. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2438. msgid "Host"
  2439. msgstr "ホスト"
  2440. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2441. msgid "Host entries"
  2442. msgstr "ホストエントリー"
  2443. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2444. msgid "Host expiry timeout"
  2445. msgstr "ホスト有効期限タイムアウト"
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2447. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2448. msgstr ""
  2449. "ホスト<abbr title=\"Internet Protocol Address\">IP</abbr>またはネットワーク"
  2450. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2451. msgid "Host-Uniq tag content"
  2452. msgstr "Host-Uniqタグコンテンツ"
  2453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2457. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2459. msgid "Hostname"
  2460. msgstr "ホスト名"
  2461. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2462. msgid "Hostname to send when requesting DHCP"
  2463. msgstr "DHCPリクエスト時に送信するホスト名"
  2464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2465. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2466. msgid "Hostnames"
  2467. msgstr "ホスト名"
  2468. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2469. msgid "Human-readable counters"
  2470. msgstr "Human-readable カウンター"
  2471. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2472. msgid "Hybrid"
  2473. msgstr "ハイブリッド"
  2474. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2475. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2476. msgid "ID used to uniquely identify the VXLAN"
  2477. msgstr "VXLANの識別に使用されるID"
  2478. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2479. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2480. msgstr "IEEE 802.3adダイナミックリンクアグリゲーション(802.3ad、4)"
  2481. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2482. msgid "IKE DH Group"
  2483. msgstr "IKE DHグループ"
  2484. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2485. msgid "IP Addresses"
  2486. msgstr "IPアドレス"
  2487. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2488. msgid "IP Protocol"
  2489. msgstr "IPプロトコル"
  2490. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2491. msgid "IP Type"
  2492. msgstr "IPの種類"
  2493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2494. msgid "IP address"
  2495. msgstr "IPアドレス"
  2496. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2497. #: modules/luci-compat/luasrc/model/network.lua:28
  2498. msgid "IP address is invalid"
  2499. msgstr "無効なIPアドレスです"
  2500. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2501. #: modules/luci-compat/luasrc/model/network.lua:31
  2502. msgid "IP address is missing"
  2503. msgstr "IPアドレスがありません"
  2504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2511. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2512. msgid "IPv4"
  2513. msgstr "IPv4"
  2514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2515. msgid "IPv4 Firewall"
  2516. msgstr "IPv4ファイアウォール"
  2517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2518. msgid "IPv4 Upstream"
  2519. msgstr "IPv4アップストリーム"
  2520. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2522. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2524. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2525. msgid "IPv4 address"
  2526. msgstr "IPv4アドレス"
  2527. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2528. msgid "IPv4 assignment length"
  2529. msgstr "IPv4割り当て長"
  2530. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2531. msgid "IPv4 broadcast"
  2532. msgstr "IPv4ブロードキャスト"
  2533. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2534. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2535. msgid "IPv4 gateway"
  2536. msgstr "IPv4ゲートウェイ"
  2537. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2538. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2539. msgid "IPv4 netmask"
  2540. msgstr "IPv4ネットマスク"
  2541. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2542. msgid "IPv4 network in address/netmask notation"
  2543. msgstr "IPv4ネットワーク(アドレス/ネットマスク表記)"
  2544. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2545. msgid "IPv4 only"
  2546. msgstr "IPv4のみ"
  2547. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2548. msgid "IPv4 prefix"
  2549. msgstr "IPv4プレフィックス"
  2550. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2551. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2552. msgid "IPv4 prefix length"
  2553. msgstr "IPv4プレフィックス長"
  2554. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2555. msgid "IPv4+IPv6"
  2556. msgstr "IPv4+IPv6"
  2557. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2558. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2559. msgid "IPv4-in-IPv4 (RFC2003)"
  2560. msgstr "IPv4-in-IPv4(RFC2003)"
  2561. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2562. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2563. msgstr "IPv4/IPv6(両方 - デフォルトはIPv4)"
  2564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2573. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2576. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2577. msgid "IPv6"
  2578. msgstr "IPv6"
  2579. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2580. msgid "IPv6 Firewall"
  2581. msgstr "IPv6ファイアウォール"
  2582. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:714
  2583. msgid "IPv6 MTU"
  2584. msgstr ""
  2585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2586. msgid "IPv6 Neighbours"
  2587. msgstr "IPv6隣接装置"
  2588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:623
  2589. msgid "IPv6 RA Settings"
  2590. msgstr ""
  2591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:622
  2592. msgid "IPv6 Settings"
  2593. msgstr "IPv6設定"
  2594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2595. msgid "IPv6 ULA-Prefix"
  2596. msgstr "IPv6 ULAプレフィックス"
  2597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2598. msgid "IPv6 Upstream"
  2599. msgstr "IPv6アップストリーム"
  2600. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2602. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2603. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2604. msgid "IPv6 address"
  2605. msgstr "IPv6アドレス"
  2606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:951
  2607. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2608. msgid "IPv6 assignment hint"
  2609. msgstr "IPv6割り当てヒント"
  2610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:946
  2611. msgid "IPv6 assignment length"
  2612. msgstr "IPv6割り当て長"
  2613. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2614. msgid "IPv6 gateway"
  2615. msgstr "IPv6ゲートウェイ"
  2616. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2617. msgid "IPv6 network in address/netmask notation"
  2618. msgstr "IPv6ネットワーク(アドレス/ネットマスク表記)"
  2619. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2620. msgid "IPv6 only"
  2621. msgstr "IPv6のみ"
  2622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  2623. msgid "IPv6 preference"
  2624. msgstr ""
  2625. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2626. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2627. msgid "IPv6 prefix"
  2628. msgstr "IPv6 プレフィックス"
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2630. msgid "IPv6 prefix filter"
  2631. msgstr ""
  2632. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2633. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2634. msgid "IPv6 prefix length"
  2635. msgstr "IPv6プレフィックス長"
  2636. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2637. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2638. msgid "IPv6 routed prefix"
  2639. msgstr "IPv6ルートプレフィックス"
  2640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  2641. msgid "IPv6 suffix"
  2642. msgstr "IPv6サフィックス"
  2643. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2644. msgid "IPv6 support"
  2645. msgstr "IPv6サポート"
  2646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2647. msgid "IPv6-PD"
  2648. msgstr "IPv6 PD"
  2649. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2650. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2651. msgid "IPv6-in-IPv4 (RFC4213)"
  2652. msgstr "IPv6-in-IPv4(RFC4213)"
  2653. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2654. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2655. msgid "IPv6-over-IPv4 (6rd)"
  2656. msgstr "IPv6-over-IPv4(6rd)"
  2657. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2658. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2659. msgid "IPv6-over-IPv4 (6to4)"
  2660. msgstr "IPv6-over-IPv4(6to4)"
  2661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1632
  2662. msgid "Identity"
  2663. msgstr "識別子"
  2664. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2665. msgid "If checked, 1DES is enabled"
  2666. msgstr "チェックを付けると、1DESが有効になります"
  2667. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2668. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2669. msgstr "チェックを付けると、pppdオプションに\"+ipv6\"が追加されます"
  2670. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2671. msgid "If checked, encryption is disabled"
  2672. msgstr "チェックを付けると、暗号化が無効になります"
  2673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:968
  2674. msgid ""
  2675. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2676. "classes."
  2677. msgstr ""
  2678. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2680. msgid ""
  2681. "If specified, mount the device by its UUID instead of a fixed device node"
  2682. msgstr "固定のデバイスノード名のかわりに、そのUUIDを使用してマウント"
  2683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2684. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2685. msgid ""
  2686. "If specified, mount the device by the partition label instead of a fixed "
  2687. "device node"
  2688. msgstr ""
  2689. "固定のデバイスノード名のかわりに、パーティションラベルを使用してマウント"
  2690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  2691. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2692. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2693. msgid "If unchecked, no default route is configured"
  2694. msgstr "チェックが付いていない場合、デフォルトルートは構成されません"
  2695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  2696. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2697. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2698. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2699. msgstr "チェックが付いていない場合、通知されたDNSサーバーアドレスを無視します"
  2700. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2701. msgid ""
  2702. "If your physical memory is insufficient unused data can be temporarily "
  2703. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2704. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2705. "slow process as the swap-device cannot be accessed with the high datarates "
  2706. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2707. msgstr ""
  2708. "物理メモリが不足している場合、使用されていないデータを一時的にスワップデバイ"
  2709. "スに移動し、<abbr title=\"Random Access Memory\">RAM</abbr>の空き容量を増やす"
  2710. "ことができます。ただし、スワップデバイスは<abbr title=\"Random Access Memory"
  2711. "\">RAM</abbr>に比べてとても遅いことに注意してください。"
  2712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2713. msgid "Ignore <code>/etc/hosts</code>"
  2714. msgstr "<code>/etc/hosts</code>を無視"
  2715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654
  2716. msgid "Ignore interface"
  2717. msgstr "インターフェースを無視"
  2718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2719. msgid "Ignore resolve file"
  2720. msgstr "リゾルバファイルを無視"
  2721. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2722. msgid "Image"
  2723. msgstr "イメージ"
  2724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2725. msgid "In"
  2726. msgstr "イン"
  2727. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2728. msgid ""
  2729. "In order to prevent unauthorized access to the system, your request has been "
  2730. "blocked. Click \"Continue »\" below to return to the previous page."
  2731. msgstr ""
  2732. "システムへの不正アクセスを防ぐために、リクエストはブロックされました。下の"
  2733. "\"続行\"をクリックして、前のページに戻ります。"
  2734. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2735. msgid "In seconds"
  2736. msgstr ""
  2737. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2738. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2739. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2742. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2743. msgid "Inactivity timeout"
  2744. msgstr "未使用時タイムアウト"
  2745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:265
  2746. msgid "Inbound:"
  2747. msgstr "受信:"
  2748. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2749. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2750. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2751. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2752. msgid "Incoming checksum"
  2753. msgstr "受信チェックサム"
  2754. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2755. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2756. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2757. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2758. msgid "Incoming key"
  2759. msgstr "受信キー"
  2760. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2761. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2762. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2763. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2764. msgid "Incoming serialization"
  2765. msgstr "受信シリアル化"
  2766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2767. msgid "Info"
  2768. msgstr "情報"
  2769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2770. msgid "Information"
  2771. msgstr "情報"
  2772. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  2773. msgid "Ingress QoS mapping"
  2774. msgstr "Ingress QoS マッピング"
  2775. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2776. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2777. msgid "Initialization failure"
  2778. msgstr "初期化失敗"
  2779. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2780. msgid "Initscript"
  2781. msgstr "起動スクリプト"
  2782. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2783. msgid "Initscripts"
  2784. msgstr "起動スクリプト"
  2785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1616
  2786. msgid "Inner certificate constraint (Domain)"
  2787. msgstr "内部証明書制約(ドメイン)"
  2788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1613
  2789. msgid "Inner certificate constraint (SAN)"
  2790. msgstr "内部証明書制約(SAN)"
  2791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610
  2792. msgid "Inner certificate constraint (Subject)"
  2793. msgstr "内部証明書制約(件名)"
  2794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  2795. msgid "Inner certificate constraint (Wildcard)"
  2796. msgstr "内部証明書制約(ワイルドカード)"
  2797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2798. msgid "Install protocol extensions..."
  2799. msgstr "プロトコル拡張機能をインストール..."
  2800. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  2801. msgid ""
  2802. "Instead of joining any network with a matching SSID, only connect to the "
  2803. "BSSID <code>%h</code>."
  2804. msgstr ""
  2805. "一致するSSIDのネットワークへの参加ではなく、 BSSID<code>%h</code>にのみ接続し"
  2806. "ます。"
  2807. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2808. msgid "Insufficient permissions to read UCI configuration."
  2809. msgstr "UCI設定を読み取るための権限がありません。"
  2810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2812. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2813. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2814. msgid "Interface"
  2815. msgstr "インターフェース"
  2816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:706
  2817. msgid "Interface \"%h\" is already marked as designated master."
  2818. msgstr ""
  2819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2820. msgid "Interface %q device auto-migrated from %q to %q."
  2821. msgstr "インターフェース%qデバイスは、%qから%qへ自動的に移行されました。"
  2822. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  2823. msgid "Interface Configuration"
  2824. msgstr "インターフェース設定"
  2825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2827. msgid "Interface has %d pending changes"
  2828. msgstr "インターフェースに%d個の保留中の変更があります"
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2830. msgid "Interface is disabled"
  2831. msgstr "インターフェースは無効"
  2832. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2833. msgid "Interface is marked for deletion"
  2834. msgstr "インターフェースは削除対象としてマークされています"
  2835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2836. msgid "Interface is reconnecting..."
  2837. msgstr "インターフェースが再接続中..."
  2838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2841. msgid "Interface is shutting down..."
  2842. msgstr "インターフェースをシャットダウン中..."
  2843. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2844. msgid "Interface is starting..."
  2845. msgstr "インターフェースを開始中..."
  2846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2847. msgid "Interface is stopping..."
  2848. msgstr "インターフェースを停止中..."
  2849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  2850. msgid "Interface name"
  2851. msgstr "インターフェース名"
  2852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2854. msgid "Interface not present or not connected yet."
  2855. msgstr "インターフェースが存在しないか、接続されていません。"
  2856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  2857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  2858. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2859. msgid "Interfaces"
  2860. msgstr "インターフェース"
  2861. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2862. msgid "Internal"
  2863. msgstr "内部"
  2864. #: modules/luci-base/luasrc/view/error500.htm:8
  2865. msgid "Internal Server Error"
  2866. msgstr "内部サーバーエラー"
  2867. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2868. msgid "Interval For Sending Learning Packets"
  2869. msgstr "学習パケット送信間隔"
  2870. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2871. msgid ""
  2872. "Interval in centiseconds between multicast general queries. By varying the "
  2873. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2874. "larger values cause IGMP Queries to be sent less often"
  2875. msgstr ""
  2876. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  2877. msgid "Interval in seconds for STP hello packets"
  2878. msgstr "STP ハロー パケットの間隔(秒)"
  2879. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2880. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2881. msgid "Invalid"
  2882. msgstr "無効"
  2883. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2884. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2885. msgid "Invalid Base64 key string"
  2886. msgstr "無効なBase64キー文字列"
  2887. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2888. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2889. msgid "Invalid TOS value, expected 00..FF or inherit"
  2890. msgstr "無効なTOS値です。00...FFまたは継承する必要があります"
  2891. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2892. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2893. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2894. msgstr "無効なトラフィッククラス値です。00..FFまたは継承する必要があります"
  2895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2896. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2897. msgstr "無効なVLAN IDです! IDは%dから%dまでのみ許可されています。"
  2898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2899. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2900. msgstr "無効なVLAN IDです!重複しないIDを入力してください"
  2901. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2902. msgid "Invalid argument"
  2903. msgstr "無効な引数"
  2904. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2905. msgid ""
  2906. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2907. "supports one and only one bearer."
  2908. msgstr ""
  2909. "無効なベアラーリストです。作成されたベアラーが多すぎる可能性があります。この"
  2910. "プロトコルは、1つのベアラーのみサポートします。"
  2911. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2912. msgid "Invalid command"
  2913. msgstr "無効なコマンド"
  2914. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2915. msgid "Invalid hexadecimal value"
  2916. msgstr "無効な16進数"
  2917. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2918. msgid "Invalid username and/or password! Please try again."
  2919. msgstr ""
  2920. "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し"
  2921. "てください。"
  2922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  2923. msgid "Isolate Clients"
  2924. msgstr "クライアント間の分離"
  2925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2926. msgid ""
  2927. "It appears that you are trying to flash an image that does not fit into the "
  2928. "flash memory, please verify the image file!"
  2929. msgstr ""
  2930. "フラッシュしようとしたイメージファイルはこのフラッシュメモリー向けではありま"
  2931. "せん。イメージファイルを確認してください!"
  2932. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2933. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2934. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2935. msgid "JavaScript required!"
  2936. msgstr "JavaScriptが必要です!"
  2937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1783
  2938. msgid "Join Network"
  2939. msgstr "ネットワークに接続"
  2940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1717
  2941. msgid "Join Network: Wireless Scan"
  2942. msgstr "ネットワークに接続: 無線スキャン"
  2943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1993
  2944. msgid "Joining Network: %q"
  2945. msgstr "ネットワークに接続中: %q"
  2946. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2947. msgid "Keep settings and retain the current configuration"
  2948. msgstr "現在の設定を残す"
  2949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2950. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2951. msgid "Kernel Log"
  2952. msgstr "カーネルログ"
  2953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2954. msgid "Kernel Version"
  2955. msgstr "カーネル バージョン"
  2956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1408
  2957. msgid "Key"
  2958. msgstr "キー"
  2959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1436
  2960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  2961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1438
  2962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  2963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1451
  2964. msgid "Key #%d"
  2965. msgstr "キー#%d"
  2966. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2967. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2968. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2969. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2970. msgid "Key for incoming packets (optional)."
  2971. msgstr "受信パケットのキー(オプション)。"
  2972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2973. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2974. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2975. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2976. msgid "Key for outgoing packets (optional)."
  2977. msgstr "送信パケットのキー(オプション)。"
  2978. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2979. msgid "Kill"
  2980. msgstr "強制終了"
  2981. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2982. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2983. msgid "L2TP"
  2984. msgstr "L2TP"
  2985. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2986. msgid "L2TP Server"
  2987. msgstr "L2TPサーバー"
  2988. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2989. msgid "LACPDU Packets"
  2990. msgstr "LACPDUパケット"
  2991. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2992. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2993. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2994. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2995. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2996. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2997. msgid "LCP echo failure threshold"
  2998. msgstr "LCP echo失敗しきい値"
  2999. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  3000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3002. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3003. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3004. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3005. msgid "LCP echo interval"
  3006. msgstr "LCP echo送信間隔"
  3007. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  3008. msgid "LED Configuration"
  3009. msgstr "LED設定"
  3010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  3011. msgid "LLC"
  3012. msgstr "LLC"
  3013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  3014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  3015. msgid "Label"
  3016. msgstr "ラベル"
  3017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  3018. msgid "Language"
  3019. msgstr "言語"
  3020. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  3021. msgid "Language and Style"
  3022. msgstr "言語とスタイル"
  3023. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  3024. msgid "Last member interval"
  3025. msgstr ""
  3026. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  3027. msgid "Latency"
  3028. msgstr "遅延"
  3029. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3030. msgid "Leaf"
  3031. msgstr "Leaf"
  3032. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  3033. msgid "Learn"
  3034. msgstr "学習"
  3035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  3036. msgid "Learn routes"
  3037. msgstr ""
  3038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  3039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:667
  3040. msgid "Lease time"
  3041. msgstr "リース期間"
  3042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  3045. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  3046. msgid "Lease time remaining"
  3047. msgstr "残りリース期間"
  3048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  3049. msgid "Leasefile"
  3050. msgstr "リースファイル"
  3051. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3052. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3053. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3054. msgid "Leave empty to autodetect"
  3055. msgstr "空欄の場合、自動的に検出"
  3056. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3057. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3058. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3059. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3060. msgid "Leave empty to use the current WAN address"
  3061. msgstr "空欄の場合、現在のWANアドレスを使用"
  3062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:910
  3063. msgid ""
  3064. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3065. "interoperate. Airtime efficiency may be significantly reduced where these "
  3066. "are used. It is recommended to not allow 802.11b rates where possible."
  3067. msgstr ""
  3068. "レガシーまたは動作の悪いデバイスは、相互運用するためにレガシーな 802.11b レー"
  3069. "トを必要とする場合があります。 これらを使用すると、通信時間の効率が大幅に低下"
  3070. "する可能性があります。 可能な限り 802.11b レートを許可しないことをお勧めしま"
  3071. "す。"
  3072. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  3073. msgid "Legend:"
  3074. msgstr "凡例:"
  3075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  3076. msgid "Limit"
  3077. msgstr "制限"
  3078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  3079. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  3080. msgstr ""
  3081. "DNSサービスを、現在DNSを提供しているサブネットインターフェースに限定します。"
  3082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  3083. msgid "Limit listening to these interfaces, and loopback."
  3084. msgstr "リッスンをこれらのインターフェースとループバックに限定します。"
  3085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3086. msgid "Line Attenuation (LATN)"
  3087. msgstr "回線減衰(LATN)"
  3088. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  3089. msgid "Line Mode"
  3090. msgstr "回線モード"
  3091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  3092. msgid "Line State"
  3093. msgstr "回線状態"
  3094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  3095. msgid "Line Uptime"
  3096. msgstr "回線稼働時間"
  3097. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  3098. msgid "Link Aggregation (Channel Bonding)"
  3099. msgstr "リンクアグリゲーション(チャネルボンディング)"
  3100. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  3101. msgid "Link Monitoring"
  3102. msgstr "リンク監視"
  3103. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  3104. msgid "Link On"
  3105. msgstr "リンクオン"
  3106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  3107. msgid ""
  3108. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  3109. "requests to"
  3110. msgstr ""
  3111. "リクエストを転送する<abbr title=\"Domain Name System\">DNS</abbr>サーバーのリ"
  3112. "スト"
  3113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1521
  3114. msgid ""
  3115. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3116. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3117. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3118. "from the R0KH that the STA used during the Initial Mobility Domain "
  3119. "Association."
  3120. msgstr ""
  3121. "これは同じモビリティドメイン内のR0KHのリストです。<br />形式: MACアドレス、"
  3122. "NAS識別子、128ビットキー(16進数の文字列)<br />このリストは、初期モビリティ"
  3123. "ドメインアソシエーションでSTAが使用したR0KHからPMK-R1キーを要求する際に、"
  3124. "R0KH-ID(NAS識別子)を宛先MACアドレスにマッピングするために使用されます。"
  3125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1525
  3126. msgid ""
  3127. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3128. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3129. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3130. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3131. "PMK-R1 keys."
  3132. msgstr ""
  3133. "これは同じモビリティドメイン内のR1KHのリストです。<br />形式: MACアドレス、"
  3134. "R1KH-ID(コロン付き6オクテット)、128ビットキー(16進数の文字列)<br />このリ"
  3135. "ストは、R0KHからPMK-R1キーを送信する際に、R1KH-IDを宛先MACアドレスにマッピン"
  3136. "グするために使用されます。また、PMK-R1キーを要求できるMD内の許可されたR1KHの"
  3137. "リストでもあります。"
  3138. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3139. msgid "List of SSH key files for auth"
  3140. msgstr "認証用SSHキーファイルのリスト"
  3141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3142. msgid "List of domains to allow RFC1918 responses for"
  3143. msgstr "RFC1918の応答を許可するドメインのリスト"
  3144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3145. msgid "List of domains to force to an IP address."
  3146. msgstr "これはIPアドレスに強制的に設定するドメインのリスト。"
  3147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3148. msgid "List of hosts that supply bogus NX domain results"
  3149. msgstr "NXドメインの嘘の結果を提供するホストのリスト"
  3150. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3151. msgid "Listen Interfaces"
  3152. msgstr "リッスンインターフェース"
  3153. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3154. msgid "Listen Port"
  3155. msgstr "リッスンポート"
  3156. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3157. msgid "Listen only on the given interface or, if unspecified, on all"
  3158. msgstr ""
  3159. "指定されたインターフェースでのみリッスンを行います。設定しない場合はすべて対"
  3160. "象"
  3161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3162. msgid "Listening port for inbound DNS queries"
  3163. msgstr "受信DNSクエリをリッスンするポート"
  3164. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3165. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3166. msgid "Load"
  3167. msgstr "負荷"
  3168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3169. msgid "Load Average"
  3170. msgstr "システム平均負荷"
  3171. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  3172. msgid "Loading directory contents…"
  3173. msgstr "ディレクトリの内容を読み込み中…"
  3174. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3175. #: modules/luci-base/luasrc/view/view.htm:4
  3176. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3177. msgid "Loading view…"
  3178. msgstr "画面表示を読み込み中…"
  3179. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  3180. msgid "Local"
  3181. msgstr "ローカル"
  3182. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3183. msgid "Local IP address"
  3184. msgstr "ローカルIPアドレス"
  3185. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3186. #: modules/luci-compat/luasrc/model/network.lua:30
  3187. msgid "Local IP address is invalid"
  3188. msgstr "無効なローカルIPアドレスです"
  3189. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3190. msgid "Local IP address to assign"
  3191. msgstr "割り当てるローカル IPアドレス"
  3192. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3193. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3194. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3195. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3196. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3197. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3198. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3199. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3200. msgid "Local IPv4 address"
  3201. msgstr "ローカルIPv4アドレス"
  3202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  3203. msgid "Local IPv6 DNS server"
  3204. msgstr ""
  3205. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3206. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3207. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3208. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3209. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3210. msgid "Local IPv6 address"
  3211. msgstr "ローカルIPv6アドレス"
  3212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3213. msgid "Local Service Only"
  3214. msgstr "ローカルサービスのみ"
  3215. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3216. msgid "Local Startup"
  3217. msgstr "ローカルスタートアップ"
  3218. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3219. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3220. msgid "Local Time"
  3221. msgstr "時刻"
  3222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:969
  3223. msgid "Local ULA"
  3224. msgstr "ローカル ULA"
  3225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3226. msgid "Local domain"
  3227. msgstr "ローカルドメイン"
  3228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3229. msgid ""
  3230. "Local domain specification. Names matching this domain are never forwarded "
  3231. "and are resolved from DHCP or hosts files only"
  3232. msgstr ""
  3233. "ローカルドメインの定義です。この名前に一致するドメインは転送が行われず、 DHCP"
  3234. "または hostsファイルのみで解決されます"
  3235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3236. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3237. msgstr "DHCP名とhostsファイルの項目に追加される、ローカルドメインサフィックス"
  3238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3239. msgid "Local server"
  3240. msgstr "ローカルサーバー"
  3241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3242. msgid ""
  3243. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3244. "available"
  3245. msgstr ""
  3246. "複数のIPが利用可能な場合、リクエスト中のサブネットによってホスト名をローカラ"
  3247. "イズ"
  3248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3249. msgid "Localise queries"
  3250. msgstr "クエリをローカライズ"
  3251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1985
  3252. msgid "Lock to BSSID"
  3253. msgstr "BSSIDにロック"
  3254. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3255. msgid "Log output level"
  3256. msgstr "ログ出力レベル"
  3257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3258. msgid "Log queries"
  3259. msgstr "ログクエリ"
  3260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3261. msgid "Logging"
  3262. msgstr "ロギング"
  3263. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3264. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3265. msgid ""
  3266. "Logical network from which to select the local endpoint if local IPv6 "
  3267. "address is empty and no WAN IPv6 is available (optional)."
  3268. msgstr ""
  3269. "ローカルIPv6アドレスが空かつWAN IPv6が利用できない場合、ローカルエンドポイン"
  3270. "トを選択する論理ネットワーク(オプション)。"
  3271. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3272. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3273. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3274. msgstr "トンネルが追加される(ブリッジされる)論理ネットワーク(オプション)。"
  3275. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3276. msgid "Login"
  3277. msgstr "ログイン"
  3278. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3279. msgid "Logout"
  3280. msgstr "ログアウト"
  3281. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:666
  3282. msgid "Loose filtering"
  3283. msgstr "緩いフィルタリング"
  3284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3285. msgid "Loss of Signal Seconds (LOSS)"
  3286. msgstr "信号損失秒数(LOSS)"
  3287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  3288. msgid "Lowest leased address as offset from the network address."
  3289. msgstr ""
  3290. "これはネットワークアドレスをオフセットとした、最小のリースアドレスです。"
  3291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3293. msgid "MAC"
  3294. msgstr "MAC"
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  3296. msgid "MAC Address"
  3297. msgstr "MAC アドレス"
  3298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1050
  3299. msgid "MAC Address Filter"
  3300. msgstr "MACアドレスフィルタ"
  3301. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3302. #, fuzzy
  3303. msgid "MAC Address For The Actor"
  3304. msgstr "アクターのMACアドレス"
  3305. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:405
  3306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1370
  3307. msgid "MAC VLAN"
  3308. msgstr "MAC ベース VLAN"
  3309. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  3310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2116
  3312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3313. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3314. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3316. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3317. msgid "MAC address"
  3318. msgstr "MAC アドレス"
  3319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  3320. msgid "MAC-Filter"
  3321. msgstr "MACフィルタ"
  3322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1057
  3323. msgid "MAC-List"
  3324. msgstr "MACリスト"
  3325. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3326. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3327. msgid "MAP / LW4over6"
  3328. msgstr "MAP / LW4over6"
  3329. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3330. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3331. msgid "MAP rule is invalid"
  3332. msgstr "無効なMAPルールです"
  3333. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3334. msgid "MD5"
  3335. msgstr "MD5"
  3336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3338. msgid "MHz"
  3339. msgstr "MHz"
  3340. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3341. msgid "MII"
  3342. msgstr "MII"
  3343. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3344. msgid "MII / ETHTOOL ioctls"
  3345. msgstr "MII / ETHTOOL ioctls"
  3346. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3347. msgid "MII Interval"
  3348. msgstr "MII間隔"
  3349. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:616
  3350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  3351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3352. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3353. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3354. msgid "MTU"
  3355. msgstr "MTU"
  3356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3357. msgid ""
  3358. "Make sure to clone the root filesystem using something like the commands "
  3359. "below:"
  3360. msgstr ""
  3361. "次のようなコマンドを使用して、ルートファイルシステムを複製してください:"
  3362. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3363. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3364. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3365. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3366. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3367. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3368. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3369. msgid "Manual"
  3370. msgstr "手動"
  3371. #: modules/luci-base/htdocs/luci-static/resources/network.js:3820
  3372. msgid "Master"
  3373. msgstr "マスター"
  3374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3375. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3376. msgstr ""
  3377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3378. msgid "Max. Attainable Data Rate (ATTNDR)"
  3379. msgstr "到達可能な最大データレート(ATTNDR)"
  3380. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  3381. msgid "Maximum age"
  3382. msgstr ""
  3383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  3384. msgid "Maximum allowed Listen Interval"
  3385. msgstr "許容される最大リッスン間隔"
  3386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3387. msgid "Maximum allowed number of active DHCP leases"
  3388. msgstr "許容される最大DHCP割り当て数"
  3389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3390. msgid "Maximum allowed number of concurrent DNS queries"
  3391. msgstr "許容される最大の並列DNSクエリ数"
  3392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3393. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3394. msgstr "許容される最大EDNS.0 UDPパケットサイズ"
  3395. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3396. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3397. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3398. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3399. msgstr "モデムの準備が完了するまでの最大の待ち時間(秒)"
  3400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  3401. msgid "Maximum number of leased addresses."
  3402. msgstr "リースされるアドレスの最大数です。"
  3403. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:578
  3404. msgid "Maximum snooping table size"
  3405. msgstr "スヌーピング テーブルの最大サイズ"
  3406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:799
  3407. msgid ""
  3408. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3409. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3410. msgstr ""
  3411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  3412. msgid "Maximum transmit power"
  3413. msgstr "最大送信出力"
  3414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3418. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3419. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:321
  3420. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:322
  3421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  3423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:328
  3424. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3425. msgid "Mbit/s"
  3426. msgstr "Mbps"
  3427. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3428. msgid "Medium"
  3429. msgstr "中"
  3430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3431. msgid "Memory"
  3432. msgstr "メモリ"
  3433. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3434. msgid "Memory usage (%)"
  3435. msgstr "メモリ使用率(%)"
  3436. #: modules/luci-base/htdocs/luci-static/resources/network.js:3823
  3437. msgid "Mesh"
  3438. msgstr "メッシュ"
  3439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3440. msgid "Mesh ID"
  3441. msgstr "メッシュID"
  3442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  3443. msgid "Mesh Id"
  3444. msgstr "メッシュID"
  3445. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3446. msgid "Method not found"
  3447. msgstr "メソッドが見つかりません"
  3448. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3449. msgid "Method of link monitoring"
  3450. msgstr "リンクを監視する方法"
  3451. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3452. msgid "Method to determine link status"
  3453. msgstr "リンクの状態を確認する方法"
  3454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3456. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3457. msgid "Metric"
  3458. msgstr "メトリック"
  3459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3460. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3461. msgstr ""
  3462. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3463. msgid "Minimum ARP validity time"
  3464. msgstr ""
  3465. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3466. msgid "Minimum Number of Links"
  3467. msgstr "最小のリンク数"
  3468. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  3469. msgid ""
  3470. "Minimum required time in seconds before an ARP entry may be replaced. "
  3471. "Prevents ARP cache thrashing."
  3472. msgstr ""
  3473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  3474. msgid ""
  3475. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3476. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3477. msgstr ""
  3478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3479. msgid "Mirror monitor port"
  3480. msgstr "ミラー監視ポート"
  3481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3482. msgid "Mirror source port"
  3483. msgstr "ミラー元ポート"
  3484. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3485. msgid "Mobile Data"
  3486. msgstr "モバイルデータ"
  3487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1481
  3488. msgid "Mobility Domain"
  3489. msgstr "モビリティドメイン"
  3490. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3491. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:473
  3492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:464
  3495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  3496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1701
  3497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3499. msgid "Mode"
  3500. msgstr "モード"
  3501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3502. msgid "Model"
  3503. msgstr "モデル"
  3504. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3505. #, fuzzy
  3506. msgid "Modem bearer teardown in progress."
  3507. msgstr "モデムベアラを終了中です。"
  3508. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3509. msgid ""
  3510. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3511. "minutes."
  3512. msgstr ""
  3513. "モデム接続中です。しばらくお待ちください。この処理は2分後にタイムアウトしま"
  3514. "す。"
  3515. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3516. msgid "Modem default"
  3517. msgstr "モデムデフォルト"
  3518. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3519. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3520. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3521. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3522. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3523. msgid "Modem device"
  3524. msgstr "モデムデバイス"
  3525. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3526. msgid "Modem disconnection in progress. Please wait."
  3527. msgstr "モデム切断中です。しばらくお待ちください。"
  3528. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3529. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3530. msgid "Modem information query failed"
  3531. msgstr "モデム情報の問い合わせに失敗しました"
  3532. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3533. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3534. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3535. msgid "Modem init timeout"
  3536. msgstr "モデム初期化タイムアウト"
  3537. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3538. msgid "Modem is disabled."
  3539. msgstr "モデムは無効です。"
  3540. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3541. msgid "ModemManager"
  3542. msgstr "モデムマネージャー"
  3543. #: modules/luci-base/htdocs/luci-static/resources/network.js:3824
  3544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1044
  3545. msgid "Monitor"
  3546. msgstr "モニター"
  3547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3548. msgid "More Characters"
  3549. msgstr "文字数不足"
  3550. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3551. msgid "More…"
  3552. msgstr "さらに表示…"
  3553. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3554. msgid "Mount Point"
  3555. msgstr "マウントポイント"
  3556. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3558. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3559. msgid "Mount Points"
  3560. msgstr "マウントポイント"
  3561. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3562. msgid "Mount Points - Mount Entry"
  3563. msgstr "マウントポイント-マウント一覧"
  3564. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3565. msgid "Mount Points - Swap Entry"
  3566. msgstr "マウントポイント-スワップ一覧"
  3567. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3568. msgid ""
  3569. "Mount Points define at which point a memory device will be attached to the "
  3570. "filesystem"
  3571. msgstr ""
  3572. "マウントポイントは、記憶デバイスがファイルシステムのどこに接続されているかを"
  3573. "定義したものです"
  3574. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3575. msgid "Mount attached devices"
  3576. msgstr "接続済みデバイスをマウント"
  3577. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3578. msgid "Mount filesystems not specifically configured"
  3579. msgstr "明確に設定されていないファイルシステムをマウント"
  3580. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3581. msgid "Mount options"
  3582. msgstr "マウントオプション"
  3583. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3584. msgid "Mount point"
  3585. msgstr "マウントポイント"
  3586. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3587. msgid "Mount swap not specifically configured"
  3588. msgstr "明確に設定されていないスワップパーティションをマウント"
  3589. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3590. msgid "Mounted file systems"
  3591. msgstr "マウント済みファイルシステム"
  3592. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3593. msgid "Move down"
  3594. msgstr "下へ移動"
  3595. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3596. msgid "Move up"
  3597. msgstr "上へ移動"
  3598. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3599. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3600. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3601. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3602. msgid "Multicast"
  3603. msgstr "マルチキャスト"
  3604. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:755
  3605. msgid "Multicast routing"
  3606. msgstr "マルチキャスト ルーティング"
  3607. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:761
  3608. msgid "Multicast to unicast"
  3609. msgstr ""
  3610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  3611. msgid "NAS ID"
  3612. msgstr "NAS ID"
  3613. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3614. msgid "NAT-T Mode"
  3615. msgstr "NAT-Tモード"
  3616. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3617. msgid "NAT64 Prefix"
  3618. msgstr "NAT64プレフィックス"
  3619. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3620. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3621. msgid "NCM"
  3622. msgstr "NCM"
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  3624. msgid "NDP-Proxy slave"
  3625. msgstr ""
  3626. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3627. msgid "NT Domain"
  3628. msgstr "NTドメイン"
  3629. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3630. msgid "NTP server candidates"
  3631. msgstr "NTPサーバー候補"
  3632. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3633. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3806
  3634. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1070
  3636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3637. msgid "Name"
  3638. msgstr "名前"
  3639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  3640. msgid "Name of the new network"
  3641. msgstr "新規ネットワークの名前"
  3642. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3643. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3644. msgid "Navigation"
  3645. msgstr "ナビゲーション"
  3646. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  3647. msgid "Neighbour cache validity"
  3648. msgstr ""
  3649. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2115
  3652. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:381
  3653. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3654. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3655. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3656. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3657. msgid "Network"
  3658. msgstr "ネットワーク"
  3659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  3660. msgid "Network SSID"
  3661. msgstr "ネットワークSSID"
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3663. msgid "Network Utilities"
  3664. msgstr "ネットワークユーティリティ"
  3665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3666. msgid "Network boot image"
  3667. msgstr "ネットワークブートイメージ"
  3668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:380
  3669. msgid "Network bridge configuration migration"
  3670. msgstr ""
  3671. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  3672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1376
  3673. msgid "Network device"
  3674. msgstr "ネットワークデバイス"
  3675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3676. msgid "Network device activity (kernel: netdev)"
  3677. msgstr "ネットワークデバイスアクティビティ(kernel: netdev)"
  3678. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3679. #: modules/luci-compat/luasrc/model/network.lua:33
  3680. msgid "Network device is not present"
  3681. msgstr "ネットワークデバイスが存在しません"
  3682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:414
  3683. msgid "Network ifname configuration migration"
  3684. msgstr ""
  3685. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3687. msgid "Network interface"
  3688. msgstr "ネットワークインターフェース"
  3689. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:756
  3690. msgid "Never"
  3691. msgstr "なし"
  3692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1122
  3693. msgid "New interface for \"%s\" can not be created: %s"
  3694. msgstr "\"%s\"の新規インターフェースを作成できません: %s"
  3695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1073
  3696. msgid "New interface name…"
  3697. msgstr "新規インターフェース名…"
  3698. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3699. msgid "Next »"
  3700. msgstr "次 »"
  3701. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3702. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3703. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3704. msgid "No"
  3705. msgstr "いいえ"
  3706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:631
  3707. msgid "No DHCP Server configured for this interface"
  3708. msgstr "このインターフェースにはDHCPサーバーが設定されていません"
  3709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3710. msgid "No Data"
  3711. msgstr "データなし"
  3712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  3713. msgid "No Encryption"
  3714. msgstr "暗号化なし"
  3715. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3716. msgid "No Host Routes"
  3717. msgstr "ホストルートなし"
  3718. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3719. msgid "No NAT-T"
  3720. msgstr "NAT-Tを使用しない"
  3721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3722. msgid "No RX signal"
  3723. msgstr "RX信号なし"
  3724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3725. msgid "No client associated"
  3726. msgstr "接続済みクライアントなし"
  3727. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3728. msgid "No data received"
  3729. msgstr "受信済みデータなし"
  3730. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:730
  3731. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3732. msgid "No enforcement"
  3733. msgstr "強制しない"
  3734. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2897
  3735. msgid "No entries in this directory"
  3736. msgstr "このディレクトリ内にエントリーがありません"
  3737. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3738. msgid "No files found"
  3739. msgstr "ファイルが見つかりません"
  3740. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3741. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3742. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3743. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3744. msgid "No host route"
  3745. msgstr "ホストルートなし"
  3746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:698
  3747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3748. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3749. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3750. msgid "No information available"
  3751. msgstr "情報なし"
  3752. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3753. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3754. #, fuzzy
  3755. msgid "No matching prefix delegation"
  3756. msgstr "一致するプレフィックスデレゲーションがありません"
  3757. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3758. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3759. msgid "No more slaves available"
  3760. msgstr "これ以上利用可能なスレーブがありません"
  3761. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3762. msgid "No more slaves available, can not save interface"
  3763. msgstr "これ以上利用可能なスレーブがないため、インターフェースを保存できません"
  3764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3765. msgid "No negative cache"
  3766. msgstr "ネガティブキャッシュなし"
  3767. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3768. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3769. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3770. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3771. msgid "No password set!"
  3772. msgstr "パスワードが設定されていません!"
  3773. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3774. msgid "No peers defined yet"
  3775. msgstr "まだピアが定義されていません"
  3776. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3778. msgid "No public keys present yet."
  3779. msgstr "まだ公開鍵はありません。"
  3780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3781. msgid "No rules in this chain."
  3782. msgstr "このチェインにルールがありません。"
  3783. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3784. msgid "No validation or filtering"
  3785. msgstr "検証またはフィルタリングなし"
  3786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  3788. msgid "No zone assigned"
  3789. msgstr "割り当てられたゾーンがありません"
  3790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3794. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3795. msgid "Noise"
  3796. msgstr "ノイズ"
  3797. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3798. msgid "Noise Margin (SNR)"
  3799. msgstr "ノイズマージン(SNR)"
  3800. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:270
  3801. msgid "Noise:"
  3802. msgstr "ノイズ:"
  3803. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3804. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3805. msgstr "非プリエンプティブCRCエラー(CRC_P)"
  3806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3807. msgid "Non-wildcard"
  3808. msgstr "非ワイルドカード"
  3809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3811. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3812. msgid "None"
  3813. msgstr "なし"
  3814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:921
  3815. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3816. msgid "Normal"
  3817. msgstr "標準"
  3818. #: modules/luci-base/luasrc/view/error404.htm:8
  3819. msgid "Not Found"
  3820. msgstr "見つかりません"
  3821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3822. msgid "Not associated"
  3823. msgstr "接続されていません"
  3824. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3825. msgid "Not connected"
  3826. msgstr "未接続"
  3827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3832. msgid "Not present"
  3833. msgstr "存在しません"
  3834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3835. msgid "Not started on boot"
  3836. msgstr "ブート時に開始されていません"
  3837. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3838. msgid "Not supported"
  3839. msgstr "サポートされていません"
  3840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1645
  3841. msgid ""
  3842. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3843. "have problems"
  3844. msgstr ""
  3845. "注:一部のワイヤレス ドライバーは、802.11w を完全にはサポートしていません。 "
  3846. "例えば、 mwlwifi に問題がある可能性があります"
  3847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3848. msgid "Notes"
  3849. msgstr ""
  3850. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3851. msgid "Notice"
  3852. msgstr "注意"
  3853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3854. msgid "Nslookup"
  3855. msgstr "Nslookup"
  3856. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3857. msgid "Number of IGMP membership reports"
  3858. msgstr "IGMPメンバーシップレポートの数"
  3859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3860. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3861. msgstr ""
  3862. "キャッシュされるDNSエントリーの数(最大10000件、0の場合キャッシュしない)"
  3863. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3864. msgid "Number of peer notifications after failover event"
  3865. msgstr "フェールオーバー処理後のピア通知の数"
  3866. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3867. msgid "Obfuscated Group Password"
  3868. msgstr "難読化されたグループパスワード"
  3869. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3870. msgid "Obfuscated Password"
  3871. msgstr "難読化されたパスワード"
  3872. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3873. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3874. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3875. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3876. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3877. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3878. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3879. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3880. msgid "Obtain IPv6 address"
  3881. msgstr "IPv6アドレス取得"
  3882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3883. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3884. msgid "Off"
  3885. msgstr "オフ"
  3886. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3887. msgid "Off-State Delay"
  3888. msgstr "消灯時間"
  3889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3890. msgid "On"
  3891. msgstr "オン"
  3892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3893. msgid "On-Link route"
  3894. msgstr "On-Linkルート"
  3895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3896. msgid "On-State Delay"
  3897. msgstr "点灯時間"
  3898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3899. msgid "One of hostname or mac address must be specified!"
  3900. msgstr "ホスト名またはMACアドレスを指定してください!"
  3901. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3902. msgid "One of the following: %s"
  3903. msgstr "次のうちいずれか1つ: %s"
  3904. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3905. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3906. msgid "One or more fields contain invalid values!"
  3907. msgstr "1つ以上のフィールドに無効な値が設定されています!"
  3908. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3909. msgid "One or more invalid/required values on tab"
  3910. msgstr "タブに1つ以上の無効/必須の値があります"
  3911. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3912. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3913. msgid "One or more required fields have no value!"
  3914. msgstr "1つ以上のフィールドに値が設定されていません!"
  3915. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  3916. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3917. msgstr "有効な場合、分離されていないブリッジ ポートでの通信のみ許可します"
  3918. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3919. msgid ""
  3920. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3921. msgstr ""
  3922. "現在アクティブなスレーブが失敗し、プライマリスレーブが起動している場合のみ"
  3923. "(failure、2)"
  3924. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3925. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3926. msgid "Open list..."
  3927. msgstr "リストを開く..."
  3928. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3929. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3930. msgid "OpenConnect (CISCO AnyConnect)"
  3931. msgstr "OpenConnect(CISCO AnyConnect)"
  3932. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3933. msgid "OpenFortivpn"
  3934. msgstr "OpenFortivpn"
  3935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:712
  3936. msgid ""
  3937. "Operate in <em>relay mode</em> if a designated master interface is "
  3938. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3939. "Protocol\">NDP</abbr> proxying."
  3940. msgstr ""
  3941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:711
  3942. msgid ""
  3943. "Operate in <em>relay mode</em> if a designated master interface is "
  3944. "configured and active, otherwise fall back to <em>server mode</em>."
  3945. msgstr ""
  3946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:713
  3947. msgid ""
  3948. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3949. "otherwise disable service."
  3950. msgstr ""
  3951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  3952. msgid "Operating frequency"
  3953. msgstr "動作周波数"
  3954. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3955. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3956. msgid "Option \"%s\" contains an invalid input value."
  3957. msgstr "オプション\"%s\"に無効な入力値が含まれています。"
  3958. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3959. msgid "Option \"%s\" must not be empty."
  3960. msgstr "オプション\"%s\"を設定してください。"
  3961. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  3962. msgid "Option changed"
  3963. msgstr "変更されるオプション"
  3964. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3965. msgid "Option removed"
  3966. msgstr "削除されるオプション"
  3967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1647
  3968. msgid "Optional"
  3969. msgstr "オプション"
  3970. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3971. msgid "Optional, free-form notes about this device"
  3972. msgstr ""
  3973. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3974. msgid ""
  3975. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3976. "starting with <code>0x</code>."
  3977. msgstr ""
  3978. "暗号化された送信パケットの32ビットマークです。<code>0x</code>から始まる16進数"
  3979. "を入力してください(オプション)。"
  3980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:991
  3981. msgid ""
  3982. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3983. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3984. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3985. "for the interface."
  3986. msgstr ""
  3987. "IPv6プレフィックス(例: 'a:b:c:d::')を代理サーバーから受信する場合、インター"
  3988. "フェースのIPv6アドレス('a:b:c:d::1')を形成するために使用されるサフィックス"
  3989. "(例: '::1')を指定します(オプション) 。使用できる値: 'eui64','random'また"
  3990. "は'::1'や'::1:2'のような固定値。"
  3991. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3992. #, fuzzy
  3993. msgid ""
  3994. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3995. "symmetric-key cryptography for post-quantum resistance."
  3996. msgstr ""
  3997. "Base64でエンコードされた事前共有キーです。ポスト量子レジスタンスのため、対称"
  3998. "鍵暗号の追加層を追加します(オプション)。"
  3999. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4000. msgid "Optional. Create routes for Allowed IPs for this peer."
  4001. msgstr "このピアの許可されたIPのルートを作成します(オプション)。"
  4002. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  4003. msgid "Optional. Description of peer."
  4004. msgstr "ピアの説明(オプション)。"
  4005. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  4006. msgid "Optional. Do not create host routes to peers."
  4007. msgstr "ピアへのホストルートを作成しない(オプション)。"
  4008. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  4009. msgid ""
  4010. "Optional. Host of peer. Names are resolved prior to bringing up the "
  4011. "interface."
  4012. msgstr ""
  4013. "ピアのホストです。名前はインターフェースの起動前に解決されます(オプショ"
  4014. "ン)。"
  4015. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  4016. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  4017. msgstr "トンネルインターフェースのMaximum Transmission Unit(オプション)。"
  4018. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  4019. msgid "Optional. Port of peer."
  4020. msgstr "ピアのポート(オプション)。"
  4021. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4022. #, fuzzy
  4023. msgid ""
  4024. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  4025. "Recommended value if this device is behind a NAT is 25."
  4026. msgstr ""
  4027. "キープアライブメッセージの送信間隔(秒)です。デフォルトは0(無効)です。この"
  4028. "デバイスがNATを使用する場合の推奨値は25です(オプション)。"
  4029. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  4030. msgid "Optional. UDP port used for outgoing and incoming packets."
  4031. msgstr "送信パケットと受信パケットに使用されるUDPポート(オプション)。"
  4032. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  4033. msgid "Options"
  4034. msgstr "オプション"
  4035. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  4036. msgid "Options:"
  4037. msgstr "オプション :"
  4038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:346
  4039. msgid "Other:"
  4040. msgstr "その他:"
  4041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  4042. msgid "Out"
  4043. msgstr "アウト"
  4044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:275
  4045. msgid "Outbound:"
  4046. msgstr "送信:"
  4047. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  4048. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  4049. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  4050. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  4051. msgid "Outgoing checksum"
  4052. msgstr "送信チェックサム"
  4053. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  4054. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  4055. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  4056. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  4057. msgid "Outgoing key"
  4058. msgstr "送信キー"
  4059. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4060. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4061. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4062. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4063. msgid "Outgoing serialization"
  4064. msgstr "送信シリアル化"
  4065. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  4066. msgid "Output Interface"
  4067. msgstr "出力インターフェース"
  4068. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  4069. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  4070. msgid "Output zone"
  4071. msgstr "出力ゾーン"
  4072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  4073. msgid "Overlap"
  4074. msgstr "オーバーラップ"
  4075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  4076. msgid "Override IPv4 routing table"
  4077. msgstr "IPv4 ルーティングテーブルのオーバーライド"
  4078. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:938
  4079. msgid "Override IPv6 routing table"
  4080. msgstr "IPv6 ルーティング テーブルのオーバーライド"
  4081. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  4082. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  4083. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  4084. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  4085. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  4086. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  4087. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  4088. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  4089. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  4090. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  4091. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  4092. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  4093. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  4094. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  4095. msgid "Override MTU"
  4096. msgstr "MTUを上書き"
  4097. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  4098. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  4099. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  4100. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  4101. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  4102. msgid "Override TOS"
  4103. msgstr "TOSを上書き"
  4104. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  4105. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  4106. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  4107. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  4108. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  4109. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  4110. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  4111. msgid "Override TTL"
  4112. msgstr "TTLを上書き"
  4113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1118
  4114. msgid "Override default interface name"
  4115. msgstr "デフォルトのインターフェース名を上書き"
  4116. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  4117. msgid "Override the gateway in DHCP responses"
  4118. msgstr "DHCPレスポンス内のゲートウェイを上書き"
  4119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  4120. msgid ""
  4121. "Override the netmask sent to clients. Normally it is calculated from the "
  4122. "subnet that is served."
  4123. msgstr ""
  4124. "クライアントへ通知するネットマスクを上書きします。通常は、設定されているサブ"
  4125. "ネットから計算されます。"
  4126. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  4127. msgid "Override the table used for internal routes"
  4128. msgstr "内部ルートに使用されるテーブルを上書き"
  4129. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  4130. msgid "Overview"
  4131. msgstr "概要"
  4132. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2740
  4133. msgid "Overwrite existing file \"%s\" ?"
  4134. msgstr "既存のファイル\"%s\"を上書きしますか?"
  4135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  4136. msgid "Owner"
  4137. msgstr "オーナー"
  4138. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  4139. msgid "PAP/CHAP (both)"
  4140. msgstr "PAP/CHAP(両方)"
  4141. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  4142. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  4143. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  4144. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  4145. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  4146. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  4147. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  4148. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  4149. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  4150. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  4151. msgid "PAP/CHAP password"
  4152. msgstr "PAP/CHAPパスワード"
  4153. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  4154. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  4155. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  4156. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  4157. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  4158. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  4159. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  4160. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4161. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4162. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4163. msgid "PAP/CHAP username"
  4164. msgstr "PAP/CHAPユーザー名"
  4165. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4166. msgid "PDP Type"
  4167. msgstr "PDPタイプ"
  4168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4169. msgid "PID"
  4170. msgstr "PID"
  4171. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4172. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4173. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4174. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4175. msgid "PIN"
  4176. msgstr "PIN"
  4177. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4178. #: modules/luci-compat/luasrc/model/network.lua:39
  4179. msgid "PIN code rejected"
  4180. msgstr "PINコードが拒否されました"
  4181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1516
  4182. msgid "PMK R1 Push"
  4183. msgstr "PMK R1プッシュ"
  4184. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4185. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4186. msgid "PPP"
  4187. msgstr "PPP"
  4188. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4189. msgid "PPPoA Encapsulation"
  4190. msgstr "PPPoAカプセル化"
  4191. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4192. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4193. msgid "PPPoATM"
  4194. msgstr "PPPoATM"
  4195. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4196. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4197. msgid "PPPoE"
  4198. msgstr "PPPoE"
  4199. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4200. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4201. msgid "PPPoSSH"
  4202. msgstr "PPPoSSH"
  4203. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4204. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4205. msgid "PPtP"
  4206. msgstr "PPtP"
  4207. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4208. msgid "PSID offset"
  4209. msgstr "PSIDオフセット"
  4210. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4211. msgid "PSID-bits length"
  4212. msgstr "PSIDビット長"
  4213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  4214. msgid "PTM/EFM (Packet Transfer Mode)"
  4215. msgstr "PTM/EFM(パケット転送モード)"
  4216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1433
  4217. msgid "Packet Steering"
  4218. msgstr "パケットステアリング"
  4219. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4220. msgid "Packets"
  4221. msgstr "パケット"
  4222. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4223. msgid "Packets To Transmit Before Moving To Next Slave"
  4224. msgstr "次のスレーブに移動する前に送信するパケット"
  4225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1164
  4227. msgid "Part of zone %q"
  4228. msgstr "ゾーン%qの一部"
  4229. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:477
  4230. msgctxt "MACVLAN mode"
  4231. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4232. msgstr "パススルー(物理デバイスを単一の MAC ベース VLAN へミラー)"
  4233. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  4235. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4236. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4237. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4238. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4239. msgid "Password"
  4240. msgstr "パスワード"
  4241. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4242. msgid "Password authentication"
  4243. msgstr "パスワード認証"
  4244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  4245. msgid "Password of Private Key"
  4246. msgstr "秘密鍵のパスワード"
  4247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  4248. msgid "Password of inner Private Key"
  4249. msgstr "内部秘密鍵のパスワード"
  4250. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4251. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4253. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4254. msgid "Password strength"
  4255. msgstr "パスワード強度"
  4256. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4257. msgid "Password2"
  4258. msgstr "パスワード2"
  4259. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4260. msgid "Paste or drag SSH key file…"
  4261. msgstr "SSH鍵を貼り付けるかファイルをドラッグ…"
  4262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4263. msgid "Path to CA-Certificate"
  4264. msgstr "CA証明書のパス"
  4265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1564
  4266. msgid "Path to Client-Certificate"
  4267. msgstr "クライアント証明書のパス"
  4268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1567
  4269. msgid "Path to Private Key"
  4270. msgstr "秘密鍵のパス"
  4271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  4272. msgid "Path to inner CA-Certificate"
  4273. msgstr "内部CA証明書のパス"
  4274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1622
  4275. msgid "Path to inner Client-Certificate"
  4276. msgstr "内部クライアント証明書のパス"
  4277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1625
  4278. msgid "Path to inner Private Key"
  4279. msgstr "内部秘密鍵のパス"
  4280. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4281. msgid "Paused"
  4282. msgstr "一時停止中"
  4283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:271
  4284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:281
  4285. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:332
  4286. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:342
  4287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:352
  4288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:237
  4289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:247
  4290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:257
  4291. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  4292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  4293. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:294
  4294. msgid "Peak:"
  4295. msgstr "ピーク:"
  4296. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4297. msgid "Peer IP address to assign"
  4298. msgstr "割り当てるピアIPアドレス"
  4299. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:649
  4300. msgid "Peer MAC address"
  4301. msgstr "ピアの MAC アドレス"
  4302. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4303. #: modules/luci-compat/luasrc/model/network.lua:32
  4304. msgid "Peer address is missing"
  4305. msgstr "ピアアドレスがありません"
  4306. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:630
  4307. msgid "Peer device name"
  4308. msgstr "ピアのデバイス名"
  4309. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4310. msgid "Peers"
  4311. msgstr "ピア"
  4312. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4313. msgid "Perfect Forward Secrecy"
  4314. msgstr "Perfect Forward Secrecy(完全転送秘密)"
  4315. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4316. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4317. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4318. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4319. msgid "Perform outgoing packets serialization (optional)."
  4320. msgstr "送信パケットのシリアル化を実行します(オプション)。"
  4321. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4322. msgid "Perform reboot"
  4323. msgstr "再起動する"
  4324. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4325. msgid "Perform reset"
  4326. msgstr "初期化する"
  4327. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4328. msgid "Permission denied"
  4329. msgstr "アクセス許可が拒否されました"
  4330. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4331. msgid "Persistent Keep Alive"
  4332. msgstr "永続的なキープアライブ"
  4333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:288
  4334. msgid "Phy Rate:"
  4335. msgstr "物理レート:"
  4336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:467
  4337. msgid "Physical Settings"
  4338. msgstr "デバイス設定"
  4339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4341. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4342. msgid "Ping"
  4343. msgstr "Ping"
  4344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4349. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4350. msgid "Pkts."
  4351. msgstr "パケット"
  4352. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4353. msgid "Please enter your username and password."
  4354. msgstr "ユーザー名とパスワードを入力してください。"
  4355. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3789
  4356. msgid "Please select the file to upload."
  4357. msgstr "アップロードするファイルを選択してください。"
  4358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4359. msgid "Policy"
  4360. msgstr "ポリシー"
  4361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4362. msgid "Port"
  4363. msgstr "ポート"
  4364. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4365. msgid "Port isolation"
  4366. msgstr "ポート分離"
  4367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4368. msgid "Port status:"
  4369. msgstr "ポートステータス:"
  4370. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4371. #, fuzzy
  4372. msgid "Potential negation of: %s"
  4373. msgstr "存在しない可能性があります: %s"
  4374. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4375. msgid "Power Management Mode"
  4376. msgstr "電力管理モード"
  4377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4378. msgid "Pre-emptive CRC errors (CRCP_P)"
  4379. msgstr "プリエンプティブCRCエラー(CRCP_P)"
  4380. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4381. msgid "Prefer LTE"
  4382. msgstr "LTEを優先"
  4383. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4384. msgid "Prefer UMTS"
  4385. msgstr "UMTSを優先"
  4386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4387. msgid "Prefix Delegated"
  4388. msgstr "委任されたプレフィックス(PD)"
  4389. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4390. msgid "Preshared Key"
  4391. msgstr "事前共有鍵"
  4392. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4393. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4394. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4395. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4396. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4397. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4398. msgid ""
  4399. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4400. "ignore failures"
  4401. msgstr ""
  4402. "設定された回数LCP echoが失敗後、ピアがダウンしたと見なします。0を設定した場"
  4403. "合、失敗しても無視します"
  4404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4405. msgid "Prevent listening on these interfaces."
  4406. msgstr "これらのインターフェースでのリッスンを停止します。"
  4407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1114
  4408. msgid "Prevents client-to-client communication"
  4409. msgstr "クライアント同士の通信を制限"
  4410. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4411. msgid "Primary Slave"
  4412. msgstr "プライマリスレーブ"
  4413. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:220
  4414. msgctxt "VLAN port state"
  4415. msgid "Primary VLAN ID"
  4416. msgstr "プライマリー VLAN ID"
  4417. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4418. msgid ""
  4419. "Primary becomes active slave when it comes back up if speed and duplex "
  4420. "better than current slave (better, 1)"
  4421. msgstr ""
  4422. "現在のスレーブよりアクティブスレーブの方が速度とデュプレックスが優れている場"
  4423. "合、プライマリはアクティブスレーブになります(better、1)"
  4424. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4425. #, fuzzy
  4426. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4427. msgstr "プライマリが復旧するとアクティブスレーブになります(always、0)"
  4428. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:544
  4429. msgid "Priority"
  4430. msgstr "優先度"
  4431. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:475
  4432. msgctxt "MACVLAN mode"
  4433. msgid "Private (Prevent communication between MAC VLANs)"
  4434. msgstr "プライベート(MAC ベース VLAN間の通信を防ぐ)"
  4435. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4436. msgid "Private Key"
  4437. msgstr "秘密鍵"
  4438. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4439. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4440. msgid "Processes"
  4441. msgstr "プロセス"
  4442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4443. msgid "Prot."
  4444. msgstr "プロトコル"
  4445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:542
  4447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1087
  4448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:382
  4449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4452. msgid "Protocol"
  4453. msgstr "プロトコル"
  4454. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4455. msgid "Provide NTP server"
  4456. msgstr "NTPサーバーを有効化"
  4457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:860
  4458. msgid ""
  4459. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4460. "and requests."
  4461. msgstr ""
  4462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849
  4463. msgid "Provide new network"
  4464. msgstr "新しいネットワークを設定"
  4465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1043
  4466. msgid "Pseudo Ad-Hoc (ahdemo)"
  4467. msgstr "擬似アドホック(ahdemo)"
  4468. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4469. msgid "Public Key"
  4470. msgstr "公開鍵"
  4471. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4472. msgid ""
  4473. "Public keys allow for the passwordless SSH logins with a higher security "
  4474. "compared to the use of plain passwords. In order to upload a new key to the "
  4475. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4476. "code> file into the input field."
  4477. msgstr ""
  4478. "公開鍵を使うことで、普通のパスワードよりもセキュリティが高いSSHログインが可能"
  4479. "です。新しい鍵をデバイスにアップロードするには、入力欄にOpenSSH互換の公開鍵"
  4480. "(1行)を貼り付けるか、<code>.pub</code>ファイルをドラッグしてください。"
  4481. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4482. #, fuzzy
  4483. msgid "Public prefix routed to this device for distribution to clients."
  4484. msgstr ""
  4485. "クライアントに接続するために、このデバイスにルーティングされるパブリックプレ"
  4486. "フィックスです。"
  4487. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4488. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4489. msgid "QMI Cellular"
  4490. msgstr "QMIセルラー"
  4491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4492. msgid "Quality"
  4493. msgstr "品質"
  4494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4495. #, fuzzy
  4496. msgid ""
  4497. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4498. "servers"
  4499. msgstr ""
  4500. "利用可能なすべての上位<abbr title=\"Domain Name System\">DNS</abbr>サーバに問"
  4501. "い合わせる"
  4502. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  4503. msgid "Query interval"
  4504. msgstr "クエリー間隔"
  4505. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  4506. msgid "Query response interval"
  4507. msgstr "クエリー レスポンス間隔"
  4508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  4509. msgid "R0 Key Lifetime"
  4510. msgstr "R0キー有効期限"
  4511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1510
  4512. msgid "R1 Key Holder"
  4513. msgstr "R1キーホルダー"
  4514. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4515. msgid "RFC3947 NAT-T mode"
  4516. msgstr "RFC3947 NAT-Tモード"
  4517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:969
  4518. msgid "RSSI threshold for joining"
  4519. msgstr "ネットワークに接続するためのRSSIしきい値"
  4520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:933
  4521. msgid "RTS/CTS Threshold"
  4522. msgstr "RTS/CTSしきい値"
  4523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4525. msgid "RX"
  4526. msgstr "RX"
  4527. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4528. msgid "RX Rate"
  4529. msgstr "受信レート"
  4530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  4531. msgid "RX Rate / TX Rate"
  4532. msgstr "受信レート/送信レート"
  4533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  4534. msgid "Radius-Accounting-Port"
  4535. msgstr "Radiusアカウンティング-ポート"
  4536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  4537. msgid "Radius-Accounting-Secret"
  4538. msgstr "Radiusアカウンティング-秘密鍵"
  4539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1377
  4540. msgid "Radius-Accounting-Server"
  4541. msgstr "Radiusアカウンティング-サーバー"
  4542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1367
  4543. msgid "Radius-Authentication-Port"
  4544. msgstr "Radius認証-ポート"
  4545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1372
  4546. msgid "Radius-Authentication-Secret"
  4547. msgstr "Radius認証-秘密鍵"
  4548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1362
  4549. msgid "Radius-Authentication-Server"
  4550. msgstr "Radius認証-サーバー"
  4551. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4552. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4553. msgstr ""
  4554. "16進数でエンコードされた、生のバイト値です。 ISPがこれを要求しない場合、空欄"
  4555. "にしてください"
  4556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4557. msgid ""
  4558. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4559. "Configuration Protocol\">DHCP</abbr>-Server"
  4560. msgstr ""
  4561. "<code>/etc/ethers</code>を元に<abbr title=\"Dynamic Host Configuration "
  4562. "Protocol\">DHCP</abbr>サーバーを設定"
  4563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:547
  4564. msgid "Really switch protocol?"
  4565. msgstr "本当にプロトコルを変更しますか?"
  4566. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4567. msgid "Realtime Graphs"
  4568. msgstr "リアルタイムグラフ"
  4569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  4570. msgid "Reassociation Deadline"
  4571. msgstr "再接続制限時間"
  4572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4573. msgid "Rebind protection"
  4574. msgstr "DNSリバインディング保護"
  4575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4576. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4577. msgid "Reboot"
  4578. msgstr "再起動"
  4579. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4580. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4583. msgid "Rebooting…"
  4584. msgstr "再起動中…"
  4585. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4586. msgid "Reboots the operating system of your device"
  4587. msgstr "デバイスのオペレーティングシステムを再起動"
  4588. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4589. msgid "Receive"
  4590. msgstr "受信"
  4591. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4592. msgid "Recommended. IP addresses of the WireGuard interface."
  4593. msgstr "WireGuardインターフェースのIPアドレスです(推奨)。"
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:492
  4595. msgid "Reconnect this interface"
  4596. msgstr "このインターフェースを再接続"
  4597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4598. msgid "References"
  4599. msgstr "参照"
  4600. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4601. msgid "Refreshing"
  4602. msgstr "更新中"
  4603. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4604. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4605. msgid "Relay"
  4606. msgstr "リレー"
  4607. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4608. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4609. msgid "Relay Bridge"
  4610. msgstr "リレーブリッジ"
  4611. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4612. msgid "Relay between networks"
  4613. msgstr "ネットワーク間のリレー"
  4614. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4615. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4616. msgid "Relay bridge"
  4617. msgstr "リレーブリッジ"
  4618. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4619. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4620. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4621. msgid "Remote IPv4 address"
  4622. msgstr "リモートIPv4アドレス"
  4623. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4624. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4625. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4626. msgid "Remote IPv4 address or FQDN"
  4627. msgstr "リモートIPv4アドレスまたはFQDN"
  4628. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4629. msgid "Remote IPv6 address"
  4630. msgstr "リモートIPv6アドレス"
  4631. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4632. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4633. msgid "Remote IPv6 address or FQDN"
  4634. msgstr "リモートIPv6アドレスまたはFQDN"
  4635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:873
  4636. msgid "Remove"
  4637. msgstr "削除"
  4638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4639. msgid "Remove related device settings from the configuration"
  4640. msgstr ""
  4641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1961
  4642. msgid "Replace wireless configuration"
  4643. msgstr "無線設定を置換"
  4644. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4645. msgid "Request IPv6-address"
  4646. msgstr "IPv6アドレスをリクエスト"
  4647. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4648. msgid "Request IPv6-prefix of length"
  4649. msgstr "リクエストするIPv6のプレフィックス長"
  4650. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4651. msgid "Request timeout"
  4652. msgstr "リクエストタイムアウト"
  4653. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4654. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4655. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4656. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4657. msgid "Require incoming checksum (optional)."
  4658. msgstr "受信チェックサムを要求(オプション)。"
  4659. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4660. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4661. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4662. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4663. msgid "Require incoming packets serialization (optional)."
  4664. msgstr "受信パケットのシリアル化を要求(オプション)。"
  4665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1648
  4666. msgid "Required"
  4667. msgstr "必須"
  4668. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4669. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4670. msgstr "DOCSIS 3などを使用するいくつかのISPで必要です"
  4671. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4672. msgid "Required. Base64-encoded private key for this interface."
  4673. msgstr "このインターフェースに使用するBase64エンコードの秘密鍵(必須)。"
  4674. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4675. msgid "Required. Base64-encoded public key of peer."
  4676. msgstr "Base64エンコードのピアの公開鍵(必須)。"
  4677. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4678. #, fuzzy
  4679. msgid ""
  4680. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4681. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4682. "routes through the tunnel."
  4683. msgstr ""
  4684. "このピアがトンネル内で使用できるIPアドレスとプレフィックスです。通常、ピアの"
  4685. "トンネルIPアドレスとネットワークはトンネルを経由してルーティングします(必"
  4686. "須)。"
  4687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1278
  4688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1279
  4689. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  4690. msgid "Requires hostapd"
  4691. msgstr "hostapdが必要"
  4692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1285
  4693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1286
  4694. msgid "Requires hostapd with EAP Suite-B support"
  4695. msgstr "EAP Suite-Bをサポートするhostapdが必要"
  4696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1283
  4697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1284
  4698. msgid "Requires hostapd with EAP support"
  4699. msgstr "EAPをサポートするhostapdが必要"
  4700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1287
  4701. msgid "Requires hostapd with OWE support"
  4702. msgstr "OWEをサポートするhostapdが必要"
  4703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1281
  4704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1282
  4705. msgid "Requires hostapd with SAE support"
  4706. msgstr "SAEをサポートするhostapdが必要"
  4707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1276
  4708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1277
  4709. msgid "Requires hostapd with WEP support"
  4710. msgstr "WEPをサポートするhostapdが必要"
  4711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4712. msgid ""
  4713. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4714. "come from unsigned domains"
  4715. msgstr ""
  4716. "未署名のドメインレスポンスが、本当にその未署名のドメインから来たものであるか"
  4717. "検証します。上位サーバがDNSSECをサポートしている必要があります"
  4718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1292
  4719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1293
  4720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1294
  4721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1306
  4722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1307
  4723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1308
  4724. msgid "Requires wpa-supplicant"
  4725. msgstr "wpa-supplicantが必要"
  4726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  4727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1300
  4728. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4729. msgstr "EAP Suite-Bをサポートするwpa-supplicantが必要"
  4730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1297
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  4732. msgid "Requires wpa-supplicant with EAP support"
  4733. msgstr "EAPをサポートするwpa-supplicantが必要"
  4734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1301
  4735. msgid "Requires wpa-supplicant with OWE support"
  4736. msgstr "OWEをサポートするwpa-supplicantが必要"
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1295
  4738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1296
  4739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4740. msgid "Requires wpa-supplicant with SAE support"
  4741. msgstr "SAEをサポートするwpa-supplicantが必要"
  4742. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  4743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1291
  4744. msgid "Requires wpa-supplicant with WEP support"
  4745. msgstr "WEPをサポートするwpa-supplicantが必要"
  4746. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4747. #, fuzzy
  4748. msgid "Reselection policy for primary slave"
  4749. msgstr "プライマリスレーブの再選択ポリシー"
  4750. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4751. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4752. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4753. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4754. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4756. msgid "Reset"
  4757. msgstr "リセット"
  4758. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4759. msgid "Reset Counters"
  4760. msgstr "カウンターをリセット"
  4761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4762. msgid "Reset to defaults"
  4763. msgstr "初期化"
  4764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4765. msgid "Resolv and Hosts Files"
  4766. msgstr "リゾルバとホストファイル"
  4767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4768. msgid "Resolve file"
  4769. msgstr "リゾルバファイル"
  4770. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4771. msgid "Resource not found"
  4772. msgstr "リソースが見つかりません"
  4773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  4774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:841
  4775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4776. msgid "Restart"
  4777. msgstr "再起動"
  4778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4779. msgid "Restart Firewall"
  4780. msgstr "ファイアウォールを再起動"
  4781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:839
  4782. msgid "Restart radio interface"
  4783. msgstr "無線インターフェースを再起動"
  4784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4785. msgid "Restore"
  4786. msgstr "復元"
  4787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4788. msgid "Restore backup"
  4789. msgstr "バックアップを復元"
  4790. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4791. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4792. msgid "Reveal/hide password"
  4793. msgstr "パスワードを表示/隠す"
  4794. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:663
  4795. msgid "Reverse path filter"
  4796. msgstr "戻り経路フィルター"
  4797. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4074
  4798. msgid "Revert"
  4799. msgstr "元に戻す"
  4800. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4159
  4801. msgid "Revert changes"
  4802. msgstr "変更の取り消し"
  4803. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4341
  4804. msgid "Revert request failed with status <code>%h</code>"
  4805. msgstr "取り消しのリクエストに失敗しました ステータスコード:<code>%h</code>"
  4806. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4321
  4807. msgid "Reverting configuration…"
  4808. msgstr "設定を元に戻しています…"
  4809. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  4810. msgid "Robustness"
  4811. msgstr "堅牢性"
  4812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4813. msgid "Root directory for files served via TFTP"
  4814. msgstr "TFTP経由でファイルを取り扱う際のルートディレクトリ"
  4815. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4816. msgid "Root preparation"
  4817. msgstr "ルートの準備"
  4818. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4819. msgid "Round-Robin policy (balance-rr, 0)"
  4820. msgstr "ラウンドロビンポリシー(balance-rr、0)"
  4821. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4822. msgid "Route Allowed IPs"
  4823. msgstr "許可されたIPのルート"
  4824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4825. msgid "Route table"
  4826. msgstr "ルートテーブル"
  4827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4828. msgid "Route type"
  4829. msgstr "ルートタイプ"
  4830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:813
  4831. msgid ""
  4832. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4833. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4834. msgstr ""
  4835. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4836. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4837. msgid "Router Password"
  4838. msgstr "ルーターパスワード"
  4839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4841. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4842. msgid "Routes"
  4843. msgstr "ルート"
  4844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4845. msgid ""
  4846. "Routes specify over which interface and gateway a certain host or network "
  4847. "can be reached."
  4848. msgstr ""
  4849. "特定のホストまたはネットワークがどのインターフェースとゲートウェイを通して通"
  4850. "信を行うかのルートを設定します。"
  4851. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4852. msgid "Rule"
  4853. msgstr "ルール"
  4854. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4855. msgid "Run a filesystem check before mounting the device"
  4856. msgstr "デバイスをマウントする前にファイルシステムチェックを実行"
  4857. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4858. msgid "Run filesystem check"
  4859. msgstr "ファイルシステムチェックを実行"
  4860. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4861. msgid "Runtime error"
  4862. msgstr "ランタイムエラー"
  4863. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4864. msgid "SHA256"
  4865. msgstr "SHA256"
  4866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4867. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4868. msgid "SNR"
  4869. msgstr "SNR"
  4870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4871. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4872. msgid "SSH Access"
  4873. msgstr "SSHアクセス"
  4874. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4875. msgid "SSH server address"
  4876. msgstr "SSHサーバーアドレス"
  4877. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4878. msgid "SSH server port"
  4879. msgstr "SSHサーバーポート"
  4880. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4881. msgid "SSH username"
  4882. msgstr "SSHユーザー名"
  4883. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4884. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4885. msgid "SSH-Keys"
  4886. msgstr "SSH-キー"
  4887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  4890. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4891. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4892. msgid "SSID"
  4893. msgstr "SSID"
  4894. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4895. msgid "SSTP"
  4896. msgstr "SSTP"
  4897. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4898. msgid "SSTP Server"
  4899. msgstr "SSTPサーバー"
  4900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4901. msgid "SWAP"
  4902. msgstr "スワップ"
  4903. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4904. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4905. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4906. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4907. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4909. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4910. msgid "Save"
  4911. msgstr "保存"
  4912. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4913. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4070
  4914. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4915. msgid "Save & Apply"
  4916. msgstr "保存&適用"
  4917. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4918. msgid "Save error"
  4919. msgstr "保存エラー"
  4920. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4921. msgid "Save mtdblock"
  4922. msgstr "mtdblockを保存"
  4923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4924. msgid "Save mtdblock contents"
  4925. msgstr "mtdblockの内容を保存"
  4926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:846
  4927. msgid "Scan"
  4928. msgstr "スキャン"
  4929. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4930. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4931. msgid "Scheduled Tasks"
  4932. msgstr "スケジュールタスク"
  4933. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4054
  4934. msgid "Section added"
  4935. msgstr "追加されるセクション"
  4936. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4937. msgid "Section removed"
  4938. msgstr "削除されるセクション"
  4939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4940. msgid "See \"mount\" manpage for details"
  4941. msgstr "詳細については\"mount\"のmanページを参照してください"
  4942. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  4943. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2781
  4944. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2946
  4945. msgid "Select file…"
  4946. msgstr "ファイルを選択…"
  4947. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4948. msgid "Selects the transmit hash policy to use for slave selection"
  4949. msgstr "スレーブ選択時に使用する送信ハッシュポリシーを選択"
  4950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:756
  4951. msgid ""
  4952. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4953. "messages advertising this device as IPv6 router."
  4954. msgstr ""
  4955. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  4956. msgid "Send ICMP redirects"
  4957. msgstr "ICMP リダイレクトを送信"
  4958. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4959. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4960. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4961. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4962. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4963. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4964. msgid ""
  4965. "Send LCP echo requests at the given interval in seconds, only effective in "
  4966. "conjunction with failure threshold"
  4967. msgstr ""
  4968. "設定された秒間隔でLCP echoリクエストを送信します。失敗しきい値を設定した場合"
  4969. "のみ、機能が有効になります"
  4970. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4971. msgid "Send the hostname of this device"
  4972. msgstr "このデバイスのホスト名を送信"
  4973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4974. msgid "Server Settings"
  4975. msgstr "サーバー設定"
  4976. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4977. msgid "Service Name"
  4978. msgstr "サービス名"
  4979. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4980. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4981. msgid "Service Type"
  4982. msgstr "サービスタイプ"
  4983. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4984. msgid "Services"
  4985. msgstr "サービス"
  4986. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4987. msgid "Session expired"
  4988. msgstr "セッション期限切れ"
  4989. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4990. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4991. msgid "Set Static"
  4992. msgstr "静的に設定"
  4993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  4994. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4995. msgstr ""
  4996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1203
  4997. msgid ""
  4998. "Set interface properties regardless of the link carrier (If set, carrier "
  4999. "sense events do not invoke hotplug handlers)."
  5000. msgstr ""
  5001. "リンクキャリアに関係なくインターフェースプロパティを設定します(設定されてい"
  5002. "る場合、キャリアセンスイベントはホットプラグハンドラを呼び出しません)。"
  5003. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  5004. msgid "Set same MAC Address to all slaves"
  5005. msgstr "すべてのスレーブに同じMACアドレスを設定"
  5006. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  5007. msgid ""
  5008. "Set the autonomous address-configuration flag in the prefix information "
  5009. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  5010. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  5011. msgstr ""
  5012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  5013. msgid ""
  5014. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  5015. "proxying."
  5016. msgstr ""
  5017. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  5018. msgid "Set to currently active slave (active, 1)"
  5019. msgstr "現在アクティブなスレーブに設定(active、1)"
  5020. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  5021. #, fuzzy
  5022. msgid "Set to first slave added to the bond (follow, 2)"
  5023. msgstr "bondに追加された最初のスレーブに設定(follow、2)"
  5024. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  5025. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  5026. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  5027. msgid "Setting PLMN failed"
  5028. msgstr "PLMNの設定に失敗しました"
  5029. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  5030. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  5031. msgid "Setting operation mode failed"
  5032. msgstr "操作モードの設定に失敗しました"
  5033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  5034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  5035. msgid "Setup DHCP Server"
  5036. msgstr "DHCPサーバーをセットアップ"
  5037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:894
  5038. msgid "Setup routes for proxied IPv6 neighbours."
  5039. msgstr ""
  5040. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  5041. msgid "Severely Errored Seconds (SES)"
  5042. msgstr "重大エラー秒数(SES)"
  5043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  5044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  5045. msgid "Short GI"
  5046. msgstr "Short GI"
  5047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1124
  5048. msgid "Short Preamble"
  5049. msgstr "ショートプリアンブル"
  5050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  5051. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  5052. msgid "Show current backup file list"
  5053. msgstr "現在のバックアップファイルリストを表示"
  5054. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  5055. msgid "Show empty chains"
  5056. msgstr "空のチェインを表示"
  5057. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  5058. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  5059. msgid "Show raw counters"
  5060. msgstr "生のカウンターを表示"
  5061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  5062. msgid "Shutdown this interface"
  5063. msgstr "このインターフェースをシャットダウン"
  5064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  5065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  5066. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  5067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1698
  5068. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  5069. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  5070. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  5071. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  5072. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  5073. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  5074. msgid "Signal"
  5075. msgstr "信号強度"
  5076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2118
  5077. msgid "Signal / Noise"
  5078. msgstr "信号強度 / ノイズ"
  5079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  5080. msgid "Signal Attenuation (SATN)"
  5081. msgstr "信号減衰(SATN)"
  5082. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5083. msgid "Signal Refresh Rate"
  5084. msgstr "信号のリフレッシュ レート"
  5085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:260
  5086. msgid "Signal:"
  5087. msgstr "信号:"
  5088. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3807
  5089. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  5090. msgid "Size"
  5091. msgstr "サイズ"
  5092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  5093. msgid "Size of DNS query cache"
  5094. msgstr "DNSクエリキャッシュのサイズ"
  5095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  5096. msgid "Size of the ZRam device in megabytes"
  5097. msgstr "ZRamデバイスのサイズ(MB)"
  5098. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  5099. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  5100. msgid "Skip"
  5101. msgstr "スキップ"
  5102. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  5103. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  5104. msgid "Skip to content"
  5105. msgstr "コンテンツへ移動"
  5106. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  5107. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  5108. msgid "Skip to navigation"
  5109. msgstr "ナビゲーションへ移動"
  5110. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  5111. msgid "Slave Interfaces"
  5112. msgstr "スレーブインターフェース"
  5113. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  5114. #: modules/luci-compat/luasrc/model/network.lua:1428
  5115. msgid "Software VLAN"
  5116. msgstr "ソフトウェア VLAN"
  5117. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  5118. msgid "Some fields are invalid, cannot save values!"
  5119. msgstr "フィールドに無効な値が設定されているため、保存できません!"
  5120. #: modules/luci-base/luasrc/view/error404.htm:9
  5121. msgid "Sorry, the object you requested was not found."
  5122. msgstr ""
  5123. "申し訳ありませんが、リクエストされたオブジェクトは見つかりませんでした。"
  5124. #: modules/luci-base/luasrc/view/error500.htm:9
  5125. msgid "Sorry, the server encountered an unexpected error."
  5126. msgstr "申し訳ありませんが、サーバーに予期しないエラーが発生しました。"
  5127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  5128. msgid ""
  5129. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  5130. "flashed manually. Please refer to the wiki for device specific install "
  5131. "instructions."
  5132. msgstr ""
  5133. "申し訳ありませんが、sysupgradeがサポートされていないため、ファームウェア更新"
  5134. "は手動で行う必要があります。このデバイスへのインストール方法については、wiki"
  5135. "を参照してください。"
  5136. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  5137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  5138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5139. msgid "Source"
  5140. msgstr "アクセス元"
  5141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  5142. msgid "Source Address"
  5143. msgstr "アクセス元アドレス"
  5144. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  5145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  5146. msgid "Source interface"
  5147. msgstr "アクセス元インタフェース"
  5148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  5149. msgid ""
  5150. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  5151. "unspecified, the local device DNS search domain will be announced."
  5152. msgstr ""
  5153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  5154. msgid ""
  5155. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  5156. "If left unspecified, the device will announce itself as IPv6 DNS server "
  5157. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  5158. msgstr ""
  5159. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  5160. msgid ""
  5161. "Specifies that duplicate frames (received on inactive ports) should be "
  5162. "dropped or delivered"
  5163. msgstr ""
  5164. "重複フレーム(非アクティブなポートで受信)をドロップまたは配信するよう指定"
  5165. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  5166. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  5167. msgstr "ARPリンクのモニタリング頻度をミリ秒単位で指定"
  5168. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  5169. msgid "Specifies the IP addresses to use for ARP monitoring"
  5170. msgstr "ARPモニタリングに使用するIPアドレスを指定"
  5171. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  5172. msgid "Specifies the MII link monitoring frequency in milliseconds"
  5173. msgstr "MIIリンクのモニタリング頻度をミリ秒単位で指定"
  5174. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  5175. msgid "Specifies the aggregation selection logic to use"
  5176. msgstr "使用するアグリゲーション選択ロジックを指定"
  5177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  5178. msgid "Specifies the directory the device is attached to"
  5179. msgstr "デバイスが接続するディレクトリを指定"
  5180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  5181. msgid ""
  5182. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  5183. "messages, for example to instruct clients to request further information via "
  5184. "stateful DHCPv6."
  5185. msgstr ""
  5186. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  5187. #, fuzzy
  5188. msgid ""
  5189. "Specifies the mac-address for the actor in protocol packet exchanges "
  5190. "(LACPDUs). If empty, masters' mac address defaults to system default"
  5191. msgstr ""
  5192. "プロトコルパケット交換(LACPDU)でアクターのMACアドレスを指定します。空の場"
  5193. "合、マスターのMACアドレスのデフォルトをシステムデフォルトに設定"
  5194. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  5195. msgid ""
  5196. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  5197. "to be dead"
  5198. msgstr "ホストが停止しているとみなされるまでのARPリクエスト最大失敗回数を指定"
  5199. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5200. msgid ""
  5201. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5202. "dead"
  5203. msgstr "ホストが停止しているとみなされるまでの最大秒数を指定"
  5204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  5205. msgid ""
  5206. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5207. "on regulatory requirements and wireless usage, the actual transmit power may "
  5208. "be reduced by the driver."
  5209. msgstr ""
  5210. "無線電波が使用できる最大の送信出力を指定します。規制要件や無線の使用方法に"
  5211. "よって、実際の送信出力はドライバーによって弱くなることがあります。"
  5212. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5213. msgid ""
  5214. "Specifies the minimum number of links that must be active before asserting "
  5215. "carrier"
  5216. msgstr ""
  5217. "キャリアをアサーションする前にアクティブにする必要があるリンクの最小数を指定"
  5218. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5219. msgid "Specifies the mode to be used for this bonding interface"
  5220. msgstr "このボンディングインターフェースに使用するモードを指定"
  5221. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5222. #, fuzzy
  5223. msgid ""
  5224. "Specifies the number of IGMP membership reports to be issued after a "
  5225. "failover event in 200ms intervals"
  5226. msgstr ""
  5227. "フェールオーバー処理後に発行されるIGMPメンバーシップレポートの数を200ms間隔で"
  5228. "指定"
  5229. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5230. msgid ""
  5231. "Specifies the number of packets to transmit through a slave before moving to "
  5232. "the next one"
  5233. msgstr "スレーブを通過してから次のスレーブに移動するパケットの数を指定"
  5234. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5235. msgid ""
  5236. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5237. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5238. msgstr ""
  5239. "フェールオーバー処理後に発行されるピア通知(Gratuitous ARPおよびunsolicited "
  5240. "IPv6 Neighbor Advertisements)の数を指定"
  5241. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5242. #, fuzzy
  5243. msgid ""
  5244. "Specifies the number of seconds between instances where the bonding driver "
  5245. "sends learning packets to each slaves peer switch"
  5246. msgstr ""
  5247. "ボンディングドライバが各スレーブピアスイッチにラーニングパケットを送信するイ"
  5248. "ンスタンス間の秒数を指定"
  5249. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5250. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5251. msgstr "到達可能にする必要があるARP IPターゲットの数を指定"
  5252. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5253. #, fuzzy
  5254. msgid ""
  5255. "Specifies the rate in which the link partner will be asked to transmit "
  5256. "LACPDU packets"
  5257. msgstr "リンクパートナーがLACPDUパケットの送信を要求するレートを指定"
  5258. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5259. #, fuzzy
  5260. msgid ""
  5261. "Specifies the reselection policy for the primary slave when failure of the "
  5262. "active slave or recovery of the primary slave occurs"
  5263. msgstr ""
  5264. "アクティブなスレーブの障害またはプライマリスレーブのリカバリが発生した際の、"
  5265. "プライマリスレーブの再選択ポリシーを指定"
  5266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5267. msgid "Specifies the system priority"
  5268. msgstr "システムの優先順位を指定"
  5269. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5270. msgid ""
  5271. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5272. "link failure detection"
  5273. msgstr "リンク障害検出後にスレーブを無効にするまでの待機時間をミリ秒単位で指定"
  5274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5275. msgid ""
  5276. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5277. "link recovery detection"
  5278. msgstr "リンク回復検出後にスレーブを有効にするまでの待機時間をミリ秒単位で指定"
  5279. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:530
  5280. msgid ""
  5281. "Specifies the wired ports to attach to this bridge. In order to attach "
  5282. "wireless networks, choose the associated interface as network in the "
  5283. "wireless settings."
  5284. msgstr ""
  5285. "このブリッジにアタッチする有線ポートを指定します。無線ネットワークをアタッチ"
  5286. "するには、無線設定でネットワークとしてアソシエートされたインターフェースを選"
  5287. "択してください。"
  5288. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5289. msgid ""
  5290. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5291. "traffic should be filtered for link monitoring"
  5292. msgstr ""
  5293. "ARPプローブと応答を検証するか、またはARP以外のトラフィックをフィルタリングし"
  5294. "てリンク監視を行うかを指定"
  5295. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5296. #, fuzzy
  5297. msgid ""
  5298. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5299. "address at enslavement"
  5300. msgstr ""
  5301. "アクティブバックアップモードですべてのスレーブに同じMACアドレスを設定するかど"
  5302. "うかを指定"
  5303. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5304. msgid ""
  5305. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5306. "netif_carrier_ok()"
  5307. msgstr ""
  5308. "miimonがMIIまたはETHTOOL ioctls vs. netif_carrier_ok()を使用するかどうかを指"
  5309. "定"
  5310. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5311. #, fuzzy
  5312. msgid ""
  5313. "Specifies whether to shuffle active flows across slaves based on the load"
  5314. msgstr ""
  5315. "負荷に基づいてスレーブ間でアクティブなフローをシャッフルするかどうかを指定"
  5316. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5317. msgid ""
  5318. "Specifies which slave interfaces should be attached to this bonding interface"
  5319. msgstr ""
  5320. "このボンディングインターフェースにアタッチするスレーブインターフェースを指定"
  5321. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5322. msgid ""
  5323. "Specifies which slave is the primary device. It will always be the active "
  5324. "slave while it is available"
  5325. msgstr ""
  5326. "どのスレーブをプライマリデバイスとするか指定します。スレーブが利用可能である"
  5327. "場合、常にアクティブになります"
  5328. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5329. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5330. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5331. msgid "Specify a TOS (Type of Service)."
  5332. msgstr "TOS(Type of Service)を指定します。"
  5333. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5334. msgid ""
  5335. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5336. "header inherits the value of the inner header) or an hexadecimal value "
  5337. "<code>00..FF</code> (optional)."
  5338. msgstr ""
  5339. "TOS(Type of Service)を指定します。<code>inherit</code>(外部ヘッダーは内部"
  5340. "ヘッダーの値を継承)または16進数<code>00..FF</code>を指定できます(オプショ"
  5341. "ン)。"
  5342. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5343. msgid ""
  5344. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5345. "header inherits the value of the inner header), or an hexadecimal value "
  5346. "<code>00..FF</code> (optional)."
  5347. msgstr ""
  5348. "TOS(Type of Service)を指定します。<code>inherit</code>(外部ヘッダーは内部"
  5349. "ヘッダーの値を継承)または16進数<code>00..FF</code>を指定できます(オプショ"
  5350. "ン)。"
  5351. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5352. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5353. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5354. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5355. msgid ""
  5356. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5357. "default (64) (optional)."
  5358. msgstr ""
  5359. "デフォルト(64) 以外のカプセル化パケットのTTL(Time to Live)を指定します"
  5360. "(オプション)。"
  5361. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5362. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5363. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5364. msgid ""
  5365. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5366. "default (64)."
  5367. msgstr ""
  5368. "デフォルト(64)以外のカプセル化パケットの TTL(Time to Live)を指定します。"
  5369. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5370. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5371. msgid ""
  5372. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5373. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5374. "FF</code> (optional)."
  5375. msgstr ""
  5376. "トラフィッククラスを指定します。<code>inherit</code>(外部ヘッダーは内部ヘッ"
  5377. "ダーの値を継承)または16進数<code>00..FF</code>を指定できます(オプション)。"
  5378. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5379. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5380. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5381. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5382. msgid ""
  5383. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5384. "bytes) (optional)."
  5385. msgstr ""
  5386. "デフォルト(1280 バイト)以外のMTU(最大伝送単位)を指定します(オプショ"
  5387. "ン)。"
  5388. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5389. msgid ""
  5390. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5391. "bytes)."
  5392. msgstr "デフォルト(1280バイト)以外のMTU(最大伝送単位)を指定します。"
  5393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  5394. msgid "Specify the secret encryption key here."
  5395. msgstr "ここで秘密暗号鍵を指定します。"
  5396. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  5397. msgid "Stale neighbour cache timeout"
  5398. msgstr ""
  5399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:657
  5400. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5401. msgid "Start"
  5402. msgstr "開始"
  5403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5404. msgid "Start WPS"
  5405. msgstr "WPS開始"
  5406. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5407. msgid "Start priority"
  5408. msgstr "開始優先順位"
  5409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1802
  5410. msgid "Start refresh"
  5411. msgstr "更新開始"
  5412. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4274
  5413. msgid "Starting configuration apply…"
  5414. msgstr "設定の適用を開始しています…"
  5415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1715
  5416. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5417. msgid "Starting wireless scan..."
  5418. msgstr "無線のスキャンを開始しています..."
  5419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5420. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5421. msgid "Startup"
  5422. msgstr "スタートアップ"
  5423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5424. msgid "Static IPv4 Routes"
  5425. msgstr "IPv4静的ルーティング"
  5426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5427. msgid "Static IPv6 Routes"
  5428. msgstr "IPv6静的ルーティング"
  5429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5431. msgid "Static Lease"
  5432. msgstr "静的リース"
  5433. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5434. msgid "Static Leases"
  5435. msgstr "静的リース"
  5436. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5437. msgid "Static Routes"
  5438. msgstr "静的ルート"
  5439. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5440. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5441. #: modules/luci-compat/luasrc/model/network.lua:967
  5442. msgid "Static address"
  5443. msgstr "静的アドレス"
  5444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5445. msgid ""
  5446. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5447. "to DHCP clients. They are also required for non-dynamic interface "
  5448. "configurations where only hosts with a corresponding lease are served."
  5449. msgstr ""
  5450. "静的リース機能は、DHCPクライアントに対して固定のIPアドレス及びシンボリックホ"
  5451. "スト名をアサインします。また、クライアントは対応するリースを使用するホストが"
  5452. "その1台のみで、かつ静的なインターフェース設定にする必要があります。"
  5453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  5454. msgid "Station inactivity limit"
  5455. msgstr "非アクティブなステーションの制限"
  5456. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  5458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:895
  5459. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5460. msgid "Status"
  5461. msgstr "ステータス"
  5462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  5463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5464. msgid "Stop"
  5465. msgstr "停止"
  5466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5467. msgid "Stop WPS"
  5468. msgstr "WPS停止"
  5469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1713
  5470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1807
  5471. msgid "Stop refresh"
  5472. msgstr "更新停止"
  5473. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5474. msgid "Strict filtering"
  5475. msgstr "厳密なフィルタリング"
  5476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5477. msgid "Strict order"
  5478. msgstr "問い合わせの制限"
  5479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5480. msgid "Strong"
  5481. msgstr "強"
  5482. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2003
  5484. msgid "Submit"
  5485. msgstr "送信"
  5486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5487. msgid "Suppress logging"
  5488. msgstr "ログの抑制"
  5489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5490. msgid "Suppress logging of the routine operation of these protocols"
  5491. msgstr "これらのプロトコルの、ルーチン操作のログを抑制"
  5492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5493. msgid "Swap free"
  5494. msgstr "スワップフリー"
  5495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5496. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5497. msgid "Switch"
  5498. msgstr "スイッチ"
  5499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5500. msgid "Switch %q"
  5501. msgstr "スイッチ %q"
  5502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5503. msgid ""
  5504. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5505. msgstr ""
  5506. "スイッチ %qには不明なトポロジがあります - VLAN設定は正確でないかもしれませ"
  5507. "ん。"
  5508. #: modules/luci-base/htdocs/luci-static/resources/network.js:2997
  5509. #: modules/luci-compat/luasrc/model/network.lua:1426
  5510. msgid "Switch VLAN"
  5511. msgstr "スイッチVLAN"
  5512. #: modules/luci-base/htdocs/luci-static/resources/network.js:2994
  5513. msgid "Switch port"
  5514. msgstr "スイッチ ポート"
  5515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:548
  5516. msgid "Switch protocol"
  5517. msgstr "プロトコルを切り替える"
  5518. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5519. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5520. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5521. msgid "Switch to CIDR list notation"
  5522. msgstr "CIDRリスト表記へ切り替える"
  5523. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2676
  5524. msgid "Symbolic link"
  5525. msgstr "シンボリックリンク"
  5526. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5527. msgid "Sync with NTP-Server"
  5528. msgstr "NTPサーバーと同期"
  5529. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5530. msgid "Sync with browser"
  5531. msgstr "ブラウザと同期"
  5532. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5533. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5534. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5535. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5536. msgid "System"
  5537. msgstr "システム"
  5538. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5539. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5540. msgid "System Log"
  5541. msgstr "システムログ"
  5542. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5543. msgid "System Priority"
  5544. msgstr "システム優先順位"
  5545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5546. msgid "System Properties"
  5547. msgstr "システムプロパティ"
  5548. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5549. msgid "System log buffer size"
  5550. msgstr "システムログバッファサイズ"
  5551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:336
  5552. msgid "TCP:"
  5553. msgstr "TCP:"
  5554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5555. msgid "TFTP Settings"
  5556. msgstr "TFTP設定"
  5557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5558. msgid "TFTP server root"
  5559. msgstr "TFTPサーバールート"
  5560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5562. msgid "TX"
  5563. msgstr "TX"
  5564. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5565. msgid "TX Rate"
  5566. msgstr "送信レート"
  5567. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:654
  5568. msgid "TX queue length"
  5569. msgstr ""
  5570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5573. msgid "Table"
  5574. msgstr "テーブル"
  5575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5576. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5577. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5578. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5579. msgid "Target"
  5580. msgstr "ターゲット"
  5581. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5582. msgid "Target network"
  5583. msgstr "対象ネットワーク"
  5584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5585. msgid "Terminate"
  5586. msgstr "停止"
  5587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  5588. msgid ""
  5589. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5590. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5591. "Minimum is 1280 bytes."
  5592. msgstr ""
  5593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:782
  5594. msgid ""
  5595. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5596. "addresses are available via DHCPv6."
  5597. msgstr ""
  5598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  5599. msgid ""
  5600. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5601. "also acting as Mobile IPv6 home agent on this link."
  5602. msgstr ""
  5603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:784
  5604. msgid ""
  5605. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5606. "such as DNS servers, is available via DHCPv6."
  5607. msgstr ""
  5608. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5609. msgid "The <em>block mount</em> command failed with code %d"
  5610. msgstr "<em>block mount</em>コマンドが失敗しました(コード: %d)"
  5611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  5612. msgid ""
  5613. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5614. "weight specified here"
  5615. msgstr ""
  5616. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5617. #, fuzzy
  5618. msgid ""
  5619. "The HE.net endpoint update configuration changed, you must now use the plain "
  5620. "username instead of the user ID!"
  5621. msgstr ""
  5622. "HE.netのエンドポイント更新構成を変更した場合、ユーザーIDの代わりに通常のユー"
  5623. "ザー名を使用する必要があります!"
  5624. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5625. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5626. msgstr "リモートエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
  5627. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5628. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5629. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5630. msgid ""
  5631. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5632. msgstr "リモートトンネルエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
  5633. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5634. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5635. msgstr "リモートエンドのIPv6アドレスまたは完全修飾ドメイン名です。"
  5636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5637. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5638. msgid ""
  5639. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5640. msgstr "リモートトンネルエンドのIPv6アドレスまたは完全修飾ドメイン名です。"
  5641. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5642. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5643. msgid ""
  5644. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5645. msgstr ""
  5646. "プロバイダーに割り当てられるIPv6プレフィックスです。通常、 <code>::</code>で"
  5647. "終わります"
  5648. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:917
  5649. msgid "The VLAN ID must be unique"
  5650. msgstr "VLAN ID はユニークでなければなりません"
  5651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1963
  5652. msgid ""
  5653. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5654. "code> and <code>_</code>"
  5655. msgstr ""
  5656. "使用可能な文字: <code>A-Z</code>、<code>a-z</code>、<code>0-9</code>、"
  5657. "<code>_</code>"
  5658. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5659. msgid "The configuration file could not be loaded due to the following error:"
  5660. msgstr "設定ファイルは次のエラーにより読み込めませんでした:"
  5661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1957
  5662. msgid ""
  5663. "The correct SSID must be manually specified when joining a hidden wireless "
  5664. "network"
  5665. msgstr ""
  5666. "非表示の無線ネットワークに接続する場合、正しいSSIDを手動で指定する必要があり"
  5667. "ます"
  5668. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4150
  5669. msgid ""
  5670. "The device could not be reached within %d seconds after applying the pending "
  5671. "changes, which caused the configuration to be rolled back for safety "
  5672. "reasons. If you believe that the configuration changes are correct "
  5673. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5674. "can dismiss this warning and edit changes before attempting to apply again, "
  5675. "or revert all pending changes to keep the currently working configuration "
  5676. "state."
  5677. msgstr ""
  5678. "保留していた変更を適用後、デバイスへ%d秒以内に再接続できませんでした。安全上"
  5679. "の理由により設定がロールバックされました。もし変更した設定が正しいと思う場合"
  5680. "は、チェックなしの変更の適用を行ってください。もしくは、再度適用する前にこの"
  5681. "警告を閉じて設定内容の編集を行うか、現在動作している設定の状態を維持するため"
  5682. "に、未適用の変更を取り消すこともできます。"
  5683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5684. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5685. msgid ""
  5686. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5687. "</abbr> <code>/dev/sda1</code>)"
  5688. msgstr ""
  5689. "デバイスファイルまたはパーティション(<abbr title=\"for example\">例</abbr> "
  5690. "<code>/dev/sda1</code>)"
  5691. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:487
  5692. msgid "The device name \"%s\" is already taken"
  5693. msgstr "デバイス名 \"%s\" は既に使用されています"
  5694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:381
  5695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:415
  5696. msgid ""
  5697. "The existing network configuration needs to be changed for LuCI to function "
  5698. "properly."
  5699. msgstr ""
  5700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:760
  5701. msgid ""
  5702. "The existing wireless configuration needs to be changed for LuCI to function "
  5703. "properly."
  5704. msgstr "LuCIが正常に機能するには、既存の無線設定を変更する必要があります。"
  5705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5706. msgid ""
  5707. "The flash image was uploaded. Below is the checksum and file size listed, "
  5708. "compare them with the original file to ensure data integrity. <br /> Click "
  5709. "'Continue' below to start the flash procedure."
  5710. msgstr ""
  5711. "イメージファイルがアップロードされました。以下はそのチェックサムとファイルサ"
  5712. "イズです。オリジナルのファイルと比較し、データの整合性を確認してください。"
  5713. "<br />\"続行\" をクリックすると、フラッシュ処理を開始します。"
  5714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5715. msgid "The following rules are currently active on this system."
  5716. msgstr "このシステムでは、現在以下のルールが有効です。"
  5717. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5718. msgid "The gateway address must not be a local IP address"
  5719. msgstr "ゲートウェイアドレスは非ローカルIPアドレスでなければなりません"
  5720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5721. msgid "The given SSH public key has already been added."
  5722. msgstr "入力されたSSH公開鍵はすでに追加されています。"
  5723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5724. msgid ""
  5725. "The given SSH public key is invalid. Please supply proper public RSA or "
  5726. "ECDSA keys."
  5727. msgstr ""
  5728. "指定されたSSH公開鍵は無効です。正しいRSAまたはECDSA鍵を指定してください。"
  5729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1076
  5730. msgid "The interface name is already used"
  5731. msgstr "インターフェース名はすでに使用されています"
  5732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  5733. msgid "The interface name is too long"
  5734. msgstr "インターフェース名が長すぎます"
  5735. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5736. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5737. msgid ""
  5738. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5739. "addresses."
  5740. msgstr ""
  5741. "IPv4プレフィックスの長さ(ビット)です。残りはIPv6アドレスで使用されます。"
  5742. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5743. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5744. msgid "The length of the IPv6 prefix in bits"
  5745. msgstr "IPv6プレフィックスの長さ(ビット)"
  5746. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5747. msgid "The local IPv4 address"
  5748. msgstr "ローカルIPv4アドレス"
  5749. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5750. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5751. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5752. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5753. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5754. msgstr "トンネルが作成されるローカルIPv4アドレス(オプション)。"
  5755. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5756. msgid "The local IPv4 netmask"
  5757. msgstr "ローカルIPv4ネットマスク"
  5758. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5759. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5760. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5761. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5762. msgstr "トンネルが作成されるローカルIPv6アドレス(オプション)。"
  5763. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:611
  5764. msgid ""
  5765. "The max response time in centiseconds inserted into group-specific queries "
  5766. "sent in response to leave group messages. It is also the amount of time "
  5767. "between group-specific query messages. This value may be tuned to modify the "
  5768. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5769. "detect the loss of the last member of a group"
  5770. msgstr ""
  5771. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:597
  5772. msgid ""
  5773. "The max response time in centiseconds inserted into the periodic general "
  5774. "queries. By varying the value, an administrator may tune the burstiness of "
  5775. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5776. "host responses are spread out over a larger interval"
  5777. msgstr ""
  5778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  5779. msgid ""
  5780. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5781. "abbr> messages. Maximum is 255 hops."
  5782. msgstr ""
  5783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1969
  5784. msgid "The network name is already used"
  5785. msgstr "ネットワーク名はすでに使用されています"
  5786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5787. msgid ""
  5788. "The network ports on this device can be combined to several <abbr title="
  5789. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5790. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5791. "Network\">VLAN</abbr>s are often used to separate different network "
  5792. "segments. Often there is by default one Uplink port for a connection to the "
  5793. "next greater network like the internet and other ports for a local network."
  5794. msgstr ""
  5795. "ネットワークポートは、コンピューターが他と直接通信することができる複数の"
  5796. "<abbr title=\"Virtual Local Area Network\">VLAN</abbr>にまとめることができま"
  5797. "す。<abbr title=\"Virtual Local Area Network\">VLAN</abbr>は、異なるネット"
  5798. "ワークセグメントの分離によく使われます。通常、インターネットなどの上位のネッ"
  5799. "トワークへの接続に使用するアップリンクポートと、ローカルネットワーク用のその"
  5800. "他のポートが存在します。"
  5801. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  5802. msgid "The query response interval must be lower than the query interval value"
  5803. msgstr ""
  5804. "クエリー レスポンス間隔は、クエリー間隔の値よりも小さくなければなりません"
  5805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5806. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5807. msgid "The reboot command failed with code %d"
  5808. msgstr "rebootコマンドが失敗しました(コード: %d)"
  5809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5810. msgid "The restore command failed with code %d"
  5811. msgstr "restoreコマンドが失敗しました(コード: %d)"
  5812. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:587
  5813. msgid ""
  5814. "The robustness value allows tuning for the expected packet loss on the "
  5815. "network. If a network is expected to be lossy, the robustness value may be "
  5816. "increased. IGMP is robust to (Robustness-1) packet losses"
  5817. msgstr ""
  5818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  5819. msgid "The selected %s mode is incompatible with %s encryption"
  5820. msgstr "選択された%sモードは、%s暗号化と互換性がありません"
  5821. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5822. msgid "The submitted security token is invalid or already expired!"
  5823. msgstr "送信されたセキュリティトークンは無効または期限切れです!"
  5824. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5825. msgid ""
  5826. "The system is erasing the configuration partition now and will reboot itself "
  5827. "when finished."
  5828. msgstr ""
  5829. "システムは設定パーティションを消去中です。完了後、自動的に再起動します。"
  5830. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5831. msgid ""
  5832. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5833. "few minutes before you try to reconnect. It might be necessary to renew the "
  5834. "address of your computer to reach the device again, depending on your "
  5835. "settings."
  5836. msgstr ""
  5837. "システム更新中です。<br />絶対に電源を切らないでください!<br />再接続する前"
  5838. "に数分お待ち下さい。ルーターの設定が変わり、再接続時にコンピュータのIPアドレ"
  5839. "スを変更しなければならない場合があります。"
  5840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5841. msgid ""
  5842. "The system is rebooting now. If the restored configuration changed the "
  5843. "current LAN IP address, you might need to reconnect manually."
  5844. msgstr ""
  5845. "システムは現在再起動中です。復元された設定によって現在のLAN IPアドレスが変更"
  5846. "された場合、手動での再接続が必要になるかもしれません。"
  5847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5848. msgid "The system password has been successfully changed."
  5849. msgstr "システムパスワードの変更に成功しました。"
  5850. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5851. msgid "The sysupgrade command failed with code %d"
  5852. msgstr "sysupgradeコマンドが失敗しました(コード: %d)"
  5853. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5854. msgid ""
  5855. "The uploaded backup archive appears to be valid and contains the files "
  5856. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5857. "\"Cancel\" to abort the operation."
  5858. msgstr ""
  5859. "アップロードされたバックアップアーカイブは有効であり、以下のファイルを含んで"
  5860. "います。\"続行\"をクリックするとバックアップを復元し、再起動します。\"キャン"
  5861. "セル\"をクリックすると復元処理を中止します。"
  5862. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5863. msgid "The uploaded backup archive is not readable"
  5864. msgstr "アップロードされたバックアップアーカイブは読み込めません"
  5865. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5866. msgid "The uploaded firmware does not allow keeping current configuration."
  5867. msgstr "アップロードされたファームウェアは、現在の設定を保持しません。"
  5868. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5869. msgid ""
  5870. "The uploaded image file does not contain a supported format. Make sure that "
  5871. "you choose the generic image format for your platform."
  5872. msgstr ""
  5873. "アップロードされたイメージファイルは、サポートされているフォーマットではあり"
  5874. "ません。このプラットフォームの通常のイメージフォーマットかどうか、確認してく"
  5875. "ださい。"
  5876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  5877. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  5878. msgid "The value is overridden by configuration. Original: %s"
  5879. msgstr "設定値によりオーバーライドされます。元の値: %s"
  5880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5882. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5883. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5884. msgid "There are no active leases"
  5885. msgstr "アクティブなリースはありません"
  5886. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4289
  5887. msgid "There are no changes to apply"
  5888. msgstr "適用する変更はありません"
  5889. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5890. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5891. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5892. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5893. msgid ""
  5894. "There is no password set on this router. Please configure a root password to "
  5895. "protect the web interface."
  5896. msgstr ""
  5897. "このルーターにパスワードが設定されていません。Webインターフェースを保護するた"
  5898. "めに、管理者パスワードを設定してください。"
  5899. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5900. msgid "This IPv4 address of the relay"
  5901. msgstr "リレーのIPv4アドレス"
  5902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1590
  5903. msgid "This authentication type is not applicable to the selected EAP method."
  5904. msgstr "この認証タイプは、選択されたEAP方式に適用できません。"
  5905. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5906. msgid "This does not look like a valid PEM file"
  5907. msgstr "これは有効なPEMファイルではないようです"
  5908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5909. #, fuzzy
  5910. msgid ""
  5911. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5912. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5913. "Name System\">DNS</abbr> servers."
  5914. msgstr ""
  5915. "このファイルには、特定ドメインまたは全ドメインに対する上位<abbr title="
  5916. "\"Domain Name System\">DNS</abbr>サーバーを指定するための、'server=/"
  5917. "domain/1.2.3.4'や'server=1.2.3.4'といった行が含まれることがあります。"
  5918. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5919. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5920. msgid ""
  5921. "This is a list of shell glob patterns for matching files and directories to "
  5922. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5923. "configurations are automatically preserved."
  5924. msgstr ""
  5925. "これはsysupgrade中にバックアップ対象に含めるファイルとディレクトリのグロブパ"
  5926. "ターンリストです。/etc/config/ 内及びその他特定の設定の変更されたファイルは自"
  5927. "動的に保持されます。"
  5928. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5929. msgid ""
  5930. "This is either the \"Update Key\" configured for the tunnel or the account "
  5931. "password if no update key has been configured"
  5932. msgstr ""
  5933. "これはトンネルに対して設定された\"更新キー\"か、更新キーが設定されていない場"
  5934. "合はアカウントパスワードのどちらかです"
  5935. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5936. msgid ""
  5937. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5938. "front of 'exit 0') to execute them at the end of the boot process."
  5939. msgstr ""
  5940. "これは/etc/rc.localの内容です。ブートプロセスの最後に実行したいコマンド"
  5941. "を'exit 0'行より上に入力してください。"
  5942. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5943. msgid ""
  5944. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5945. "ends with <code>...:2/64</code>"
  5946. msgstr ""
  5947. "これはトンネルブローカーによって割り当てられた、ローカルエンドポイントアドレ"
  5948. "スです。通常、最後が<code>...:2/64</code>で終わります"
  5949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5950. msgid ""
  5951. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5952. "abbr> in the local network"
  5953. msgstr ""
  5954. "これはローカルネットワーク内で1つだけの<abbr title=\"Dynamic Host "
  5955. "Configuration Protocol\">DHCP</abbr>です"
  5956. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5957. msgid "This is the plain username for logging into the account"
  5958. msgstr "これはアカウントにログインするためのプレーンなユーザー名です"
  5959. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5960. msgid ""
  5961. "This is the prefix routed to you by the tunnel broker for use by clients"
  5962. msgstr ""
  5963. "これはクライアントが使用するためにトンネルブローカーによってルーティングされ"
  5964. "るプレフィックスです"
  5965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5966. msgid "This is the system crontab in which scheduled tasks can be defined."
  5967. msgstr ""
  5968. "システムcrontabを使用することで、定期的に特定のタスクの実行が可能です。"
  5969. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5970. #, fuzzy
  5971. msgid ""
  5972. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5973. msgstr ""
  5974. "これは通常、トンネルブローカーによって運営される最も近いPoPのアドレスです"
  5975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5976. msgid ""
  5977. "This list gives an overview over currently running system processes and "
  5978. "their status."
  5979. msgstr "このリストは現在実行中のシステムプロセスとステータスを表示しています。"
  5980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1544
  5981. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  5982. msgid ""
  5983. "This option cannot be used because the ca-bundle package is not installed."
  5984. msgstr ""
  5985. "ca-bundleパッケージがインストールされていないため、このオプションは使用できま"
  5986. "せん。"
  5987. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5988. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5989. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5990. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5991. msgid "This section contains no values yet"
  5992. msgstr "このセクションはまだ設定されていません"
  5993. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5994. msgid "Time Synchronization"
  5995. msgstr "時刻同期"
  5996. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:694
  5997. msgid "Time in milliseconds"
  5998. msgstr "時間(ミリ秒)"
  5999. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:563
  6000. msgid "Time in seconds to spend in listening and learning states"
  6001. msgstr "リスニングとラーニングの状態で経過させる時間(秒)"
  6002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  6003. msgid "Time interval for rekeying GTK"
  6004. msgstr "Group Temporal Key(GTK)再生成間隔"
  6005. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  6006. msgid "Timed-out"
  6007. msgstr "タイムアウト"
  6008. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  6009. msgid "Timeout in seconds"
  6010. msgstr "タイムアウト(秒)"
  6011. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:549
  6012. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  6013. msgstr "転送データベース内の学習済み MAC アドレスのタイムアウト(秒)"
  6014. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:568
  6015. msgid "Timeout in seconds until topology updates on link loss"
  6016. msgstr "リンク ロス時にトポロジーを更新するまでのタイムアウト(秒)"
  6017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  6018. msgid "Timezone"
  6019. msgstr "タイムゾーン"
  6020. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  6021. msgid "To login…"
  6022. msgstr "ログイン…"
  6023. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  6024. msgid ""
  6025. "To restore configuration files, you can upload a previously generated backup "
  6026. "archive here. To reset the firmware to its initial state, click \"Perform "
  6027. "reset\" (only possible with squashfs images)."
  6028. msgstr ""
  6029. "設定を復元するには、以前に生成したバックアップアーカイブをアップロードしてく"
  6030. "ださい。ファームウェアを初期状態にリセットする場合、\"初期化する\"をクリック"
  6031. "してください(squashfsイメージでのみ初期化可能)。"
  6032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  6033. msgid "Tone"
  6034. msgstr "トーン"
  6035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  6036. msgid "Total Available"
  6037. msgstr "利用可能な合計"
  6038. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  6039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  6040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  6041. msgid "Traceroute"
  6042. msgstr "トレースルート"
  6043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  6044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  6045. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  6046. msgid "Traffic"
  6047. msgstr "トラフィック"
  6048. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6049. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6050. msgid "Traffic Class"
  6051. msgstr "トラフィッククラス"
  6052. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6053. msgid "Transfer"
  6054. msgstr "転送"
  6055. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  6056. msgid "Transmit"
  6057. msgstr "送信"
  6058. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  6059. msgid "Transmit Hash Policy"
  6060. msgstr "送信ハッシュポリシー"
  6061. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  6062. msgid "Trigger"
  6063. msgstr "トリガー"
  6064. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  6065. msgid "Trigger Mode"
  6066. msgstr "トリガーモード"
  6067. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  6068. msgid "Tunnel ID"
  6069. msgstr "トンネルID"
  6070. #: modules/luci-base/htdocs/luci-static/resources/network.js:3000
  6071. #: modules/luci-compat/luasrc/model/network.lua:1431
  6072. msgid "Tunnel Interface"
  6073. msgstr "トンネルインターフェース"
  6074. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  6075. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  6076. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  6077. msgid "Tunnel Link"
  6078. msgstr "トンネルリンク"
  6079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1367
  6080. msgid "Tunnel device"
  6081. msgstr "トンネル デバイス"
  6082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6083. msgid "Tx-Power"
  6084. msgstr "送信出力"
  6085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  6086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1398
  6087. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  6088. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  6089. msgid "Type"
  6090. msgstr "タイプ"
  6091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:326
  6092. msgid "UDP:"
  6093. msgstr "UDP:"
  6094. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  6095. msgid "UMTS only"
  6096. msgstr "UMTSのみ"
  6097. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  6098. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  6099. msgid "UMTS/GPRS/EV-DO"
  6100. msgstr "UMTS/GPRS/EV-DO"
  6101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  6102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  6103. msgid "UUID"
  6104. msgstr "UUID"
  6105. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  6106. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  6107. #: modules/luci-compat/luasrc/model/network.lua:34
  6108. #: modules/luci-compat/luasrc/model/network.lua:35
  6109. msgid "Unable to determine device name"
  6110. msgstr "デバイス名を確定できません"
  6111. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  6112. #: modules/luci-compat/luasrc/model/network.lua:36
  6113. msgid "Unable to determine external IP address"
  6114. msgstr "外部IPアドレスを確定できません"
  6115. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  6116. #: modules/luci-compat/luasrc/model/network.lua:37
  6117. msgid "Unable to determine upstream interface"
  6118. msgstr "アップストリーム インターフェースを確定できません"
  6119. #: modules/luci-base/luasrc/view/error404.htm:11
  6120. msgid "Unable to dispatch"
  6121. msgstr "ディスパッチできません"
  6122. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  6123. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  6124. msgid "Unable to load log data:"
  6125. msgstr "ログデータを読み込めません:"
  6126. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  6127. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  6128. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  6129. msgid "Unable to obtain client ID"
  6130. msgstr "クライアントIDを取得できません"
  6131. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  6132. msgid "Unable to obtain mount information"
  6133. msgstr "マウント情報を取得できません"
  6134. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  6135. msgid "Unable to reset ip6tables counters: %s"
  6136. msgstr "ip6tablesカウンターをリセットできません: %s"
  6137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  6138. msgid "Unable to reset iptables counters: %s"
  6139. msgstr "iptablesカウンターをリセットできません: %s"
  6140. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  6141. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  6142. msgid "Unable to resolve AFTR host name"
  6143. msgstr "AFTRホスト名を解決できません"
  6144. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  6145. #: modules/luci-compat/luasrc/model/network.lua:38
  6146. msgid "Unable to resolve peer host name"
  6147. msgstr "ピアのホスト名を解決できません"
  6148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  6149. msgid "Unable to restart firewall: %s"
  6150. msgstr "ファイアウォールを再起動できません: %s"
  6151. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  6152. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  6153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  6154. msgid "Unable to save contents: %s"
  6155. msgstr "内容を保存できません: %s"
  6156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  6157. msgid "Unavailable Seconds (UAS)"
  6158. msgstr "使用不可秒数(UAS)"
  6159. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  6160. msgid "Unexpected reply data format"
  6161. msgstr "予期しない応答データ形式"
  6162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  6163. msgid ""
  6164. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  6165. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  6166. "analogous to IPv4 private network addressing. This prefix is randomly "
  6167. "generated at first install."
  6168. msgstr ""
  6169. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  6170. #: modules/luci-compat/luasrc/model/network.lua:971
  6171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  6172. msgid "Unknown"
  6173. msgstr "不明"
  6174. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  6175. msgid "Unknown and unsupported connection method."
  6176. msgstr "不明およびサポートされていない接続方法です。"
  6177. #: modules/luci-base/htdocs/luci-static/resources/network.js:2409
  6178. #: modules/luci-compat/luasrc/model/network.lua:1138
  6179. msgid "Unknown error (%s)"
  6180. msgstr "不明なエラー(%s)"
  6181. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  6182. msgid "Unknown error code"
  6183. msgstr "不明なエラーコード"
  6184. #: modules/luci-base/htdocs/luci-static/resources/network.js:2097
  6185. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  6186. #: modules/luci-compat/luasrc/model/network.lua:965
  6187. msgid "Unmanaged"
  6188. msgstr "アンマネージド"
  6189. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  6190. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  6191. msgid "Unmount"
  6192. msgstr "アンマウント"
  6193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  6194. msgid "Unnamed key"
  6195. msgstr "名前がない鍵"
  6196. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3994
  6197. msgid "Unsaved Changes"
  6198. msgstr "保存されていない変更"
  6199. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  6200. msgid "Unspecified error"
  6201. msgstr "未指定エラー"
  6202. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  6203. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  6204. msgid "Unsupported MAP type"
  6205. msgstr "サポートされていないMAPタイプ"
  6206. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  6207. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  6208. msgid "Unsupported modem"
  6209. msgstr "サポートされていないモデム"
  6210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  6211. msgid "Unsupported protocol type."
  6212. msgstr "サポートされていないプロトコルタイプです。"
  6213. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  6214. msgid "Up"
  6215. msgstr "上へ"
  6216. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  6217. msgid "Up Delay"
  6218. msgstr "上り遅延"
  6219. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3881
  6220. msgid "Upload"
  6221. msgstr "アップロード"
  6222. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  6223. msgid ""
  6224. "Upload a sysupgrade-compatible image here to replace the running firmware."
  6225. msgstr ""
  6226. "実行中のファームウェアを置き換えるには、ここにsysupgrade互換イメージをアップ"
  6227. "ロードしてください。"
  6228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  6229. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  6230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  6231. msgid "Upload archive..."
  6232. msgstr "アーカイブをアップロード..."
  6233. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2835
  6234. msgid "Upload file"
  6235. msgstr "ファイルをアップロード"
  6236. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2810
  6237. msgid "Upload file…"
  6238. msgstr "ファイルをアップロード…"
  6239. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2757
  6240. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3869
  6241. msgid "Upload request failed: %s"
  6242. msgstr "アップロードのリクエストに失敗: %s"
  6243. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3788
  6244. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3842
  6245. msgid "Uploading file…"
  6246. msgstr "ファイルをアップロード中…"
  6247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:761
  6248. msgid ""
  6249. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  6250. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  6251. "restarted to apply the updated configuration."
  6252. msgstr ""
  6253. "\"続行\"をクリックすると匿名の\"wifi-iface\"セクションに<em>wifinet#</em>形式"
  6254. "の名前が割り当てられ、設定を適用するためにネットワークは再起動されます。"
  6255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:382
  6256. msgid ""
  6257. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  6258. "network will be restarted to apply the updated configuration."
  6259. msgstr ""
  6260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  6261. msgid ""
  6262. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  6263. "will be restarted to apply the updated configuration."
  6264. msgstr ""
  6265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  6267. msgid "Uptime"
  6268. msgstr "稼働時間"
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  6270. msgid "Use <code>/etc/ethers</code>"
  6271. msgstr "<code>/etc/ethers</code>を使用"
  6272. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  6273. msgid "Use DHCP advertised servers"
  6274. msgstr "DHCPから通知されたサーバを使用"
  6275. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  6276. msgid "Use DHCP gateway"
  6277. msgstr "DHCPゲートウェイを使用"
  6278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  6279. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  6280. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  6281. msgid "Use DNS servers advertised by peer"
  6282. msgstr "ピアから通知されたDNSサーバーを使用"
  6283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:589
  6284. msgid "Use ISO/IEC 3166 alpha2 country codes."
  6285. msgstr "ISO/IEC 3166 alpha2の国コードを使用します。"
  6286. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  6287. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  6288. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  6289. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  6290. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  6291. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  6292. msgid "Use MTU on tunnel interface"
  6293. msgstr "トンネルインターフェースでMTUを使用"
  6294. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  6295. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  6296. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  6297. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  6298. msgid "Use TTL on tunnel interface"
  6299. msgstr "トンネルインターフェースでTTLを使用"
  6300. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6301. msgid "Use XOR of hardware MAC addresses (layer2)"
  6302. msgstr "ハードウェアMACアドレスのXORを使用(layer2)"
  6303. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  6304. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  6305. msgstr "ハードウェアMACアドレスとIPアドレスのXORを使用(layer2+3)"
  6306. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  6307. msgid ""
  6308. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  6309. "(encap2+3)"
  6310. msgstr ""
  6311. "ハードウェアMACアドレスとIPアドレスのXORを使用し、skb_flow_dissectに依存"
  6312. "(encap2+3)"
  6313. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  6314. msgid "Use as external overlay (/overlay)"
  6315. msgstr "外部オーバーレイとして使用(/overlay)"
  6316. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6317. msgid "Use as root filesystem (/)"
  6318. msgstr "ルートファイルシステムとして使用(/)"
  6319. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6320. msgid "Use broadcast flag"
  6321. msgstr "ブロードキャストフラグを使用"
  6322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1199
  6323. msgid "Use builtin IPv6-management"
  6324. msgstr "ビルトインIPv6管理を使用"
  6325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:915
  6326. msgid "Use custom DNS servers"
  6327. msgstr "カスタムDNSサーバーを使用"
  6328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:907
  6329. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6330. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6331. msgid "Use default gateway"
  6332. msgstr "デフォルトゲートウェイを使用"
  6333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  6334. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6335. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6336. msgid "Use gateway metric"
  6337. msgstr "ゲートウェイメトリックを使用"
  6338. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6339. msgid "Use legacy MAP"
  6340. msgstr "従来のMAPを使用"
  6341. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6342. msgid ""
  6343. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6344. "instead of RFC7597"
  6345. msgstr ""
  6346. "RFC7597の代わりに従来のMAPインターフェース識別子フォーマット(draft-ietf-"
  6347. "softwire-map-00)を使用"
  6348. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6349. msgid "Use routing table"
  6350. msgstr "ルーティングテーブルを使用"
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6352. msgid "Use system certificates"
  6353. msgstr "システム証明書を使用"
  6354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6355. msgid "Use system certificates for inner-tunnel"
  6356. msgstr "内部トンネルにシステム証明書を使用"
  6357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6358. msgid ""
  6359. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6360. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6361. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6362. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6363. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6364. msgstr ""
  6365. "新しいリースエントリーを追加するには、<em>追加</em>ボタンをクリックしてくださ"
  6366. "い。<em>MACアドレス</em>を元にホストを識別し、<em>IPv4アドレス</em>を静的アド"
  6367. "レスとして設定します。また、<em>ホスト名</em>を要求したホストに対して一時的に"
  6368. "割り当てます。<em>リース期間</em>はオプションで、ホストに通常とは異なるリース"
  6369. "期間を設定できます(例: 12h、3d、infinite)。"
  6370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6371. msgid "Use upper layer protocol information (layer3+4)"
  6372. msgstr "上位層のプロトコル情報を使用(layer3+4)"
  6373. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6374. msgid ""
  6375. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6376. msgstr "skb_flow_dissectに依存する上位層プロトコル情報を使用(encap3+4)"
  6377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6378. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6379. msgid "Used"
  6380. msgstr "使用中"
  6381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1433
  6382. msgid "Used Key Slot"
  6383. msgstr "使用するキースロット"
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1476
  6385. msgid ""
  6386. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6387. "needed with normal WPA(2)-PSK."
  6388. msgstr ""
  6389. "RADIUS NAS IDと802.11r R0KH-IDの2つの異なる目的のために使用中です。通常の"
  6390. "WPA(2)-PSKは必要ありません。"
  6391. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6392. msgid "User Group"
  6393. msgstr "ユーザーグループ"
  6394. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6395. msgid "User certificate (PEM encoded)"
  6396. msgstr "ユーザー証明書(PEMエンコード)"
  6397. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6398. msgid "User key (PEM encoded)"
  6399. msgstr "ユーザー鍵(PEMエンコード)"
  6400. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6401. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6402. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6403. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6404. msgid "Username"
  6405. msgstr "ユーザー名"
  6406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  6407. msgid "VC-Mux"
  6408. msgstr "VC多重化"
  6409. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1474
  6410. msgid "VDSL"
  6411. msgstr "VDSL"
  6412. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:474
  6413. msgctxt "MACVLAN mode"
  6414. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6415. msgstr ""
  6416. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:404
  6417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  6418. msgid "VLAN (802.1ad)"
  6419. msgstr ""
  6420. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:403
  6421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1358
  6422. msgid "VLAN (802.1q)"
  6423. msgstr ""
  6424. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:453
  6425. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:898
  6426. msgid "VLAN ID"
  6427. msgstr ""
  6428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6429. msgid "VLANs on %q"
  6430. msgstr "%q上のVLAN"
  6431. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6432. msgid "VPN"
  6433. msgstr "VPN"
  6434. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6435. msgid "VPN Local address"
  6436. msgstr "VPNローカルアドレス"
  6437. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6438. msgid "VPN Local port"
  6439. msgstr "VPNローカルポート"
  6440. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6441. msgid "VPN Protocol"
  6442. msgstr "VPNプロトコル"
  6443. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6444. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6445. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6446. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6447. msgid "VPN Server"
  6448. msgstr "VPNサーバー"
  6449. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6450. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6451. msgid "VPN Server port"
  6452. msgstr "VPNサーバーポート"
  6453. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6454. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6455. msgid "VPN Server's certificate SHA1 hash"
  6456. msgstr "VPNサーバー証明書 SHA1ハッシュ"
  6457. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6458. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6459. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6460. msgstr "VPNC(CISCO 3000(またはその他の)VPN)"
  6461. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6462. msgid "VXLAN (RFC7348)"
  6463. msgstr "VXLAN(RFC7348)"
  6464. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6465. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6466. msgid "VXLAN network identifier"
  6467. msgstr "VXLANネットワーク識別子"
  6468. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6469. msgid "VXLANv6 (RFC7348)"
  6470. msgstr "VXLANv6(RFC7348)"
  6471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1595
  6473. msgid ""
  6474. "Validate server certificate using built-in system CA bundle,<br />requires "
  6475. "the \"ca-bundle\" package"
  6476. msgstr ""
  6477. "サーバー証明書をビルトインのシステムCAバンドルを用いて検証します<br />\"ca-"
  6478. "bundle\" パッケージが必要"
  6479. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6480. msgid "Validation for all slaves"
  6481. msgstr "すべてのスレーブを検証"
  6482. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6483. msgid "Validation only for active slave"
  6484. msgstr "アクティブなスレーブのみを検証"
  6485. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6486. msgid "Validation only for backup slaves"
  6487. msgstr "バックアップスレーブのみを検証"
  6488. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6489. msgid "Value must not be empty"
  6490. msgstr "値を入力してください"
  6491. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6492. msgid "Vendor"
  6493. msgstr "ベンダー"
  6494. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6495. msgid "Vendor Class to send when requesting DHCP"
  6496. msgstr "DHCPリクエスト時に送信するベンダークラス"
  6497. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6498. msgid "Verifying the uploaded image file."
  6499. msgstr "アップロードされたイメージファイルを検証中です。"
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  6501. msgid "Very High"
  6502. msgstr "非常に高い"
  6503. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:406
  6504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1373
  6505. msgid "Virtual Ethernet"
  6506. msgstr ""
  6507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6508. msgid "Virtual dynamic interface"
  6509. msgstr "仮想ダイナミックインターフェース"
  6510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1071
  6511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  6512. msgid "WDS"
  6513. msgstr "WDS"
  6514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1256
  6515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1345
  6516. msgid "WEP Open System"
  6517. msgstr "WEPオープンシステム"
  6518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1257
  6519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1346
  6520. msgid "WEP Shared Key"
  6521. msgstr "WEP共有キー"
  6522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6523. msgid "WEP passphrase"
  6524. msgstr "WEP暗号フレーズ"
  6525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6526. msgid "WMM Mode"
  6527. msgstr "WMMモード"
  6528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1978
  6529. msgid "WPA passphrase"
  6530. msgstr "WPA暗号フレーズ"
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1247
  6532. msgid ""
  6533. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6534. "and ad-hoc mode) to be installed."
  6535. msgstr ""
  6536. "WPA暗号化を使用するには、wpa_supplicant(クライアントモードを使用する場合)ま"
  6537. "たはhostapd(アクセスポイントとアドホックモードを使用する場合)がインストール"
  6538. "されている必要があります。"
  6539. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6540. msgid "WPS status"
  6541. msgstr "WPSステータス"
  6542. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6543. msgid "Waiting for device..."
  6544. msgstr "起動が終了するのを待っています..."
  6545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6546. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6547. msgid "Warning"
  6548. msgstr "警告"
  6549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6550. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6551. msgstr "警告: 再起動で失われる、保留中の設定があります!"
  6552. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6553. msgid "Weak"
  6554. msgstr "弱"
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  6556. msgid ""
  6557. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6558. "preference value are considered first when allocating subnets."
  6559. msgstr ""
  6560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1499
  6561. msgid ""
  6562. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6563. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6564. "key options."
  6565. msgstr ""
  6566. "PSKを使用する場合、PMKが自動的に生成されることがあります。これが有効な場合、"
  6567. "以下のR0/R1キーオプションは適用されません。R0とR1キーのオプションを使用するに"
  6568. "は、これを無効にしてください。"
  6569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1109
  6570. msgid ""
  6571. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6572. "802.11a/802.11g rates."
  6573. msgstr ""
  6574. "Wi-Fiマルチメディア(WMM)モードのQoSが無効になっている場合、クライアントは"
  6575. "802.11a /802.11gレートに制限される場合があります。"
  6576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6577. msgid ""
  6578. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6579. "may be significantly reduced."
  6580. msgstr ""
  6581. "ESSID が非表示の場合、クライアントがローミングに失敗し、通信時間の効率が大幅"
  6582. "に低下する可能性があります。"
  6583. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:491
  6585. msgid "Width"
  6586. msgstr "帯域幅"
  6587. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6588. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6589. msgid "WireGuard VPN"
  6590. msgstr "WireGuard VPN"
  6591. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6593. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6594. msgid "Wireless"
  6595. msgstr "無線"
  6596. #: modules/luci-base/htdocs/luci-static/resources/network.js:2987
  6597. #: modules/luci-compat/luasrc/model/network.lua:1419
  6598. msgid "Wireless Adapter"
  6599. msgstr "無線アダプタ"
  6600. #: modules/luci-base/htdocs/luci-static/resources/network.js:2966
  6601. #: modules/luci-base/htdocs/luci-static/resources/network.js:4232
  6602. #: modules/luci-compat/luasrc/model/network.lua:1405
  6603. #: modules/luci-compat/luasrc/model/network.lua:1868
  6604. msgid "Wireless Network"
  6605. msgstr "無線ネットワーク"
  6606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:777
  6607. msgid "Wireless Overview"
  6608. msgstr "無線デバイス一覧"
  6609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  6610. msgid "Wireless Security"
  6611. msgstr "無線セキュリティ"
  6612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:759
  6613. msgid "Wireless configuration migration"
  6614. msgstr "無線設定を移行"
  6615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6617. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6618. msgid "Wireless is disabled"
  6619. msgstr "無線機能は無効"
  6620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6622. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6623. msgid "Wireless is not associated"
  6624. msgstr "無線機器はまだ接続されていません"
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6626. msgid "Wireless network is disabled"
  6627. msgstr "無線ネットワークは無効"
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6629. msgid "Wireless network is enabled"
  6630. msgstr "無線ネットワークは有効"
  6631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6632. msgid "Write received DNS requests to syslog"
  6633. msgstr "受信したDNSリクエストをsyslogへ記録"
  6634. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6635. msgid "Write system log to file"
  6636. msgstr "システムログをファイルに書き込む"
  6637. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6638. msgid "XOR policy (balance-xor, 2)"
  6639. msgstr "XORポリシー(balance-xor、2)"
  6640. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6641. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6642. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6643. msgid "Yes"
  6644. msgstr "はい"
  6645. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6646. msgid "Yes (none, 0)"
  6647. msgstr "はい(none、0)"
  6648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6649. msgid ""
  6650. "You appear to be currently connected to the device via the \"%h\" interface. "
  6651. "Do you really want to shut down the interface?"
  6652. msgstr ""
  6653. "現在\"%h\"インターフェースを通してデバイスにログインしています。本当にイン"
  6654. "ターフェースをシャットダウンしますか?"
  6655. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6656. msgid ""
  6657. "You can enable or disable installed init scripts here. Changes will applied "
  6658. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6659. "scripts like \"network\", your device might become inaccessible!</strong>"
  6660. msgstr ""
  6661. "ここで、インストール済みのinitスクリプトの有効または無効を切り替えられます。"
  6662. "変更は再起動後に適用されます。<br /><strong>警告: \"network\"などの重要なスク"
  6663. "リプトを無効にするとデバイスにアクセスできなくなることがあります!</strong>"
  6664. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6665. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6666. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6667. msgid ""
  6668. "You must enable JavaScript in your browser or LuCI will not work properly."
  6669. msgstr "JavaScriptが有効でない場合、LuCIは正しく動作しません。"
  6670. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6671. msgid ""
  6672. "You must select a primary interface which is included in selected slave "
  6673. "interfaces!"
  6674. msgstr ""
  6675. "選択されたスレーブインターフェースに含まれるプライマリインターフェースを選択"
  6676. "してください!"
  6677. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6678. msgid ""
  6679. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6680. msgstr ""
  6681. "ARPモニタリングが選択されている場合、少なくとも1つのARP IPターゲットを選択す"
  6682. "る必要があります!"
  6683. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6684. msgid "ZRam Compression Algorithm"
  6685. msgstr "ZRam圧縮アルゴリズム"
  6686. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6687. msgid "ZRam Settings"
  6688. msgstr "ZRam設定"
  6689. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6690. msgid "ZRam Size"
  6691. msgstr "ZRamサイズ"
  6692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6693. msgid "any"
  6694. msgstr "すべて"
  6695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  6696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  6697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  6698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1196
  6699. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6700. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6701. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6702. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6703. msgid "auto"
  6704. msgstr "自動"
  6705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  6706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6707. msgid "automatic"
  6708. msgstr "自動"
  6709. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6710. msgid "baseT"
  6711. msgstr "baseT"
  6712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  6713. msgid "bridged"
  6714. msgstr "ブリッジ"
  6715. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6716. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6717. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6718. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6719. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6720. msgid "create"
  6721. msgstr "作成"
  6722. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6723. msgid "create:"
  6724. msgstr "作成:"
  6725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6727. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6739. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6740. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6743. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:261
  6744. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:264
  6745. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:267
  6746. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:271
  6747. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:274
  6748. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:277
  6749. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:303
  6750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:304
  6751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  6753. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:310
  6754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6755. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6756. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:314
  6757. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6758. msgid "dBm"
  6759. msgstr "dBm"
  6760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1053
  6761. msgid "disable"
  6762. msgstr "無効"
  6763. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  6764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:753
  6765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:857
  6766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:887
  6767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:947
  6768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6769. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6770. msgid "disabled"
  6771. msgstr "無効"
  6772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:543
  6773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:577
  6774. msgid "driver default"
  6775. msgstr "ドライバーデフォルト"
  6776. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6777. msgid "e.g: --proxy 10.10.10.10"
  6778. msgstr "例: --proxy 10.10.10.10"
  6779. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6780. msgid "e.g: dump"
  6781. msgstr "例: dump"
  6782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6784. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6785. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6786. msgid "expired"
  6787. msgstr "期限切れ"
  6788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6789. msgid ""
  6790. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6791. "abbr>-leases will be stored"
  6792. msgstr ""
  6793. "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>リースが記録さ"
  6794. "れるファイル"
  6795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  6796. msgid "forced"
  6797. msgstr ""
  6798. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6799. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6800. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6801. msgid "forward"
  6802. msgstr "転送"
  6803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6804. msgid "full-duplex"
  6805. msgstr "全二重"
  6806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6807. msgid "half-duplex"
  6808. msgstr "半二重"
  6809. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6810. msgid "hexadecimal encoded value"
  6811. msgstr "エンコードされた値(16進数)"
  6812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1775
  6813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6814. msgid "hidden"
  6815. msgstr "(非表示)"
  6816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:759
  6817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:863
  6818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  6819. msgid "hybrid mode"
  6820. msgstr "ハイブリッドモード"
  6821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6822. msgid "if target is a network"
  6823. msgstr "ターゲットがネットワークの場合"
  6824. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6825. msgid "ignore"
  6826. msgstr "無視"
  6827. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6828. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6829. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6830. msgid "input"
  6831. msgstr "入力"
  6832. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6833. msgid "key between 8 and 63 characters"
  6834. msgstr "8文字以上63文字以下のキー"
  6835. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6836. msgid "key with either 5 or 13 characters"
  6837. msgstr "5文字または13文字のキー"
  6838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6839. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6840. msgstr "ローカル<abbr title=\"Domain Name System\">DNS</abbr>ファイル"
  6841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  6842. msgid "managed config (M)"
  6843. msgstr ""
  6844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1355
  6845. msgid "medium security"
  6846. msgstr "セキュリティ: 中"
  6847. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1504
  6848. msgid "minutes"
  6849. msgstr "分"
  6850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  6851. msgid "mobile home agent (H)"
  6852. msgstr ""
  6853. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6854. msgid "netif_carrier_ok()"
  6855. msgstr "netif_carrier_ok()"
  6856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6857. msgid "no"
  6858. msgstr "いいえ"
  6859. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6860. msgid "no link"
  6861. msgstr "リンクなし"
  6862. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6863. msgid "non-empty value"
  6864. msgstr "空でない値"
  6865. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:788
  6867. msgid "none"
  6868. msgstr "なし"
  6869. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6871. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6872. msgid "not present"
  6873. msgstr "存在しません"
  6874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  6876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:935
  6877. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6878. msgid "off"
  6879. msgstr "オフ"
  6880. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6881. msgid "on"
  6882. msgstr "オン"
  6883. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  6884. msgid "on available prefix"
  6885. msgstr ""
  6886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  6887. msgid "open network"
  6888. msgstr "オープンネットワーク"
  6889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:783
  6890. msgid "other config (O)"
  6891. msgstr ""
  6892. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6893. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6894. msgid "output"
  6895. msgstr "出力"
  6896. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6897. msgid "positive decimal value"
  6898. msgstr "正の値(10進数)"
  6899. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6900. msgid "positive integer value"
  6901. msgstr "正の整数値"
  6902. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6903. msgid "random"
  6904. msgstr "ランダム"
  6905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:757
  6906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:861
  6907. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:889
  6908. msgid "relay mode"
  6909. msgstr "リレーモード"
  6910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  6911. msgid "routed"
  6912. msgstr "ルート"
  6913. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1132
  6914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1141
  6915. msgid "sec"
  6916. msgstr "秒"
  6917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:755
  6918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:859
  6919. msgid "server mode"
  6920. msgstr "サーバーモード"
  6921. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6922. msgid "sstpc Log-level"
  6923. msgstr "sstpcログレベル"
  6924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1354
  6925. msgid "strong security"
  6926. msgstr "セキュリティ: 強"
  6927. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6928. msgid "tagged"
  6929. msgstr "タグ付き"
  6930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1487
  6931. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6932. msgstr "時間単位(TUs/1.024ミリ秒)[1000-65535]"
  6933. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6934. msgid "unique value"
  6935. msgstr "固有の値"
  6936. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1410
  6937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1422
  6938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:558
  6939. msgid "unknown"
  6940. msgstr "不明"
  6941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6946. msgid "unlimited"
  6947. msgstr "無制限"
  6948. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6949. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6950. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6951. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6952. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6953. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6954. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6955. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6956. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6957. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6958. msgid "unspecified"
  6959. msgstr "未設定"
  6960. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6961. msgid "unspecified -or- create:"
  6962. msgstr "未設定 -または- 作成:"
  6963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6964. msgid "untagged"
  6965. msgstr "タグなし"
  6966. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6969. msgid "valid IP address"
  6970. msgstr "有効なIPアドレス"
  6971. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6972. msgid "valid IP address or prefix"
  6973. msgstr "有効なIPアドレスまたはプレフィックス"
  6974. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6975. msgid "valid IPv4 CIDR"
  6976. msgstr "有効なIPv4 CIDR"
  6977. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6978. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6979. msgid "valid IPv4 address"
  6980. msgstr "有効なIPv4アドレス"
  6981. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6982. msgid "valid IPv4 address or network"
  6983. msgstr "有効なIPv4アドレスまたはネットワーク"
  6984. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6985. msgid "valid IPv4 address:port"
  6986. msgstr "有効なIPv4アドレス:ポート"
  6987. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6988. msgid "valid IPv4 network"
  6989. msgstr "有効なIPv4ネットワーク"
  6990. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6991. msgid "valid IPv4 or IPv6 CIDR"
  6992. msgstr "有効なIPv4またはIPv6 CIDR"
  6993. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6994. msgid "valid IPv4 prefix value (0-32)"
  6995. msgstr "有効なIPv4プレフィックス値(0-32)"
  6996. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6997. msgid "valid IPv6 CIDR"
  6998. msgstr "有効なIPv6 CIDR"
  6999. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  7000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  7001. msgid "valid IPv6 address"
  7002. msgstr "有効なIPv6アドレス"
  7003. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  7004. msgid "valid IPv6 address or prefix"
  7005. msgstr "有効なIPv6アドレスまたはプレフィックス"
  7006. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  7007. msgid "valid IPv6 host id"
  7008. msgstr "有効なIPv6ホストID"
  7009. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  7010. msgid "valid IPv6 network"
  7011. msgstr "有効なIPv6ネットワーク"
  7012. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  7013. msgid "valid IPv6 prefix value (0-128)"
  7014. msgstr "有効なIPv6プレフィックス値(0-128)"
  7015. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  7016. msgid "valid MAC address"
  7017. msgstr "有効なMACアドレス"
  7018. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  7019. msgid "valid UCI identifier"
  7020. msgstr "有効なUCI識別子"
  7021. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  7022. msgid "valid UCI identifier, hostname or IP address range"
  7023. msgstr "有効なUCI識別子、ホスト名またはIPアドレス"
  7024. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  7025. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  7026. msgid "valid address:port"
  7027. msgstr "有効なアドレス:ポート"
  7028. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  7029. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  7030. msgid "valid date (YYYY-MM-DD)"
  7031. msgstr "有効な日付(YYYY-MM-DD)"
  7032. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  7033. msgid "valid decimal value"
  7034. msgstr "有効な10進数の値"
  7035. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  7036. msgid "valid hexadecimal WEP key"
  7037. msgstr "有効なWEPキー(16進数)"
  7038. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  7039. msgid "valid hexadecimal WPA key"
  7040. msgstr "有効なWPAキー(16進数)"
  7041. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  7042. msgid "valid host:port"
  7043. msgstr "有効なホスト:ポート"
  7044. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  7045. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  7046. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  7047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  7048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  7049. msgid "valid hostname"
  7050. msgstr "有効なホスト名"
  7051. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  7052. msgid "valid hostname or IP address"
  7053. msgstr "有効なホスト名またはIPアドレス"
  7054. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  7055. msgid "valid integer value"
  7056. msgstr "有効な整数値"
  7057. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  7058. msgid "valid network in address/netmask notation"
  7059. msgstr "有効なネットワーク(アドレス/ネットマスク表記)"
  7060. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  7061. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  7062. msgstr "有効な電話番号(0-9、\"*\"、\"#\"、\"!\"、\".\")"
  7063. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  7064. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  7065. msgid "valid port or port range (port1-port2)"
  7066. msgstr "有効なポートまたはポート範囲(port1-port2)"
  7067. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  7068. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  7069. msgid "valid port value"
  7070. msgstr "有効なポート番号"
  7071. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  7072. msgid "valid time (HH:MM:SS)"
  7073. msgstr "有効な時刻(HH:MM:SS)"
  7074. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  7075. msgid "value between %d and %d characters"
  7076. msgstr "%d文字以上%d文字以下の値"
  7077. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  7078. msgid "value between %f and %f"
  7079. msgstr "%fと%fの間の値"
  7080. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  7081. msgid "value greater or equal to %f"
  7082. msgstr "%f以上の値"
  7083. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  7084. msgid "value smaller or equal to %f"
  7085. msgstr "%f以下の値"
  7086. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  7087. msgid "value with %d characters"
  7088. msgstr "%d文字の値"
  7089. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  7090. msgid "value with at least %d characters"
  7091. msgstr "%d文字以上の値"
  7092. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  7093. msgid "value with at most %d characters"
  7094. msgstr "最大%d文字の値"
  7095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1356
  7096. msgid "weak security"
  7097. msgstr "セキュリティ: 弱"
  7098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  7099. msgid "yes"
  7100. msgstr "はい"
  7101. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  7102. msgid "« Back"
  7103. msgstr "« 戻る"
  7104. #~ msgid "Announced DNS servers"
  7105. #~ msgstr "アナウンスされたDNSサーバー"
  7106. #~ msgid "DHCPv6-Mode"
  7107. #~ msgstr "DHCPv6-モード"
  7108. #~ msgid "Default is on."
  7109. #~ msgstr "デフォルトはオンです。"
  7110. #~ msgid "Override MAC address"
  7111. #~ msgstr "MACアドレスを上書き"
  7112. #~ msgid "Set this interface as master for the dhcpv6 relay."
  7113. #~ msgstr ""
  7114. #~ "dhcpv6リレーのためにこのインターフェースをマスターとして設定します。"
  7115. #~ msgid "stateful-only"
  7116. #~ msgstr "ステートフルのみ"
  7117. #~ msgid "stateless"
  7118. #~ msgstr "ステートレス"
  7119. #~ msgid "stateless + stateful"
  7120. #~ msgstr "ステートレス + ステートフル"
  7121. #~ msgid "Bridge interfaces"
  7122. #~ msgstr "ブリッジインターフェース"
  7123. #~ msgid "Creates a bridge over specified interface(s)"
  7124. #~ msgstr "指定したインターフェースでブリッジを作成します"
  7125. #~ msgid "Force upgrade"
  7126. #~ msgstr "強制アップグレード"
  7127. #~ msgid ""
  7128. #~ "Select 'Force upgrade' to flash the image even if the image format check "
  7129. #~ "fails. Use only if you are sure that the firmware is correct and meant "
  7130. #~ "for your device!"
  7131. #~ msgstr ""
  7132. #~ "イメージ形式のチェックが失敗した場合でも更新を行う場合、'強制アップグレー"
  7133. #~ "ド' を選択してください。正しいファームウェアであること、デバイスに適したも"
  7134. #~ "のであることが確かな場合のみ使用してください!"
  7135. #~ msgid "Always announce default router"
  7136. #~ msgstr "常にデフォルトルーターをアナウンス"
  7137. #~ msgid "Announce as default router even if no public prefix is available."
  7138. #~ msgstr ""
  7139. #~ "利用可能なパブリックプレフィックスが無くても、デフォルトのルーターとしてア"
  7140. #~ "ナウンスします。"
  7141. #~ msgid "Default is stateless + stateful"
  7142. #~ msgstr "デフォルトはステートレス + ステートフル"
  7143. #~ msgid "NDP-Proxy"
  7144. #~ msgstr "NDP-プロキシ"
  7145. #~ msgid "Router Advertisement-Service"
  7146. #~ msgstr "ルーター広告-サービス"
  7147. #~ msgid "Custom delegated IPv6-prefix"
  7148. #~ msgstr "委任されたカスタムIPv6プレフィックス"
  7149. #~ msgid "Default Route"
  7150. #~ msgstr "デフォルトルート"
  7151. #~ msgid "Default gateway"
  7152. #~ msgstr "デフォルトゲートウェイ"
  7153. #~ msgid "Gateway metric"
  7154. #~ msgstr "ゲートウェイメトリック"
  7155. #~ msgid "Number of parallel threads used for compression"
  7156. #~ msgstr "圧縮に使用する並列スレッド数"
  7157. #~ msgid "Set VPN as Default Route"
  7158. #~ msgstr "VPNをデフォルトルートとして設定"
  7159. #~ msgid "ZRam Compression Streams"
  7160. #~ msgstr "ZRam圧縮ストリーム"
  7161. #~ msgid "Profile"
  7162. #~ msgstr "プロファイル"
  7163. #~ msgid ""
  7164. #~ "Requires the 'full' version of wpad/hostapd and support from the wifi "
  7165. #~ "driver <br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)"
  7166. #~ msgstr ""
  7167. #~ "'full'バージョンのwpad/hostapdと、無線ドライバーがサポートしている必要があ"
  7168. #~ "ります<br />(2019年1月現在: ath9k、ath10k、mwlwifi、mt76)"
  7169. #~ msgid "Invalid value"
  7170. #~ msgstr "不正な値"
  7171. #~ msgid "Enable/Disable"
  7172. #~ msgstr "有効 / 無効"
  7173. #~ msgid "No signal"
  7174. #~ msgstr "無信号"
  7175. #~ msgid "Free"
  7176. #~ msgstr "空き"
  7177. #~ msgid "Port %s"
  7178. #~ msgstr "ポート %s"
  7179. #~ msgid "Switch Port Mask"
  7180. #~ msgstr "スイッチポート マスク"
  7181. #~ msgid "USB Device"
  7182. #~ msgstr "USBデバイス"
  7183. #~ msgid "USB Ports"
  7184. #~ msgstr "USB ポート"
  7185. #~ msgid "Define a name for this network."
  7186. #~ msgstr "ネットワーク名を設定してください。"
  7187. #~ msgid "Bad address specified!"
  7188. #~ msgstr "無効なアドレスです!"
  7189. #~ msgid "Install iputils-traceroute6 for IPv6 traceroute"
  7190. #~ msgstr ""
  7191. #~ "IPv6 の traceroute を使用するには、 iputils-traceroute6 をインストールしま"
  7192. #~ "す。"
  7193. #~ msgid "Loading"
  7194. #~ msgstr "ロード中"
  7195. #~ msgid "Waiting for command to complete..."
  7196. #~ msgstr "コマンド実行中です..."
  7197. #~ msgid "Assign interfaces..."
  7198. #~ msgstr "インターフェースの割当て..."
  7199. #~ msgid "MB/s"
  7200. #~ msgstr "MB/s"
  7201. #~ msgid "Network without interfaces."
  7202. #~ msgstr "インターフェースの無いネットワークです。"
  7203. #~ msgid ""
  7204. #~ "Really delete this interface? The deletion cannot be undone! You might "
  7205. #~ "lose access to this device if you are connected via this interface"
  7206. #~ msgstr ""
  7207. #~ "本当にこのインターフェースを削除しますか?一度削除すると、元に戻すことはで"
  7208. #~ "きません!もしこのインターフェースを経由して接続している場合、このデバイス"
  7209. #~ "にアクセスできなくなる場合があります"
  7210. #~ msgid "Realtime Connections"
  7211. #~ msgstr "リアルタイム・コネクション"
  7212. #~ msgid "Realtime Load"
  7213. #~ msgstr "リアルタイム・ロード"
  7214. #~ msgid "Realtime Traffic"
  7215. #~ msgstr "リアルタイム・トラフィック"
  7216. #~ msgid "Realtime Wireless"
  7217. #~ msgstr "リアルタイム・無線LAN"
  7218. #~ msgid "Swap"
  7219. #~ msgstr "スワップ"
  7220. #~ msgid "The firstboot command failed with code %d"
  7221. #~ msgstr "firstboot コマンドが失敗しました(コード: %d)"
  7222. #~ msgid "There are no active leases."
  7223. #~ msgstr "リース中のIPアドレスはありません。"
  7224. #~ msgid ""
  7225. #~ "This page gives an overview over currently active network connections."
  7226. #~ msgstr "このページでは、現在アクティブなネットワーク接続を表示します。"
  7227. #~ msgid "dB"
  7228. #~ msgstr "dB"
  7229. #~ msgid "kB/s"
  7230. #~ msgstr "kB/s"
  7231. #~ msgid "kbit/s"
  7232. #~ msgstr "kbit/s"