base.po 479 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378
  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: 2023-06-30 03:37+0000\n"
  7. "Last-Translator: \"nori yama (Yamada Yks)\" <yamadayks@gmail.com>\n"
  8. "Language-Team: Japanese <https://hosted.weblate.org/projects/librecmc/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.18.1\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:925
  17. msgid "!known (not known)"
  18. msgstr ""
  19. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:649
  20. msgctxt "Yet unknown nftables table family (\"family\" table \"name\")"
  21. msgid "\"%h\" table \"%h\""
  22. msgstr "\"%h\" テーブル \"%h\""
  23. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1591
  24. msgid "%.1f dB"
  25. msgstr "%.1f dB"
  26. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123
  27. msgid "%d Bit"
  28. msgstr "%d ビット"
  29. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4097
  30. msgid "%d invalid field(s)"
  31. msgstr "無効な入力欄: %d個"
  32. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:26
  33. msgid "%dh ago"
  34. msgstr "%d時間前"
  35. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:24
  36. msgid "%dm ago"
  37. msgstr "%d分前"
  38. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:22
  39. msgid "%ds ago"
  40. msgstr "%d秒前"
  41. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  42. msgid "%s is untagged in multiple VLANs!"
  43. msgstr "%sは複数のVLANでタグなしに設定されています!"
  44. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  45. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  46. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  47. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  48. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  49. msgid "(%d minute window, %d second interval)"
  50. msgstr "(グラフ表示範囲: %d分、更新間隔: %d秒)"
  51. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  52. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  53. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:259
  54. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:283
  55. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  56. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  57. msgid "(empty)"
  58. msgstr "(空)"
  59. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:352
  60. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  61. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  62. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:271
  63. msgid "(no interfaces attached)"
  64. msgstr "(インターフェースが接続されていません)"
  65. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:635
  66. msgctxt "Label indicating further amount of allowed ips"
  67. msgid "+ %d more"
  68. msgstr ""
  69. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  70. msgid "-- Additional Field --"
  71. msgstr "-- 追加項目 --"
  72. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  73. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  74. #: modules/luci-base/htdocs/luci-static/resources/form.js:4157
  75. #: modules/luci-base/htdocs/luci-static/resources/ui.js:799
  76. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1037
  77. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2033
  78. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  79. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  80. msgid "-- Please choose --"
  81. msgstr "-- 選択してください --"
  82. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  83. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1038
  84. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2034
  85. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  86. msgid "-- custom --"
  87. msgstr "-- カスタム --"
  88. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:271
  89. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:380
  90. msgid "-- match by label --"
  91. msgstr "-- ラベルを指定 --"
  92. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:257
  93. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:363
  94. msgid "-- match by uuid --"
  95. msgstr "-- UUID を指定 --"
  96. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  97. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  98. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  99. msgid "-- please select --"
  100. msgstr "-- 選択してください --"
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  102. msgctxt "sstp log level value"
  103. msgid "0"
  104. msgstr "0"
  105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  106. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  107. msgstr "0: RSSIしきい値を使用しない、1: ドライバーのデフォルトを使用"
  108. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  109. msgctxt "sstp log level value"
  110. msgid "1"
  111. msgstr "1"
  112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  113. msgid "1 Minute Load:"
  114. msgstr "過去1分間の負荷:"
  115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:323
  116. msgctxt "nft amount of flags"
  117. msgid "1 flag"
  118. msgid_plural "%d flags"
  119. msgstr[0] ""
  120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:898
  121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:984
  122. msgid "12h (12 hours - default)"
  123. msgstr ""
  124. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  125. msgid "15 Minute Load:"
  126. msgstr "過去15分間の負荷:"
  127. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  128. msgctxt "sstp log level value"
  129. msgid "2"
  130. msgstr "2"
  131. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  132. msgctxt "sstp log level value"
  133. msgid "3"
  134. msgstr "3"
  135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:897
  136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:983
  137. msgid "3h (3 hours)"
  138. msgstr ""
  139. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  140. msgctxt "sstp log level value"
  141. msgid "4"
  142. msgstr "4"
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  144. msgid "4-character hexadecimal ID"
  145. msgstr "4文字の16進数ID"
  146. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  147. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  148. msgid "464XLAT (CLAT)"
  149. msgstr "464XLAT(CLAT)"
  150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  151. msgid "5 Minute Load:"
  152. msgstr "過去5分間の負荷:"
  153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:896
  154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:982
  155. msgid "5m (5 minutes)"
  156. msgstr ""
  157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  158. msgid "6-octet identifier as a hex string - no colons"
  159. msgstr "16進数6オクテットの識別子(コロンを含まない)"
  160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:899
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:985
  162. msgid "7d (7 days)"
  163. msgstr ""
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  165. msgid "802.11k RRM"
  166. msgstr ""
  167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  168. msgid "802.11k: Enable beacon report via radio measurements."
  169. msgstr ""
  170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  171. msgid "802.11k: Enable neighbor report via radio measurements."
  172. msgstr ""
  173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  174. msgid "802.11r Fast Transition"
  175. msgstr "802.11r高速ローミング"
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  177. msgid "802.11v: BSS Max Idle. Units: seconds."
  178. msgstr ""
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  180. msgid "802.11v: Basic Service Set (BSS) transition management."
  181. msgstr ""
  182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  183. msgid "802.11v: Local Time Zone Advertisement in management frames."
  184. msgstr ""
  185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  186. msgid ""
  187. "802.11v: Proxy ARP enables non-AP STA to remain in power-save for longer."
  188. msgstr ""
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  190. msgid "802.11v: Time Advertisement in management frames."
  191. msgstr ""
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  193. msgid ""
  194. "802.11v: Wireless Network Management (WNM) Sleep Mode (extended sleep mode "
  195. "for stations)."
  196. msgstr ""
  197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  198. msgid ""
  199. "802.11v: Wireless Network Management (WNM) Sleep Mode Fixes: Prevents "
  200. "reinstallation attacks."
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  203. msgid "802.11w Association SA Query maximum timeout"
  204. msgstr "802.11wアソシエーションSAクエリの最大タイムアウト"
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  206. msgid "802.11w Association SA Query retry timeout"
  207. msgstr "802.11wアソシエーションSAクエリの再試行タイムアウト"
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  209. msgid "802.11w Management Frame Protection"
  210. msgstr "802.11w管理フレーム保護"
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1796
  212. msgid "802.11w maximum timeout"
  213. msgstr "802.11w最大タイムアウト"
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1803
  215. msgid "802.11w retry timeout"
  216. msgstr "802.11w再試行タイムアウト"
  217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1015
  218. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  219. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1004
  221. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  222. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  224. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  225. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-ネットマスク"
  226. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  227. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  228. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>設定"
  229. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70
  230. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  231. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr>名"
  232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:961
  233. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  234. msgstr "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> プロキシ"
  235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:831
  236. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  237. msgstr "<abbr title=\"Router Advertisement\">RA</abbr> フラグ"
  238. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  239. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  240. msgstr "<abbr title=\"Router Advertisement\">RA</abbr> ホップ リミット"
  241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  242. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  243. msgstr ""
  244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  245. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  246. msgstr ""
  247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:803
  248. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  249. msgstr ""
  250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  251. msgid ""
  252. "<code>/#/</code> matches any domain. <code>/example.com/</code> returns "
  253. "NXDOMAIN."
  254. msgstr ""
  255. "<code>/#/</code> は全てのドメインに一致します。 IPアドレスが空の <code>/"
  256. "example.com/</code> は NXDOMAIN を返します。"
  257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  258. msgid ""
  259. "<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and "
  260. "<code>::</code>) for example.com and its subdomains."
  261. msgstr ""
  262. "<code>/example.com/#</code> は example.com とそのサブドメインに対して NULL ア"
  263. "ドレス (<code>0.0.0.0</code> 及び <code>::</code>) を返します。"
  264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87
  265. msgctxt "nft relational \">\" operator expression"
  266. msgid "<var>%s</var> greater than <strong>%s</strong>"
  267. msgstr ""
  268. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:85
  269. msgctxt "nft relational \">=\" operator expression"
  270. msgid "<var>%s</var> greater than or equal to <strong>%s</strong>"
  271. msgstr ""
  272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:90
  273. msgctxt "nft set match expression"
  274. msgid "<var>%s</var> in set <strong>%s</strong>"
  275. msgstr ""
  276. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:83
  277. msgctxt "nft relational \"==\" operator expression"
  278. msgid "<var>%s</var> is <strong>%s</strong>"
  279. msgstr ""
  280. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:89
  281. msgctxt "nft relational \"in\" operator expression"
  282. msgid "<var>%s</var> is one of <strong>%s</strong>"
  283. msgstr ""
  284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:88
  285. msgctxt "nft relational \"<\" operator expression"
  286. msgid "<var>%s</var> lower than <strong>%s</strong>"
  287. msgstr ""
  288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:86
  289. msgctxt "nft relational \"<=\" operator expression"
  290. msgid "<var>%s</var> lower than or equal to <strong>%s</strong>"
  291. msgstr ""
  292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:84
  293. msgctxt "nft relational \"!=\" operator expression"
  294. msgid "<var>%s</var> not <strong>%s</strong>"
  295. msgstr ""
  296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:91
  297. msgctxt "nft not in set match expression"
  298. msgid "<var>%s</var> not in set <strong>%s</strong>"
  299. msgstr ""
  300. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:86
  301. msgid ""
  302. "A batman-adv node can either run in server mode (sharing its internet "
  303. "connection with the mesh) or in client mode (searching for the most suitable "
  304. "internet connection in the mesh) or having the gateway support turned off "
  305. "entirely (which is the default setting)."
  306. msgstr ""
  307. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:424
  308. msgid "A configuration for the device \"%s\" already exists"
  309. msgstr "デバイス \"%s\" の設定は既に存在しています"
  310. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2779
  311. msgid "A directory with the same name already exists."
  312. msgstr "同じ名前のディレクトリがすでに存在します。"
  313. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2666
  314. msgid "A new login is required since the authentication session expired."
  315. msgstr "認証セッションの期限が切れたため、再ログインが必要です。"
  316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1571
  317. msgid "A43C + J43 + A43"
  318. msgstr "A43C + J43 + A43"
  319. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1572
  320. msgid "A43C + J43 + A43 + V43"
  321. msgstr "A43C + J43 + A43 + V43"
  322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1584
  323. msgid "ADSL"
  324. msgstr "ADSL"
  325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1558
  326. msgid "ADSL (G.992.1) Annex A"
  327. msgstr ""
  328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1559
  329. msgid "ADSL (G.992.1) Annex B"
  330. msgstr ""
  331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1552
  332. msgid "ADSL (all variants) Annex A/L/M"
  333. msgstr ""
  334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1548
  335. msgid "ADSL (all variants) Annex A/L/M + VDSL2 Annex A/B/C"
  336. msgstr ""
  337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1553
  338. msgid "ADSL (all variants) Annex B"
  339. msgstr ""
  340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1549
  341. msgid "ADSL (all variants) Annex B + VDSL2 Annex A/B/C"
  342. msgstr ""
  343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1554
  344. msgid "ADSL (all variants) Annex B/J"
  345. msgstr ""
  346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1550
  347. msgid "ADSL (all variants) Annex B/J + VDSL2 Annex A/B/C"
  348. msgstr ""
  349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1556
  350. msgid "ADSL (all variants) Annex M"
  351. msgstr ""
  352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1561
  353. msgid "ADSL2 (G.992.3) Annex A"
  354. msgstr ""
  355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1562
  356. msgid "ADSL2 (G.992.3) Annex B"
  357. msgstr ""
  358. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1563
  359. msgid "ADSL2 (G.992.3) Annex L"
  360. msgstr ""
  361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1564
  362. msgid "ADSL2 (G.992.3) Annex M"
  363. msgstr ""
  364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565
  365. msgid "ADSL2+ (G.992.5) Annex A"
  366. msgstr ""
  367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1566
  368. msgid "ADSL2+ (G.992.5) Annex B"
  369. msgstr ""
  370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1567
  371. msgid "ADSL2+ (G.992.5) Annex M"
  372. msgstr ""
  373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1557
  374. msgid "ANSI T1.413"
  375. msgstr "ANSI T1.413"
  376. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  377. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:65
  378. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:65
  379. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  380. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  381. msgid "APN"
  382. msgstr "APN"
  383. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  384. msgid "ARP"
  385. msgstr "ARP"
  386. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  387. msgid "ARP IP Targets"
  388. msgstr "ARP IPターゲット"
  389. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  390. msgid "ARP Interval"
  391. msgstr "ARP間隔"
  392. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  393. msgid "ARP Validation"
  394. msgstr "ARP検証"
  395. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  396. msgid "ARP mode to consider a slave as being up"
  397. msgstr "スレーブが稼働していると見なすARPモード"
  398. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:79
  399. msgid "ARP monitoring is not supported for the selected policy!"
  400. msgstr "選択したポリシーではARPモニタリングはサポートされていません!"
  401. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  402. msgid "ARP retry threshold"
  403. msgstr "ARP再試行しきい値"
  404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:637
  405. msgid "ARP traffic table \"%h\""
  406. msgstr ""
  407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  408. msgid ""
  409. "ARP, IPv4 and IPv6 (even 802.1Q) with multicast destination MACs are unicast "
  410. "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) "
  411. "in 802.11v. Note: might break receiver STA multicast expectations."
  412. msgstr ""
  413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1579
  414. msgid "ATM (Asynchronous Transfer Mode)"
  415. msgstr "ATM(非同期転送モード)"
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  417. msgid "ATM Bridges"
  418. msgstr "ATMブリッジ"
  419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1632
  420. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  421. msgid "ATM Virtual Channel Identifier (VCI)"
  422. msgstr "ATM仮想チャネル識別子(VCI)"
  423. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1633
  424. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  425. msgid "ATM Virtual Path Identifier (VPI)"
  426. msgstr "ATM仮想パス識別子(VPI)"
  427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1600
  428. msgid ""
  429. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  430. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  431. "to dial into the provider network."
  432. msgstr ""
  433. "ATMブリッジは、AAL5接続でカプセル化されたイーサネットを仮想Linuxネットワーク"
  434. "インターフェイスとして公開し、DHCPまたはPPPと組み合わせて使用し、プロバイダー"
  435. "ネットワークにダイヤルできます。"
  436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1639
  437. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  438. msgid "ATM device number"
  439. msgstr "ATMデバイス番号"
  440. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:266
  441. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  442. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:552
  443. msgid "Absent Interface"
  444. msgstr "存在しないインターフェース"
  445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  446. msgid "Accept DNS queries only from hosts whose address is on a local subnet."
  447. msgstr ""
  448. "DNSサービスを、現在DNSを提供しているサブネットインターフェースに限定します。"
  449. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  450. msgid "Accept local"
  451. msgstr "ローカルを許可"
  452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:95
  453. msgctxt "nft accept action"
  454. msgid "Accept packet"
  455. msgstr ""
  456. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:701
  457. msgid "Accept packets with local source addresses"
  458. msgstr "送信元がローカルアドレスであるパケットを許可します"
  459. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  460. msgid "Access Concentrator"
  461. msgstr "アクセスコンセントレータ"
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  464. msgid "Access Point"
  465. msgstr "アクセスポイント"
  466. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:60
  467. msgid "Access Point Isolation"
  468. msgstr ""
  469. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:99
  470. msgid "Access Technologies"
  471. msgstr ""
  472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:388
  473. msgid "Actions"
  474. msgstr "操作"
  475. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  476. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:134
  477. msgid "Active"
  478. msgstr "アクティブ"
  479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  480. msgid "Active Connections"
  481. msgstr "アクティブな接続"
  482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:35
  483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:182
  484. msgid "Active DHCP Leases"
  485. msgstr "アクティブなDHCP割り当て"
  486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:54
  487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:184
  488. msgid "Active DHCPv6 Leases"
  489. msgstr "アクティブなDHCPv6割り当て"
  490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:255
  491. msgid "Active IPv4 Routes"
  492. msgstr "アクティブな IPv4 ルート"
  493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:258
  494. msgid "Active IPv4 Rules"
  495. msgstr "アクティブな IPv4 ルール"
  496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:265
  497. msgid "Active IPv6 Routes"
  498. msgstr "アクティブな IPv6 ルート"
  499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268
  500. msgid "Active IPv6 Rules"
  501. msgstr "アクティブな IPv6 ルール"
  502. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  503. msgid "Active-Backup policy (active-backup, 1)"
  504. msgstr "アクティブ-バックアップポリシー(active-backup、1)"
  505. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988
  507. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  508. msgid "Ad-Hoc"
  509. msgstr "アドホック"
  510. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:210
  511. msgid "Adaptive load balancing (balance-alb, 6)"
  512. msgstr "アダプティブな負荷分散(balance-alb、6)"
  513. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:209
  514. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  515. msgstr "アダプティブな送信負荷分散(balance-tlb、5)"
  516. #: modules/luci-base/htdocs/luci-static/resources/form.js:2233
  517. #: modules/luci-base/htdocs/luci-static/resources/form.js:2236
  518. #: modules/luci-base/htdocs/luci-static/resources/form.js:2249
  519. #: modules/luci-base/htdocs/luci-static/resources/form.js:2257
  520. #: modules/luci-base/htdocs/luci-static/resources/form.js:3587
  521. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  522. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  523. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  524. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  525. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  526. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  528. msgid "Add"
  529. msgstr "追加"
  530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1604
  531. msgid "Add ATM Bridge"
  532. msgstr "ATMブリッジを追加"
  533. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  534. msgid "Add IPv4 address…"
  535. msgstr "IPv4アドレスを追加…"
  536. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  537. msgid "Add IPv6 address…"
  538. msgstr "IPv6アドレスを追加…"
  539. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  540. msgid "Add LED action"
  541. msgstr "LEDの動作を追加"
  542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:221
  543. msgid "Add VLAN"
  544. msgstr "VLANを追加"
  545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  546. msgid "Add device configuration"
  547. msgstr "デバイス設定を追加"
  548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1311
  549. msgid "Add device configuration…"
  550. msgstr "デバイス設定を追加…"
  551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  552. msgid "Add instance"
  553. msgstr "インスタンスを追加"
  554. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  555. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177
  556. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274
  557. msgid "Add key"
  558. msgstr "公開鍵を追加"
  559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:496
  560. msgid "Add local domain suffix to names served from hosts files."
  561. msgstr "hostsファイルから提供される名前にローカルドメインサフィックスを追加"
  562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1195
  564. msgid "Add new interface..."
  565. msgstr "インターフェースを新規作成..."
  566. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:224
  567. msgid "Add peer"
  568. msgstr "ピアを追加"
  569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:945
  570. msgid "Add static forward and reverse DNS entries for this host."
  571. msgstr ""
  572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  573. msgid "Add to Blacklist"
  574. msgstr "ブラックリストに追加"
  575. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:335
  576. msgid "Add to Whitelist"
  577. msgstr "ホワイトリストに追加"
  578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:442
  579. msgid "Additional hosts files"
  580. msgstr "追加のホストファイル"
  581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:503
  582. msgid "Additional servers file"
  583. msgstr "追加のサーバーファイル"
  584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  588. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  591. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  592. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  593. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  594. msgid "Address"
  595. msgstr "アドレス"
  596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410
  597. msgid "Address families of \"Relay from\" and \"Relay to address\" must match."
  598. msgstr ""
  599. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:21
  600. msgctxt "nft meta nfproto"
  601. msgid "Address family"
  602. msgstr ""
  603. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:284
  604. msgid "Address setting is invalid"
  605. msgstr ""
  606. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  607. msgid "Address to access local relay bridge"
  608. msgstr "ローカル リレーブリッジにアクセスするためのアドレス"
  609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:297
  610. msgid "Addresses"
  611. msgstr "アドレス一覧"
  612. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  613. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  614. msgid "Administration"
  615. msgstr "管理"
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:257
  617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:650
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1630
  620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39
  621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:982
  624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  625. msgid "Advanced Settings"
  626. msgstr "詳細設定"
  627. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:391
  628. msgid "Advanced device options"
  629. msgstr "デバイスの詳細オプション"
  630. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  631. msgid "Ageing time"
  632. msgstr "エージング時間"
  633. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:50
  634. msgid "Aggregate Originator Messages"
  635. msgstr ""
  636. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260
  637. msgid "Aggregation Selection Logic"
  638. msgstr "集計の選択ロジック"
  639. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  640. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  641. msgstr ""
  642. "アグリゲーター: すべてのスレーブがダウンしているか、スレーブなし(安定、0)"
  643. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:265
  644. msgid ""
  645. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  646. "state changes (count, 2)"
  647. msgstr ""
  648. "アグリゲーター: ポートの最大数 + スレーブ追加/削除または状態変更によって変更"
  649. "(カウント、2)"
  650. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264
  651. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  652. msgstr "アグリゲーター: スレーブの追加/削除または状態の変更(帯域幅、1)"
  653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  654. msgid "Alert"
  655. msgstr "アラート"
  656. #: modules/luci-base/htdocs/luci-static/resources/network.js:2989
  657. #: modules/luci-compat/luasrc/model/network.lua:1417
  658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  659. msgid "Alias Interface"
  660. msgstr "エイリアスインターフェース"
  661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  662. msgid "Alias of \"%s\""
  663. msgstr "\"%s\"のエイリアス"
  664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513
  665. msgid "All servers"
  666. msgstr "すべてのサーバー"
  667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453
  668. msgid ""
  669. "Allocate IP addresses sequentially, starting from the lowest available "
  670. "address."
  671. msgstr "利用可能な最小IPアドレスから順番に割り当てる"
  672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452
  673. msgid "Allocate IPs sequentially"
  674. msgstr "順次IP割り当て"
  675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  676. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  677. msgstr "<abbr title=\"Secure Shell\">SSH</abbr>パスワード認証を許可"
  678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  679. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  680. msgstr "APモードで、低ACK状態のSTAの切断を許可"
  681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1084
  682. msgid "Allow all except listed"
  683. msgstr "リスト内以外のすべてを許可"
  684. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  685. msgid "Allow full UCI access for legacy applications"
  686. msgstr "レガシーアプリケーションにUCIのフルアクセスを許可"
  687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  688. msgid "Allow legacy 802.11b rates"
  689. msgstr "レガシー802.11bレートを許可"
  690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  691. msgid "Allow listed only"
  692. msgstr "リスト内のみアクセスを許可"
  693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  694. msgid "Allow localhost"
  695. msgstr "ローカルホストを許可"
  696. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:179
  697. msgid "Allow rebooting the device"
  698. msgstr "デバイスの再起動を許可"
  699. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  700. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  701. msgstr "リモートホストがSSH転送されたローカルのポートに接続することを許可"
  702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  703. msgid "Allow root logins with password"
  704. msgstr "パスワードでの root ログインを許可"
  705. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  706. msgid "Allow system feature probing"
  707. msgstr "システム機能の調査を許可"
  708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  709. msgid "Allow the <em>root</em> user to log in with password"
  710. msgstr "パスワードでの <em>root</em> 権限へのログインを許可します"
  711. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  712. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  713. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  714. msgid "Allowed IPs"
  715. msgstr "許可されたIP"
  716. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:86
  717. msgid "Allowed network technology"
  718. msgstr ""
  719. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:315
  720. msgid "AllowedIPs setting is invalid"
  721. msgstr ""
  722. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:776
  723. msgid "Always"
  724. msgstr "常に"
  725. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:6
  726. msgid "Always off (kernel: none)"
  727. msgstr "常にオフ(kernel: none)"
  728. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:5
  729. msgid "Always on (kernel: default-on)"
  730. msgstr "常にオン(kernel: default-on)"
  731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:624
  732. msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux."
  733. msgstr ""
  734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  735. msgid ""
  736. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  737. "option does not comply with IEEE 802.11n-2009!"
  738. msgstr ""
  739. "セカンダリチャンネルの重複にかかわらず、常に40MHzチャンネルを使用します。この"
  740. "オプションは、IEEE 802.11n-2009に準拠しません!"
  741. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  742. msgid "Amount of Duplicate Address Detection probes to send"
  743. msgstr "送信に用いる重複アドレス検出(DAD)の数です"
  744. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  745. msgid "Amount of seconds to wait for the modem to become ready"
  746. msgstr ""
  747. #: modules/luci-base/htdocs/luci-static/resources/form.js:608
  748. msgid "An error occurred while saving the form:"
  749. msgstr "フォームの保存中にエラーが発生しました:"
  750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  751. msgid "An optional, short description for this device"
  752. msgstr "このデバイスの短い説明(オプション)"
  753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1546
  754. msgid "Annex"
  755. msgstr "Annex"
  756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  757. msgid ""
  758. "Announce NAT64 prefix in <abbr title=\"Router Advertisement\">RA</abbr> "
  759. "messages."
  760. msgstr ""
  761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  762. msgid "Announce this device as IPv6 DNS server."
  763. msgstr "このデバイスを IPv6 DNS サーバーとしてアナウンスします。"
  764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:817
  765. msgid ""
  766. "Announce this device as default router if a local IPv6 default route is "
  767. "present."
  768. msgstr ""
  769. "ローカルの IPv6 デフォルトルートが存在する場合、このデバイスをデフォルト ルー"
  770. "ターとしてアナウンスします"
  771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:819
  772. msgid ""
  773. "Announce this device as default router if a public IPv6 prefix is available, "
  774. "regardless of local default route availability."
  775. msgstr ""
  776. "パブリック IPv6 プレフィックスが利用可能である場合、ローカルのデフォルトルー"
  777. "トの利用可否にかかわらずこのデバイスをデフォルト ルーターとしてアナウンスしま"
  778. "す"
  779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:821
  780. msgid ""
  781. "Announce this device as default router regardless of whether a prefix or "
  782. "default route is present."
  783. msgstr ""
  784. "プレフィックスまたはデフォルトルートが存在するかどうかにかかわらず、このデバ"
  785. "イスをデフォルト ルーターとしてアナウンスします"
  786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:952
  787. msgid "Announced DNS domains"
  788. msgstr "アナウンスされたDNSドメイン"
  789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:936
  790. msgid "Announced IPv6 DNS servers"
  791. msgstr "アナウンスされる IPv6 DNS サーバー"
  792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1767
  793. msgid "Anonymous Identity"
  794. msgstr "匿名アイデンティティ"
  795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  796. msgid "Anonymous Mount"
  797. msgstr "匿名マウント"
  798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  799. msgid "Anonymous Swap"
  800. msgstr "匿名スワップ"
  801. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:518
  802. msgctxt "nft match any traffic"
  803. msgid "Any packet"
  804. msgstr ""
  805. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  806. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  807. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  808. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  809. msgid "Any zone"
  810. msgstr "すべてのゾーン"
  811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:618
  812. msgid "Apply DHCP Options to this net. (Empty = all clients)."
  813. msgstr ""
  814. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4713
  815. msgid "Apply and keep settings"
  816. msgstr ""
  817. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  818. msgid "Apply backup?"
  819. msgstr "バックアップを適用しますか?"
  820. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4739
  821. msgid "Apply request failed with status <code>%h</code>"
  822. msgstr "適用のリクエストに失敗しました ステータスコード:<code>%h</code>"
  823. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2175
  824. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4456
  825. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4576
  826. msgid "Apply unchecked"
  827. msgstr "チェックなしの適用"
  828. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4709
  829. msgid "Apply with revert after connectivity loss"
  830. msgstr ""
  831. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4649
  832. msgid "Applying configuration changes… %ds"
  833. msgstr "設定を適用中… 残り最大%d秒"
  834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  835. msgid "Architecture"
  836. msgstr "アーキテクチャ"
  837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:152
  838. msgid "Arp-scan"
  839. msgstr ""
  840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  841. msgid ""
  842. "Assign a part of given length of every public IPv6-prefix to this interface"
  843. msgstr ""
  844. "パブリックIPv6プレフィックスのうち、指定されたプレフィックス長の一部をこのイ"
  845. "ンターフェースに割り当てる"
  846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:917
  847. msgid "Assign new, freeform tags to this entry."
  848. msgstr ""
  849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  850. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  851. msgid ""
  852. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  853. msgstr ""
  854. "このサブプレフィックスID(16進数)を使用するプレフィックス領域を、このイン"
  855. "ターフェースに割り当てます。"
  856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2266
  857. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:366
  858. msgid "Associated Stations"
  859. msgstr "接続済み端末"
  860. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:151
  861. msgid "Associations"
  862. msgstr "接続数"
  863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:126
  864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:127
  865. msgid ""
  866. "At least <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  867. "strong>"
  868. msgstr ""
  869. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:124
  870. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:125
  871. msgid ""
  872. "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</"
  873. "strong>"
  874. msgstr ""
  875. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  876. msgid "Attempt to enable configured mount points for attached devices"
  877. msgstr "接続済みデバイスに対して構成済みのマウントポイントを有効化"
  878. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:145
  879. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  880. msgid "Auth Group"
  881. msgstr "認証グループ"
  882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1706
  883. msgid "Authentication"
  884. msgstr "認証"
  885. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:76
  886. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:79
  887. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:82
  888. msgid "Authentication Type"
  889. msgstr "認証タイプ"
  890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273
  891. msgid "Authoritative"
  892. msgstr "権威"
  893. #: modules/luci-base/ucode/template/sysauth.ut:17
  894. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11
  895. msgid "Authorization Required"
  896. msgstr "ログイン"
  897. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120
  898. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  899. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  900. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:107
  901. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:116
  902. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:113
  903. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  904. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  905. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  906. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  907. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  908. msgid "Automatic"
  909. msgstr "自動"
  910. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  911. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  912. msgid "Automatic Homenet (HNCP)"
  913. msgstr "自動ホームネット(HNCP)"
  914. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  915. msgid "Automatically check filesystem for errors before mounting"
  916. msgstr "マウントする前にファイルシステムのエラーを自動的にチェック"
  917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  918. msgid ""
  919. "Automatically handle multiple uplink interfaces using source-based policy "
  920. "routing."
  921. msgstr ""
  922. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  923. msgid "Automatically mount filesystems on hotplug"
  924. msgstr "ファイルシステムをホットプラグによって自動的にマウント"
  925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  926. msgid "Automatically mount swap on hotplug"
  927. msgstr "スワップをホットプラグによって自動的にマウント"
  928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  929. msgid "Automount Filesystem"
  930. msgstr "ファイルシステムを自動的にマウント"
  931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  932. msgid "Automount Swap"
  933. msgstr "スワップを自動的にマウント"
  934. #: protocols/luci-proto-autoip/htdocs/luci-static/resources/protocol/autoip.js:6
  935. msgid "Avahi IPv4LL"
  936. msgstr ""
  937. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  938. msgid "Available"
  939. msgstr "利用可能"
  940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  941. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  948. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  951. msgid "Average:"
  952. msgstr "平均:"
  953. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:70
  954. msgid "Avoid Bridge Loops"
  955. msgstr ""
  956. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1573
  957. msgid "B43 + B43C"
  958. msgstr "B43 + B43C"
  959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1574
  960. msgid "B43 + B43C + V43"
  961. msgstr "B43 + B43C + V43"
  962. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  963. msgid "BR / DMR / AFTR"
  964. msgstr "BR / DMR / AFTR"
  965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  966. msgid "BSS Transition"
  967. msgstr ""
  968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1841
  971. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:405
  972. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:149
  973. msgid "BSSID"
  974. msgstr "BSSID"
  975. #: modules/luci-base/htdocs/luci-static/resources/form.js:3255
  976. msgid "Back"
  977. msgstr ""
  978. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  979. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  980. msgid "Back to Overview"
  981. msgstr "概要へ戻る"
  982. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:839
  983. msgid "Back to peer configuration"
  984. msgstr ""
  985. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  986. msgid "Backup"
  987. msgstr "バックアップ"
  988. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:128
  989. msgid "Backup / Flash Firmware"
  990. msgstr "バックアップ/フラッシュ"
  991. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351
  992. msgid "Backup file list"
  993. msgstr "バックアップファイルリスト"
  994. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:495
  996. msgid "Band"
  997. msgstr "バンド"
  998. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:431
  999. msgid "Base device"
  1000. msgstr "ベース デバイス"
  1001. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  1002. msgid "Base64-encoded public key of this interface for sharing."
  1003. msgstr ""
  1004. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:10
  1005. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:41
  1006. msgid "Batman Device"
  1007. msgstr ""
  1008. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:10
  1009. msgid "Batman Interface"
  1010. msgstr ""
  1011. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:81
  1012. msgid ""
  1013. "Batman-adv has a built-in layer 2 fragmentation for unicast data flowing "
  1014. "through the mesh which will allow to run batman-adv over interfaces / "
  1015. "connections that don't allow to increase the MTU beyond the standard "
  1016. "Ethernet packet size of 1500 bytes. When the fragmentation is enabled batman-"
  1017. "adv will automatically fragment over-sized packets and defragment them on "
  1018. "the other end. Per default fragmentation is enabled and inactive if the "
  1019. "packet fits but it is possible to deactivate the fragmentation entirely."
  1020. msgstr ""
  1021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  1022. msgid "Beacon Interval"
  1023. msgstr "ビーコン間隔"
  1024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  1025. msgid "Beacon Report"
  1026. msgstr ""
  1027. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352
  1028. msgid ""
  1029. "Below is the determined list of files to backup. It consists of changed "
  1030. "configuration files marked by opkg, essential base files and the user "
  1031. "defined backup patterns."
  1032. msgstr ""
  1033. "以下は、バックアップの際に含まれるファイルのリストです。このリストは、変更が"
  1034. "opkgに認識されている設定ファイル、重要な基本ファイル、ユーザーが設定したパ"
  1035. "ターンに一致したファイルの一覧です。"
  1036. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:287
  1037. msgid "Bind NTP server"
  1038. msgstr ""
  1039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337
  1040. msgid "Bind dynamically to interfaces rather than wildcard address."
  1041. msgstr ""
  1042. "ワイルドカードアドレスよりもインターフェースへ動的にバインド(Linuxのデフォル"
  1043. "トとして推奨)"
  1044. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1045. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1046. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1047. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1048. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1049. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1050. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1051. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1052. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1053. msgid "Bind interface"
  1054. msgstr "インターフェースをバインド"
  1055. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:676
  1056. msgid ""
  1057. "Bind service records to a domain name: specify the location of services."
  1058. msgstr ""
  1059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:637
  1060. msgid ""
  1061. "Bind service records to a domain name: specify the location of services. See "
  1062. "<a href=\"%s\">RFC2782</a>."
  1063. msgstr ""
  1064. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  1065. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  1066. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  1067. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  1068. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  1069. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:142
  1070. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:59
  1071. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  1072. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  1073. msgid "Bind the tunnel to this interface (optional)."
  1074. msgstr "トンネルをこのインターフェースにバインド(オプション)。"
  1075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  1076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  1077. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  1078. msgid "Bitrate"
  1079. msgstr "ビットレート"
  1080. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:65
  1081. msgid "Bonding Mode"
  1082. msgstr ""
  1083. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:201
  1084. msgid "Bonding Policy"
  1085. msgstr "ボンディングポリシー"
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:404
  1087. msgid "Both \"Relay from\" and \"Relay to address\" must be specified."
  1088. msgstr ""
  1089. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1090. #: modules/luci-compat/luasrc/model/network.lua:1421
  1091. msgid "Bridge"
  1092. msgstr "ブリッジ"
  1093. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:491
  1094. msgctxt "MACVLAN mode"
  1095. msgid "Bridge (Support direct communication between MAC VLANs)"
  1096. msgstr "ブリッジ(MAC ベース VLAN間の直接通信をサポート)"
  1097. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:393
  1098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:498
  1099. msgid "Bridge VLAN filtering"
  1100. msgstr "ブリッジ VLAN フィルタリング"
  1101. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:398
  1102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469
  1103. msgid "Bridge device"
  1104. msgstr "ブリッジ デバイス"
  1105. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:392
  1106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:497
  1107. msgid "Bridge port specific options"
  1108. msgstr "ブリッジ ポート用オプション"
  1109. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  1110. msgid "Bridge ports"
  1111. msgstr "ブリッジ ポート"
  1112. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:641
  1113. msgid "Bridge traffic table \"%h\""
  1114. msgstr ""
  1115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1640
  1116. msgid "Bridge unit number"
  1117. msgstr "ブリッジユニット番号"
  1118. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1119. msgid "Bring up empty bridge"
  1120. msgstr "空のブリッジを起動"
  1121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:592
  1122. msgid "Bring up on boot"
  1123. msgstr "ブート時に起動"
  1124. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:558
  1125. msgid "Bring up the bridge interface even if no ports are attached"
  1126. msgstr "ポートがアタッチされていなくてもブリッジ インターフェースを起動します"
  1127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:940
  1128. msgid "Broadcast"
  1129. msgstr ""
  1130. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  1131. msgid "Broadcast policy (broadcast, 3)"
  1132. msgstr "ブロードキャストポリシー(broadcast、3)"
  1133. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2869
  1134. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4207
  1135. msgid "Browse…"
  1136. msgstr "参照…"
  1137. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:40
  1138. msgid "Buffered"
  1139. msgstr "バッファ済み"
  1140. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:130
  1141. msgid ""
  1142. "CA certificate (PEM encoded; Use instead of system-wide store to verify the "
  1143. "gateway certificate."
  1144. msgstr ""
  1145. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:182
  1146. msgid "CA certificate; if empty it will be saved after the first connection."
  1147. msgstr "CA証明書(空白の場合、最初の接続後に保存されます。)"
  1148. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:79
  1149. msgid "CHAP"
  1150. msgstr ""
  1151. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  1152. msgid "CLAT configuration failed"
  1153. msgstr "CLATの構成に失敗しました"
  1154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265
  1155. msgid "CNAME"
  1156. msgstr ""
  1157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  1158. msgid "CNAME or fqdn"
  1159. msgstr ""
  1160. #: protocols/luci-proto-cni/htdocs/luci-static/resources/protocol/cni.js:6
  1161. msgid "CNI (Externally managed interface)"
  1162. msgstr ""
  1163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  1164. msgid "CPU usage (%)"
  1165. msgstr "CPU使用率(%)"
  1166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:43
  1167. msgid "Cached"
  1168. msgstr "キャッシュ済"
  1169. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  1170. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  1171. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  1172. msgid "Call failed"
  1173. msgstr "呼び出しに失敗しました"
  1174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:469
  1175. msgid ""
  1176. "Can be useful if ISP has IPv6 nameservers but does not provide IPv6 routing."
  1177. msgstr ""
  1178. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2957
  1179. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4216
  1180. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4705
  1181. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  1182. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  1183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  1184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1201
  1185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2140
  1186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  1187. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295
  1188. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209
  1189. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:485
  1190. msgid "Cancel"
  1191. msgstr "キャンセル"
  1192. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:347
  1193. msgid "Cannot parse configuration: %s"
  1194. msgstr ""
  1195. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:568
  1196. msgctxt "Chain hook: forward"
  1197. msgid "Capture incoming packets addressed to other hosts"
  1198. msgstr ""
  1199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:560
  1200. msgctxt "Chain hook: prerouting"
  1201. msgid "Capture incoming packets before any routing decision"
  1202. msgstr ""
  1203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:564
  1204. msgctxt "Chain hook: input"
  1205. msgid "Capture incoming packets routed to the local system"
  1206. msgstr ""
  1207. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:576
  1208. msgctxt "Chain hook: postrouting"
  1209. msgid "Capture outgoing packets after any routing decision"
  1210. msgstr ""
  1211. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:572
  1212. msgctxt "Chain hook: output"
  1213. msgid "Capture outgoing packets originating from the local system"
  1214. msgstr ""
  1215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:556
  1216. msgctxt "Chain hook: ingress"
  1217. msgid "Capture packets directly after the NIC received them"
  1218. msgstr ""
  1219. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  1220. msgid "Category"
  1221. msgstr "カテゴリー"
  1222. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:114
  1223. msgid "Cell ID"
  1224. msgstr ""
  1225. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:113
  1226. msgid "Cell Location"
  1227. msgstr ""
  1228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1229. msgid "Certificate constraint (Domain)"
  1230. msgstr "証明書制限(ドメイン)"
  1231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1232. msgid "Certificate constraint (SAN)"
  1233. msgstr "証明書制限(SAN)"
  1234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1235. msgid "Certificate constraint (Subject)"
  1236. msgstr "証明書制限(サブジェクト)"
  1237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1238. msgid "Certificate constraint (Wildcard)"
  1239. msgstr "証明書制限(ワイルドカード)"
  1240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1684
  1241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  1242. msgid ""
  1243. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  1244. "`logread -f` during handshake for actual values"
  1245. msgstr ""
  1246. "証明書制限の一部(例: /CN=wifi.mycompany.com)<br />実際の値については、ハン"
  1247. "ドシェイク中に`logread -f`で確認してください"
  1248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  1249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  1250. msgid ""
  1251. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1252. "Subject CN (exact match)"
  1253. msgstr ""
  1254. "DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(完"
  1255. "全一致)"
  1256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1693
  1257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  1258. msgid ""
  1259. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  1260. "Subject CN (suffix match)"
  1261. msgstr ""
  1262. "DNS SAN値に対する証明書の制限(使用可能な場合)<br />またはサブジェクトCN(サ"
  1263. "フィックス一致)"
  1264. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1687
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  1266. msgid ""
  1267. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  1268. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  1269. msgstr ""
  1270. "サブジェクト代替名によって証明書の制限を行います<br />(サポートされる属性: "
  1271. "EMAIL, DNS, URI(例: DNS:wifi.mycompany.com))"
  1272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  1273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  1274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  1275. msgid "Chain"
  1276. msgstr "チェイン"
  1277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:580
  1278. msgctxt "Yet unknown nftables chain hook"
  1279. msgid "Chain hook \"%h\""
  1280. msgstr ""
  1281. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1282. msgid "Changes"
  1283. msgstr "変更"
  1284. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4775
  1285. msgid "Changes have been reverted."
  1286. msgstr "変更は取り消されました。"
  1287. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  1288. msgid "Changes the administrator password for accessing the device"
  1289. msgstr "デバイスにアクセスするための管理者パスワードを変更"
  1290. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:504
  1294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1839
  1295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:402
  1296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  1297. msgid "Channel"
  1298. msgstr "チャンネル"
  1299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:368
  1300. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:105
  1301. msgid "Channel Analysis"
  1302. msgstr "チャネル分析"
  1303. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:403
  1304. msgid "Channel Width"
  1305. msgstr "チャネル幅"
  1306. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1307. msgid "Check filesystems before mount"
  1308. msgstr "マウント前にファイルシステムをチェック"
  1309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  1310. msgid "Check this option to delete the existing networks from this radio."
  1311. msgstr ""
  1312. "この無線から既存のネットワークを削除する場合、このオプションを有効にしてくだ"
  1313. "さい。"
  1314. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1315. msgid "Checking archive…"
  1316. msgstr "アーカイブのチェック中…"
  1317. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1319. msgid "Checking image…"
  1320. msgstr "イメージのチェック中…"
  1321. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:427
  1322. msgid "Choose mtdblock"
  1323. msgstr "mtdblockを選択"
  1324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1326. msgid ""
  1327. "Choose the firewall zone you want to assign to this interface. Select "
  1328. "<em>unspecified</em> to remove the interface from the associated zone or "
  1329. "fill out the <em>custom</em> field to define a new zone and attach the "
  1330. "interface to it."
  1331. msgstr ""
  1332. "このインターフェースに割り当てるファイアウォールゾーンを選択してください。"
  1333. "<em>設定しない</em>を選択すると、割り当てられたゾーンを削除します。<em>カスタ"
  1334. "ム</em>フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインター"
  1335. "フェースを追加します。"
  1336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  1337. msgid ""
  1338. "Choose the network(s) you want to attach to this wireless interface or fill "
  1339. "out the <em>custom</em> field to define a new network."
  1340. msgstr ""
  1341. "この無線インターフェースを追加するネットワークを選択してください。<em>カスタ"
  1342. "ム</em>フィールドにネットワーク名を入力すると新規ネットワークを作成します。"
  1343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  1344. msgid "Cipher"
  1345. msgstr "暗号"
  1346. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1347. msgid "Cisco UDP encapsulation"
  1348. msgstr "Cisco UDPカプセル化"
  1349. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:391
  1350. msgid ""
  1351. "Click \"Generate archive\" to download a tar archive of the current "
  1352. "configuration files."
  1353. msgstr ""
  1354. "\"アーカイブを生成\"をクリックすると、現在の設定ファイルをtar形式のアーカイブ"
  1355. "ファイルとしてダウンロードします。"
  1356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1357. msgid ""
  1358. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1359. "FEATURE IS FOR PROFESSIONALS! )"
  1360. msgstr ""
  1361. "\"mtdblockを保存\"をクリックすると、指定したmtdblockファイルをダウンロードし"
  1362. "ます。(注意: この機能はプロ向けです!)"
  1363. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  1364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  1365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  1366. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:88
  1367. msgid "Client"
  1368. msgstr "クライアント"
  1369. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1370. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1371. msgid "Client ID to send when requesting DHCP"
  1372. msgstr "DHCPリクエスト時に送信するクライアントID"
  1373. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4453
  1374. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179
  1376. msgid "Close"
  1377. msgstr "閉じる"
  1378. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  1379. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1380. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1381. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1382. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1383. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1384. msgid ""
  1385. "Close inactive connection after the given amount of seconds, use 0 to "
  1386. "persist connection"
  1387. msgstr ""
  1388. "設定した秒数後に、非アクティブな接続を閉じます。0を設定した場合、接続を維持し"
  1389. "ます"
  1390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44
  1391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63
  1392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2264
  1393. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1396. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:66
  1397. msgid "Collecting data..."
  1398. msgstr "データを収集中..."
  1399. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:250
  1400. msgid "Collisions seen"
  1401. msgstr ""
  1402. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1403. msgid "Command"
  1404. msgstr "コマンド"
  1405. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1406. msgid "Command OK"
  1407. msgstr "コマンドOK"
  1408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1409. msgid "Command failed"
  1410. msgstr "コマンド実行失敗"
  1411. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1412. msgid "Comment"
  1413. msgstr "コメント"
  1414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  1415. msgid ""
  1416. "Complicates key reinstallation attacks on the client side by disabling "
  1417. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1418. "workaround might cause interoperability issues and reduced robustness of key "
  1419. "negotiation especially in environments with heavy traffic load."
  1420. msgstr ""
  1421. "キーのインストールに使用されるEAPOLキーフレームの再送信を無効化することによ"
  1422. "り、クライアント側のKey Reinstallation Attacks(KRACK)を困難にします。これは"
  1423. "互換性の問題を発生させたり、主に高負荷のトラフィック環境下におけるキーネゴシ"
  1424. "エーションの信頼性低下の原因になることがあります。"
  1425. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1426. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1427. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1428. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1429. msgid "Compute outgoing checksum (optional)."
  1430. msgstr "送信チェックサムを計算します(オプション)。"
  1431. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  1432. msgid "Config File"
  1433. msgstr ""
  1434. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4436
  1435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  1436. msgid "Configuration"
  1437. msgstr "設定"
  1438. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:690
  1439. msgid "Configuration Export"
  1440. msgstr ""
  1441. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4624
  1442. msgid "Configuration changes applied."
  1443. msgstr "設定が適用されました。"
  1444. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4562
  1445. msgid "Configuration changes have been rolled back!"
  1446. msgstr "設定がロールバックされました!"
  1447. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1448. msgid "Configuration failed"
  1449. msgstr "設定に失敗しました"
  1450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1451. #, fuzzy
  1452. msgid ""
  1453. "Configures data rates based on the coverage cell density. Normal configures "
  1454. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1455. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1456. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1457. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1458. "offered."
  1459. msgstr ""
  1460. "通話エリアの密度に基づいてデータレートを設定します。密度が通常の場合、従来の"
  1461. "802.11bレートが5.5、11Mbps以外で使用されていない場合に基本レートを6、12、"
  1462. "24Mbpsに設定します。密度が高い場合、従来の802.11bレートが11Mbps以外で使用され"
  1463. "ていない場合に基本レートを12、24Mbpsに設定します。密度がとても高い場合、基本"
  1464. "レートを24Mbpsに設定します。サポートされているレートが最小の基本レートよりも"
  1465. "低い場合は提供されません。"
  1466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:815
  1467. msgid ""
  1468. "Configures the default router advertisement in <abbr title=\"Router "
  1469. "Advertisement\">RA</abbr> messages."
  1470. msgstr ""
  1471. "<abbr title=\"Router Advertisement\">RA</abbr> メッセージ内の既定のルーター広"
  1472. "告を設定します。"
  1473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:804
  1474. msgid ""
  1475. "Configures the operation mode of the <abbr title=\"Router "
  1476. "Advertisement\">RA</abbr> service on this interface."
  1477. msgstr ""
  1478. "このデバイスにおける <abbr title=\"Router Advertisement\">RA</abbr> サービス"
  1479. "の動作モードを設定します。"
  1480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:926
  1481. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1482. msgstr "このデバイスにおける DHCPv6 サービスの動作モードを設定します。"
  1483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:962
  1484. msgid ""
  1485. "Configures the operation mode of the NDP proxy service on this interface."
  1486. msgstr "このデバイスにおける NDP プロキシーサービスの動作モードを設定します。"
  1487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1357
  1488. msgid "Configure…"
  1489. msgstr "設定…"
  1490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1491. msgid "Confirm disconnect"
  1492. msgstr "切断の確認"
  1493. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1494. msgid "Confirmation"
  1495. msgstr "確認"
  1496. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  1497. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:101
  1498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  1500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1501. msgid "Connected"
  1502. msgstr "接続中"
  1503. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1504. #: modules/luci-compat/luasrc/model/network.lua:27
  1505. msgid "Connection attempt failed"
  1506. msgstr "接続の試行に失敗しました"
  1507. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:8
  1508. msgid "Connection attempt failed."
  1509. msgstr "接続の試行に失敗しました。"
  1510. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  1511. msgid "Connection endpoint"
  1512. msgstr ""
  1513. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1514. msgid "Connection lost"
  1515. msgstr "接続が失われました"
  1516. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:160
  1517. msgid "Connections"
  1518. msgstr "接続数"
  1519. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4698
  1520. msgid "Connectivity change"
  1521. msgstr ""
  1522. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:31
  1523. msgctxt "nft ct state"
  1524. msgid "Conntrack state"
  1525. msgstr ""
  1526. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:33
  1527. msgctxt "nft ct status"
  1528. msgid "Conntrack status"
  1529. msgstr ""
  1530. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:378
  1531. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1532. msgstr "すべてのARP IPターゲットが到達可能な場合に、スレーブと見なす(all、1)"
  1533. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1534. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1535. msgstr "任意のARP IPターゲットが到達可能な場合に、スレーブと見なす(any、0)"
  1536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:368
  1538. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1539. msgid "Contents have been saved."
  1540. msgstr "内容が保存されました。"
  1541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:416
  1542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:450
  1543. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  1544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:269
  1546. msgid "Continue"
  1547. msgstr "続行"
  1548. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:97
  1549. msgctxt "nft jump action"
  1550. msgid "Continue in <strong><a href=\"#%q.%q\">%h</a></strong>"
  1551. msgstr ""
  1552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:129
  1553. msgid "Continue in calling chain"
  1554. msgstr ""
  1555. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:550
  1556. msgctxt "Chain policy: accept"
  1557. msgid "Continue processing unmatched packets"
  1558. msgstr ""
  1559. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4598
  1560. msgid ""
  1561. "Could not regain access to the device after applying the configuration "
  1562. "changes. You might need to reconnect if you modified network related "
  1563. "settings such as the IP address or wireless security credentials."
  1564. msgstr ""
  1565. "設定の変更を適用後、デバイスに再接続できませんでした。IPアドレスや無線のセ"
  1566. "キュリティ認証情報などのネットワーク関連の設定を変更した場合、手動で再接続す"
  1567. "る必要があるかもしれません。"
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1569. msgid "Country"
  1570. msgstr "国"
  1571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:944
  1572. msgid "Country Code"
  1573. msgstr "国コード"
  1574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947
  1575. msgid "Coverage cell density"
  1576. msgstr "通信エリアの密度"
  1577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:597
  1578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2130
  1579. msgid "Create / Assign firewall-zone"
  1580. msgstr "ファイアウォールゾーンの作成または割り当て"
  1581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1233
  1582. msgid "Create interface"
  1583. msgstr "インターフェースを作成"
  1584. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:191
  1585. msgid "Critical"
  1586. msgstr "重大"
  1587. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:195
  1588. msgid "Cron Log Level"
  1589. msgstr "Cronログレベル"
  1590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:584
  1591. msgid "Current power"
  1592. msgstr "現在の出力"
  1593. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:28
  1594. msgctxt "nft meta hour"
  1595. msgid "Current time"
  1596. msgstr ""
  1597. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:29
  1598. msgctxt "nft meta day"
  1599. msgid "Current weekday"
  1600. msgstr ""
  1601. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:573
  1602. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:575
  1603. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1604. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1605. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1606. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1607. msgid "Custom Interface"
  1608. msgstr "カスタマイズされたインターフェース"
  1609. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  1610. msgid ""
  1611. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1612. "this, perform a factory-reset first."
  1613. msgstr ""
  1614. "カスタムファイル(証明書、スクリプト)がシステムに残ることがあります。これを"
  1615. "防ぐには、最初に初期化を行ってください。"
  1616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1617. msgid "Custom flash interval (kernel: timer)"
  1618. msgstr "任意の点滅間隔(kernel: timer)"
  1619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1620. msgid ""
  1621. "Customizes the behaviour of the device <abbr title=\"Light Emitting "
  1622. "Diode\">LED</abbr>s if possible."
  1623. msgstr ""
  1624. "デバイスの<abbr title=\"Light Emitting Diode\">LED</abbr>の動作をカスタマイズ"
  1625. "します(デバイスが対応している場合)。"
  1626. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:741
  1627. msgid "DAD transmits"
  1628. msgstr ""
  1629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  1630. msgid "DAE-Client"
  1631. msgstr "DAEクライアント"
  1632. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  1633. msgid "DAE-Port"
  1634. msgstr "DAEポート"
  1635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  1636. msgid "DAE-Secret"
  1637. msgstr "DAEシークレット"
  1638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611
  1639. msgid "DHCP Options"
  1640. msgstr ""
  1641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:500
  1642. msgid "DHCP Server"
  1643. msgstr "DHCPサーバー"
  1644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:249
  1645. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:62
  1646. msgid "DHCP and DNS"
  1647. msgstr "DHCPおよびDNS"
  1648. #: modules/luci-base/htdocs/luci-static/resources/network.js:2091
  1649. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1650. #: modules/luci-compat/luasrc/model/network.lua:969
  1651. msgid "DHCP client"
  1652. msgstr "DHCPクライアント"
  1653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1654. msgid "DHCP-Options"
  1655. msgstr "DHCPオプション"
  1656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  1657. msgid ""
  1658. "DHCPv4 <code>leasetime</code> is used as limit and preferred lifetime of the "
  1659. "IPv6 prefix."
  1660. msgstr ""
  1661. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1662. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1663. msgid "DHCPv6 client"
  1664. msgstr "DHCPv6クライアント"
  1665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:925
  1666. msgid "DHCPv6-Service"
  1667. msgstr "DHCPv6-サービス"
  1668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1669. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1670. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1671. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1672. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1673. msgid "DNS"
  1674. msgstr "DNS"
  1675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290
  1676. msgid "DNS forwardings"
  1677. msgstr "DNSフォワーディング"
  1678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  1679. msgid "DNS query port"
  1680. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> クエリポート"
  1681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1008
  1682. msgid "DNS search domains"
  1683. msgstr "DNS 検索ドメイン"
  1684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524
  1685. msgid "DNS server port"
  1686. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> サーバーポート"
  1687. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:292
  1688. msgid "DNS setting is invalid"
  1689. msgstr ""
  1690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  1691. msgid "DNS weight"
  1692. msgstr "DNS ウェイト"
  1693. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1694. msgid "DNS-Label / FQDN"
  1695. msgstr "DNS-ラベル / FQDN"
  1696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483
  1697. msgid "DNSSEC"
  1698. msgstr "DNSSEC"
  1699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:488
  1700. msgid "DNSSEC check unsigned"
  1701. msgstr "DNSSEC未署名チェック"
  1702. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1703. msgid "DPD Idle Timeout"
  1704. msgstr "DPDアイドルタイムアウト"
  1705. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1706. msgid "DS-Lite AFTR address"
  1707. msgstr "DS-Lite AFTRアドレス"
  1708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1543
  1709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  1710. msgid "DSL"
  1711. msgstr "DSL"
  1712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1713. msgid "DSL Status"
  1714. msgstr "DSLステータス"
  1715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1582
  1716. msgid "DSL line mode"
  1717. msgstr "DSL回線モード"
  1718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1719. msgid "DTIM Interval"
  1720. msgstr "DTIM間隔"
  1721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59
  1722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:903
  1723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136
  1724. msgid "DUID"
  1725. msgstr "DUID"
  1726. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1727. msgid "Data Rate"
  1728. msgstr "データレート"
  1729. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:76
  1730. msgid "Data Received"
  1731. msgstr "受信済みデータ"
  1732. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:77
  1733. msgid "Data Transmitted"
  1734. msgstr "送信済みデータ"
  1735. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:186
  1736. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:197
  1737. msgid "Debug"
  1738. msgstr "デバッグ"
  1739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:814
  1740. msgid "Default router"
  1741. msgstr ""
  1742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:12
  1743. msgid "Default state"
  1744. msgstr "デフォルト状態"
  1745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  1746. msgid ""
  1747. "Define additional DHCP options, for example "
  1748. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1749. "servers to clients."
  1750. msgstr ""
  1751. "追加のDHCPオプションを設定します(例: クライアントに指定のDNSサーバーを通知す"
  1752. "るには、\"<code>6,192.168.2.1,192.168.2.2</code>\"と設定します)。"
  1753. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  1754. msgid ""
  1755. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1756. "but for outgoing frames"
  1757. msgstr ""
  1758. "Linux 内部パケット優先度から VLAN ヘッダー優先度フィールドへのマッピングを定"
  1759. "義します(送信フレーム用)"
  1760. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  1761. msgid ""
  1762. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1763. "priority on incoming frames"
  1764. msgstr ""
  1765. "VLAN ヘッダー優先度フィールドから Linux 内部パケット優先度へのマッピングを定"
  1766. "義します(受信フレーム用)"
  1767. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  1768. msgid "Defines a specific MTU for this route"
  1769. msgstr ""
  1770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  1771. msgid "Delegate IPv6 prefixes"
  1772. msgstr "IPv6 プレフィックスの委任"
  1773. #: modules/luci-base/htdocs/luci-static/resources/form.js:2310
  1774. #: modules/luci-base/htdocs/luci-static/resources/form.js:2740
  1775. #: modules/luci-base/htdocs/luci-static/resources/form.js:2744
  1776. #: modules/luci-base/htdocs/luci-static/resources/form.js:3571
  1777. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2926
  1778. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1779. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1780. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1781. msgid "Delete"
  1782. msgstr "削除"
  1783. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211
  1785. msgid "Delete key"
  1786. msgstr "鍵を削除"
  1787. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2828
  1788. msgid "Delete request failed: %s"
  1789. msgstr "削除の要求に失敗しました: %s"
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1791. msgid "Delete this network"
  1792. msgstr "このネットワークを削除"
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1169
  1794. msgid "Delivery Traffic Indication Message Interval"
  1795. msgstr "Delivery Traffic Indication Message(DTIM)間隔"
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:342
  1797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:139
  1798. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  1799. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:53
  1800. msgid "Description"
  1801. msgstr "説明"
  1802. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2922
  1803. msgid "Deselect"
  1804. msgstr "選択を解除"
  1805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:237
  1806. msgid "Design"
  1807. msgstr "デザイン"
  1808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:732
  1809. msgid "Designated master"
  1810. msgstr ""
  1811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  1812. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1813. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1814. msgid "Destination"
  1815. msgstr "宛先"
  1816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:44
  1817. msgctxt "nft ip daddr"
  1818. msgid "Destination IP"
  1819. msgstr ""
  1820. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:48
  1821. msgctxt "nft ip6 daddr"
  1822. msgid "Destination IPv6"
  1823. msgstr ""
  1824. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1825. msgid "Destination port"
  1826. msgstr "宛先ポート"
  1827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:46
  1828. msgctxt "nft ip dport"
  1829. msgid "Destination port"
  1830. msgstr ""
  1831. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1832. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1833. msgid "Destination zone"
  1834. msgstr "宛先ゾーン"
  1835. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1836. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  1837. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:586
  1841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1183
  1842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1485
  1843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1844. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:13
  1845. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:248
  1846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  1847. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:357
  1848. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  1849. msgid "Device"
  1850. msgstr "デバイス"
  1851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:913
  1852. msgid "Device Configuration"
  1853. msgstr "デバイス設定"
  1854. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:88
  1855. msgid "Device Identifier"
  1856. msgstr ""
  1857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1858. msgid "Device is not active"
  1859. msgstr "デバイスはアクティブではありません"
  1860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:650
  1862. msgid "Device is restarting…"
  1863. msgstr "デバイスを再起動中…"
  1864. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:495
  1865. msgid "Device name"
  1866. msgstr "デバイス名"
  1867. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:10
  1868. msgid "Device not managed by ModemManager."
  1869. msgstr "モデムマネージャーはデバイスを管理していません。"
  1870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  1871. msgid "Device not present"
  1872. msgstr "デバイスが存在しません"
  1873. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:395
  1874. msgid "Device type"
  1875. msgstr "デバイス タイプ"
  1876. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4597
  1877. msgid "Device unreachable!"
  1878. msgstr "デバイスにアクセスできません!"
  1879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1880. msgid "Device unreachable! Still waiting for device..."
  1881. msgstr "デバイスにアクセスできません!まだデバイスを待っています..."
  1882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1308
  1883. msgid "Devices"
  1884. msgstr "デバイス"
  1885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:159
  1886. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  1887. msgid "Diagnostics"
  1888. msgstr "診断"
  1889. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  1890. msgid "Dial number"
  1891. msgstr "ダイヤル番号"
  1892. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2724
  1893. msgid "Directory"
  1894. msgstr "ディレクトリ"
  1895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:114
  1896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:201
  1897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  1898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  1899. msgid "Disable"
  1900. msgstr "無効"
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1902. msgid ""
  1903. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1904. "this interface."
  1905. msgstr ""
  1906. "このインターフェースでの<abbr title=\"Dynamic Host Configuration "
  1907. "Protocol\">DHCP</abbr>を無効化。"
  1908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1910. msgid "Disable DNS lookups"
  1911. msgstr "DNS逆引きを無効化"
  1912. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1913. msgid "Disable Encryption"
  1914. msgstr "暗号化を無効化"
  1915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  1916. msgid "Disable Inactivity Polling"
  1917. msgstr "非アクティブ状態のポーリングを無効化"
  1918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  1919. msgid "Disable this network"
  1920. msgstr "このネットワークを無効化"
  1921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:948
  1922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1439
  1923. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1630
  1924. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1778
  1925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1927. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:121
  1928. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:108
  1929. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:117
  1930. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:114
  1931. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1932. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1933. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1934. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1935. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1936. msgid "Disabled"
  1937. msgstr "無効"
  1938. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:541
  1939. msgctxt "Label indicating that WireGuard peer is disabled"
  1940. msgid "Disabled"
  1941. msgstr "無効"
  1942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1193
  1943. #, fuzzy
  1944. msgid "Disassociate On Low Acknowledgement"
  1945. msgstr "確認応答が不安定な場合、接続解除"
  1946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:313
  1947. msgid ""
  1948. "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses."
  1949. msgstr "アップストリームのRFC1918応答を破棄します。"
  1950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:716
  1952. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:336
  1953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:351
  1954. msgid "Disconnect"
  1955. msgstr "切断"
  1956. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1957. msgid "Disconnection attempt failed"
  1958. msgstr "切断の試行に失敗しました"
  1959. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:13
  1960. msgid "Disconnection attempt failed."
  1961. msgstr "切断の試行に失敗しました。"
  1962. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35
  1963. msgid "Disk space"
  1964. msgstr "ディスク領域"
  1965. #: modules/luci-base/htdocs/luci-static/resources/form.js:611
  1966. #: modules/luci-base/htdocs/luci-static/resources/form.js:3022
  1967. #: modules/luci-base/htdocs/luci-static/resources/form.js:3269
  1968. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3715
  1969. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4568
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1864
  1971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  1972. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:45
  1973. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:66
  1974. msgid "Dismiss"
  1975. msgstr "閉じる"
  1976. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1977. msgid "Distance Optimization"
  1978. msgstr "距離最適化"
  1979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1980. msgid "Distance to farthest network member in meters."
  1981. msgstr "一番遠い端末との距離(メートル単位)。"
  1982. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:75
  1983. msgid "Distributed ARP Table"
  1984. msgstr ""
  1985. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:931
  1986. msgid ""
  1987. "Dnsmasq instance to which this DHCP host section is bound. If unspecified, "
  1988. "the section is valid for all dnsmasq instances."
  1989. msgstr ""
  1990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:629
  1991. msgid ""
  1992. "Dnsmasq instance to which this boot section is bound. If unspecified, the "
  1993. "section is valid for all dnsmasq instances."
  1994. msgstr ""
  1995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:250
  1996. msgid ""
  1997. "Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration "
  1998. "Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</"
  1999. "abbr> forwarder."
  2000. msgstr ""
  2001. "Dnsmasqは、<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2002. "サーバーと<abbr title=\"Network Address Translation\">NAT</abbr>ファイア"
  2003. "ウォールのための<abbr title=\"Domain Name System\">DNS</abbr>フォワーダーの両"
  2004. "方を提供します"
  2005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500
  2006. msgid "Do not cache negative replies, e.g. for non-existent domains."
  2007. msgstr "無効な応答をキャッシュしない(存在しないドメインからの応答など)"
  2008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  2009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  2010. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  2011. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  2012. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  2013. msgid "Do not create host route to peer (optional)."
  2014. msgstr "ピアへのホストルートを作成しない(オプション)。"
  2015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270
  2016. msgid "Do not forward DNS queries without dots or domain parts."
  2017. msgstr ""
  2018. "<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain "
  2019. "Name System\">DNS</abbr> リクエストを転送しない"
  2020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458
  2021. msgid "Do not forward reverse lookups for local networks."
  2022. msgstr "ローカルネットワークへの逆引きを転送しない"
  2023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350
  2024. msgid "Do not listen on the specified interfaces."
  2025. msgstr "これらのインターフェースでのリッスンを停止します。"
  2026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:928
  2027. msgid "Do not offer DHCPv6 service on this interface."
  2028. msgstr "このデバイスで DHCPv6 サービスを提供しません"
  2029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:964
  2030. msgid ""
  2031. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  2032. "packets."
  2033. msgstr ""
  2034. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  2035. msgid "Do not send a hostname"
  2036. msgstr "ホスト名を送信しない"
  2037. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:806
  2038. msgid ""
  2039. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  2040. "abbr> messages on this interface."
  2041. msgstr ""
  2042. "このインターフェースでは <abbr title=\"Router Advertisement, ICMPv6 Type "
  2043. "134\">RA</abbr> メッセージを送信しません"
  2044. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2814
  2045. msgid "Do you really want to delete \"%s\" ?"
  2046. msgstr "本当に\"%s\"を削除しますか?"
  2047. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206
  2048. msgid "Do you really want to delete the following SSH key?"
  2049. msgstr "本当に以下のSSH公開鍵を削除しますか?"
  2050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  2051. msgid "Do you really want to erase all settings?"
  2052. msgstr "本当にすべての設定を消去しますか?"
  2053. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  2054. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  2055. msgstr "本当にディレクトリ\"%s\"を再帰的に削除しますか?"
  2056. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:613
  2057. msgid "Do you want to replace the current PSK?"
  2058. msgstr ""
  2059. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:100
  2060. msgid "Do you want to replace the current keys?"
  2061. msgstr ""
  2062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:687
  2063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:713
  2064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:766
  2065. msgid "Domain"
  2066. msgstr ""
  2067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269
  2068. msgid "Domain required"
  2069. msgstr "ドメイン必須"
  2070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:322
  2071. msgid "Domain whitelist"
  2072. msgstr "ドメインホワイトリスト"
  2073. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2074. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2075. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2076. msgid "Don't Fragment"
  2077. msgstr "IPフラグメンテーションを行わない"
  2078. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  2079. msgid "Down"
  2080. msgstr "下へ"
  2081. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  2082. msgid "Down Delay"
  2083. msgstr "ダウンディレイ"
  2084. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  2085. msgid "Download backup"
  2086. msgstr "バックアップをダウンロード"
  2087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:432
  2088. msgid "Download mtdblock"
  2089. msgstr "mtdblockをダウンロード"
  2090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1587
  2091. msgid "Downstream SNR offset"
  2092. msgstr "下りSNRオフセット"
  2093. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:435
  2094. msgid ""
  2095. "Drag or paste a valid <em>*.conf</em> file below to configure the local "
  2096. "WireGuard interface."
  2097. msgstr ""
  2098. #: modules/luci-base/htdocs/luci-static/resources/form.js:2698
  2099. msgid "Drag to reorder"
  2100. msgstr "ドラッグして並び替え"
  2101. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  2102. msgid "Drop Duplicate Frames"
  2103. msgstr "重複フレームをドロップ"
  2104. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2105. msgid ""
  2106. "Drop all gratuitous ARP frames, for example if there’s a known good ARP "
  2107. "proxy on the network and such frames need not be used or in the case of "
  2108. "802.11, must not be used to prevent attacks."
  2109. msgstr ""
  2110. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2111. msgid ""
  2112. "Drop all unsolicited neighbor advertisements, for example if there’s a known "
  2113. "good NA proxy on the network and such frames need not be used or in the case "
  2114. "of 802.11, must not be used to prevent attacks."
  2115. msgstr ""
  2116. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:710
  2117. msgid "Drop gratuitous ARP"
  2118. msgstr ""
  2119. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2120. msgid "Drop layer 2 multicast frames containing IPv4 unicast packets."
  2121. msgstr ""
  2122. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2123. msgid "Drop layer 2 multicast frames containing IPv6 unicast packets."
  2124. msgstr ""
  2125. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:787
  2126. msgid "Drop nested IPv4 unicast"
  2127. msgstr ""
  2128. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:791
  2129. msgid "Drop nested IPv6 unicast"
  2130. msgstr ""
  2131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:96
  2132. msgctxt "nft drop action"
  2133. msgid "Drop packet"
  2134. msgstr ""
  2135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:546
  2136. msgctxt "Chain policy: drop"
  2137. msgid "Drop unmatched packets"
  2138. msgstr ""
  2139. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:733
  2140. msgid "Drop unsolicited NA"
  2141. msgstr ""
  2142. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  2143. msgid "Dropbear Instance"
  2144. msgstr "Dropbearインスタンス"
  2145. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  2146. msgid ""
  2147. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  2148. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  2149. msgstr ""
  2150. "Dropbearは<abbr title=\"Secure Shell\">SSH</abbr>ネットワークへのシェルアクセ"
  2151. "スと統合された<abbr title=\"Secure Copy\">SCP</abbr>サーバーを提供します"
  2152. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  2153. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  2154. msgid "Dual-Stack Lite (RFC6333)"
  2155. msgstr "Dual-Stack Lite (RFC6333)"
  2156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2157. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2158. msgstr "動的<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  2159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1468
  2160. msgid "Dynamic Authorization Extension client."
  2161. msgstr ""
  2162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1473
  2163. msgid "Dynamic Authorization Extension port."
  2164. msgstr ""
  2165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1479
  2166. msgid "Dynamic Authorization Extension secret."
  2167. msgstr ""
  2168. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2169. msgid "Dynamic tunnel"
  2170. msgstr "動的トンネル"
  2171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:700
  2172. msgid ""
  2173. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  2174. "having static leases will be served."
  2175. msgstr ""
  2176. "クライアントに対して動的にDHCPアドレスを割り振ります。無効化した場合、固定IP"
  2177. "アドレスが設定されたクライアントのみ接続できます。"
  2178. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  2179. msgid "E.g. <code>br-vlan</code> or <code>brvlan</code>."
  2180. msgstr ""
  2181. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  2182. msgid "E.g. eth0, eth1"
  2183. msgstr ""
  2184. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  2185. msgid "EA-bits length"
  2186. msgstr "EAビット長"
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1662
  2188. msgid "EAP-Method"
  2189. msgstr "EAPメソッド"
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  2191. msgid "Each STA is assigned its own AP_VLAN interface."
  2192. msgstr ""
  2193. #: modules/luci-base/htdocs/luci-static/resources/form.js:2718
  2194. #: modules/luci-base/htdocs/luci-static/resources/form.js:2721
  2195. #: modules/luci-base/htdocs/luci-static/resources/form.js:3434
  2196. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  2197. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  2198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  2199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  2200. msgid "Edit"
  2201. msgstr "編集"
  2202. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:226
  2203. msgid "Edit peer"
  2204. msgstr ""
  2205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:782
  2206. msgid "Edit static lease"
  2207. msgstr ""
  2208. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  2209. msgid ""
  2210. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  2211. "reload the page."
  2212. msgstr ""
  2213. "上記の設定データを編集してエラーを修正し、\"保存\"ボタンを押してページを再読"
  2214. "み込みしてください。"
  2215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  2216. msgid "Edit this network"
  2217. msgstr "このネットワークを編集"
  2218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:845
  2219. msgid "Edit wireless network"
  2220. msgstr "無線ネットワークを編集"
  2221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:65
  2222. msgctxt "nft rt mtu"
  2223. msgid "Effective route MTU"
  2224. msgstr ""
  2225. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:516
  2226. msgid "Egress QoS mapping"
  2227. msgstr "Egress QoS マッピング"
  2228. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:12
  2229. msgctxt "nft meta oif"
  2230. msgid "Egress device id"
  2231. msgstr ""
  2232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:10
  2233. msgctxt "nft meta oifname"
  2234. msgid "Egress device name"
  2235. msgstr ""
  2236. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:193
  2237. msgid "Emergency"
  2238. msgstr "緊急"
  2239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:891
  2240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:931
  2241. msgid "Enable"
  2242. msgstr "有効化"
  2243. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  2244. msgid "Enable / Disable peer. Restart wireguard interface to apply changes."
  2245. msgstr ""
  2246. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2247. msgid ""
  2248. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  2249. "snooping"
  2250. msgstr ""
  2251. "<abbr title=\"Internet Group Management Protocol\">IGMP</abbr>スヌーピングを"
  2252. "有効化"
  2253. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2254. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  2255. msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr>を有効化"
  2256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  2257. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  2258. msgstr ""
  2259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  2260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  2261. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  2262. msgid "Enable DNS lookups"
  2263. msgstr "DNS逆引きを有効化"
  2264. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:294
  2265. msgid "Enable Dynamic Shuffling Of Flows"
  2266. msgstr "フローの動的シャッフルを有効化"
  2267. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  2268. msgid "Enable HE.net dynamic endpoint update"
  2269. msgstr "HE.netの動的エンドポイント更新を有効化"
  2270. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:725
  2271. msgid "Enable IPv6"
  2272. msgstr "IPv6 を有効化"
  2273. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:101
  2274. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101
  2275. msgid "Enable IPv6 negotiation"
  2276. msgstr "IPv6ネゴシエーションを有効化"
  2277. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  2278. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  2279. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  2280. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  2281. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  2282. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  2283. msgid "Enable IPv6 negotiation on the PPP link"
  2284. msgstr "PPPリンクのIPv6ネゴシエーションを有効化"
  2285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:729
  2286. msgid "Enable IPv6 segment routing"
  2287. msgstr ""
  2288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:194
  2289. msgid "Enable Jumbo Frame passthrough"
  2290. msgstr "ジャンボフレームパススルーを有効化"
  2291. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:764
  2292. msgid "Enable MAC address learning"
  2293. msgstr "MAC アドレス学習を有効化"
  2294. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:257
  2295. msgid "Enable NTP client"
  2296. msgstr "NTPクライアントを有効化"
  2297. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2298. msgid "Enable Single DES"
  2299. msgstr "シングルDESを有効化"
  2300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:566
  2301. msgid "Enable TFTP server"
  2302. msgstr "TFTPサーバーを有効化"
  2303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:796
  2304. msgid "Enable VLAN filtering"
  2305. msgstr "VLAN フィルタリングを有効化"
  2306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  2307. msgid "Enable VLAN functionality"
  2308. msgstr "VLAN機能を有効化"
  2309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1814
  2310. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  2311. msgstr "WPSプッシュボタンを有効にします。WPA(2)-PSK/WPA3-SAEが必要です"
  2312. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  2313. msgid ""
  2314. "Enable automatic redirection of <abbr title=\"Hypertext Transfer "
  2315. "Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol "
  2316. "Secure\">HTTPS</abbr> port."
  2317. msgstr ""
  2318. "<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> リクエストの <abbr "
  2319. "title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ポートへの自動リダ"
  2320. "イレクトを有効にします。"
  2321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1036
  2322. msgid ""
  2323. "Enable downstream delegation of IPv6 prefixes available on this interface"
  2324. msgstr ""
  2325. "このデバイスで利用可能な IPv6 プレフィックスのダウンストリーム委任を有効にし"
  2326. "ます"
  2327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1810
  2328. msgid "Enable key reinstallation (KRACK) countermeasures"
  2329. msgstr "Key Reinstallation(KRACK)対策を有効化"
  2330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:189
  2331. #, fuzzy
  2332. msgid "Enable learning and aging"
  2333. msgstr "ラーニングエイジング機能を有効化"
  2334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:200
  2335. msgid "Enable mirroring of incoming packets"
  2336. msgstr "受信パケットのミラーリングを有効化"
  2337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  2338. msgid "Enable mirroring of outgoing packets"
  2339. msgstr "送信パケットのミラーリングを有効化"
  2340. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:783
  2341. msgid "Enable multicast fast leave"
  2342. msgstr "マルチキャスト高速脱退を有効化"
  2343. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:601
  2344. msgid "Enable multicast querier"
  2345. msgstr "マルチキャスト クエリアーを有効化"
  2346. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:747
  2347. msgid "Enable multicast support"
  2348. msgstr "マルチキャスト サポートを有効化"
  2349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  2350. msgid ""
  2351. "Enable packet steering across all CPUs. May help or hinder network speed."
  2352. msgstr ""
  2353. "すべてのCPUでパケットステアリングを有効にします。 ネットワーク速度を向上また"
  2354. "は低下させることがあります。"
  2355. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:676
  2356. msgid "Enable promiscuous mode"
  2357. msgstr "プロミスキャス モードを有効化"
  2358. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  2359. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  2360. msgid "Enable rx checksum"
  2361. msgstr "rxチェックサムを有効化"
  2362. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  2363. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  2364. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  2365. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  2366. msgid "Enable support for multicast traffic (optional)."
  2367. msgstr "マルチキャストトラフィックのサポートを有効化(オプション)。"
  2368. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  2369. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  2370. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  2371. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  2372. msgstr "カプセル化されたパケットの DF(Don't Fragment)フラグを有効にします。"
  2373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:567
  2374. msgid "Enable the built-in single-instance TFTP server."
  2375. msgstr "ビルトインの単一インスタンス TFTP サーバーを有効化します。"
  2376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:889
  2377. msgid "Enable this network"
  2378. msgstr "このネットワークを有効化"
  2379. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  2380. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  2381. msgid "Enable tx checksum"
  2382. msgstr "txチェックサムを有効化"
  2383. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:767
  2384. msgid "Enable unicast flooding"
  2385. msgstr "ユニキャスト フラッディングを有効化"
  2386. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1631
  2387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  2388. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:353
  2389. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  2390. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:109
  2391. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:118
  2392. msgid "Enabled"
  2393. msgstr "有効"
  2394. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:592
  2395. msgid "Enables IGMP snooping on this bridge"
  2396. msgstr "このブリッジのIGMPスヌーピングを有効化"
  2397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1551
  2398. msgid ""
  2399. "Enables fast roaming among access points that belong to the same Mobility "
  2400. "Domain"
  2401. msgstr "同じモビリティドメインを持つアクセスポイント間の高速ローミングを有効化"
  2402. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:100
  2403. msgid ""
  2404. "Enables more efficient, group aware multicast forwarding infrastructure in "
  2405. "batman-adv."
  2406. msgstr ""
  2407. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:572
  2408. msgid "Enables the Spanning Tree Protocol on this bridge"
  2409. msgstr "このブリッジのスパニングツリープロトコル(STP)を有効化"
  2410. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  2411. msgid "Encapsulation limit"
  2412. msgstr "カプセル化限度"
  2413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1577
  2414. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1635
  2415. msgid "Encapsulation mode"
  2416. msgstr "カプセル化モード"
  2417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  2418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  2419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1198
  2420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1842
  2421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:150
  2422. msgid "Encryption"
  2423. msgstr "暗号化"
  2424. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:55
  2425. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:75
  2426. msgid "Endpoint"
  2427. msgstr "エンドポイント"
  2428. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  2429. msgid "Endpoint Host"
  2430. msgstr "エンドポイントホスト"
  2431. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  2432. msgid "Endpoint Port"
  2433. msgstr "エンドポイントポート"
  2434. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:325
  2435. msgid "Endpoint setting is invalid"
  2436. msgstr ""
  2437. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:752
  2438. msgid "Enforce IGMPv1"
  2439. msgstr "IGMPv1 を強制"
  2440. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:753
  2441. msgid "Enforce IGMPv2"
  2442. msgstr "IGMPv2 を強制"
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:754
  2444. msgid "Enforce IGMPv3"
  2445. msgstr "IGMPv3 を強制"
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:759
  2447. msgid "Enforce MLD version 1"
  2448. msgstr "MLD バージョン1を強制"
  2449. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:760
  2450. msgid "Enforce MLD version 2"
  2451. msgstr "MLD バージョン2を強制"
  2452. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2453. msgid "Enter custom value"
  2454. msgstr "カスタム値を入力"
  2455. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  2456. msgid "Enter custom values"
  2457. msgstr "カスタム値を入力"
  2458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  2459. msgid "Erasing..."
  2460. msgstr "消去中..."
  2461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  2462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  2463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  2464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  2465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  2466. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190
  2467. msgid "Error"
  2468. msgstr "エラー"
  2469. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:170
  2470. msgid "Error getting PublicKey"
  2471. msgstr ""
  2472. #: modules/luci-base/htdocs/luci-static/resources/network.js:3008
  2473. #: modules/luci-compat/luasrc/model/network.lua:1433
  2474. msgid "Ethernet Adapter"
  2475. msgstr "イーサネットアダプタ"
  2476. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  2477. #: modules/luci-compat/luasrc/model/network.lua:1423
  2478. msgid "Ethernet Switch"
  2479. msgstr "イーサネットスイッチ"
  2480. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:272
  2481. msgid "Every 30 seconds (slow, 0)"
  2482. msgstr "30秒ごと(slow、0)"
  2483. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:273
  2484. msgid "Every second (fast, 1)"
  2485. msgstr "毎秒(fast、1)"
  2486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349
  2487. msgid "Exclude interfaces"
  2488. msgstr "除外するインターフェース"
  2489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:160
  2490. msgid ""
  2491. "Execution of various network commands to check the connection and name "
  2492. "resolution to other systems."
  2493. msgstr ""
  2494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  2495. msgid ""
  2496. "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, "
  2497. "e.g. for RBL services."
  2498. msgstr ""
  2499. "RBLサービスなどで使用される、上位サーバーからの特定範囲内(127.0.0.0/8)の応"
  2500. "答を許可"
  2501. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:410
  2502. msgid "Existing device"
  2503. msgstr "存在するデバイス"
  2504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  2505. msgid "Expand hosts"
  2506. msgstr "拡張ホスト"
  2507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399
  2508. msgid "Expected port number."
  2509. msgstr ""
  2510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1053
  2511. #, fuzzy
  2512. msgid "Expecting a hexadecimal assignment hint"
  2513. msgstr "16進数の割り当てヒントである必要があります"
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2515. msgid "Expecting a valid IPv4 address"
  2516. msgstr ""
  2517. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:19
  2518. msgid "Expecting a valid IPv6 address"
  2519. msgstr ""
  2520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:808
  2521. msgid "Expecting a valid MAC address, optionally including wildcards"
  2522. msgstr ""
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:29
  2524. msgid "Expecting two priority values separated by a colon"
  2525. msgstr "コロンで区切られた2つの優先度の値である必要があります"
  2526. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  2527. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  2528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  2529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  2532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  2535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  2536. msgid "Expecting: %s"
  2537. msgstr "%sである必要があります"
  2538. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:50
  2539. msgid "Expecting: non-empty value"
  2540. msgstr "空ではない値である必要があります"
  2541. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  2542. msgid "Expires"
  2543. msgstr "期限切れ"
  2544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  2545. msgid ""
  2546. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  2547. msgstr "リース期間は、最短で2分です(<code>2m</code>)。"
  2548. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  2549. msgid "External"
  2550. msgstr "外部"
  2551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  2552. msgid "External R0 Key Holder List"
  2553. msgstr "外部R0キーホルダーリスト"
  2554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  2555. msgid "External R1 Key Holder List"
  2556. msgstr "外部R1キーホルダーリスト"
  2557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  2558. msgid "External system log server"
  2559. msgstr "外部システムログサーバー"
  2560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  2561. msgid "External system log server port"
  2562. msgstr "外部システムログサーバーポート"
  2563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  2564. msgid "External system log server protocol"
  2565. msgstr "外部システムログサーバープロトコル"
  2566. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2567. msgid "Extra SSH command options"
  2568. msgstr "拡張SSHコマンドオプション"
  2569. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2570. msgid "Extra pppd options"
  2571. msgstr "追加のpppdオプション"
  2572. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2573. msgid "Extra sstpc options"
  2574. msgstr "追加のsstpcオプション"
  2575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  2576. msgid "FT over DS"
  2577. msgstr "FT over DS"
  2578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1576
  2579. msgid "FT over the Air"
  2580. msgstr "FT over the Air"
  2581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1574
  2582. msgid "FT protocol"
  2583. msgstr "FTプロトコル"
  2584. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:91
  2585. msgid "Failed Reason"
  2586. msgstr ""
  2587. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2588. msgid "Failed to change the system password."
  2589. msgstr "システムパスワードの変更に失敗しました。"
  2590. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  2591. msgid "Failed to configure modem"
  2592. msgstr ""
  2593. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4556
  2594. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2595. msgstr "%d秒以内に適用できませんでした。ロールバック中です…"
  2596. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  2597. msgid "Failed to connect"
  2598. msgstr ""
  2599. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2600. msgid "Failed to disconnect"
  2601. msgstr ""
  2602. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2603. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2604. msgstr "\"/etc/init.d/%s %s\"の実行に失敗しました: %s"
  2605. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2606. msgid "Failed to get modem information"
  2607. msgstr ""
  2608. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  2609. msgid "Failed to initialize modem"
  2610. msgstr ""
  2611. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:30
  2612. msgid "Failed to set operating mode"
  2613. msgstr ""
  2614. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2732
  2615. msgid "File"
  2616. msgstr "ファイル"
  2617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  2618. #, fuzzy
  2619. msgid ""
  2620. "File listing upstream resolvers, optionally domain-specific, e.g. "
  2621. "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>."
  2622. msgstr ""
  2623. "このファイルには、特定ドメインまたは全ドメインに対する上位<abbr "
  2624. "title=\"Domain Name System\">DNS</abbr>サーバーを指定するための、'server=/"
  2625. "domain/1.2.3.4'や'server=1.2.3.4'といった行が含まれることがあります。"
  2626. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2679
  2627. msgid "File not accessible"
  2628. msgstr "ファイルにアクセスできません"
  2629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424
  2630. msgid "File to store DHCP lease information."
  2631. msgstr ""
  2632. "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>リースが記録さ"
  2633. "れるファイル"
  2634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432
  2635. msgid "File with upstream resolvers."
  2636. msgstr "ローカル<abbr title=\"Domain Name System\">DNS</abbr>ファイル"
  2637. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2870
  2638. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593
  2639. msgid "Filename"
  2640. msgstr "ファイル名"
  2641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579
  2642. msgid "Filename of the boot image advertised to clients."
  2643. msgstr "クライアントに通知するブートイメージのファイル名"
  2644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2645. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:315
  2646. msgid "Filesystem"
  2647. msgstr "ファイルシステム"
  2648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473
  2649. msgid "Filter IPv4 A records"
  2650. msgstr ""
  2651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467
  2652. msgid "Filter IPv6 AAAA records"
  2653. msgstr ""
  2654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:462
  2655. msgid "Filter SRV/SOA service discovery"
  2656. msgstr ""
  2657. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457
  2658. msgid "Filter private"
  2659. msgstr "プライベートフィルター"
  2660. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2661. msgid "Filtering for all slaves, no validation"
  2662. msgstr "すべてのスレーブをフィルタリング(検証なし)"
  2663. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2664. msgid "Filtering for all slaves, validation only for active slave"
  2665. msgstr "すべてのスレーブをフィルタリング(アクティブなスレーブのみ検証)"
  2666. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:391
  2667. msgid "Filtering for all slaves, validation only for backup slaves"
  2668. msgstr "すべてのスレーブをフィルタリング(バックアップスレーブのみ検証)"
  2669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:463
  2670. msgid ""
  2671. "Filters SRV/SOA service discovery, to avoid triggering dial-on-demand links."
  2672. msgstr ""
  2673. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2674. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  2675. msgid "Finalizing failed"
  2676. msgstr "ファイナライズに失敗しました"
  2677. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2678. msgid ""
  2679. "Find all currently attached filesystems and swap and replace configuration "
  2680. "with defaults based on what was detected"
  2681. msgstr ""
  2682. "現在接続されているすべてのファイルシステムとスワップを検索し、検索結果に基づ"
  2683. "いてデフォルト設定に置き換える"
  2684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  2685. msgid "Find and join network"
  2686. msgstr "ネットワークの検索と参加"
  2687. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2688. msgid "Finish"
  2689. msgstr "終了"
  2690. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  2691. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:43
  2692. msgid "Firewall"
  2693. msgstr "ファイアウォール"
  2694. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  2695. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  2696. msgid "Firewall Mark"
  2697. msgstr "ファイアウォールマーク"
  2698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:499
  2699. msgid "Firewall Settings"
  2700. msgstr "ファイアウォール設定"
  2701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2702. msgid "Firewall Status"
  2703. msgstr "ファイアウォールステータス"
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  2705. msgid "Firewall mark"
  2706. msgstr ""
  2707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1594
  2708. msgid "Firmware File"
  2709. msgstr "ファームウェアファイル"
  2710. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  2711. msgid "Firmware Version"
  2712. msgstr "ファームウェア バージョン"
  2713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532
  2714. msgid "Fixed source port for outbound DNS queries."
  2715. msgstr "DNSクエリを送信する送信元ポートを固定"
  2716. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312
  2717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449
  2718. msgid "Flash image..."
  2719. msgstr "イメージファイルをフラッシュ..."
  2720. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:308
  2721. msgid "Flash image?"
  2722. msgstr "イメージファイルをフラッシュしますか?"
  2723. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439
  2724. msgid "Flash new firmware image"
  2725. msgstr "新しいファームウェアイメージをフラッシュ"
  2726. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:384
  2727. msgid "Flash operations"
  2728. msgstr "フラッシュ操作"
  2729. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:317
  2730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:319
  2731. msgid "Flashing…"
  2732. msgstr "フラッシュ中…"
  2733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:988
  2734. msgid "Follow IPv4 Lifetime"
  2735. msgstr ""
  2736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:623
  2737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2738. msgid "Force"
  2739. msgstr "強制"
  2740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:965
  2741. msgid "Force 40MHz mode"
  2742. msgstr "強制40MHzモード"
  2743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1239
  2744. msgid "Force CCMP (AES)"
  2745. msgstr "強制CCMP(AES)"
  2746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:703
  2747. msgid "Force DHCP on this network even if another server is detected."
  2748. msgstr ""
  2749. "別のDHCPサーバーが検出された場合でも、このネットワークのDHCPサーバー機能を強"
  2750. "制します。"
  2751. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:750
  2752. msgid "Force IGMP version"
  2753. msgstr "IGMP バージョンの強制"
  2754. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:757
  2755. msgid "Force MLD version"
  2756. msgstr "MLD バージョンの強制"
  2757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1240
  2758. msgid "Force TKIP"
  2759. msgstr "強制TKIP"
  2760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1241
  2761. msgid "Force TKIP and CCMP (AES)"
  2762. msgstr "強制TKIP及びCCMP(AES)"
  2763. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:941
  2764. msgid "Force broadcast DHCP response."
  2765. msgstr ""
  2766. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  2767. msgid "Force link"
  2768. msgstr "強制リンク"
  2769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2770. msgid "Force upgrade"
  2771. msgstr "強制アップグレード"
  2772. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2773. msgid "Force use of NAT-T"
  2774. msgstr "NAT-Tを強制的に使用"
  2775. #: modules/luci-base/ucode/template/csrftoken.ut:8
  2776. msgid "Form token mismatch"
  2777. msgstr "フォームトークンの不一致"
  2778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:966
  2779. msgid ""
  2780. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr "
  2781. "title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr "
  2782. "title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the "
  2783. "designated master interface and downstream interfaces."
  2784. msgstr ""
  2785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:810
  2786. msgid ""
  2787. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2788. "messages received on the designated master interface to downstream "
  2789. "interfaces."
  2790. msgstr ""
  2791. "マスターとして指定されたインターフェースで受信した <abbr title=\"Router "
  2792. "Advertisement, ICMPv6 Type 134\">RA</abbr> メッセージをダウンストリーム イン"
  2793. "ターフェースへ転送します"
  2794. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2795. msgid "Forward DHCP traffic"
  2796. msgstr "DHCPトラフィックを転送"
  2797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  2798. msgid ""
  2799. "Forward DHCPv6 messages between the designated master interface and "
  2800. "downstream interfaces."
  2801. msgstr ""
  2802. "マスターとして指定されたインターフェースとダウンストリーム インターフェースと"
  2803. "の間で DHCPv6 メッセージを転送します"
  2804. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2805. msgid "Forward broadcast traffic"
  2806. msgstr "ブロードキャストトラフィックを転送"
  2807. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  2808. msgid "Forward delay"
  2809. msgstr "転送遅延"
  2810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:993
  2811. msgid "Forward mesh peer traffic"
  2812. msgstr "メッシュピアトラフィックを転送"
  2813. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  2814. msgid "Forward multicast packets as unicast packets on this device."
  2815. msgstr ""
  2816. "このデバイス上では、マルチキャスト パケットをユニキャスト パケットとして転送"
  2817. "します。"
  2818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:944
  2819. msgid "Forward/reverse DNS"
  2820. msgstr ""
  2821. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1642
  2822. msgid "Forwarding mode"
  2823. msgstr "転送モード"
  2824. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:80
  2825. msgid "Fragmentation"
  2826. msgstr ""
  2827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957
  2828. msgid "Fragmentation Threshold"
  2829. msgstr "フラグメンテーションしきい値"
  2830. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:62
  2831. msgctxt "nft nat flag fully-random"
  2832. msgid "Full port randomization"
  2833. msgstr ""
  2834. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  2835. msgid ""
  2836. "Further information about WireGuard interfaces and peers at <a href='http://"
  2837. "wireguard.com'>wireguard.com</a>."
  2838. msgstr ""
  2839. "WireGuardインターフェースとピアについての詳細情報については<a href='http://"
  2840. "wireguard.com'>wireguard.com</a>を参照してください。"
  2841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2842. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2843. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:170
  2844. msgid "GHz"
  2845. msgstr "GHz"
  2846. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2847. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:82
  2848. msgid "GPRS only"
  2849. msgstr "GPRSのみ"
  2850. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2851. msgid "GRE tunnel over IPv4"
  2852. msgstr "IPv4上のGREトンネル"
  2853. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2854. msgid "GRE tunnel over IPv6"
  2855. msgstr "IPv6上のGREトンネル"
  2856. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2857. msgid "GRETAP tunnel over IPv4"
  2858. msgstr "IPv4上のGRETAPトンネル"
  2859. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2860. msgid "GRETAP tunnel over IPv6"
  2861. msgstr "IPv6上のGRETAPトンネル"
  2862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  2863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2864. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188
  2865. msgid "Gateway"
  2866. msgstr "ゲートウェイ"
  2867. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:85
  2868. msgid "Gateway Mode"
  2869. msgstr ""
  2870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2871. msgid "Gateway Ports"
  2872. msgstr "ゲートウェイポート"
  2873. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2874. #: modules/luci-compat/luasrc/model/network.lua:29
  2875. msgid "Gateway address is invalid"
  2876. msgstr "無効なゲートウェイアドレス"
  2877. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  2878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:494
  2879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38
  2880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127
  2881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:122
  2883. msgid "General Settings"
  2884. msgstr "一般設定"
  2885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649
  2886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1629
  2887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:917
  2888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:979
  2889. msgid "General Setup"
  2890. msgstr "一般設定"
  2891. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:390
  2892. msgid "General device options"
  2893. msgstr "デバイスの一般オプション"
  2894. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2895. msgid "Generate Config"
  2896. msgstr "設定を生成"
  2897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  2898. msgid "Generate PMK locally"
  2899. msgstr "ローカルでPMKを生成"
  2900. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:396
  2901. msgid "Generate archive"
  2902. msgstr "アーカイブを生成"
  2903. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:824
  2904. msgid "Generate configuration"
  2905. msgstr ""
  2906. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:864
  2907. msgid "Generate configuration…"
  2908. msgstr ""
  2909. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:109
  2910. msgid "Generate new key pair"
  2911. msgstr ""
  2912. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:621
  2913. msgid "Generate preshared key"
  2914. msgstr ""
  2915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:691
  2916. msgid "Generates a configuration suitable for import on a WireGuard peer"
  2917. msgstr ""
  2918. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:798
  2919. msgid "Generating QR code…"
  2920. msgstr ""
  2921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2922. msgid "Given password confirmation did not match, password not changed!"
  2923. msgstr ""
  2924. "入力された確認用パスワードが一致していません。パスワードは変更されませんでし"
  2925. "た!"
  2926. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2927. msgid "Global Settings"
  2928. msgstr "全体設定"
  2929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1531
  2930. msgid "Global network options"
  2931. msgstr "グローバルネットワークオプション"
  2932. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70
  2933. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:90
  2934. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:67
  2935. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92
  2936. msgid "Go to firmware upgrade..."
  2937. msgstr "ファームウェアのアップグレードへ移動..."
  2938. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60
  2939. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:80
  2940. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:57
  2941. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2942. msgid "Go to password configuration..."
  2943. msgstr "パスワード設定へ移動..."
  2944. #: modules/luci-base/htdocs/luci-static/resources/form.js:2640
  2945. #: modules/luci-base/htdocs/luci-static/resources/form.js:3753
  2946. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2947. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2948. msgid "Go to relevant configuration page"
  2949. msgstr "関連する設定ページへ移動"
  2950. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:39
  2951. msgid "Grant access to DHCP configuration"
  2952. msgstr "DHCP設定へのアクセスを許可"
  2953. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:23
  2954. msgid "Grant access to DHCP status display"
  2955. msgstr "DHCPステータス表示へのアクセスを許可"
  2956. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:32
  2957. msgid "Grant access to DSL status display"
  2958. msgstr "DSLステータス表示へのアクセスを許可"
  2959. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2960. msgid "Grant access to LuCI OpenConnect procedures"
  2961. msgstr "LuCI OpenConnectプロシージャへのアクセスを許可"
  2962. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2963. msgid "Grant access to LuCI Wireguard procedures"
  2964. msgstr "LuCI Wireguardプロシージャへのアクセスを許可"
  2965. #: protocols/luci-proto-openfortivpn/root/usr/share/rpcd/acl.d/luci-openfortivpn.json:3
  2966. msgid "Grant access to LuCI openfortivpn procedures"
  2967. msgstr ""
  2968. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:20
  2969. msgid "Grant access to SSH configuration"
  2970. msgstr "SSH設定へのアクセスを許可"
  2971. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2972. msgid "Grant access to basic LuCI procedures"
  2973. msgstr "基本的なLuCIプロシージャへのアクセスを許可"
  2974. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:79
  2975. msgid "Grant access to crontab configuration"
  2976. msgstr "crontab設定へのアクセスを許可"
  2977. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:70
  2978. msgid "Grant access to firewall status"
  2979. msgstr "ファイアウォールステータスへのアクセスを許可"
  2980. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:132
  2981. msgid "Grant access to flash operations"
  2982. msgstr "フラッシュ操作へのアクセスを許可"
  2983. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:3
  2984. msgid "Grant access to main status display"
  2985. msgstr "メインステータス表示へのアクセスを許可"
  2986. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2987. msgid "Grant access to mmcli"
  2988. msgstr "mmcliへのアクセスを許可"
  2989. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:100
  2990. msgid "Grant access to mount configuration"
  2991. msgstr "マウント設定へのアクセスを許可"
  2992. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2993. msgid "Grant access to network configuration"
  2994. msgstr "ネットワーク設定へのアクセスを許可"
  2995. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:52
  2996. msgid "Grant access to network diagnostic tools"
  2997. msgstr "ネットワーク診断ツールへのアクセスを許可"
  2998. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2999. msgid "Grant access to network status information"
  3000. msgstr "ネットワークステータス情報へのアクセスを許可"
  3001. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:41
  3002. msgid "Grant access to port status display"
  3003. msgstr ""
  3004. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  3005. msgid "Grant access to process status"
  3006. msgstr "プロセスステータスへのアクセスを許可"
  3007. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  3008. msgid "Grant access to realtime statistics"
  3009. msgstr "リアルタイム統計へのアクセスを許可"
  3010. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  3011. msgid "Grant access to routing status"
  3012. msgstr ""
  3013. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:57
  3014. msgid "Grant access to startup configuration"
  3015. msgstr "スタートアップ設定へのアクセスを許可"
  3016. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  3017. msgid "Grant access to system configuration"
  3018. msgstr "システム設定へのアクセスを許可"
  3019. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  3020. msgid "Grant access to system logs"
  3021. msgstr "システムログへのアクセスを許可"
  3022. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:43
  3023. msgid "Grant access to uHTTPd configuration"
  3024. msgstr ""
  3025. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:61
  3026. msgid "Grant access to wireless channel status"
  3027. msgstr ""
  3028. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status-index.json:50
  3029. msgid "Grant access to wireless status display"
  3030. msgstr "無線ステータス表示へのアクセスを許可"
  3031. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  3032. msgid "Group Password"
  3033. msgstr "グループパスワード"
  3034. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  3035. msgid "Guest"
  3036. msgstr "ゲスト"
  3037. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  3038. msgid "HE.net password"
  3039. msgstr "HE.netパスワード"
  3040. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  3041. msgid "HE.net username"
  3042. msgstr "HE.netユーザー名"
  3043. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  3044. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  3045. msgid "HTTP(S) Access"
  3046. msgstr "HTTP(S) アクセス"
  3047. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  3048. msgid "Hang Up"
  3049. msgstr "ハングアップ"
  3050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:6
  3051. msgid "Heartbeat interval (kernel: heartbeat)"
  3052. msgstr "ハートビート(kernel: heartbeat)"
  3053. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3054. msgid "Hello interval"
  3055. msgstr "ハロー間隔"
  3056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:114
  3057. msgid ""
  3058. "Here you can configure the basic aspects of your device like its hostname or "
  3059. "the timezone."
  3060. msgstr ""
  3061. "ここではホスト名やタイムゾーンなどのデバイスの基本的な設定をすることができま"
  3062. "す。"
  3063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  3064. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  3065. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>を非表示"
  3066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  3067. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  3068. msgid "Hide empty chains"
  3069. msgstr "空のチェインを非表示"
  3070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:950
  3071. msgid "High"
  3072. msgstr "高"
  3073. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  3074. msgid "Honor gratuitous ARP"
  3075. msgstr ""
  3076. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:593
  3077. msgctxt "Chain hook description"
  3078. msgid "Hook: <strong>%h</strong> (%h), Priority: <strong>%d</strong>"
  3079. msgstr ""
  3080. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:92
  3081. msgid "Hop Penalty"
  3082. msgstr ""
  3083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  3084. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2258
  3085. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:134
  3086. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:234
  3087. msgid "Host"
  3088. msgstr "ホスト"
  3089. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  3090. msgid "Host expiry timeout"
  3091. msgstr "ホスト有効期限タイムアウト"
  3092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  3093. msgid "Host requests this filename from the boot server."
  3094. msgstr ""
  3095. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  3096. msgid "Host-Uniq tag content"
  3097. msgstr "Host-Uniqタグコンテンツ"
  3098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:894
  3099. msgid ""
  3100. "Host-specific lease time, e.g. <code>5m</code>, <code>3h</code>, <code>7d</"
  3101. "code>."
  3102. msgstr ""
  3103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:732
  3105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:785
  3106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  3108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135
  3109. msgid "Hostname"
  3110. msgstr "ホスト名"
  3111. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  3112. msgid "Hostname to send when requesting DHCP"
  3113. msgstr "DHCPリクエスト時に送信するホスト名"
  3114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  3115. msgid "Hostnames"
  3116. msgstr "ホスト名"
  3117. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724
  3118. msgid ""
  3119. "Hostnames are used to bind a domain name to an IP address. This setting is "
  3120. "redundant for hostnames already configured with static leases, but it can be "
  3121. "useful to rebind an FQDN."
  3122. msgstr ""
  3123. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:19
  3124. msgid "How long (in milliseconds) the LED should be off"
  3125. msgstr "LED が消灯している長さ(ミリ秒)"
  3126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:13
  3127. msgid "How long (in milliseconds) the LED should be on"
  3128. msgstr "LED が点灯している長さ(ミリ秒)"
  3129. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  3130. msgid "Human-readable counters"
  3131. msgstr "Human-readable カウンター"
  3132. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  3133. msgid "Hybrid"
  3134. msgstr "ハイブリッド"
  3135. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49
  3136. msgctxt "nft icmp code"
  3137. msgid "ICMP code"
  3138. msgstr ""
  3139. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50
  3140. msgctxt "nft icmp type"
  3141. msgid "ICMP type"
  3142. msgstr ""
  3143. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51
  3144. msgctxt "nft icmpv6 code"
  3145. msgid "ICMPv6 code"
  3146. msgstr ""
  3147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:52
  3148. msgctxt "nft icmpv6 type"
  3149. msgid "ICMPv6 type"
  3150. msgstr ""
  3151. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  3152. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  3153. msgid "ID used to uniquely identify the VXLAN"
  3154. msgstr "VXLANの識別に使用されるID"
  3155. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  3156. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  3157. msgstr "IEEE 802.3adダイナミックリンクアグリゲーション(802.3ad、4)"
  3158. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  3159. msgid "IKE DH Group"
  3160. msgstr "IKE DHグループ"
  3161. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:86
  3162. msgid "IMEI"
  3163. msgstr ""
  3164. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  3165. msgid "IP Addresses"
  3166. msgstr "IPアドレス"
  3167. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  3168. msgid "IP Protocol"
  3169. msgstr "IPプロトコル"
  3170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261
  3171. msgid "IP Sets"
  3172. msgstr ""
  3173. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:136
  3174. msgid "IP Type"
  3175. msgstr "IPの種類"
  3176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736
  3177. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178
  3178. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204
  3179. msgid "IP address"
  3180. msgstr "IPアドレス"
  3181. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  3182. #: modules/luci-compat/luasrc/model/network.lua:28
  3183. msgid "IP address is invalid"
  3184. msgstr "無効なIPアドレスです"
  3185. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  3186. #: modules/luci-compat/luasrc/model/network.lua:31
  3187. msgid "IP address is missing"
  3188. msgstr "IPアドレスがありません"
  3189. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:781
  3190. msgid ""
  3191. "IP addresses that are allowed inside the tunnel. The peer will accept "
  3192. "tunnelled packets with source IP addresses matching this list and route back "
  3193. "packets with matching destination IP."
  3194. msgstr ""
  3195. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:36
  3196. msgctxt "nft ip protocol"
  3197. msgid "IP protocol"
  3198. msgstr ""
  3199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:14
  3200. msgctxt "nft meta l4proto"
  3201. msgid "IP protocol"
  3202. msgstr ""
  3203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:762
  3204. msgid "IP set"
  3205. msgstr ""
  3206. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306
  3207. msgid "IP sets"
  3208. msgstr ""
  3209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518
  3210. msgid "IPs to override with NXDOMAIN"
  3211. msgstr "本物でないNXドメインを上書き"
  3212. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9
  3213. msgid "IPsec XFRM"
  3214. msgstr ""
  3215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  3216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  3217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  3219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  3220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  3221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  3222. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:96
  3223. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  3224. msgid "IPv4"
  3225. msgstr "IPv4"
  3226. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  3227. msgid "IPv4 Firewall"
  3228. msgstr "IPv4ファイアウォール"
  3229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252
  3230. msgid "IPv4 Neighbours"
  3231. msgstr ""
  3232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251
  3233. msgid "IPv4 Routing"
  3234. msgstr "IPv4 ルーティング"
  3235. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3236. msgid "IPv4 Rules"
  3237. msgstr "IPv4 ルール"
  3238. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3239. msgid "IPv4 Upstream"
  3240. msgstr "IPv4アップストリーム"
  3241. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  3242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  3243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  3244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3245. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164
  3246. msgid "IPv4 address"
  3247. msgstr "IPv4アドレス"
  3248. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  3249. msgid "IPv4 assignment length"
  3250. msgstr "IPv4割り当て長"
  3251. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  3252. msgid "IPv4 broadcast"
  3253. msgstr "IPv4ブロードキャスト"
  3254. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  3255. msgid "IPv4 gateway"
  3256. msgstr "IPv4ゲートウェイ"
  3257. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  3258. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:170
  3259. msgid "IPv4 netmask"
  3260. msgstr "IPv4ネットマスク"
  3261. #: modules/luci-base/htdocs/luci-static/resources/validation.js:305
  3262. msgid "IPv4 network in address/netmask notation"
  3263. msgstr "IPv4ネットワーク(アドレス/ネットマスク表記)"
  3264. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:138
  3265. msgid "IPv4 only"
  3266. msgstr "IPv4のみ"
  3267. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  3268. msgid "IPv4 prefix"
  3269. msgstr "IPv4プレフィックス"
  3270. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  3271. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  3272. msgid "IPv4 prefix length"
  3273. msgstr "IPv4プレフィックス長"
  3274. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:625
  3275. msgid "IPv4 traffic table \"%h\""
  3276. msgstr ""
  3277. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  3278. msgid "IPv4+IPv6"
  3279. msgstr "IPv4+IPv6"
  3280. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  3281. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  3282. msgid "IPv4-in-IPv4 (RFC2003)"
  3283. msgstr "IPv4-in-IPv4(RFC2003)"
  3284. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:95
  3285. msgid "IPv4/IPv6"
  3286. msgstr ""
  3287. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:137
  3288. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  3289. msgstr "IPv4/IPv6(両方 - デフォルトはIPv4)"
  3290. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:633
  3291. msgid "IPv4/IPv6 traffic table \"%h\""
  3292. msgstr ""
  3293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  3294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  3295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  3296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  3297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  3298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  3299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  3300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  3301. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  3302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  3304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  3305. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:97
  3306. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  3307. msgid "IPv6"
  3308. msgstr "IPv6"
  3309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  3310. msgid "IPv6 Firewall"
  3311. msgstr "IPv6ファイアウォール"
  3312. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:737
  3313. msgid "IPv6 MTU"
  3314. msgstr ""
  3315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262
  3316. msgid "IPv6 Neighbours"
  3317. msgstr "IPv6隣接装置"
  3318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  3319. msgid "IPv6 Prefix Lifetime"
  3320. msgstr ""
  3321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:652
  3322. msgid "IPv6 RA Settings"
  3323. msgstr "IPv6 RA 設定"
  3324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:261
  3325. msgid "IPv6 Routing"
  3326. msgstr "IPv6 ルーティング"
  3327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:121
  3328. msgid "IPv6 Rules"
  3329. msgstr "IPv6 ルール"
  3330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:651
  3331. msgid "IPv6 Settings"
  3332. msgstr "IPv6設定"
  3333. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  3334. msgid "IPv6 ULA-Prefix"
  3335. msgstr "IPv6 ULAプレフィックス"
  3336. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  3337. msgid "IPv6 Upstream"
  3338. msgstr "IPv6アップストリーム"
  3339. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  3340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  3341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:135
  3342. msgid "IPv6 address"
  3343. msgstr "IPv6アドレス"
  3344. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1044
  3345. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  3346. msgid "IPv6 assignment hint"
  3347. msgstr "IPv6割り当てヒント"
  3348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1039
  3349. msgid "IPv6 assignment length"
  3350. msgstr "IPv6割り当て長"
  3351. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  3352. msgid "IPv6 gateway"
  3353. msgstr "IPv6ゲートウェイ"
  3354. #: modules/luci-base/htdocs/luci-static/resources/validation.js:310
  3355. msgid "IPv6 network in address/netmask notation"
  3356. msgstr "IPv6ネットワーク(アドレス/ネットマスク表記)"
  3357. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:139
  3358. msgid "IPv6 only"
  3359. msgstr "IPv6のみ"
  3360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  3361. msgid "IPv6 preference"
  3362. msgstr ""
  3363. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  3364. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  3365. msgid "IPv6 prefix"
  3366. msgstr "IPv6 プレフィックス"
  3367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3368. msgid "IPv6 prefix filter"
  3369. msgstr ""
  3370. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  3371. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  3372. msgid "IPv6 prefix length"
  3373. msgstr "IPv6プレフィックス長"
  3374. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  3375. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  3376. msgid "IPv6 routed prefix"
  3377. msgstr "IPv6ルートプレフィックス"
  3378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1032
  3379. msgid "IPv6 source routing"
  3380. msgstr ""
  3381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  3382. msgid "IPv6 suffix"
  3383. msgstr "IPv6サフィックス"
  3384. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3385. msgid "IPv6 support"
  3386. msgstr "IPv6サポート"
  3387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:629
  3388. msgid "IPv6 traffic table \"%h\""
  3389. msgstr ""
  3390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  3391. msgid "IPv6-PD"
  3392. msgstr "IPv6 PD"
  3393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:911
  3394. msgid "IPv6-Suffix (hex)"
  3395. msgstr ""
  3396. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  3397. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  3398. msgid "IPv6-in-IPv4 (RFC4213)"
  3399. msgstr "IPv6-in-IPv4(RFC4213)"
  3400. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  3401. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  3402. msgid "IPv6-over-IPv4 (6rd)"
  3403. msgstr "IPv6-over-IPv4(6rd)"
  3404. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  3405. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  3406. msgid "IPv6-over-IPv4 (6to4)"
  3407. msgstr "IPv6-over-IPv4(6to4)"
  3408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1764
  3409. msgid "Identity"
  3410. msgstr "識別子"
  3411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:923
  3412. msgid ""
  3413. "If a host matches an entry which cannot be used because it specifies an "
  3414. "address on a different subnet, the tag <em>known-othernet</em> is set."
  3415. msgstr ""
  3416. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  3417. msgid "If checked, 1DES is enabled"
  3418. msgstr "チェックを付けると、1DESが有効になります"
  3419. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  3420. msgid "If checked, adds \"+ipv6\" to the pppd options"
  3421. msgstr "チェックを付けると、pppdオプションに\"+ipv6\"が追加されます"
  3422. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  3423. msgid "If checked, encryption is disabled"
  3424. msgstr "チェックを付けると、暗号化が無効になります"
  3425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1061
  3426. msgid ""
  3427. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  3428. "classes."
  3429. msgstr ""
  3430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3431. msgid "If set, the meaning of the match options is inverted"
  3432. msgstr ""
  3433. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  3434. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  3435. msgid ""
  3436. "If specified, mount the device by its UUID instead of a fixed device node"
  3437. msgstr "固定のデバイスノード名のかわりに、そのUUIDを使用してマウント"
  3438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3439. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3440. msgid ""
  3441. "If specified, mount the device by the partition label instead of a fixed "
  3442. "device node"
  3443. msgstr ""
  3444. "固定のデバイスノード名のかわりに、パーティションラベルを使用してマウント"
  3445. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4700
  3446. msgid ""
  3447. "If the IP address used to access LuCI changes, a <strong>manual reconnect to "
  3448. "the new IP</strong> is required within %d seconds to confirm the settings, "
  3449. "otherwise modifications will be reverted."
  3450. msgstr ""
  3451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  3452. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:134
  3453. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  3454. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  3455. msgid "If unchecked, no default route is configured"
  3456. msgstr "チェックが付いていない場合、デフォルトルートは構成されません"
  3457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  3458. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:145
  3459. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  3460. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:133
  3461. msgid "If unchecked, the advertised DNS server addresses are ignored"
  3462. msgstr "チェックが付いていない場合、通知されたDNSサーバーアドレスを無視します"
  3463. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3464. msgid ""
  3465. "If your physical memory is insufficient unused data can be temporarily "
  3466. "swapped to a swap-device resulting in a higher amount of usable <abbr "
  3467. "title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a "
  3468. "very slow process as the swap-device cannot be accessed with the high "
  3469. "datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  3470. msgstr ""
  3471. "物理メモリが不足している場合、使用されていないデータを一時的にスワップデバイ"
  3472. "スに移動し、<abbr title=\"Random Access Memory\">RAM</abbr>の空き容量を増やす"
  3473. "ことができます。ただし、スワップデバイスは<abbr title=\"Random Access "
  3474. "Memory\">RAM</abbr>に比べてとても遅いことに注意してください。"
  3475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:860
  3476. msgid "Ignore"
  3477. msgstr ""
  3478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438
  3479. msgid "Ignore <code>/etc/hosts</code>"
  3480. msgstr "<code>/etc/hosts</code>を無視"
  3481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  3482. msgid "Ignore interface"
  3483. msgstr "インターフェースを無視"
  3484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:922
  3485. msgid "Ignore requests from unknown machines using <em>!known</em>."
  3486. msgstr ""
  3487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427
  3488. msgid "Ignore resolv file"
  3489. msgstr "リゾルバファイルを無視"
  3490. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:447
  3491. msgid "Image"
  3492. msgstr "イメージ"
  3493. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:273
  3494. msgid "Image check failed:"
  3495. msgstr ""
  3496. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3497. msgid "Import as peer"
  3498. msgstr ""
  3499. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3500. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:476
  3501. msgid "Import configuration"
  3502. msgstr ""
  3503. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:504
  3504. msgid "Import configuration as peer…"
  3505. msgstr ""
  3506. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:490
  3507. msgid "Import settings"
  3508. msgstr ""
  3509. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:376
  3510. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:403
  3511. msgid "Imported peer configuration"
  3512. msgstr ""
  3513. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:188
  3514. msgid "Imports settings from an existing WireGuard configuration file"
  3515. msgstr ""
  3516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  3517. msgid "In"
  3518. msgstr "イン"
  3519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:801
  3520. msgid ""
  3521. "In DHCPv4, it is possible to include more than one mac address. This allows "
  3522. "an IP address to be associated with multiple macaddrs, and dnsmasq abandons "
  3523. "a DHCP lease to one of the macaddrs when another asks for a lease. It only "
  3524. "works reliably if only one of the macaddrs is active at any time."
  3525. msgstr ""
  3526. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:71
  3527. msgid ""
  3528. "In bridged LAN setups it is advisable to enable the bridge loop avoidance in "
  3529. "order to avoid broadcast loops that can bring the entire LAN to a standstill."
  3530. msgstr ""
  3531. #: modules/luci-base/ucode/template/csrftoken.ut:13
  3532. msgid ""
  3533. "In order to prevent unauthorized access to the system, your request has been "
  3534. "blocked. Click \"Continue »\" below to return to the previous page."
  3535. msgstr ""
  3536. "システムへの不正アクセスを防ぐために、リクエストはブロックされました。下の"
  3537. "\"続行\"をクリックして、前のページに戻ります。"
  3538. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  3539. msgid "In seconds"
  3540. msgstr ""
  3541. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:156
  3542. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  3543. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  3544. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  3545. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  3546. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  3547. msgid "Inactivity timeout"
  3548. msgstr "未使用時タイムアウト"
  3549. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  3550. msgid "Inbound:"
  3551. msgstr "受信:"
  3552. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  3553. msgid ""
  3554. "Include in backup a list of current installed packages at /etc/backup/"
  3555. "installed_packages.txt"
  3556. msgstr ""
  3557. "現在インストールされているパッケージのリスト /etc/backup/installed_packages."
  3558. "txt をバックアップに含める"
  3559. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  3560. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  3561. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  3562. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  3563. msgid "Incoming checksum"
  3564. msgstr "受信チェックサム"
  3565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  3566. msgid "Incoming interface"
  3567. msgstr ""
  3568. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3569. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3570. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3571. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3572. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3573. msgid "Incoming key"
  3574. msgstr "受信キー"
  3575. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  3576. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  3577. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  3578. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  3579. msgid "Incoming serialization"
  3580. msgstr "受信シリアル化"
  3581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187
  3582. msgid "Info"
  3583. msgstr "情報"
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3585. msgid "Information"
  3586. msgstr "情報"
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:510
  3588. msgid "Ingress QoS mapping"
  3589. msgstr "Ingress QoS マッピング"
  3590. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:11
  3591. msgctxt "nft meta iif"
  3592. msgid "Ingress device id"
  3593. msgstr ""
  3594. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:9
  3595. msgctxt "nft meta iifname"
  3596. msgid "Ingress device name"
  3597. msgstr ""
  3598. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  3599. msgid "Initialization failure"
  3600. msgstr "初期化失敗"
  3601. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  3602. msgid "Initscript"
  3603. msgstr "起動スクリプト"
  3604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  3605. msgid "Initscripts"
  3606. msgstr "起動スクリプト"
  3607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  3608. msgid "Inner certificate constraint (Domain)"
  3609. msgstr "内部証明書制約(ドメイン)"
  3610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1745
  3611. msgid "Inner certificate constraint (SAN)"
  3612. msgstr "内部証明書制約(SAN)"
  3613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1742
  3614. msgid "Inner certificate constraint (Subject)"
  3615. msgstr "内部証明書制約(件名)"
  3616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1751
  3617. msgid "Inner certificate constraint (Wildcard)"
  3618. msgstr "内部証明書制約(ワイルドカード)"
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:317
  3620. msgid "Install protocol extensions..."
  3621. msgstr "プロトコル拡張機能をインストール..."
  3622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:628
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:930
  3624. msgid "Instance"
  3625. msgstr ""
  3626. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:125
  3627. msgctxt "WireGuard instance heading"
  3628. msgid "Instance \"%h\""
  3629. msgstr ""
  3630. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:34
  3631. msgid "Instance Details"
  3632. msgstr ""
  3633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  3634. msgid ""
  3635. "Instead of joining any network with a matching SSID, only connect to the "
  3636. "BSSID <code>%h</code>."
  3637. msgstr ""
  3638. "一致するSSIDのネットワークへの参加ではなく、 BSSID<code>%h</code>にのみ接続し"
  3639. "ます。"
  3640. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  3641. msgid "Insufficient permissions to read UCI configuration."
  3642. msgstr "UCI設定を読み取るための権限がありません。"
  3643. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:136
  3644. msgid "Integrated Circuit Card Identifier"
  3645. msgstr ""
  3646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  3647. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:180
  3648. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  3649. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3650. msgid "Interface"
  3651. msgstr "インターフェース"
  3652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:735
  3653. msgid "Interface \"%h\" is already marked as designated master."
  3654. msgstr ""
  3655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  3656. msgid "Interface %q device auto-migrated from %q to %q."
  3657. msgstr "インターフェース%qデバイスは、%qから%qへ自動的に移行されました。"
  3658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:975
  3659. msgid "Interface Configuration"
  3660. msgstr "インターフェース設定"
  3661. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  3662. msgid "Interface ID"
  3663. msgstr ""
  3664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  3665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  3666. msgid "Interface has %d pending changes"
  3667. msgstr "インターフェースに%d個の保留中の変更があります"
  3668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  3669. msgid "Interface is disabled"
  3670. msgstr "インターフェースは無効"
  3671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  3672. msgid "Interface is marked for deletion"
  3673. msgstr "インターフェースは削除対象としてマークされています"
  3674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3675. msgid "Interface is reconnecting..."
  3676. msgstr "インターフェースが再接続中..."
  3677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  3678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  3679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  3680. msgid "Interface is shutting down..."
  3681. msgstr "インターフェースをシャットダウン中..."
  3682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:302
  3683. msgid "Interface is starting..."
  3684. msgstr "インターフェースを開始中..."
  3685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:305
  3686. msgid "Interface is stopping..."
  3687. msgstr "インターフェースを停止中..."
  3688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  3689. msgid "Interface name"
  3690. msgstr "インターフェイス名"
  3691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  3692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:321
  3693. msgid "Interface not present or not connected yet."
  3694. msgstr "インターフェースが存在しないか、接続されていません。"
  3695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  3696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:508
  3697. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  3698. msgid "Interfaces"
  3699. msgstr "インターフェース"
  3700. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  3701. msgid "Internal"
  3702. msgstr "内部"
  3703. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:85
  3704. msgid "International Mobile Station Equipment Identity"
  3705. msgstr ""
  3706. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:139
  3707. msgid "International Mobile Subscriber Identity"
  3708. msgstr ""
  3709. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285
  3710. msgid "Interval For Sending Learning Packets"
  3711. msgstr "学習パケット送信間隔"
  3712. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  3713. msgid ""
  3714. "Interval in centiseconds between multicast general queries. By varying the "
  3715. "value, an administrator may tune the number of IGMP messages on the subnet; "
  3716. "larger values cause IGMP Queries to be sent less often"
  3717. msgstr ""
  3718. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:576
  3719. msgid "Interval in seconds for STP hello packets"
  3720. msgstr "STP ハロー パケットの間隔(秒)"
  3721. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  3722. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  3723. msgid "Invalid"
  3724. msgstr "無効"
  3725. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:101
  3726. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:68
  3727. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:71
  3728. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:97
  3729. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:74
  3730. msgid "Invalid APN provided"
  3731. msgstr ""
  3732. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:37
  3733. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:40
  3734. msgid "Invalid Base64 key string"
  3735. msgstr "無効なBase64キー文字列"
  3736. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  3737. msgid "Invalid IPv6 address"
  3738. msgstr ""
  3739. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  3740. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  3741. msgid "Invalid TOS value, expected 00..FF or inherit"
  3742. msgstr "無効なTOS値です。00...FFまたは継承する必要があります"
  3743. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  3744. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  3745. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  3746. msgstr "無効なトラフィッククラス値です。00..FFまたは継承する必要があります"
  3747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  3748. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  3749. msgstr "無効なVLAN IDです! IDは%dから%dまでのみ許可されています。"
  3750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  3751. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  3752. msgstr "無効なVLAN IDです!重複しないIDを入力してください"
  3753. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  3754. msgid "Invalid argument"
  3755. msgstr "無効な引数"
  3756. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:11
  3757. msgid ""
  3758. "Invalid bearer list. Possibly too many bearers created. This protocol "
  3759. "supports one and only one bearer."
  3760. msgstr ""
  3761. "無効なベアラーリストです。作成されたベアラーが多すぎる可能性があります。この"
  3762. "プロトコルは、1つのベアラーのみサポートします。"
  3763. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  3764. msgid "Invalid command"
  3765. msgstr "無効なコマンド"
  3766. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:205
  3767. msgid "Invalid hexadecimal value"
  3768. msgstr "無効な16進数"
  3769. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:126
  3770. msgid "Invalid hostname or IPv4 address"
  3771. msgstr ""
  3772. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:134
  3773. msgid "Invalid port"
  3774. msgstr ""
  3775. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:108
  3776. msgid "Invalid server URL"
  3777. msgstr ""
  3778. #: modules/luci-base/ucode/template/sysauth.ut:12
  3779. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32
  3780. msgid "Invalid username and/or password! Please try again."
  3781. msgstr ""
  3782. "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し"
  3783. "てください。"
  3784. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:13
  3785. msgid "Invert blinking"
  3786. msgstr ""
  3787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197
  3788. msgid "Invert match"
  3789. msgstr ""
  3790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:223
  3791. msgctxt "VLAN port state"
  3792. msgid "Is Primary VLAN"
  3793. msgstr ""
  3794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  3795. msgid "Isolate Clients"
  3796. msgstr "クライアント間の分離"
  3797. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:236
  3798. msgid ""
  3799. "It appears that you are trying to flash an image that does not fit into the "
  3800. "flash memory, please verify the image file!"
  3801. msgstr ""
  3802. "フラッシュしようとしたイメージファイルはこのフラッシュメモリー向けではありま"
  3803. "せん。イメージファイルを確認してください!"
  3804. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77
  3805. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:97
  3806. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  3807. msgid "JavaScript required!"
  3808. msgstr "JavaScriptが必要です!"
  3809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922
  3810. msgid "Join Network"
  3811. msgstr "ネットワークに接続"
  3812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1856
  3813. msgid "Join Network: Wireless Scan"
  3814. msgstr "ネットワークに接続: 無線スキャン"
  3815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2134
  3816. msgid "Joining Network: %q"
  3817. msgstr "ネットワークに接続中: %q"
  3818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  3819. msgid "Jump to rule"
  3820. msgstr ""
  3821. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228
  3822. msgid "Keep settings and retain the current configuration"
  3823. msgstr "現在の設定を残す"
  3824. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  3825. msgid "Keep-Alive"
  3826. msgstr ""
  3827. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  3828. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84
  3829. msgid "Kernel Log"
  3830. msgstr "カーネルログ"
  3831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  3832. msgid "Kernel Version"
  3833. msgstr "カーネル バージョン"
  3834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1489
  3835. msgid "Key"
  3836. msgstr "キー"
  3837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1517
  3838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1518
  3839. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1519
  3840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  3841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  3842. msgid "Key #%d"
  3843. msgstr "キー#%d"
  3844. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  3845. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  3846. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  3847. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  3848. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:64
  3849. msgid "Key for incoming packets (optional)."
  3850. msgstr "受信パケットのキー(オプション)。"
  3851. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3852. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3853. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3854. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3855. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  3856. msgid "Key for outgoing packets (optional)."
  3857. msgstr "送信パケットのキー(オプション)。"
  3858. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:549
  3859. msgctxt "Label indicating that WireGuard peer lacks public key"
  3860. msgid "Key missing"
  3861. msgstr ""
  3862. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44
  3863. msgid "Key used to sign network config"
  3864. msgstr ""
  3865. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71
  3866. msgctxt "nft unit"
  3867. msgid "KiB"
  3868. msgstr ""
  3869. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  3870. msgid "Kill"
  3871. msgstr "強制終了"
  3872. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  3873. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  3874. msgid "L2TP"
  3875. msgstr "L2TP"
  3876. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  3877. msgid "L2TP Server"
  3878. msgstr "L2TPサーバー"
  3879. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:269
  3880. msgid "LACPDU Packets"
  3881. msgstr "LACPDUパケット"
  3882. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  3883. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  3884. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  3885. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  3886. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  3887. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  3888. msgid "LCP echo failure threshold"
  3889. msgstr "LCP echo失敗しきい値"
  3890. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  3891. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  3892. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  3893. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  3894. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  3895. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  3896. msgid "LCP echo interval"
  3897. msgstr "LCP echo送信間隔"
  3898. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:115
  3899. msgid "LED Configuration"
  3900. msgstr "LED設定"
  3901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1636
  3902. msgid "LLC"
  3903. msgstr "LLC"
  3904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:268
  3905. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:377
  3906. msgid "Label"
  3907. msgstr "ラベル"
  3908. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:225
  3909. msgid "Language"
  3910. msgstr "言語"
  3911. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  3912. msgid "Language and Style"
  3913. msgstr "言語とスタイル"
  3914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:641
  3915. msgid ""
  3916. "Larger weights (of the same prio) are given a proportionately higher "
  3917. "probability of being selected."
  3918. msgstr ""
  3919. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  3920. msgid "Last member interval"
  3921. msgstr ""
  3922. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:59
  3923. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:78
  3924. msgid "Latest Handshake"
  3925. msgstr "最新のハンドシェイク"
  3926. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  3927. msgid "Leaf"
  3928. msgstr "Leaf"
  3929. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:775
  3930. msgid "Learn"
  3931. msgstr "学習"
  3932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  3933. msgid "Learn routes"
  3934. msgstr ""
  3935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423
  3936. msgid "Lease file"
  3937. msgstr "リースファイル"
  3938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:893
  3939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:696
  3940. msgid "Lease time"
  3941. msgstr "リース期間"
  3942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:41
  3943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:60
  3944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  3945. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  3946. msgid "Lease time remaining"
  3947. msgstr "残りリース期間"
  3948. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3949. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3950. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3951. msgid "Leave empty to autodetect"
  3952. msgstr "空欄の場合、自動的に検出"
  3953. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3954. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3955. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3956. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3957. msgid "Leave empty to use the current WAN address"
  3958. msgstr "空欄の場合、現在のWANアドレスを使用"
  3959. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:938
  3960. msgid ""
  3961. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3962. "interoperate. Airtime efficiency may be significantly reduced where these "
  3963. "are used. It is recommended to not allow 802.11b rates where possible."
  3964. msgstr ""
  3965. "レガシーまたは動作の悪いデバイスは、相互運用するためにレガシーな 802.11b レー"
  3966. "トを必要とする場合があります。 これらを使用すると、通信時間の効率が大幅に低下"
  3967. "する可能性があります。 可能な限り 802.11b レートを許可しないことをお勧めしま"
  3968. "す。"
  3969. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:677
  3970. msgid "Legacy rules detected"
  3971. msgstr "レガシー ルールを検出"
  3972. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4438
  3973. msgid "Legend:"
  3974. msgstr "凡例:"
  3975. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3976. msgid "Limit"
  3977. msgstr "制限"
  3978. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  3979. msgid "Line Mode"
  3980. msgstr "回線モード"
  3981. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3982. msgid "Line State"
  3983. msgstr "回線状態"
  3984. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3985. msgid "Line Uptime"
  3986. msgstr "回線稼働時間"
  3987. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:125
  3988. msgid "Link Aggregation (Channel Bonding)"
  3989. msgstr "リンクアグリゲーション(チャネルボンディング)"
  3990. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3991. msgid "Link Monitoring"
  3992. msgstr "リンク監視"
  3993. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  3994. msgid "Link On"
  3995. msgstr "リンクオン"
  3996. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:77
  3997. msgctxt "nft @ll,off,len"
  3998. msgid "Link layer header bits %d-%d"
  3999. msgstr ""
  4000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519
  4001. msgid "List of IP addresses to convert into NXDOMAIN responses."
  4002. msgstr "NXドメインの嘘の結果を提供するホストのリスト"
  4003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  4004. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754
  4005. msgid ""
  4006. "List of IP sets to populate with the IPs of DNS lookup results of the FQDNs "
  4007. "also specified here."
  4008. msgstr ""
  4009. "ここで指定されたFQDNのDNSルックアップ結果のIPを投入するIPsetのリストも指定す"
  4010. "る。"
  4011. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1602
  4012. msgid ""
  4013. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  4014. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  4015. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  4016. "from the R0KH that the STA used during the Initial Mobility Domain "
  4017. "Association."
  4018. msgstr ""
  4019. "これは同じモビリティドメイン内のR0KHのリストです。<br />形式: MACアドレス、"
  4020. "NAS識別子、128ビットキー(16進数の文字列)<br />このリストは、初期モビリティ"
  4021. "ドメインアソシエーションでSTAが使用したR0KHからPMK-R1キーを要求する際に、"
  4022. "R0KH-ID(NAS識別子)を宛先MACアドレスにマッピングするために使用されます。"
  4023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1606
  4024. msgid ""
  4025. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  4026. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  4027. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  4028. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  4029. "PMK-R1 keys."
  4030. msgstr ""
  4031. "これは同じモビリティドメイン内のR1KHのリストです。<br />形式: MACアドレス、"
  4032. "R1KH-ID(コロン付き6オクテット)、128ビットキー(16進数の文字列)<br />このリ"
  4033. "ストは、R0KHからPMK-R1キーを送信する際に、R1KH-IDを宛先MACアドレスにマッピン"
  4034. "グするために使用されます。また、PMK-R1キーを要求できるMD内の許可されたR1KHの"
  4035. "リストでもあります。"
  4036. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  4037. msgid "List of SSH key files for auth"
  4038. msgstr "認証用SSHキーファイルのリスト"
  4039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:323
  4040. msgid "List of domains to allow RFC1918 responses for."
  4041. msgstr "RFC1918の応答を許可するドメインのリスト"
  4042. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291
  4043. msgid "List of upstream resolvers to forward queries to."
  4044. msgstr ""
  4045. "リクエストを転送する<abbr title=\"Domain Name System\">DNS</abbr>サーバーのリ"
  4046. "スト"
  4047. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  4048. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:38
  4049. msgid "Listen Port"
  4050. msgstr "リッスンポート"
  4051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343
  4052. msgid "Listen interfaces"
  4053. msgstr "リッスンインターフェース"
  4054. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  4055. msgid "Listen only on the given interface or, if unspecified, on all"
  4056. msgstr ""
  4057. "指定されたインターフェースでのみリッスンを行います。設定しない場合はすべて対"
  4058. "象"
  4059. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  4060. msgid ""
  4061. "Listen only on the specified interfaces, and loopback if not excluded "
  4062. "explicitly."
  4063. msgstr "リッスンをこれらのインターフェースとループバックに限定します。"
  4064. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:299
  4065. msgid "ListenPort setting is invalid"
  4066. msgstr ""
  4067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  4068. msgid "Listening port for inbound DNS queries."
  4069. msgstr "受信DNSクエリをリッスンするポート"
  4070. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  4071. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  4072. msgid "Load"
  4073. msgstr "負荷"
  4074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:63
  4075. msgid "Load Average"
  4076. msgstr "システム平均負荷"
  4077. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:189
  4078. msgid "Load configuration…"
  4079. msgstr ""
  4080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1229
  4081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2065
  4082. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:167
  4083. msgid "Loading data…"
  4084. msgstr ""
  4085. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2992
  4086. msgid "Loading directory contents…"
  4087. msgstr "ディレクトリの内容を読み込み中…"
  4088. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942
  4089. #: modules/luci-base/ucode/template/view.ut:4
  4090. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:12
  4091. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40
  4092. msgid "Loading view…"
  4093. msgstr "画面表示を読み込み中…"
  4094. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:948
  4095. msgid "Local"
  4096. msgstr "ローカル"
  4097. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:169
  4098. msgid "Local IP address"
  4099. msgstr "ローカルIPアドレス"
  4100. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  4101. #: modules/luci-compat/luasrc/model/network.lua:30
  4102. msgid "Local IP address is invalid"
  4103. msgstr "無効なローカルIPアドレスです"
  4104. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  4105. msgid "Local IP address to assign"
  4106. msgstr "割り当てるローカル IPアドレス"
  4107. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  4108. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  4109. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  4110. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  4111. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  4112. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  4113. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  4114. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  4115. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  4116. msgid "Local IPv4 address"
  4117. msgstr "ローカルIPv4アドレス"
  4118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:944
  4119. msgid "Local IPv6 DNS server"
  4120. msgstr "ローカル IPv6 DNS サーバー"
  4121. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  4122. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  4123. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  4124. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  4125. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  4126. msgid "Local IPv6 address"
  4127. msgstr "ローカルIPv6アドレス"
  4128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  4129. msgid "Local Startup"
  4130. msgstr "ローカルスタートアップ"
  4131. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  4132. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  4133. msgid "Local Time"
  4134. msgstr "時刻"
  4135. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1062
  4136. msgid "Local ULA"
  4137. msgstr "ローカル ULA"
  4138. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281
  4139. msgid "Local domain"
  4140. msgstr "ローカルドメイン"
  4141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282
  4142. msgid "Local domain suffix appended to DHCP names and hosts file entries."
  4143. msgstr "DHCP名とhostsファイルの項目に追加される、ローカルドメインサフィックス"
  4144. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  4145. msgid "Local server"
  4146. msgstr "ローカルサーバー"
  4147. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330
  4148. msgid "Local service only"
  4149. msgstr "ローカルサービスのみ"
  4150. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41
  4151. msgid "Local wireguard key"
  4152. msgstr ""
  4153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478
  4154. msgid "Localise queries"
  4155. msgstr "クエリをローカライズ"
  4156. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:117
  4157. msgid "Location Area Code"
  4158. msgstr ""
  4159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2126
  4160. msgid "Lock to BSSID"
  4161. msgstr "BSSIDにロック"
  4162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:98
  4163. msgctxt "nft log action"
  4164. msgid "Log event \"<strong>%h</strong>…\""
  4165. msgstr ""
  4166. #: modules/luci-base/ucode/template/sysauth.ut:38
  4167. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36
  4168. msgid "Log in"
  4169. msgstr "ログイン"
  4170. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674
  4171. msgid "Log in…"
  4172. msgstr "ログイン…"
  4173. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  4174. msgid "Log out"
  4175. msgstr "ログアウト"
  4176. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  4177. msgid "Log output level"
  4178. msgstr "ログ出力レベル"
  4179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  4180. msgid "Log queries"
  4181. msgstr "ログクエリ"
  4182. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:123
  4183. msgid "Logging"
  4184. msgstr "ロギング"
  4185. #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:23
  4186. msgid "Logging in…"
  4187. msgstr "ログイン中…"
  4188. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4189. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4190. msgid ""
  4191. "Logical network from which to select the local endpoint if local IPv6 "
  4192. "address is empty and no WAN IPv6 is available (optional)."
  4193. msgstr ""
  4194. "ローカルIPv6アドレスが空かつWAN IPv6が利用できない場合、ローカルエンドポイン"
  4195. "トを選択する論理ネットワーク(オプション)。"
  4196. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4197. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4198. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  4199. msgstr "トンネルが追加される(ブリッジされる)論理ネットワーク(オプション)。"
  4200. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  4201. msgid "Loose filtering"
  4202. msgstr "緩いフィルタリング"
  4203. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  4204. msgid "Lowest leased address as offset from the network address."
  4205. msgstr ""
  4206. "これはネットワークアドレスをオフセットとした、最小のリースアドレスです。"
  4207. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12
  4208. msgid "Lua compatibility mode active"
  4209. msgstr ""
  4210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  4211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  4212. msgid "MAC"
  4213. msgstr "MAC"
  4214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1507
  4215. msgid "MAC Address"
  4216. msgstr "MAC アドレス"
  4217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1079
  4218. msgid "MAC Address Filter"
  4219. msgstr "MACアドレスフィルタ"
  4220. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:253
  4221. #, fuzzy
  4222. msgid "MAC Address For The Actor"
  4223. msgstr "アクターのMACアドレス"
  4224. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:401
  4225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  4226. msgid "MAC VLAN"
  4227. msgstr "MAC ベース VLAN"
  4228. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:645
  4229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40
  4230. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  4231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2257
  4232. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  4233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  4234. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:233
  4235. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:179
  4236. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:205
  4237. msgid "MAC address"
  4238. msgstr "MAC アドレス"
  4239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:799
  4240. msgid "MAC address(es)"
  4241. msgstr ""
  4242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:981
  4243. msgid "MAC-Filter"
  4244. msgstr "MACフィルタ"
  4245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  4246. msgid "MAC-List"
  4247. msgstr "MACリスト"
  4248. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  4249. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  4250. msgid "MAP / LW4over6"
  4251. msgstr "MAP / LW4over6"
  4252. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  4253. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  4254. msgid "MAP rule is invalid"
  4255. msgstr "無効なMAPルールです"
  4256. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:24
  4257. msgid "MBIM Cellular"
  4258. msgstr ""
  4259. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  4260. msgid "MD5"
  4261. msgstr "MD5"
  4262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4264. msgid "MHz"
  4265. msgstr "MHz"
  4266. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:354
  4267. msgid "MII"
  4268. msgstr "MII"
  4269. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  4270. msgid "MII / ETHTOOL ioctls"
  4271. msgstr "MII / ETHTOOL ioctls"
  4272. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  4273. msgid "MII Interval"
  4274. msgstr "MII間隔"
  4275. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:634
  4276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1519
  4277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:87
  4278. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  4279. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  4280. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  4281. msgid "MTU"
  4282. msgstr "MTU"
  4283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4284. msgid "MX"
  4285. msgstr ""
  4286. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303
  4287. msgid ""
  4288. "Make sure to clone the root filesystem using something like the commands "
  4289. "below:"
  4290. msgstr ""
  4291. "次のようなコマンドを使用して、ルートファイルシステムを複製してください:"
  4292. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:122
  4293. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:115
  4294. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  4295. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  4296. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  4297. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  4298. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  4299. msgid "Manual"
  4300. msgstr "手動"
  4301. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:82
  4302. msgid "Manufacturer"
  4303. msgstr ""
  4304. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  4305. msgid "Master"
  4306. msgstr "マスター"
  4307. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:920
  4308. msgid "Match Tag"
  4309. msgstr ""
  4310. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4311. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4312. msgstr ""
  4313. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538
  4314. msgid "Max. DHCP leases"
  4315. msgstr ""
  4316. "最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>割り当て数"
  4317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:545
  4318. msgid "Max. EDNS0 packet size"
  4319. msgstr ""
  4320. "最大<abbr title=\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>"
  4321. "パケットサイズ"
  4322. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:552
  4323. msgid "Max. concurrent queries"
  4324. msgstr "最大並列処理クエリ"
  4325. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  4326. msgid "Maximum age"
  4327. msgstr ""
  4328. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1188
  4329. msgid "Maximum allowed Listen Interval"
  4330. msgstr "許容される最大リッスン間隔"
  4331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:539
  4332. msgid "Maximum allowed number of active DHCP leases."
  4333. msgstr "許容される最大DHCP割り当て数"
  4334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:553
  4335. msgid "Maximum allowed number of concurrent DNS queries."
  4336. msgstr "許容される最大の並列DNSクエリ数"
  4337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:546
  4338. msgid "Maximum allowed size of EDNS0 UDP packets."
  4339. msgstr "許容される最大EDNS.0 UDPパケットサイズ"
  4340. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4341. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4342. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4343. msgid "Maximum amount of seconds to wait for the modem to become ready"
  4344. msgstr "モデムの準備が完了するまでの最大の待ち時間(秒)"
  4345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4346. msgid "Maximum number of leased addresses."
  4347. msgstr "リースされるアドレスの最大数です。"
  4348. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:596
  4349. msgid "Maximum snooping table size"
  4350. msgstr "スヌーピング テーブルの最大サイズ"
  4351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:865
  4352. msgid ""
  4353. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  4354. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  4355. msgstr ""
  4356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  4357. msgid "Maximum transmit power"
  4358. msgstr "最大送信出力"
  4359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464
  4360. msgid "May prevent VoIP or other services from working."
  4361. msgstr ""
  4362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  4363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  4364. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  4365. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  4366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:171
  4367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  4368. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  4369. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  4370. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  4371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  4372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  4373. msgid "Mbit/s"
  4374. msgstr "Mbps"
  4375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4376. msgid "Medium"
  4377. msgstr "中"
  4378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  4379. msgid "Memory"
  4380. msgstr "メモリ"
  4381. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  4382. msgid "Memory usage (%)"
  4383. msgstr "メモリ使用率(%)"
  4384. #: modules/luci-base/htdocs/luci-static/resources/network.js:3867
  4385. msgid "Mesh"
  4386. msgstr "メッシュ"
  4387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4388. msgid "Mesh ID"
  4389. msgstr "メッシュID"
  4390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  4391. msgid "Mesh Id"
  4392. msgstr "メッシュID"
  4393. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4394. msgid "Mesh Routing"
  4395. msgstr ""
  4396. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:41
  4397. msgid "Mesh and routing related options"
  4398. msgstr ""
  4399. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  4400. msgid "Method not found"
  4401. msgstr "メソッドが見つかりません"
  4402. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:350
  4403. msgid "Method of link monitoring"
  4404. msgstr "リンクを監視する方法"
  4405. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  4406. msgid "Method to determine link status"
  4407. msgstr "リンクの状態を確認する方法"
  4408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  4409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189
  4410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215
  4411. msgid "Metric"
  4412. msgstr "メトリック"
  4413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:70
  4414. msgctxt "nft unit"
  4415. msgid "MiB"
  4416. msgstr ""
  4417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4418. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  4419. msgstr ""
  4420. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4421. msgid "Minimum ARP validity time"
  4422. msgstr ""
  4423. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:237
  4424. msgid "Minimum Number of Links"
  4425. msgstr "最小のリンク数"
  4426. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:721
  4427. msgid ""
  4428. "Minimum required time in seconds before an ARP entry may be replaced. "
  4429. "Prevents ARP cache thrashing."
  4430. msgstr ""
  4431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4432. msgid ""
  4433. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  4434. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  4435. msgstr ""
  4436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204
  4437. msgid "Mirror monitor port"
  4438. msgstr "ミラー監視ポート"
  4439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:203
  4440. msgid "Mirror source port"
  4441. msgstr "ミラー元ポート"
  4442. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:120
  4443. msgid "Mobile Country Code"
  4444. msgstr ""
  4445. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  4446. msgid "Mobile Data"
  4447. msgstr "モバイルデータ"
  4448. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:123
  4449. msgid "Mobile Network Code"
  4450. msgstr ""
  4451. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:167
  4452. #: protocols/luci-proto-modemmanager/root/usr/share/luci/menu.d/luci-proto-modemmanager.json:3
  4453. msgid "Mobile Service"
  4454. msgstr ""
  4455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1562
  4456. msgid "Mobility Domain"
  4457. msgstr "モビリティドメイン"
  4458. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  4459. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:488
  4460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  4461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  4462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:486
  4463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  4464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  4465. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:404
  4466. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:148
  4467. msgid "Mode"
  4468. msgstr "モード"
  4469. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  4470. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:83
  4471. msgid "Model"
  4472. msgstr "モデル"
  4473. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:81
  4474. msgid "Modem Info"
  4475. msgstr ""
  4476. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:9
  4477. msgid ""
  4478. "Modem connection in progress. Please wait. This process will timeout after 2 "
  4479. "minutes."
  4480. msgstr ""
  4481. "モデム接続中です。しばらくお待ちください。この処理は2分後にタイムアウトしま"
  4482. "す。"
  4483. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:77
  4484. msgid "Modem default"
  4485. msgstr "モデムデフォルト"
  4486. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  4487. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:54
  4488. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:51
  4489. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:65
  4490. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  4491. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  4492. msgid "Modem device"
  4493. msgstr "モデムデバイス"
  4494. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  4495. msgid "Modem information query failed"
  4496. msgstr "モデム情報の問い合わせに失敗しました"
  4497. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126
  4498. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:124
  4499. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:119
  4500. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:106
  4501. msgid "Modem init timeout"
  4502. msgstr "モデム初期化タイムアウト"
  4503. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:21
  4504. msgid "ModemManager"
  4505. msgstr "モデムマネージャー"
  4506. #: modules/luci-base/htdocs/luci-static/resources/network.js:3868
  4507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1073
  4508. msgid "Monitor"
  4509. msgstr "モニター"
  4510. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4511. msgid "More Characters"
  4512. msgstr "文字数不足"
  4513. #: modules/luci-base/htdocs/luci-static/resources/form.js:2581
  4514. msgid "More…"
  4515. msgstr "さらに表示…"
  4516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  4517. msgid "Mount Point"
  4518. msgstr "マウントポイント"
  4519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  4520. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4521. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:102
  4522. msgid "Mount Points"
  4523. msgstr "マウントポイント"
  4524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  4525. msgid "Mount Points - Mount Entry"
  4526. msgstr "マウントポイント-マウント一覧"
  4527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:341
  4528. msgid "Mount Points - Swap Entry"
  4529. msgstr "マウントポイント-スワップ一覧"
  4530. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  4531. msgid ""
  4532. "Mount Points define at which point a memory device will be attached to the "
  4533. "filesystem"
  4534. msgstr ""
  4535. "マウントポイントは、記憶デバイスがファイルシステムのどこに接続されているかを"
  4536. "定義したものです"
  4537. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  4538. msgid "Mount attached devices"
  4539. msgstr "接続済みデバイスをマウント"
  4540. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  4541. msgid "Mount filesystems not specifically configured"
  4542. msgstr "明確に設定されていないファイルシステムをマウント"
  4543. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  4544. msgid "Mount options"
  4545. msgstr "マウントオプション"
  4546. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  4547. msgid "Mount point"
  4548. msgstr "マウントポイント"
  4549. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  4550. msgid "Mount swap not specifically configured"
  4551. msgstr "明確に設定されていないスワップパーティションをマウント"
  4552. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  4553. msgid "Mounted file systems"
  4554. msgstr "マウント済みファイルシステム"
  4555. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  4556. msgid "Move down"
  4557. msgstr "下へ移動"
  4558. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  4559. msgid "Move up"
  4560. msgstr "上へ移動"
  4561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1146
  4562. msgid "Multi To Unicast"
  4563. msgstr ""
  4564. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  4565. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  4566. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  4567. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  4568. msgid "Multicast"
  4569. msgstr "マルチキャスト"
  4570. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:99
  4571. msgid "Multicast Mode"
  4572. msgstr ""
  4573. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:773
  4574. msgid "Multicast routing"
  4575. msgstr "マルチキャスト ルーティング"
  4576. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:779
  4577. msgid "Multicast to unicast"
  4578. msgstr ""
  4579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  4580. msgid "NAS ID"
  4581. msgstr "NAS ID"
  4582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:536
  4583. msgid "NAT action chain \"%h\""
  4584. msgstr ""
  4585. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  4586. msgid "NAT-T Mode"
  4587. msgstr "NAT-Tモード"
  4588. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  4589. msgid "NAT64 Prefix"
  4590. msgstr "NAT64プレフィックス"
  4591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:858
  4592. msgid "NAT64 prefix"
  4593. msgstr ""
  4594. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  4595. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:35
  4596. msgid "NCM"
  4597. msgstr "NCM"
  4598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  4599. msgid "NDP-Proxy slave"
  4600. msgstr ""
  4601. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  4602. msgid "NT Domain"
  4603. msgstr "NTドメイン"
  4604. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:300
  4605. msgid "NTP server candidates"
  4606. msgstr "NTPサーバー候補"
  4607. #: modules/luci-base/htdocs/luci-static/resources/form.js:2618
  4608. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4193
  4609. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163
  4611. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:68
  4612. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:36
  4613. msgid "Name"
  4614. msgstr "名前"
  4615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  4616. msgid "Name of the new network"
  4617. msgstr "新規ネットワークの名前"
  4618. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38
  4619. msgid "Name of the tunnel device"
  4620. msgstr ""
  4621. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:39
  4622. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  4623. msgid "Navigation"
  4624. msgstr "ナビゲーション"
  4625. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10
  4626. msgid "Nebula Network"
  4627. msgstr ""
  4628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1619
  4629. msgid "Neighbour Report"
  4630. msgstr ""
  4631. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  4632. msgid "Neighbour cache validity"
  4633. msgstr ""
  4634. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  4635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1018
  4636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2256
  4637. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  4638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  4639. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  4641. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:212
  4642. msgid "Network"
  4643. msgstr "ネットワーク"
  4644. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:104
  4645. msgid "Network Coding"
  4646. msgstr ""
  4647. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:76
  4648. msgid "Network Mode"
  4649. msgstr ""
  4650. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:97
  4651. msgid "Network Registration"
  4652. msgstr ""
  4653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  4654. msgid "Network SSID"
  4655. msgstr "ネットワークSSID"
  4656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  4657. msgid "Network address"
  4658. msgstr ""
  4659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:578
  4660. msgid "Network boot image"
  4661. msgstr "ネットワークブートイメージ"
  4662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:409
  4663. msgid "Network bridge configuration migration"
  4664. msgstr ""
  4665. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:397
  4666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481
  4667. msgid "Network device"
  4668. msgstr "ネットワークデバイス"
  4669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  4670. msgid "Network device activity (kernel: netdev)"
  4671. msgstr "ネットワークデバイスアクティビティ(kernel: netdev)"
  4672. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  4673. #: modules/luci-compat/luasrc/model/network.lua:33
  4674. msgid "Network device is not present"
  4675. msgstr "ネットワークデバイスが存在しません"
  4676. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:645
  4677. msgid "Network device table \"%h\""
  4678. msgstr ""
  4679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:78
  4680. msgctxt "nft @nh,off,len"
  4681. msgid "Network header bits %d-%d"
  4682. msgstr ""
  4683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:443
  4684. msgid "Network ifname configuration migration"
  4685. msgstr ""
  4686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  4687. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  4688. msgid "Network interface"
  4689. msgstr "ネットワークインターフェース"
  4690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:617
  4691. msgid "Network-ID"
  4692. msgstr ""
  4693. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:774
  4694. msgid "Never"
  4695. msgstr "なし"
  4696. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:16
  4697. #, fuzzy
  4698. msgctxt "No WireGuard peer handshake yet"
  4699. msgid "Never"
  4700. msgstr "なし"
  4701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  4702. msgid ""
  4703. "Never forward matching domains and subdomains, resolve from DHCP or hosts "
  4704. "files only."
  4705. msgstr ""
  4706. "ローカルドメインの定義です。この名前に一致するドメインは転送が行われず、 DHCP"
  4707. "または hostsファイルのみで解決されます"
  4708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4709. msgid "New interface for \"%s\" can not be created: %s"
  4710. msgstr "\"%s\"の新規インターフェースを作成できません: %s"
  4711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1166
  4712. msgid "New interface name…"
  4713. msgstr "新規インターフェース名…"
  4714. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  4715. msgid "Next »"
  4716. msgstr "次 »"
  4717. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  4718. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:298
  4719. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:346
  4720. msgid "No"
  4721. msgstr "いいえ"
  4722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:660
  4723. msgid "No DHCP Server configured for this interface"
  4724. msgstr "このインターフェースにはDHCPサーバーが設定されていません"
  4725. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:202
  4726. msgid "No Data"
  4727. msgstr "データなし"
  4728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1391
  4729. msgid "No Encryption"
  4730. msgstr "暗号化なし"
  4731. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  4732. msgid "No Host Routes"
  4733. msgstr "ホストルートなし"
  4734. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  4735. msgid "No NAT-T"
  4736. msgstr "NAT-Tを使用しない"
  4737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  4738. msgid "No RX signal"
  4739. msgstr "RX信号なし"
  4740. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:148
  4741. msgid "No WireGuard interfaces configured."
  4742. msgstr ""
  4743. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:16
  4744. msgid "No allowed mode configuration found."
  4745. msgstr ""
  4746. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68
  4747. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:88
  4748. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:65
  4749. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90
  4750. msgid ""
  4751. "No changes to settings will be stored and are lost after rebooting. This "
  4752. "mode should only be used to install a firmware upgrade"
  4753. msgstr ""
  4754. "設定の変更は保存されず、再起動後に消失します。このモードはファームウェアの更"
  4755. "新をインストールする際にのみ使用してください"
  4756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  4757. msgid "No client associated"
  4758. msgstr "接続済みクライアントなし"
  4759. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  4760. msgid "No control device specified"
  4761. msgstr ""
  4762. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3230
  4763. msgctxt "empty table placeholder"
  4764. msgid "No data"
  4765. msgstr ""
  4766. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  4767. msgid "No data received"
  4768. msgstr "受信済みデータなし"
  4769. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:751
  4770. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:758
  4771. msgid "No enforcement"
  4772. msgstr "強制しない"
  4773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:229
  4774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:232
  4775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:235
  4776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:238
  4777. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241
  4778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244
  4779. msgid "No entries available"
  4780. msgstr "利用可能な項目はありません"
  4781. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2932
  4782. msgid "No entries in this directory"
  4783. msgstr "このディレクトリ内にエントリーがありません"
  4784. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:846
  4785. msgid ""
  4786. "No fixed interface listening port defined, peers might not be able to "
  4787. "initiate connections to this WireGuard instance!"
  4788. msgstr ""
  4789. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  4790. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  4791. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  4792. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  4793. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:70
  4794. msgid "No host route"
  4795. msgstr "ホストルートなし"
  4796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:725
  4797. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  4798. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  4799. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  4800. msgid "No information available"
  4801. msgstr "情報なし"
  4802. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  4803. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  4804. #, fuzzy
  4805. msgid "No matching prefix delegation"
  4806. msgstr "一致するプレフィックスデレゲーションがありません"
  4807. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:142
  4808. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:145
  4809. msgid "No more slaves available"
  4810. msgstr "これ以上利用可能なスレーブがありません"
  4811. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:189
  4812. msgid "No more slaves available, can not save interface"
  4813. msgstr "これ以上利用可能なスレーブがないため、インターフェースを保存できません"
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:499
  4815. msgid "No negative cache"
  4816. msgstr "ネガティブキャッシュなし"
  4817. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:696
  4818. msgid "No nftables ruleset loaded."
  4819. msgstr ""
  4820. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57
  4821. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:77
  4822. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:54
  4823. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  4824. msgid "No password set!"
  4825. msgstr "パスワードが設定されていません!"
  4826. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:84
  4827. #, fuzzy
  4828. msgid "No peers connected"
  4829. msgstr "未接続"
  4830. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:510
  4831. msgid "No peers defined yet."
  4832. msgstr ""
  4833. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:15
  4834. msgid "No preferred mode configuration found."
  4835. msgstr ""
  4836. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146
  4837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4838. msgid "No public keys present yet."
  4839. msgstr "まだ公開鍵はありません。"
  4840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:613
  4841. msgctxt "nft chain is empty"
  4842. msgid "No rules in this chain"
  4843. msgstr ""
  4844. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  4845. msgid "No rules in this chain."
  4846. msgstr "このチェインにルールがありません。"
  4847. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  4848. msgid "No validation or filtering"
  4849. msgstr "検証またはフィルタリングなし"
  4850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  4852. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  4853. msgid "No zone assigned"
  4854. msgstr "割り当てられたゾーンがありません"
  4855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  4856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  4857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  4858. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  4859. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  4860. msgid "Noise"
  4861. msgstr "ノイズ"
  4862. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4863. msgid "Noise Margin"
  4864. msgstr ""
  4865. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  4866. msgid "Noise:"
  4867. msgstr "ノイズ:"
  4868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  4869. msgid "Non-wildcard"
  4870. msgstr "非ワイルドカード"
  4871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  4872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  4873. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:80
  4874. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:83
  4875. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:112
  4876. msgid "None"
  4877. msgstr "なし"
  4878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  4879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:198
  4880. msgid "Normal"
  4881. msgstr "標準"
  4882. #: modules/luci-base/ucode/template/error404.ut:9
  4883. msgid "Not Found"
  4884. msgstr "見つかりません"
  4885. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:211
  4886. msgctxt "VLAN port state"
  4887. msgid "Not Member"
  4888. msgstr ""
  4889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  4890. msgid "Not associated"
  4891. msgstr "接続されていません"
  4892. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4893. msgid "Not connected"
  4894. msgstr "未接続"
  4895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  4896. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  4897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  4898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  4899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:329
  4900. msgid "Not present"
  4901. msgstr "存在しません"
  4902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  4903. msgid "Not started on boot"
  4904. msgstr "ブート時に開始されていません"
  4905. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  4906. msgid "Not supported"
  4907. msgstr "サポートされていません"
  4908. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1777
  4909. msgid ""
  4910. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  4911. "have problems"
  4912. msgstr ""
  4913. "注:一部のワイヤレス ドライバーは、802.11w を完全にはサポートしていません。 "
  4914. "例えば、 mwlwifi に問題がある可能性があります"
  4915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356
  4916. msgid ""
  4917. "Note: you may also need a DHCP Proxy (currently unavailable) when specifying "
  4918. "a non-standard Relay To port(<code>addr#port</code>)."
  4919. msgstr ""
  4920. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  4921. msgid "Notes"
  4922. msgstr "備考"
  4923. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:188
  4924. msgid "Notice"
  4925. msgstr "注意"
  4926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:135
  4927. msgid "Nslookup"
  4928. msgstr "Nslookup"
  4929. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  4930. msgid "Number of IGMP membership reports"
  4931. msgstr "IGMPメンバーシップレポートの数"
  4932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560
  4933. msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching."
  4934. msgstr ""
  4935. "キャッシュされるDNSエントリーの数(最大10000件、0の場合キャッシュしない)"
  4936. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311
  4937. msgid "Number of peer notifications after failover event"
  4938. msgstr "フェールオーバー処理後のピア通知の数"
  4939. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  4940. msgid "Obfuscated Group Password"
  4941. msgstr "難読化されたグループパスワード"
  4942. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  4943. msgid "Obfuscated Password"
  4944. msgstr "難読化されたパスワード"
  4945. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4946. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:111
  4947. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  4948. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  4949. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  4950. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  4951. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  4952. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  4953. msgid "Obtain IPv6 address"
  4954. msgstr "IPv6アドレス取得"
  4955. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4956. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:87
  4957. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  4958. msgid "Off"
  4959. msgstr "オフ"
  4960. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:18
  4961. msgid "Off-State Delay"
  4962. msgstr "消灯時間"
  4963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  4964. msgid ""
  4965. "Off: <code>vlanXXX</code>, e.g., <code>vlan1</code>. On: "
  4966. "<code>vlan_tagged_interface.XXX</code>, e.g. <code>eth0.1</code>."
  4967. msgstr ""
  4968. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:19
  4969. msgid "On"
  4970. msgstr "オン"
  4971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:12
  4972. msgid "On-State Delay"
  4973. msgstr "点灯時間"
  4974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  4975. msgid "On-link"
  4976. msgstr "On-Linkルート"
  4977. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:867
  4978. msgid "One of hostname or MAC address must be specified!"
  4979. msgstr "ホスト名またはMACアドレスを指定してください!"
  4980. #: modules/luci-base/htdocs/luci-static/resources/validation.js:490
  4981. msgid "One of the following: %s"
  4982. msgstr "次のうちいずれか1つ: %s"
  4983. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  4984. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  4985. msgid "One or more fields contain invalid values!"
  4986. msgstr "1つ以上のフィールドに無効な値が設定されています!"
  4987. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  4988. msgid "One or more invalid/required values on tab"
  4989. msgstr "タブに1つ以上の無効/必須の値があります"
  4990. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  4991. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  4992. msgid "One or more required fields have no value!"
  4993. msgstr "1つ以上のフィールドに値が設定されていません!"
  4994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413
  4995. msgid "Only accept replies via"
  4996. msgstr ""
  4997. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  4998. msgid "Only allow communication with non-isolated bridge ports when enabled"
  4999. msgstr "有効な場合、分離されていないブリッジ ポートでの通信のみ許可します"
  5000. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:231
  5001. msgid ""
  5002. "Only if current active slave fails and the primary slave is up (failure, 2)"
  5003. msgstr ""
  5004. "現在アクティブなスレーブが失敗し、プライマリスレーブが起動している場合のみ"
  5005. "(failure、2)"
  5006. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:682
  5007. msgid "Open iptables rules overview…"
  5008. msgstr "iptables ルールの概要を開く…"
  5009. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472
  5010. msgid "Open list..."
  5011. msgstr "リストを開く..."
  5012. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  5013. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:65
  5014. msgid "OpenConnect (CISCO AnyConnect)"
  5015. msgstr "OpenConnect(CISCO AnyConnect)"
  5016. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:63
  5017. msgid "OpenFortivpn"
  5018. msgstr "OpenFortivpn"
  5019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:741
  5020. msgid ""
  5021. "Operate in <em>relay mode</em> if a designated master interface is "
  5022. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  5023. "Protocol\">NDP</abbr> proxying."
  5024. msgstr ""
  5025. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:740
  5026. msgid ""
  5027. "Operate in <em>relay mode</em> if a designated master interface is "
  5028. "configured and active, otherwise fall back to <em>server mode</em>."
  5029. msgstr ""
  5030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:742
  5031. msgid ""
  5032. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  5033. "otherwise disable service."
  5034. msgstr ""
  5035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  5036. msgid "Operating frequency"
  5037. msgstr "動作周波数"
  5038. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:100
  5039. msgid "Operator"
  5040. msgstr ""
  5041. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:101
  5042. msgid "Operator Code"
  5043. msgstr ""
  5044. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:135
  5045. msgid "Operator Name"
  5046. msgstr ""
  5047. #: modules/luci-base/htdocs/luci-static/resources/form.js:2006
  5048. #: modules/luci-base/htdocs/luci-static/resources/form.js:4106
  5049. msgid "Option \"%s\" contains an invalid input value."
  5050. msgstr "オプション\"%s\"に無効な入力値が含まれています。"
  5051. #: modules/luci-base/htdocs/luci-static/resources/form.js:2021
  5052. msgid "Option \"%s\" must not be empty."
  5053. msgstr "オプション\"%s\"を設定してください。"
  5054. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4445
  5055. msgid "Option changed"
  5056. msgstr "変更されるオプション"
  5057. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4447
  5058. msgid "Option removed"
  5059. msgstr "削除されるオプション"
  5060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440
  5061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1779
  5062. msgid "Optional"
  5063. msgstr "オプション"
  5064. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:786
  5065. msgid "Optional hostname to assign"
  5066. msgstr ""
  5067. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:142
  5068. msgid "Optional, free-form notes about this device"
  5069. msgstr "このデバイスについての備考(オプション)"
  5070. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5071. msgid "Optional, in seconds. If set to '0', no reconnect is attempted."
  5072. msgstr ""
  5073. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:201
  5074. msgid ""
  5075. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  5076. "starting with <code>0x</code>."
  5077. msgstr ""
  5078. "暗号化された送信パケットの32ビットマークです。<code>0x</code>から始まる16進数"
  5079. "を入力してください(オプション)。"
  5080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1084
  5081. msgid ""
  5082. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  5083. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  5084. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  5085. "for the interface."
  5086. msgstr ""
  5087. "IPv6プレフィックス(例: 'a:b:c:d::')を代理サーバーから受信する場合、インター"
  5088. "フェースのIPv6アドレス('a:b:c:d::1')を形成するために使用されるサフィックス"
  5089. "(例: '::1')を指定します(オプション) 。使用できる値: 'eui64','random'また"
  5090. "は'::1'や'::1:2'のような固定値。"
  5091. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5092. #, fuzzy
  5093. msgid ""
  5094. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  5095. "symmetric-key cryptography for post-quantum resistance."
  5096. msgstr ""
  5097. "Base64でエンコードされた事前共有キーです。ポスト量子レジスタンスのため、対称"
  5098. "鍵暗号の追加層を追加します(オプション)。"
  5099. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  5100. msgid "Optional. Create routes for Allowed IPs for this peer."
  5101. msgstr "このピアの許可されたIPのルートを作成します(オプション)。"
  5102. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:517
  5103. msgid "Optional. Description of peer."
  5104. msgstr "ピアの説明(オプション)。"
  5105. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:185
  5106. msgid "Optional. Do not create host routes to peers."
  5107. msgstr "ピアへのホストルートを作成しない(オプション)。"
  5108. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:662
  5109. msgid ""
  5110. "Optional. Host of peer. Names are resolved prior to bringing up the "
  5111. "interface."
  5112. msgstr ""
  5113. "ピアのホストです。名前はインターフェースの起動前に解決されます(オプショ"
  5114. "ン)。"
  5115. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:624
  5116. msgid ""
  5117. "Optional. IP addresses and prefixes that this peer is allowed to use inside "
  5118. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  5119. "routes through the tunnel."
  5120. msgstr ""
  5121. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46
  5122. msgid "Optional. Maximum Transmission Unit of the XFRM interface."
  5123. msgstr ""
  5124. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:196
  5125. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  5126. msgstr "トンネルインターフェースのMaximum Transmission Unit(オプション)。"
  5127. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:678
  5128. msgid "Optional. Port of peer."
  5129. msgstr "ピアのポート(オプション)。"
  5130. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5131. msgid ""
  5132. "Optional. Private key of the WireGuard peer. The key is not required for "
  5133. "establishing a connection but allows generating a peer configuration or QR "
  5134. "code if available. It can be removed after the configuration has been "
  5135. "exported."
  5136. msgstr ""
  5137. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5138. #, fuzzy
  5139. msgid ""
  5140. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  5141. "Recommended value if this device is behind a NAT is 25."
  5142. msgstr ""
  5143. "キープアライブメッセージの送信間隔(秒)です。デフォルトは0(無効)です。この"
  5144. "デバイスがNATを使用する場合の推奨値は25です(オプション)。"
  5145. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176
  5146. msgid "Optional. UDP port used for outgoing and incoming packets."
  5147. msgstr "送信パケットと受信パケットに使用されるUDPポート(オプション)。"
  5148. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  5149. msgid "Options"
  5150. msgstr "オプション"
  5151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:612
  5152. msgid ""
  5153. "Options for the Network-ID. (Note: needs also Network-ID.) E.g. "
  5154. "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</"
  5155. "code>\" for default route. <code>0.0.0.0</code> means \"the address of the "
  5156. "system running dnsmasq\"."
  5157. msgstr ""
  5158. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125
  5159. msgid "Options:"
  5160. msgstr "オプション :"
  5161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5163. msgid "Ordinal: lower comes first."
  5164. msgstr ""
  5165. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55
  5166. msgid "Originator Interval"
  5167. msgstr ""
  5168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  5169. msgid "Other:"
  5170. msgstr "その他:"
  5171. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  5172. msgid "Out"
  5173. msgstr "アウト"
  5174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  5175. msgid "Outbound:"
  5176. msgstr "送信:"
  5177. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  5178. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  5179. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  5180. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  5181. msgid "Outgoing checksum"
  5182. msgstr "送信チェックサム"
  5183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  5184. msgid "Outgoing interface"
  5185. msgstr ""
  5186. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  5187. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  5188. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  5189. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  5190. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:68
  5191. msgid "Outgoing key"
  5192. msgstr "送信キー"
  5193. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5194. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5196. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5197. msgid "Outgoing serialization"
  5198. msgstr "送信シリアル化"
  5199. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  5200. msgid "Output Interface"
  5201. msgstr "出力インターフェース"
  5202. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  5203. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  5204. msgid "Output zone"
  5205. msgstr "出力ゾーン"
  5206. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  5207. msgid "Overlap"
  5208. msgstr "オーバーラップ"
  5209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1021
  5210. msgid "Override IPv4 routing table"
  5211. msgstr "IPv4 ルーティングテーブルのオーバーライド"
  5212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1026
  5213. msgid "Override IPv6 routing table"
  5214. msgstr "IPv6 ルーティング テーブルのオーバーライド"
  5215. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:54
  5216. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5217. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5218. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5219. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5220. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5221. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:128
  5222. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:142
  5223. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:194
  5224. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  5225. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  5226. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  5227. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  5228. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  5229. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  5230. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  5231. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:55
  5232. msgid "Override MTU"
  5233. msgstr "MTUを上書き"
  5234. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5235. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5236. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5237. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5238. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5239. msgid "Override TOS"
  5240. msgstr "TOSを上書き"
  5241. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5242. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5243. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5244. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5245. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5246. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5247. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5248. msgid "Override TTL"
  5249. msgstr "TTLを上書き"
  5250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1161
  5251. msgid ""
  5252. "Override default MAC address - the range of usable addresses might be "
  5253. "limited by the driver"
  5254. msgstr ""
  5255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1153
  5256. msgid "Override default interface name"
  5257. msgstr "デフォルトのインターフェース名を上書き"
  5258. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  5259. msgid "Override the gateway in DHCP responses"
  5260. msgstr "DHCPレスポンス内のゲートウェイを上書き"
  5261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:708
  5262. msgid ""
  5263. "Override the netmask sent to clients. Normally it is calculated from the "
  5264. "subnet that is served."
  5265. msgstr ""
  5266. "クライアントへ通知するネットマスクを上書きします。通常は、設定されているサブ"
  5267. "ネットから計算されます。"
  5268. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  5269. msgid "Override the table used for internal routes"
  5270. msgstr "内部ルートに使用されるテーブルを上書き"
  5271. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  5272. msgid "Overview"
  5273. msgstr "概要"
  5274. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2780
  5275. msgid "Overwrite existing file \"%s\" ?"
  5276. msgstr "既存のファイル\"%s\"を上書きしますか?"
  5277. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:355
  5278. msgid "Overwrite the current settings with the imported configuration?"
  5279. msgstr ""
  5280. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:98
  5281. msgid "Own Numbers"
  5282. msgstr ""
  5283. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  5284. msgid "Owner"
  5285. msgstr "オーナー"
  5286. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:78
  5287. msgid "PAP"
  5288. msgstr ""
  5289. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:77
  5290. msgid "PAP/CHAP"
  5291. msgstr ""
  5292. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:80
  5293. msgid "PAP/CHAP (both)"
  5294. msgstr "PAP/CHAP(両方)"
  5295. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:111
  5296. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:88
  5297. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:130
  5298. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:107
  5299. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  5300. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  5301. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  5302. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  5303. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  5304. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:94
  5305. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  5306. msgid "PAP/CHAP password"
  5307. msgstr "PAP/CHAPパスワード"
  5308. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  5309. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:83
  5310. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  5311. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:105
  5312. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  5313. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  5314. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  5315. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  5316. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  5317. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:89
  5318. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  5319. msgid "PAP/CHAP username"
  5320. msgstr "PAP/CHAPユーザー名"
  5321. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:94
  5322. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:114
  5323. msgid "PDP Type"
  5324. msgstr "PDPタイプ"
  5325. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  5326. msgid "PID"
  5327. msgstr "PID"
  5328. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  5329. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:73
  5330. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76
  5331. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  5332. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:79
  5333. msgid "PIN"
  5334. msgstr "PIN"
  5335. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  5336. #: modules/luci-compat/luasrc/model/network.lua:39
  5337. msgid "PIN code rejected"
  5338. msgstr "PINコードが拒否されました"
  5339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  5340. msgid "PMK R1 Push"
  5341. msgstr "PMK R1プッシュ"
  5342. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  5343. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  5344. msgid "PPP"
  5345. msgstr "PPP"
  5346. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  5347. msgid "PPPoA Encapsulation"
  5348. msgstr "PPPoAカプセル化"
  5349. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  5350. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  5351. msgid "PPPoATM"
  5352. msgstr "PPPoATM"
  5353. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  5354. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  5355. msgid "PPPoE"
  5356. msgstr "PPPoE"
  5357. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  5358. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  5359. msgid "PPPoSSH"
  5360. msgstr "PPPoSSH"
  5361. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  5362. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  5363. msgid "PPtP"
  5364. msgstr "PPtP"
  5365. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  5366. msgid "PSID offset"
  5367. msgstr "PSIDオフセット"
  5368. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  5369. msgid "PSID-bits length"
  5370. msgstr "PSIDビット長"
  5371. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:571
  5372. msgctxt "Label indicating that WireGuard peer uses a PSK"
  5373. msgid "PSK"
  5374. msgstr ""
  5375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1580
  5376. msgid "PTM/EFM (Packet Transfer Mode)"
  5377. msgstr "PTM/EFM(パケット転送モード)"
  5378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  5379. msgid "PXE/TFTP Settings"
  5380. msgstr ""
  5381. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:103
  5382. msgid "Packet Service State"
  5383. msgstr ""
  5384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1538
  5385. msgid "Packet Steering"
  5386. msgstr "パケットステアリング"
  5387. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:25
  5388. msgctxt "nft meta mark"
  5389. msgid "Packet mark"
  5390. msgstr ""
  5391. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:27
  5392. msgctxt "nft meta time"
  5393. msgid "Packet receive time"
  5394. msgstr ""
  5395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5396. msgid "Packets"
  5397. msgstr "パケット"
  5398. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:277
  5399. msgid "Packets To Transmit Before Moving To Next Slave"
  5400. msgstr "次のスレーブに移動する前に送信するパケット"
  5401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:291
  5402. msgid "Part of network:"
  5403. msgid_plural "Part of networks:"
  5404. msgstr[0] ""
  5405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  5406. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1260
  5407. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:259
  5408. msgid "Part of zone %q"
  5409. msgstr "ゾーン%qの一部"
  5410. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:492
  5411. msgctxt "MACVLAN mode"
  5412. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  5413. msgstr "パススルー(物理デバイスを単一の MAC ベース VLAN へミラー)"
  5414. #: modules/luci-base/ucode/template/sysauth.ut:29
  5415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1770
  5416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  5417. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:149
  5418. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103
  5419. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  5420. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19
  5421. msgid "Password"
  5422. msgstr "パスワード"
  5423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  5424. msgid "Password authentication"
  5425. msgstr "パスワード認証"
  5426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1702
  5427. msgid "Password of Private Key"
  5428. msgstr "秘密鍵のパスワード"
  5429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1760
  5430. msgid "Password of inner Private Key"
  5431. msgstr "内部秘密鍵のパスワード"
  5432. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  5433. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5434. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  5435. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  5436. msgid "Password strength"
  5437. msgstr "パスワード強度"
  5438. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:152
  5439. msgid "Password2"
  5440. msgstr "パスワード2"
  5441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266
  5442. msgid "Paste or drag SSH key file…"
  5443. msgstr "SSH鍵を貼り付けるかファイルをドラッグ…"
  5444. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:444
  5445. msgid "Paste or drag WireGuard peer configuration (wg0.conf) file…"
  5446. msgstr ""
  5447. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:437
  5448. msgid ""
  5449. "Paste or drag a WireGuard configuration (commonly <em>wg0.conf</em>) from "
  5450. "another system below to create a matching peer entry allowing that system to "
  5451. "connect to the local WireGuard interface."
  5452. msgstr ""
  5453. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:443
  5454. msgid "Paste or drag supplied WireGuard configuration file…"
  5455. msgstr ""
  5456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  5457. msgid "Path to CA-Certificate"
  5458. msgstr "CA証明書のパス"
  5459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1696
  5460. msgid "Path to Client-Certificate"
  5461. msgstr "クライアント証明書のパス"
  5462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1699
  5463. msgid "Path to Private Key"
  5464. msgstr "秘密鍵のパス"
  5465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1739
  5466. msgid "Path to inner CA-Certificate"
  5467. msgstr "内部CA証明書のパス"
  5468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1754
  5469. msgid "Path to inner Client-Certificate"
  5470. msgstr "内部クライアント証明書のパス"
  5471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1757
  5472. msgid "Path to inner Private Key"
  5473. msgstr "内部秘密鍵のパス"
  5474. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2727
  5475. msgid "Paused"
  5476. msgstr "一時停止中"
  5477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  5478. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  5479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  5480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  5481. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  5482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  5483. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  5484. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  5485. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  5486. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  5487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  5488. msgid "Peak:"
  5489. msgstr "ピーク:"
  5490. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:74
  5491. msgid "Peer"
  5492. msgstr "ピア"
  5493. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:51
  5494. msgid "Peer Details"
  5495. msgstr ""
  5496. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  5497. msgid "Peer IP address to assign"
  5498. msgstr "割り当てるピアIPアドレス"
  5499. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:667
  5500. msgid "Peer MAC address"
  5501. msgstr "ピアの MAC アドレス"
  5502. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  5503. #: modules/luci-compat/luasrc/model/network.lua:32
  5504. msgid "Peer address is missing"
  5505. msgstr "ピアアドレスがありません"
  5506. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:648
  5507. msgid "Peer device name"
  5508. msgstr "ピアのデバイス名"
  5509. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:513
  5510. msgid "Peer disabled"
  5511. msgstr ""
  5512. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:214
  5513. msgid "Peers"
  5514. msgstr "ピア"
  5515. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  5516. msgid "Perfect Forward Secrecy"
  5517. msgstr "Perfect Forward Secrecy(完全転送秘密)"
  5518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  5519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  5520. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  5521. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  5522. msgid "Perform outgoing packets serialization (optional)."
  5523. msgstr "送信パケットのシリアル化を実行します(オプション)。"
  5524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  5525. msgid "Perform reboot"
  5526. msgstr "再起動する"
  5527. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:406
  5528. msgid "Perform reset"
  5529. msgstr "初期化する"
  5530. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  5531. msgid "Permission denied"
  5532. msgstr "アクセス許可が拒否されました"
  5533. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:683
  5534. msgid "Persistent Keep Alive"
  5535. msgstr "永続的なキープアライブ"
  5536. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:147
  5537. msgid "Persistent reconnect interval"
  5538. msgstr ""
  5539. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:334
  5540. msgid "PersistentKeepAlive setting is invalid"
  5541. msgstr ""
  5542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  5543. msgid "Phy Rate:"
  5544. msgstr "物理レート:"
  5545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:496
  5546. msgid "Physical Settings"
  5547. msgstr "デバイス設定"
  5548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:87
  5549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:88
  5550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:98
  5551. msgid "Ping"
  5552. msgstr "Ping"
  5553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5557. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  5558. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  5559. msgid "Pkts."
  5560. msgstr "パケット"
  5561. #: modules/luci-base/ucode/template/sysauth.ut:19
  5562. msgid "Please enter your username and password."
  5563. msgstr "ユーザー名とパスワードを入力してください。"
  5564. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4176
  5565. msgid "Please select the file to upload."
  5566. msgstr "アップロードするファイルを選択してください。"
  5567. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5568. msgid "Policy"
  5569. msgstr "ポリシー"
  5570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:594
  5571. msgctxt "Chain hook policy"
  5572. msgid "Policy: <strong>%h</strong> (%h)"
  5573. msgstr ""
  5574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660
  5575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  5576. msgid "Port"
  5577. msgstr "ポート"
  5578. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:137
  5579. #, fuzzy
  5580. msgctxt "WireGuard listen port"
  5581. msgid "Port %d"
  5582. msgstr "ポート %s"
  5583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:293
  5584. msgid "Port is not part of any network"
  5585. msgstr ""
  5586. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:770
  5587. msgid "Port isolation"
  5588. msgstr "ポート分離"
  5589. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:299
  5590. msgid "Port status"
  5591. msgstr ""
  5592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  5593. msgid "Port status:"
  5594. msgstr "ポートステータス:"
  5595. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  5596. #, fuzzy
  5597. msgid "Potential negation of: %s"
  5598. msgstr "存在しない可能性があります: %s"
  5599. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:89
  5600. msgid "Power State"
  5601. msgstr ""
  5602. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  5603. msgid "Prefer LTE"
  5604. msgstr "LTEを優先"
  5605. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  5606. msgid "Prefer UMTS"
  5607. msgstr "UMTSを優先"
  5608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:979
  5609. msgid "Preferred lifetime for a prefix."
  5610. msgstr ""
  5611. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:106
  5612. msgid "Preferred network technology"
  5613. msgstr ""
  5614. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  5615. msgid "Prefix Delegated"
  5616. msgstr "委任されたプレフィックス(PD)"
  5617. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5618. msgid "Prefix suppressor"
  5619. msgstr ""
  5620. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:599
  5621. msgid "Preshared Key"
  5622. msgstr "事前共有鍵"
  5623. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:570
  5624. msgid "Preshared key in use"
  5625. msgstr ""
  5626. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:308
  5627. msgid "PresharedKey setting is invalid"
  5628. msgstr ""
  5629. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:130
  5630. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  5631. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  5632. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  5633. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  5634. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  5635. msgid ""
  5636. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  5637. "ignore failures"
  5638. msgstr ""
  5639. "設定された回数LCP echoが失敗後、ピアがダウンしたと見なします。0を設定した場"
  5640. "合、失敗しても無視します"
  5641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1149
  5642. msgid "Prevents client-to-client communication"
  5643. msgstr "クライアント同士の通信を制限"
  5644. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:61
  5645. msgid ""
  5646. "Prevents one wireless client to talk to another. This setting only affects "
  5647. "packets without any VLAN tag (untagged packets)."
  5648. msgstr ""
  5649. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:213
  5650. msgid "Primary Slave"
  5651. msgstr "プライマリスレーブ"
  5652. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:230
  5653. msgid ""
  5654. "Primary becomes active slave when it comes back up if speed and duplex "
  5655. "better than current slave (better, 1)"
  5656. msgstr ""
  5657. "現在のスレーブよりアクティブスレーブの方が速度とデュプレックスが優れている場"
  5658. "合、プライマリはアクティブスレーブになります(better、1)"
  5659. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  5660. #, fuzzy
  5661. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  5662. msgstr "プライマリが復旧するとアクティブスレーブになります(always、0)"
  5663. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:562
  5664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665
  5665. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697
  5666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  5667. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  5668. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223
  5669. msgid "Priority"
  5670. msgstr "優先度"
  5671. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:565
  5672. msgctxt "Label indicating that WireGuard peer private key is stored"
  5673. msgid "Private"
  5674. msgstr ""
  5675. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:490
  5676. msgctxt "MACVLAN mode"
  5677. msgid "Private (Prevent communication between MAC VLANs)"
  5678. msgstr "プライベート(MAC ベース VLAN間の通信を防ぐ)"
  5679. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  5680. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:590
  5681. msgid "Private Key"
  5682. msgstr "秘密鍵"
  5683. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:564
  5684. msgid "Private key present"
  5685. msgstr ""
  5686. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:296
  5687. msgid "PrivateKey setting is missing or invalid"
  5688. msgstr ""
  5689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  5690. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:93
  5691. msgid "Processes"
  5692. msgstr "プロセス"
  5693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  5694. msgid "Prot."
  5695. msgstr "プロトコル"
  5696. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  5697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:571
  5698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1180
  5699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  5700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  5701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:191
  5702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:217
  5703. msgid "Protocol"
  5704. msgstr "プロトコル"
  5705. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:282
  5706. msgid "Provide NTP server"
  5707. msgstr "NTPサーバーを有効化"
  5708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:930
  5709. msgid ""
  5710. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  5711. "and requests."
  5712. msgstr ""
  5713. "このインターフェースで DHCPv6 サーバーを提供し、 DHCPv6 の要請やリクエストに"
  5714. "応答します"
  5715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  5716. msgid "Provide new network"
  5717. msgstr "新しいネットワークを設定"
  5718. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:288
  5719. msgid ""
  5720. "Provide the NTP server to the selected interface or, if unspecified, to all "
  5721. "interfaces"
  5722. msgstr ""
  5723. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:155
  5724. msgid "Proxy Server"
  5725. msgstr ""
  5726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1653
  5727. msgid "ProxyARP"
  5728. msgstr ""
  5729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1072
  5730. msgid "Pseudo Ad-Hoc (ahdemo)"
  5731. msgstr "擬似アドホック(ahdemo)"
  5732. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:158
  5733. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  5734. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:37
  5735. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:54
  5736. msgid "Public Key"
  5737. msgstr "公開鍵"
  5738. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:547
  5739. msgid "Public key is missing"
  5740. msgstr ""
  5741. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:556
  5742. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:101
  5743. msgctxt "Tooltip displaying full WireGuard peer public key"
  5744. msgid "Public key: %h"
  5745. msgstr ""
  5746. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290
  5747. msgid ""
  5748. "Public keys allow for the passwordless SSH logins with a higher security "
  5749. "compared to the use of plain passwords. In order to upload a new key to the "
  5750. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  5751. "code> file into the input field."
  5752. msgstr ""
  5753. "公開鍵を使うことで、普通のパスワードよりもセキュリティが高いSSHログインが可能"
  5754. "です。新しい鍵をデバイスにアップロードするには、入力欄にOpenSSH互換の公開鍵"
  5755. "(1行)を貼り付けるか、<code>.pub</code>ファイルをドラッグしてください。"
  5756. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  5757. #, fuzzy
  5758. msgid "Public prefix routed to this device for distribution to clients."
  5759. msgstr ""
  5760. "クライアントに接続するために、このデバイスにルーティングされるパブリックプレ"
  5761. "フィックスです。"
  5762. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:305
  5763. msgid "PublicKey setting is invalid"
  5764. msgstr ""
  5765. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  5766. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  5767. msgid "QMI Cellular"
  5768. msgstr "QMIセルラー"
  5769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  5770. msgid "Quality"
  5771. msgstr "品質"
  5772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514
  5773. msgid "Query all available upstream resolvers."
  5774. msgstr ""
  5775. "利用可能なすべての上位<abbr title=\"Domain Name System\">DNS</abbr>サーバに問"
  5776. "い合わせる"
  5777. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:610
  5778. msgid "Query interval"
  5779. msgstr "クエリー間隔"
  5780. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  5781. msgid "Query response interval"
  5782. msgstr "クエリー レスポンス間隔"
  5783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  5784. msgid "R0 Key Lifetime"
  5785. msgstr "R0キー有効期限"
  5786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  5787. msgid "R1 Key Holder"
  5788. msgstr "R1キーホルダー"
  5789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  5790. msgid "RADIUS Accounting Port"
  5791. msgstr "Radiusアカウンティング-ポート"
  5792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1431
  5793. msgid "RADIUS Accounting Secret"
  5794. msgstr "Radiusアカウンティング-秘密鍵"
  5795. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  5796. msgid "RADIUS Accounting Server"
  5797. msgstr "Radiusアカウンティング-サーバー"
  5798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1409
  5799. msgid "RADIUS Authentication Port"
  5800. msgstr "Radius認証-ポート"
  5801. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  5802. msgid "RADIUS Authentication Secret"
  5803. msgstr "Radius認証-秘密鍵"
  5804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1404
  5805. msgid "RADIUS Authentication Server"
  5806. msgstr "Radius認証-サーバー"
  5807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  5808. msgid "RADIUS Dynamic VLAN Assignment"
  5809. msgstr ""
  5810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1446
  5811. msgid "RADIUS Per STA VLAN"
  5812. msgstr ""
  5813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1463
  5814. msgid "RADIUS VLAN Bridge Naming Scheme"
  5815. msgstr ""
  5816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1450
  5817. msgid "RADIUS VLAN Naming"
  5818. msgstr ""
  5819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1453
  5820. msgid "RADIUS VLAN Tagged Interface"
  5821. msgstr ""
  5822. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  5823. msgid "RFC3947 NAT-T mode"
  5824. msgstr "RFC3947 NAT-Tモード"
  5825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  5826. msgid "RSN Preauth"
  5827. msgstr ""
  5828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:998
  5829. msgid "RSSI threshold for joining"
  5830. msgstr "ネットワークに接続するためのRSSIしきい値"
  5831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:961
  5832. msgid "RTS/CTS Threshold"
  5833. msgstr "RTS/CTSしきい値"
  5834. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  5835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  5836. msgid "RX"
  5837. msgstr "RX"
  5838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  5839. msgid "RX Rate"
  5840. msgstr "受信レート"
  5841. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2260
  5842. msgid "RX Rate / TX Rate"
  5843. msgstr "受信レート/送信レート"
  5844. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1614
  5845. msgid ""
  5846. "Radio Resource Measurement - Sends beacons to assist roaming. Not all "
  5847. "clients support this."
  5848. msgstr ""
  5849. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:61
  5850. msgctxt "nft nat flag random"
  5851. msgid "Randomize source port mapping"
  5852. msgstr ""
  5853. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  5854. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  5855. msgstr ""
  5856. "16進数でエンコードされた、生のバイト値です。 ISPがこれを要求しない場合、空欄"
  5857. "にしてください"
  5858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:420
  5859. msgid "Read <code>/etc/ethers</code> to configure the DHCP server."
  5860. msgstr ""
  5861. "<code>/etc/ethers</code>を元に<abbr title=\"Dynamic Host Configuration "
  5862. "Protocol\">DHCP</abbr>サーバーを設定"
  5863. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:576
  5864. msgid "Really switch protocol?"
  5865. msgstr "本当にプロトコルを変更しますか?"
  5866. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  5867. msgid "Realtime Graphs"
  5868. msgstr "リアルタイムグラフ"
  5869. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  5870. msgid "Reassociation Deadline"
  5871. msgstr "再接続制限時間"
  5872. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312
  5873. msgid "Rebind protection"
  5874. msgstr "DNSリバインディング保護"
  5875. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  5876. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:140
  5877. msgid "Reboot"
  5878. msgstr "再起動"
  5879. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  5880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  5881. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  5882. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  5883. msgid "Rebooting…"
  5884. msgstr "再起動中…"
  5885. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  5886. msgid "Reboots the operating system of your device"
  5887. msgstr "デバイスのオペレーティングシステムを再起動"
  5888. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:26
  5889. msgid "Receive"
  5890. msgstr "受信"
  5891. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:243
  5892. msgid "Receive dropped"
  5893. msgstr ""
  5894. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:242
  5895. msgid "Receive errors"
  5896. msgstr ""
  5897. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:57
  5898. #, fuzzy
  5899. msgid "Received Data"
  5900. msgstr "受信"
  5901. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:239
  5902. msgid "Received bytes"
  5903. msgstr ""
  5904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:241
  5905. msgid "Received multicast"
  5906. msgstr ""
  5907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:240
  5908. msgid "Received packets"
  5909. msgstr ""
  5910. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:181
  5911. msgid "Recommended. IP addresses of the WireGuard interface."
  5912. msgstr "WireGuardインターフェースのIPアドレスです(推奨)。"
  5913. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:199
  5914. msgid "Reconnect Timeout"
  5915. msgstr ""
  5916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:521
  5917. msgid "Reconnect this interface"
  5918. msgstr "このインターフェースを再接続"
  5919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14
  5920. msgid "Redirect to HTTPS"
  5921. msgstr "HTTPS へのリダイレクト"
  5922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:118
  5923. msgctxt "nft redirect to port"
  5924. msgid "Redirect to local port <strong>%h</strong>"
  5925. msgstr ""
  5926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:117
  5927. msgctxt "nft redirect"
  5928. msgid "Redirect to local system"
  5929. msgstr ""
  5930. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  5931. msgid "References"
  5932. msgstr "参照"
  5933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:373
  5934. msgid "Refresh Channels"
  5935. msgstr ""
  5936. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2721
  5937. msgid "Refreshing"
  5938. msgstr "更新中"
  5939. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:102
  5940. msgid "Registration State"
  5941. msgstr ""
  5942. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:101
  5943. msgctxt "nft reject with icmp type"
  5944. msgid "Reject IPv4 packet with <strong>ICMP type %h</strong>"
  5945. msgstr ""
  5946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:103
  5947. msgctxt "nft reject with icmpx type"
  5948. msgid "Reject packet with <strong>ICMP type %h</strong>"
  5949. msgstr ""
  5950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:102
  5951. msgctxt "nft reject with icmpv6 type"
  5952. msgid "Reject packet with <strong>ICMPv6 type %h</strong>"
  5953. msgstr ""
  5954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:100
  5955. msgctxt "nft reject with tcp reset"
  5956. msgid "Reject packet with <strong>TCP reset</strong>"
  5957. msgstr ""
  5958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:192
  5959. msgid ""
  5960. "Reject routing decisions that have a prefix length less than or equal to the "
  5961. "specified value"
  5962. msgstr ""
  5963. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  5964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262
  5965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:692
  5966. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  5967. msgid "Relay"
  5968. msgstr "リレー"
  5969. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  5970. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  5971. msgid "Relay Bridge"
  5972. msgstr "リレーブリッジ"
  5973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355
  5974. msgid "Relay DHCP requests elsewhere. OK: v4↔v4, v6↔v6. Not OK: v4↔v6, v6↔v4."
  5975. msgstr ""
  5976. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  5977. msgid "Relay between networks"
  5978. msgstr "ネットワーク間のリレー"
  5979. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  5980. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  5981. msgid "Relay bridge"
  5982. msgstr "リレーブリッジ"
  5983. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367
  5984. msgid "Relay from"
  5985. msgstr ""
  5986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387
  5987. msgid "Relay to address"
  5988. msgstr ""
  5989. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5990. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5991. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5992. msgid "Remote IPv4 address"
  5993. msgstr "リモートIPv4アドレス"
  5994. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5995. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5996. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5997. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  5998. msgid "Remote IPv4 address or FQDN"
  5999. msgstr "リモートIPv4アドレスまたはFQDN"
  6000. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  6001. msgid "Remote IPv6 address"
  6002. msgstr "リモートIPv6アドレス"
  6003. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  6004. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  6005. msgid "Remote IPv6 address or FQDN"
  6006. msgstr "リモートIPv6アドレスまたはFQDN"
  6007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  6008. msgid "Remove"
  6009. msgstr "削除"
  6010. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474
  6011. msgid "Remove IPv4 addresses from the results and only return IPv6 addresses."
  6012. msgstr ""
  6013. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:468
  6014. msgid "Remove IPv6 addresses from the results and only return IPv4 addresses."
  6015. msgstr ""
  6016. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1361
  6017. msgid "Remove related device settings from the configuration"
  6018. msgstr "関連するデバイス構成を設定から削除します"
  6019. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2102
  6020. msgid "Replace wireless configuration"
  6021. msgstr "無線設定を置換"
  6022. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  6023. msgid "Request IPv6-address"
  6024. msgstr "IPv6アドレスをリクエスト"
  6025. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  6026. msgid "Request IPv6-prefix of length"
  6027. msgstr "リクエストするIPv6のプレフィックス長"
  6028. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  6029. msgid "Request timeout"
  6030. msgstr "リクエストタイムアウト"
  6031. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  6032. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  6033. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  6034. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  6035. msgid "Require incoming checksum (optional)."
  6036. msgstr "受信チェックサムを要求(オプション)。"
  6037. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  6038. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  6039. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  6040. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  6041. msgid "Require incoming packets serialization (optional)."
  6042. msgstr "受信パケットのシリアル化を要求(オプション)。"
  6043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  6044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1780
  6045. msgid "Required"
  6046. msgstr "必須"
  6047. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6048. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  6049. msgstr "DOCSIS 3などを使用するいくつかのISPで必要です"
  6050. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:151
  6051. msgid "Required. Base64-encoded private key for this interface."
  6052. msgstr "このインターフェースに使用するBase64エンコードの秘密鍵(必須)。"
  6053. #: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40
  6054. msgid "Required. Path to the .yml config file for this interface."
  6055. msgstr ""
  6056. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:585
  6057. msgid "Required. Public key of the WireGuard peer."
  6058. msgstr ""
  6059. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42
  6060. msgid "Required. Underlying interface."
  6061. msgstr ""
  6062. #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39
  6063. msgid "Required. XFRM interface ID to be used for SA."
  6064. msgstr ""
  6065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1437
  6066. msgid ""
  6067. "Required: Rejects auth if RADIUS server does not provide appropriate VLAN "
  6068. "attributes."
  6069. msgstr ""
  6070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  6071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1321
  6072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1322
  6073. msgid "Requires hostapd"
  6074. msgstr "hostapdが必要"
  6075. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  6076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  6077. msgid "Requires hostapd with EAP Suite-B support"
  6078. msgstr "EAP Suite-Bをサポートするhostapdが必要"
  6079. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  6080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  6081. msgid "Requires hostapd with EAP support"
  6082. msgstr "EAPをサポートするhostapdが必要"
  6083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  6084. msgid "Requires hostapd with OWE support"
  6085. msgstr "OWEをサポートするhostapdが必要"
  6086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  6087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  6088. msgid "Requires hostapd with SAE support"
  6089. msgstr "SAEをサポートするhostapdが必要"
  6090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  6091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  6092. msgid "Requires hostapd with WEP support"
  6093. msgstr "WEPをサポートするhostapdが必要"
  6094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  6095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1335
  6096. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1336
  6097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1348
  6098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1349
  6099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1350
  6100. msgid "Requires wpa-supplicant"
  6101. msgstr "wpa-supplicantが必要"
  6102. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  6103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1342
  6104. msgid "Requires wpa-supplicant with EAP Suite-B support"
  6105. msgstr "EAP Suite-Bをサポートするwpa-supplicantが必要"
  6106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  6108. msgid "Requires wpa-supplicant with EAP support"
  6109. msgstr "EAPをサポートするwpa-supplicantが必要"
  6110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343
  6111. msgid "Requires wpa-supplicant with OWE support"
  6112. msgstr "OWEをサポートするwpa-supplicantが必要"
  6113. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1337
  6114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1338
  6115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1353
  6116. msgid "Requires wpa-supplicant with SAE support"
  6117. msgstr "SAEをサポートするwpa-supplicantが必要"
  6118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  6119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  6120. msgid "Requires wpa-supplicant with WEP support"
  6121. msgstr "WEPをサポートするwpa-supplicantが必要"
  6122. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:226
  6123. #, fuzzy
  6124. msgid "Reselection policy for primary slave"
  6125. msgstr "プライマリスレーブの再選択ポリシー"
  6126. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197
  6127. #: modules/luci-base/ucode/template/sysauth.ut:39
  6128. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  6129. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  6130. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  6131. msgid "Reset"
  6132. msgstr "リセット"
  6133. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  6134. msgid "Reset Counters"
  6135. msgstr "カウンターをリセット"
  6136. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  6137. msgid "Reset to defaults"
  6138. msgstr "初期化"
  6139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  6140. msgid "Resolv and Hosts Files"
  6141. msgstr "リゾルバとホストファイル"
  6142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  6143. msgid "Resolv file"
  6144. msgstr "リゾルバファイル"
  6145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:298
  6146. msgid "Resolve specified FQDNs to an IP."
  6147. msgstr "これはIPアドレスに強制的に設定するドメインのリスト。"
  6148. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  6149. msgid "Resource not found"
  6150. msgstr "リソースが見つかりません"
  6151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:523
  6152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:869
  6153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  6154. msgid "Restart"
  6155. msgstr "再起動"
  6156. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  6157. msgid "Restart Firewall"
  6158. msgstr "ファイアウォールを再起動"
  6159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:867
  6160. msgid "Restart radio interface"
  6161. msgstr "無線インターフェースを再起動"
  6162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  6163. msgid "Restore"
  6164. msgstr "復元"
  6165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:410
  6166. msgid "Restore backup"
  6167. msgstr "バックアップを復元"
  6168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479
  6169. msgid ""
  6170. "Return answers to DNS queries matching the subnet from which the query was "
  6171. "received if multiple IPs are available."
  6172. msgstr ""
  6173. "複数のIPが利用可能な場合、リクエスト中のサブネットによってホスト名をローカラ"
  6174. "イズ"
  6175. #: modules/luci-base/htdocs/luci-static/resources/ui.js:386
  6176. #: modules/luci-base/htdocs/luci-static/resources/ui.js:387
  6177. msgid "Reveal/hide password"
  6178. msgstr "パスワードを表示/隠す"
  6179. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  6180. msgid "Reverse path filter"
  6181. msgstr "戻り経路フィルター"
  6182. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4467
  6183. msgid "Revert"
  6184. msgstr "元に戻す"
  6185. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4572
  6186. msgid "Revert changes"
  6187. msgstr "変更の取り消し"
  6188. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4784
  6189. msgid "Revert request failed with status <code>%h</code>"
  6190. msgstr "取り消しのリクエストに失敗しました ステータスコード:<code>%h</code>"
  6191. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4764
  6192. msgid "Reverting configuration…"
  6193. msgstr "設定を元に戻しています…"
  6194. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:84
  6195. msgid "Revision"
  6196. msgstr ""
  6197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:111
  6198. msgctxt "nft dnat ip to addr"
  6199. msgid "Rewrite destination to <strong>%h</strong>"
  6200. msgstr ""
  6201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:114
  6202. msgctxt "nft dnat ip6 to addr"
  6203. msgid "Rewrite destination to <strong>%h</strong>"
  6204. msgstr ""
  6205. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:112
  6206. msgctxt "nft dnat ip to addr:port"
  6207. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6208. msgstr ""
  6209. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:115
  6210. msgctxt "nft dnat ip6 to addr:port"
  6211. msgid "Rewrite destination to <strong>%h</strong>, port <strong>%h</strong>"
  6212. msgstr ""
  6213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:105
  6214. msgctxt "nft snat ip to addr"
  6215. msgid "Rewrite source to <strong>%h</strong>"
  6216. msgstr ""
  6217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108
  6218. msgctxt "nft snat ip6 to addr"
  6219. msgid "Rewrite source to <strong>%h</strong>"
  6220. msgstr ""
  6221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:106
  6222. msgctxt "nft snat ip to addr:port"
  6223. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6224. msgstr ""
  6225. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:109
  6226. msgctxt "nft snat ip6 to addr:port"
  6227. msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>"
  6228. msgstr ""
  6229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:120
  6230. msgid "Rewrite to egress device address"
  6231. msgstr ""
  6232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1485
  6233. msgid ""
  6234. "Robust Security Network (RSN): Allow roaming preauth for WPA2-EAP networks "
  6235. "(and advertise it in WLAN beacons). Only works if the specified network "
  6236. "interface is a bridge. Shortens the time-critical reassociation process."
  6237. msgstr ""
  6238. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  6239. msgid "Robustness"
  6240. msgstr "堅牢性"
  6241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6242. msgid ""
  6243. "Root directory for files served via TFTP. <em>Enable TFTP server</em> and "
  6244. "<em>TFTP server root</em> turn on the TFTP server and serve files from "
  6245. "<em>TFTP server root</em>."
  6246. msgstr ""
  6247. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:298
  6248. msgid "Root preparation"
  6249. msgstr "ルートの準備"
  6250. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6251. msgid "Round-Robin policy (balance-rr, 0)"
  6252. msgstr "ラウンドロビンポリシー(balance-rr、0)"
  6253. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:659
  6254. msgid "Route Allowed IPs"
  6255. msgstr "許可されたIPのルート"
  6256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:532
  6257. msgid "Route action chain \"%h\""
  6258. msgstr ""
  6259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6260. msgid "Route type"
  6261. msgstr "ルートタイプ"
  6262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  6263. msgid ""
  6264. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  6265. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  6266. msgstr ""
  6267. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  6268. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  6269. msgid "Router Password"
  6270. msgstr "ルーターパスワード"
  6271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6272. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  6273. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:248
  6274. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  6275. msgid "Routing"
  6276. msgstr "ルーティング"
  6277. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:44
  6278. msgid "Routing Algorithm"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:28
  6281. msgid ""
  6282. "Routing defines over which interface and gateway a certain host or network "
  6283. "can be reached."
  6284. msgstr ""
  6285. "特定のホストまたはネットワークがどのインターフェースとゲートウェイを通して通"
  6286. "信を行うかのルートを設定します。"
  6287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  6288. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  6289. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:224
  6290. msgid "Rule"
  6291. msgstr "ルール"
  6292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:602
  6293. msgid "Rule actions"
  6294. msgstr ""
  6295. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:475
  6296. msgctxt "nft comment"
  6297. msgid "Rule comment: %s"
  6298. msgstr ""
  6299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:540
  6300. msgid "Rule container chain \"%h\""
  6301. msgstr ""
  6302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:601
  6303. msgid "Rule matches"
  6304. msgstr ""
  6305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6306. msgid "Rule type"
  6307. msgstr ""
  6308. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6309. msgid "Run a filesystem check before mounting the device"
  6310. msgstr "デバイスをマウントする前にファイルシステムチェックを実行"
  6311. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:336
  6312. msgid "Run filesystem check"
  6313. msgstr "ファイルシステムチェックを実行"
  6314. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2360
  6315. msgid "Runtime error"
  6316. msgstr "ランタイムエラー"
  6317. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:224
  6318. msgid "SHA256"
  6319. msgstr "SHA256"
  6320. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:145
  6321. msgid "SIM %d"
  6322. msgstr ""
  6323. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:147
  6324. msgid "SIMs"
  6325. msgstr ""
  6326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  6327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6328. msgid "SNR"
  6329. msgstr "SNR"
  6330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  6331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  6332. msgid "SRV"
  6333. msgstr ""
  6334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  6335. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  6336. msgid "SSH Access"
  6337. msgstr "SSHアクセス"
  6338. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  6339. msgid "SSH server address"
  6340. msgstr "SSHサーバーアドレス"
  6341. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  6342. msgid "SSH server port"
  6343. msgstr "SSHサーバーポート"
  6344. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  6345. msgid "SSH username"
  6346. msgstr "SSHユーザー名"
  6347. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289
  6348. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  6349. msgid "SSH-Keys"
  6350. msgstr "SSH-キー"
  6351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  6352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  6353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1838
  6354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:401
  6355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6356. msgid "SSID"
  6357. msgstr "SSID"
  6358. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  6359. msgid "SSTP"
  6360. msgstr "SSTP"
  6361. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  6362. msgid "SSTP Server"
  6363. msgstr "SSTPサーバー"
  6364. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  6365. msgid "SWAP"
  6366. msgstr "スワップ"
  6367. #: modules/luci-base/htdocs/luci-static/resources/form.js:3274
  6368. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2192
  6369. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  6370. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  6371. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  6372. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:463
  6373. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  6374. msgid "Save"
  6375. msgstr "保存"
  6376. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2174
  6377. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4455
  6378. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  6379. msgid "Save & Apply"
  6380. msgstr "保存&適用"
  6381. #: modules/luci-base/htdocs/luci-static/resources/form.js:607
  6382. msgid "Save error"
  6383. msgstr "保存エラー"
  6384. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:434
  6385. msgid "Save mtdblock"
  6386. msgstr "mtdblockを保存"
  6387. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  6388. msgid "Save mtdblock contents"
  6389. msgstr "mtdblockの内容を保存"
  6390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  6391. msgid "Scan"
  6392. msgstr "スキャン"
  6393. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  6394. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:90
  6395. msgid "Scheduled Tasks"
  6396. msgstr "スケジュールタスク"
  6397. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:39
  6398. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:62
  6399. msgid "Section %s is empty."
  6400. msgstr ""
  6401. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4441
  6402. msgid "Section added"
  6403. msgstr "追加されるセクション"
  6404. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4443
  6405. msgid "Section removed"
  6406. msgstr "削除されるセクション"
  6407. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:332
  6408. msgid "See \"mount\" manpage for details"
  6409. msgstr "詳細については\"mount\"のmanページを参照してください"
  6410. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:283
  6411. msgid ""
  6412. "Select 'Force upgrade' to flash the image even if the image format check "
  6413. "fails. Use only if you are sure that the firmware is correct and meant for "
  6414. "your device!"
  6415. msgstr ""
  6416. "イメージ形式のチェックが失敗した場合でも更新を行う場合、'強制アップグレード' "
  6417. "を選択してください。正しいファームウェアであること、デバイスに適したものであ"
  6418. "ることが確かな場合のみ使用してください!"
  6419. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2681
  6420. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2821
  6421. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2981
  6422. msgid "Select file…"
  6423. msgstr "ファイルを選択…"
  6424. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6425. msgid "Selects the transmit hash policy to use for slave selection"
  6426. msgstr "スレーブ選択時に使用する送信ハッシュポリシーを選択"
  6427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:808
  6428. msgid ""
  6429. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  6430. "messages advertising this device as IPv6 router."
  6431. msgstr ""
  6432. "このデバイスを IPv6 ルーターとして広告する <abbr title=\"Router "
  6433. "Advertisement, ICMPv6 Type 134\">RA</abbr> メッセージを送信します"
  6434. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:704
  6435. msgid "Send ICMP redirects"
  6436. msgstr "ICMP リダイレクトを送信"
  6437. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:143
  6438. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  6439. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  6440. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  6441. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  6442. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  6443. msgid ""
  6444. "Send LCP echo requests at the given interval in seconds, only effective in "
  6445. "conjunction with failure threshold"
  6446. msgstr ""
  6447. "設定された秒間隔でLCP echoリクエストを送信します。失敗しきい値を設定した場合"
  6448. "のみ、機能が有効になります"
  6449. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  6450. msgid "Send the hostname of this device"
  6451. msgstr "このデバイスのホスト名を送信"
  6452. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:89
  6453. msgid "Server"
  6454. msgstr ""
  6455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:605
  6456. msgid "Server address"
  6457. msgstr ""
  6458. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599
  6459. msgid "Server name"
  6460. msgstr ""
  6461. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  6462. msgid "Service Name"
  6463. msgstr "サービス名"
  6464. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  6465. msgid "Service Type"
  6466. msgstr "サービスタイプ"
  6467. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  6468. msgid "Services"
  6469. msgstr "サービス"
  6470. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2664
  6471. msgid "Session expired"
  6472. msgstr "セッション期限切れ"
  6473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  6474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  6475. msgid "Set Static"
  6476. msgstr "静的に設定"
  6477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:703
  6478. msgid "Set an alias for a hostname."
  6479. msgstr ""
  6480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:122
  6481. msgctxt "nft mangle"
  6482. msgid "Set header field <var>%s</var> to <strong>%s</strong>"
  6483. msgstr ""
  6484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:975
  6485. msgid "Set interface as NDP-Proxy external slave. Default is off."
  6486. msgstr ""
  6487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1299
  6488. msgid ""
  6489. "Set interface properties regardless of the link carrier (If set, carrier "
  6490. "sense events do not invoke hotplug handlers)."
  6491. msgstr ""
  6492. "リンクキャリアに関係なくインターフェースプロパティを設定します(設定されてい"
  6493. "る場合、キャリアセンスイベントはホットプラグハンドラを呼び出しません)。"
  6494. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:302
  6495. msgid "Set same MAC Address to all slaves"
  6496. msgstr "すべてのスレーブに同じMACアドレスを設定"
  6497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:826
  6498. msgid ""
  6499. "Set the autonomous address-configuration flag in the prefix information "
  6500. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  6501. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  6502. msgstr ""
  6503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:736
  6504. msgid ""
  6505. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  6506. "proxying."
  6507. msgstr ""
  6508. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:306
  6509. msgid "Set to currently active slave (active, 1)"
  6510. msgstr "現在アクティブなスレーブに設定(active、1)"
  6511. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:307
  6512. #, fuzzy
  6513. msgid "Set to first slave added to the bond (follow, 2)"
  6514. msgstr "bondに追加された最初のスレーブに設定(follow、2)"
  6515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:663
  6516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  6517. msgid "Set up DHCP Server"
  6518. msgstr "DHCPサーバーをセットアップ"
  6519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970
  6520. msgid "Set up routes for proxied IPv6 neighbours."
  6521. msgstr ""
  6522. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  6523. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  6524. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  6525. msgid "Setting PLMN failed"
  6526. msgstr "PLMNの設定に失敗しました"
  6527. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  6528. msgid "Setting operation mode failed"
  6529. msgstr "操作モードの設定に失敗しました"
  6530. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87
  6531. msgid "Setting the allowed network technology."
  6532. msgstr ""
  6533. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:107
  6534. msgid "Setting the preferred network technology."
  6535. msgstr ""
  6536. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11
  6537. msgid "Settings"
  6538. msgstr "設定"
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  6540. msgid ""
  6541. "Settings for assisting wireless clients in roaming between multiple APs: "
  6542. "802.11r, 802.11k and 802.11v"
  6543. msgstr ""
  6544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  6545. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39
  6546. msgid "Short GI"
  6547. msgstr "ショートGI"
  6548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1166
  6549. msgid "Short Preamble"
  6550. msgstr "ショートプリアンブル"
  6551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470
  6552. msgid "Show current backup file list"
  6553. msgstr "現在のバックアップファイルリストを表示"
  6554. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  6555. msgid "Show empty chains"
  6556. msgstr "空のチェインを表示"
  6557. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  6558. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  6559. msgid "Show raw counters"
  6560. msgstr "生のカウンターを表示"
  6561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:527
  6562. msgid "Shutdown this interface"
  6563. msgstr "このインターフェースをシャットダウン"
  6564. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1837
  6568. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6569. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:400
  6570. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6571. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:235
  6572. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  6573. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  6574. msgid "Signal"
  6575. msgstr "信号強度"
  6576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2259
  6577. msgid "Signal / Noise"
  6578. msgstr "信号強度 / ノイズ"
  6579. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:104
  6580. msgid "Signal Quality"
  6581. msgstr ""
  6582. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:146
  6583. msgid "Signal Refresh Rate"
  6584. msgstr "信号のリフレッシュ レート"
  6585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  6586. msgid "Signal:"
  6587. msgstr "信号:"
  6588. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4194
  6589. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:222
  6590. msgid "Size"
  6591. msgstr "サイズ"
  6592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559
  6593. msgid "Size of DNS query cache"
  6594. msgstr "DNSクエリキャッシュのサイズ"
  6595. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  6596. msgid "Size of the ZRam device in megabytes"
  6597. msgstr "ZRamデバイスのサイズ(MB)"
  6598. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  6599. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  6600. msgid "Skip"
  6601. msgstr "スキップ"
  6602. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:257
  6603. msgid "Skip from backup files that are equal to those in /rom"
  6604. msgstr "/rom 内のデフォルトから未変更のファイルはバックアップをスキップ"
  6605. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:35
  6606. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  6607. msgid "Skip to content"
  6608. msgstr "コンテンツへ移動"
  6609. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:34
  6610. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  6611. msgid "Skip to navigation"
  6612. msgstr "ナビゲーションへ移動"
  6613. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:180
  6614. msgid "Slave Interfaces"
  6615. msgstr "スレーブインターフェース"
  6616. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  6617. #: modules/luci-compat/luasrc/model/network.lua:1428
  6618. msgid "Software VLAN"
  6619. msgstr "ソフトウェア VLAN"
  6620. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  6621. msgid "Some fields are invalid, cannot save values!"
  6622. msgstr "フィールドに無効な値が設定されているため、保存できません!"
  6623. #: modules/luci-base/ucode/template/error404.ut:10
  6624. msgid "Sorry, the object you requested was not found."
  6625. msgstr ""
  6626. "申し訳ありませんが、リクエストされたオブジェクトは見つかりませんでした。"
  6627. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  6628. msgid ""
  6629. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  6630. "flashed manually. Please refer to the wiki for device specific install "
  6631. "instructions."
  6632. msgstr ""
  6633. "申し訳ありませんが、sysupgradeがサポートされていないため、ファームウェア更新"
  6634. "は手動で行う必要があります。このデバイスへのインストール方法については、wiki"
  6635. "を参照してください。"
  6636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6638. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  6639. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  6640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214
  6641. msgid "Source"
  6642. msgstr "アクセス元"
  6643. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:43
  6644. msgctxt "nft ip saddr"
  6645. msgid "Source IP"
  6646. msgstr ""
  6647. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:47
  6648. msgctxt "nft ip6 saddr"
  6649. msgid "Source IPv6"
  6650. msgstr ""
  6651. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  6652. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  6653. msgid "Source interface"
  6654. msgstr "アクセス元インタフェース"
  6655. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:45
  6656. msgctxt "nft ip sport"
  6657. msgid "Source port"
  6658. msgstr ""
  6659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:586
  6660. msgid ""
  6661. "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot "
  6662. "options for Dnsmasq."
  6663. msgstr ""
  6664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:953
  6665. msgid ""
  6666. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  6667. "unspecified, the local device DNS search domain will be announced."
  6668. msgstr ""
  6669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  6670. msgid ""
  6671. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  6672. "If left unspecified, the device will announce itself as IPv6 DNS server "
  6673. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  6674. msgstr ""
  6675. "DHCPv6 を通してアナウンスされる IPv6 DNS サーバーアドレスの固定的なリストで"
  6676. "す。未指定である場合、<em>ローカル IPv6 DNS サーバー</em>オプションが無効でな"
  6677. "い限り、デバイスは自身を IPv6 DNS サーバーとしてアナウンスします。"
  6678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  6679. msgid ""
  6680. "Specifies an individual UID or range of UIDs to match, e.g. 1000 to match "
  6681. "corresponding UID or 1000-1005 to inclusively match all UIDs within the "
  6682. "corresponding range"
  6683. msgstr ""
  6684. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343
  6685. msgid ""
  6686. "Specifies that duplicate frames (received on inactive ports) should be "
  6687. "dropped or delivered"
  6688. msgstr ""
  6689. "重複フレーム(非アクティブなポートで受信)をドロップまたは配信するよう指定"
  6690. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:359
  6691. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  6692. msgstr "ARPリンクのモニタリング頻度をミリ秒単位で指定"
  6693. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:367
  6694. msgid "Specifies the IP addresses to use for ARP monitoring"
  6695. msgstr "ARPモニタリングに使用するIPアドレスを指定"
  6696. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:396
  6697. msgid "Specifies the MII link monitoring frequency in milliseconds"
  6698. msgstr "MIIリンクのモニタリング頻度をミリ秒単位で指定"
  6699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  6700. msgid "Specifies the TOS value to match in IP headers"
  6701. msgstr ""
  6702. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  6703. msgid "Specifies the aggregation selection logic to use"
  6704. msgstr "使用するアグリゲーション選択ロジックを指定"
  6705. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:160
  6706. msgid "Specifies the destination subnet to match (CIDR notation)"
  6707. msgstr ""
  6708. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6709. msgid "Specifies the directory the device is attached to"
  6710. msgstr "デバイスが接続するディレクトリを指定"
  6711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  6712. msgid ""
  6713. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  6714. "messages, for example to instruct clients to request further information via "
  6715. "stateful DHCPv6."
  6716. msgstr ""
  6717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:177
  6718. msgid ""
  6719. "Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match "
  6720. "mark 255 or 0x0/0x1 to match any even mark value"
  6721. msgstr ""
  6722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:145
  6723. msgid "Specifies the incoming logical interface name"
  6724. msgstr ""
  6725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41
  6726. msgid ""
  6727. "Specifies the logical interface name of the parent (or master) interface "
  6728. "this route belongs to"
  6729. msgstr ""
  6730. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254
  6731. #, fuzzy
  6732. msgid ""
  6733. "Specifies the mac-address for the actor in protocol packet exchanges "
  6734. "(LACPDUs). If empty, masters' mac address defaults to system default"
  6735. msgstr ""
  6736. "プロトコルパケット交換(LACPDU)でアクターのMACアドレスを指定します。空の場"
  6737. "合、マスターのMACアドレスのデフォルトをシステムデフォルトに設定"
  6738. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  6739. msgid ""
  6740. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  6741. "to be dead"
  6742. msgstr "ホストが停止しているとみなされるまでのARPリクエスト最大失敗回数を指定"
  6743. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  6744. msgid ""
  6745. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  6746. "dead"
  6747. msgstr "ホストが停止しているとみなされるまでの最大秒数を指定"
  6748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:941
  6749. msgid ""
  6750. "Specifies the maximum transmit power the wireless radio may use. Depending "
  6751. "on regulatory requirements and wireless usage, the actual transmit power may "
  6752. "be reduced by the driver."
  6753. msgstr ""
  6754. "無線電波が使用できる最大の送信出力を指定します。規制要件や無線の使用方法に"
  6755. "よって、実際の送信出力はドライバーによって弱くなることがあります。"
  6756. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:238
  6757. msgid ""
  6758. "Specifies the minimum number of links that must be active before asserting "
  6759. "carrier"
  6760. msgstr ""
  6761. "キャリアをアサーションする前にアクティブにする必要があるリンクの最小数を指定"
  6762. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  6763. msgid "Specifies the mode to be used for this bonding interface"
  6764. msgstr "このボンディングインターフェースに使用するモードを指定"
  6765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:76
  6766. msgid ""
  6767. "Specifies the network gateway. If omitted, the gateway from the parent "
  6768. "interface is taken if any, otherwise creates a link scope route. If set to "
  6769. "0.0.0.0 no gateway will be specified for the route"
  6770. msgstr ""
  6771. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334
  6772. #, fuzzy
  6773. msgid ""
  6774. "Specifies the number of IGMP membership reports to be issued after a "
  6775. "failover event in 200ms intervals"
  6776. msgstr ""
  6777. "フェールオーバー処理後に発行されるIGMPメンバーシップレポートの数を200ms間隔で"
  6778. "指定"
  6779. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:278
  6780. msgid ""
  6781. "Specifies the number of packets to transmit through a slave before moving to "
  6782. "the next one"
  6783. msgstr "スレーブを通過してから次のスレーブに移動するパケットの数を指定"
  6784. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:312
  6785. msgid ""
  6786. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  6787. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  6788. msgstr ""
  6789. "フェールオーバー処理後に発行されるピア通知(Gratuitous ARPおよびunsolicited "
  6790. "IPv6 Neighbor Advertisements)の数を指定"
  6791. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:286
  6792. #, fuzzy
  6793. msgid ""
  6794. "Specifies the number of seconds between instances where the bonding driver "
  6795. "sends learning packets to each slaves peer switch"
  6796. msgstr ""
  6797. "ボンディングドライバが各スレーブピアスイッチにラーニングパケットを送信するイ"
  6798. "ンスタンス間の秒数を指定"
  6799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:130
  6800. msgid "Specifies the ordering of the IP rules"
  6801. msgstr ""
  6802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:156
  6803. msgid "Specifies the outgoing logical interface name"
  6804. msgstr ""
  6805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:100
  6806. msgid ""
  6807. "Specifies the preferred source address when sending to destinations covered "
  6808. "by the target"
  6809. msgstr ""
  6810. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375
  6811. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  6812. msgstr "到達可能にする必要があるARP IPターゲットの数を指定"
  6813. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  6814. #, fuzzy
  6815. msgid ""
  6816. "Specifies the rate in which the link partner will be asked to transmit "
  6817. "LACPDU packets"
  6818. msgstr "リンクパートナーがLACPDUパケットの送信を要求するレートを指定"
  6819. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  6820. #, fuzzy
  6821. msgid ""
  6822. "Specifies the reselection policy for the primary slave when failure of the "
  6823. "active slave or recovery of the primary slave occurs"
  6824. msgstr ""
  6825. "アクティブなスレーブの障害またはプライマリスレーブのリカバリが発生した際の、"
  6826. "プライマリスレーブの再選択ポリシーを指定"
  6827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:80
  6828. msgid "Specifies the route metric to use"
  6829. msgstr ""
  6830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  6831. msgid "Specifies the route type to be created"
  6832. msgstr ""
  6833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:137
  6834. msgid "Specifies the rule target routing action"
  6835. msgstr ""
  6836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:149
  6837. msgid "Specifies the source subnet to match (CIDR notation)"
  6838. msgstr ""
  6839. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246
  6840. msgid "Specifies the system priority"
  6841. msgstr "システムの優先順位を指定"
  6842. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:404
  6843. msgid ""
  6844. "Specifies the time in milliseconds to wait before disabling a slave after a "
  6845. "link failure detection"
  6846. msgstr "リンク障害検出後にスレーブを無効にするまでの待機時間をミリ秒単位で指定"
  6847. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:412
  6848. msgid ""
  6849. "Specifies the time in milliseconds to wait before enabling a slave after a "
  6850. "link recovery detection"
  6851. msgstr "リンク回復検出後にスレーブを有効にするまでの待機時間をミリ秒単位で指定"
  6852. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:548
  6853. msgid ""
  6854. "Specifies the wired ports to attach to this bridge. In order to attach "
  6855. "wireless networks, choose the associated interface as network in the "
  6856. "wireless settings."
  6857. msgstr ""
  6858. "このブリッジにアタッチする有線ポートを指定します。無線ネットワークをアタッチ"
  6859. "するには、無線設定でネットワークとしてアソシエートされたインターフェースを選"
  6860. "択してください。"
  6861. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:383
  6862. msgid ""
  6863. "Specifies whether ARP probes and replies should be validated or non-ARP "
  6864. "traffic should be filtered for link monitoring"
  6865. msgstr ""
  6866. "ARPプローブと応答を検証するか、またはARP以外のトラフィックをフィルタリングし"
  6867. "てリンク監視を行うかを指定"
  6868. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6869. #, fuzzy
  6870. msgid ""
  6871. "Specifies whether active-backup mode should set all slaves to the same MAC "
  6872. "address at enslavement"
  6873. msgstr ""
  6874. "アクティブバックアップモードですべてのスレーブに同じMACアドレスを設定するかど"
  6875. "うかを指定"
  6876. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:420
  6877. msgid ""
  6878. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  6879. "netif_carrier_ok()"
  6880. msgstr ""
  6881. "miimonがMIIまたはETHTOOL ioctls vs. netif_carrier_ok()を使用するかどうかを指"
  6882. "定"
  6883. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6884. #, fuzzy
  6885. msgid ""
  6886. "Specifies whether to shuffle active flows across slaves based on the load"
  6887. msgstr ""
  6888. "負荷に基づいてスレーブ間でアクティブなフローをシャッフルするかどうかを指定"
  6889. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:181
  6890. msgid ""
  6891. "Specifies which slave interfaces should be attached to this bonding interface"
  6892. msgstr ""
  6893. "このボンディングインターフェースにアタッチするスレーブインターフェースを指定"
  6894. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:214
  6895. msgid ""
  6896. "Specifies which slave is the primary device. It will always be the active "
  6897. "slave while it is available"
  6898. msgstr ""
  6899. "どのスレーブをプライマリデバイスとするか指定します。スレーブが利用可能である"
  6900. "場合、常にアクティブになります"
  6901. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  6902. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  6903. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  6904. msgid "Specify a TOS (Type of Service)."
  6905. msgstr "TOS(Type of Service)を指定します。"
  6906. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  6907. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  6908. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  6909. msgid ""
  6910. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  6911. "header inherits the value of the inner header) or an hexadecimal value "
  6912. "<code>00..FF</code> (optional)."
  6913. msgstr ""
  6914. "TOS(Type of Service)を指定します。<code>inherit</code>(外部ヘッダーは内部"
  6915. "ヘッダーの値を継承)または16進数<code>00..FF</code>を指定できます(オプショ"
  6916. "ン)。"
  6917. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  6918. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  6919. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  6920. msgid ""
  6921. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6922. "default (64) (optional)."
  6923. msgstr ""
  6924. "デフォルト(64) 以外のカプセル化パケットのTTL(Time to Live)を指定します"
  6925. "(オプション)。"
  6926. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  6927. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  6928. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  6929. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  6930. msgid ""
  6931. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  6932. "default (64)."
  6933. msgstr ""
  6934. "デフォルト(64)以外のカプセル化パケットの TTL(Time to Live)を指定します。"
  6935. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  6936. msgid ""
  6937. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  6938. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  6939. "FF</code> (optional)."
  6940. msgstr ""
  6941. "トラフィッククラスを指定します。<code>inherit</code>(外部ヘッダーは内部ヘッ"
  6942. "ダーの値を継承)または16進数<code>00..FF</code>を指定できます(オプション)。"
  6943. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  6944. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  6945. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  6946. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  6947. msgid ""
  6948. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6949. "bytes) (optional)."
  6950. msgstr ""
  6951. "デフォルト(1280 バイト)以外のMTU(最大伝送単位)を指定します(オプショ"
  6952. "ン)。"
  6953. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  6954. msgid ""
  6955. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  6956. "bytes)."
  6957. msgstr "デフォルト(1280バイト)以外のMTU(最大伝送単位)を指定します。"
  6958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  6959. msgid "Specify the secret encryption key here."
  6960. msgstr "ここで秘密暗号鍵を指定します。"
  6961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:215
  6962. msgid "Speed: %d Mibit/s, Duplex: %s"
  6963. msgstr ""
  6964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1560
  6965. msgid "Splitterless ADSL (G.992.2) Annex A"
  6966. msgstr ""
  6967. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  6968. msgid "Stale neighbour cache timeout"
  6969. msgstr ""
  6970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  6971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  6972. msgid "Start"
  6973. msgstr "開始"
  6974. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  6975. msgid "Start WPS"
  6976. msgstr "WPS開始"
  6977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  6978. msgid "Start priority"
  6979. msgstr "開始優先順位"
  6980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1941
  6981. msgid "Start refresh"
  6982. msgstr "更新開始"
  6983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4687
  6984. msgid "Starting configuration apply…"
  6985. msgstr "設定の適用を開始しています…"
  6986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1854
  6987. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:425
  6988. msgid "Starting wireless scan..."
  6989. msgstr "無線のスキャンを開始しています..."
  6990. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  6991. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:78
  6992. msgid "Startup"
  6993. msgstr "スタートアップ"
  6994. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:90
  6995. msgid "State"
  6996. msgstr ""
  6997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  6998. msgid "Static IPv4 Routes"
  6999. msgstr "IPv4静的ルーティング"
  7000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:32
  7001. msgid "Static IPv6 Routes"
  7002. msgstr "IPv6静的ルーティング"
  7003. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:91
  7004. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:138
  7005. msgid "Static Lease"
  7006. msgstr "静的リース"
  7007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258
  7008. msgid "Static Leases"
  7009. msgstr "静的リース"
  7010. #: modules/luci-base/htdocs/luci-static/resources/network.js:2090
  7011. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  7012. #: modules/luci-compat/luasrc/model/network.lua:967
  7013. msgid "Static address"
  7014. msgstr "静的アドレス"
  7015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771
  7016. msgid ""
  7017. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  7018. "to DHCP clients. They are also required for non-dynamic interface "
  7019. "configurations where only hosts with a corresponding lease are served."
  7020. msgstr ""
  7021. "静的リース機能は、DHCPクライアントに対して固定のIPアドレス及びシンボリックホ"
  7022. "スト名をアサインします。また、クライアントは対応するリースを使用するホストが"
  7023. "その1台のみで、かつ静的なインターフェース設定にする必要があります。"
  7024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1183
  7025. msgid "Station inactivity limit"
  7026. msgstr "非アクティブなステーションの制限"
  7027. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  7028. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:558
  7029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  7030. #: modules/luci-mod-status/ucode/template/admin_status/index.ut:9
  7031. msgid "Status"
  7032. msgstr "ステータス"
  7033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:529
  7034. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  7035. msgid "Stop"
  7036. msgstr "停止"
  7037. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:135
  7038. msgid "Stop WPS"
  7039. msgstr "WPS停止"
  7040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1852
  7041. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1946
  7042. msgid "Stop refresh"
  7043. msgstr "更新停止"
  7044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:24
  7045. msgid "Storage"
  7046. msgstr "ストレージ"
  7047. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  7048. msgid "Strict filtering"
  7049. msgstr "厳密なフィルタリング"
  7050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508
  7051. msgid "Strict order"
  7052. msgstr "問い合わせの制限"
  7053. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  7054. msgid "Strong"
  7055. msgstr "強"
  7056. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  7057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2144
  7058. msgid "Submit"
  7059. msgstr "送信"
  7060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:447
  7061. msgid "Suppress logging"
  7062. msgstr "ログの抑制"
  7063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:448
  7064. msgid "Suppress logging of the routine operation for the DHCP protocol."
  7065. msgstr "これらのプロトコルの、ルーチン操作のログを抑制"
  7066. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46
  7067. msgid "Swap free"
  7068. msgstr "スワップフリー"
  7069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7070. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  7071. msgid "Switch"
  7072. msgstr "スイッチ"
  7073. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  7074. msgid "Switch %q"
  7075. msgstr "スイッチ %q"
  7076. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  7077. msgid ""
  7078. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  7079. msgstr ""
  7080. "スイッチ %qには不明なトポロジがあります - VLAN設定は正確でないかもしれませ"
  7081. "ん。"
  7082. #: modules/luci-base/htdocs/luci-static/resources/network.js:3002
  7083. #: modules/luci-compat/luasrc/model/network.lua:1426
  7084. msgid "Switch VLAN"
  7085. msgstr "スイッチVLAN"
  7086. #: modules/luci-base/htdocs/luci-static/resources/network.js:2999
  7087. msgid "Switch port"
  7088. msgstr "スイッチ ポート"
  7089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:577
  7090. msgid "Switch protocol"
  7091. msgstr "プロトコルを切り替える"
  7092. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  7093. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  7094. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  7095. msgid "Switch to CIDR list notation"
  7096. msgstr "CIDRリスト表記へ切り替える"
  7097. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2716
  7098. msgid "Symbolic link"
  7099. msgstr "シンボリックリンク"
  7100. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:89
  7101. msgid "Sync with NTP-Server"
  7102. msgstr "NTPサーバーと同期"
  7103. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:81
  7104. msgid "Sync with browser"
  7105. msgstr "ブラウザと同期"
  7106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:299
  7107. msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  7108. msgstr "文法: <code>/fqdn[/fqdn…]/[ipaddr]</code>."
  7109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:650
  7110. msgid "Syntax: <code>_service._proto.example.com</code>."
  7111. msgstr "文法: <code>_service._proto.example.com</code>."
  7112. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  7113. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:22
  7114. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113
  7115. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  7116. msgid "System"
  7117. msgstr "システム"
  7118. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  7119. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  7120. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  7121. msgid "System Log"
  7122. msgstr "システムログ"
  7123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:245
  7124. msgid "System Priority"
  7125. msgstr "システム優先順位"
  7126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:118
  7127. msgid "System Properties"
  7128. msgstr "システムプロパティ"
  7129. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:162
  7130. msgid "System log buffer size"
  7131. msgstr "システムログバッファサイズ"
  7132. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67
  7133. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:87
  7134. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:64
  7135. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89
  7136. msgid "System running in recovery (initramfs) mode."
  7137. msgstr "システムはリカバリー (initramfs) モードで実行中です。"
  7138. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:67
  7139. msgctxt "nft tcp option maxseg size"
  7140. msgid "TCP MSS"
  7141. msgstr ""
  7142. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:54
  7143. msgctxt "nft tcp dport"
  7144. msgid "TCP destination port"
  7145. msgstr ""
  7146. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:57
  7147. msgctxt "nft tcp flags"
  7148. msgid "TCP flags"
  7149. msgstr ""
  7150. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:53
  7151. msgctxt "nft tcp sport"
  7152. msgid "TCP source port"
  7153. msgstr ""
  7154. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  7155. msgid "TCP:"
  7156. msgstr "TCP:"
  7157. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:571
  7158. msgid "TFTP server root"
  7159. msgstr "TFTPサーバールート"
  7160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  7161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  7162. msgid "TX"
  7163. msgstr "TX"
  7164. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:236
  7165. msgid "TX Rate"
  7166. msgstr "送信レート"
  7167. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:672
  7168. msgid "TX queue length"
  7169. msgstr ""
  7170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  7173. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190
  7174. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216
  7175. msgid "Table"
  7176. msgstr "テーブル"
  7177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:916
  7178. msgid "Tag"
  7179. msgstr ""
  7180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:219
  7181. msgctxt "VLAN port state"
  7182. msgid "Tagged"
  7183. msgstr ""
  7184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:655
  7185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:718
  7186. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:57
  7187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  7188. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  7189. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:213
  7190. msgid "Target"
  7191. msgstr "ターゲット"
  7192. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  7193. msgid "Target Platform"
  7194. msgstr "ターゲット プラットフォーム"
  7195. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  7196. msgid "Target network"
  7197. msgstr "対象ネットワーク"
  7198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:36
  7199. msgid "Temp space"
  7200. msgstr "一時領域"
  7201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  7202. msgid "Terminate"
  7203. msgstr "停止"
  7204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:886
  7205. msgid ""
  7206. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  7207. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  7208. "Minimum is 1280 bytes."
  7209. msgstr ""
  7210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:834
  7211. msgid ""
  7212. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  7213. "addresses are available via DHCPv6."
  7214. msgstr ""
  7215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:838
  7216. msgid ""
  7217. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  7218. "also acting as Mobile IPv6 home agent on this link."
  7219. msgstr ""
  7220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:836
  7221. msgid ""
  7222. "The <em>Other configuration</em> (O) flag indicates that other information, "
  7223. "such as DNS servers, is available via DHCPv6."
  7224. msgstr ""
  7225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  7226. msgid "The <em>block mount</em> command failed with code %d"
  7227. msgstr "<em>block mount</em>コマンドが失敗しました(コード: %d)"
  7228. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  7229. msgid ""
  7230. "The <em>qrencode</em> package is required for generating an QR code image of "
  7231. "the configuration."
  7232. msgstr ""
  7233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:904
  7234. msgid "The DHCPv6-DUID (DHCP unique identifier) of this host."
  7235. msgstr ""
  7236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1013
  7237. msgid ""
  7238. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  7239. "weight specified here"
  7240. msgstr ""
  7241. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  7242. #, fuzzy
  7243. msgid ""
  7244. "The HE.net endpoint update configuration changed, you must now use the plain "
  7245. "username instead of the user ID!"
  7246. msgstr ""
  7247. "HE.netのエンドポイント更新構成を変更した場合、ユーザーIDの代わりに通常のユー"
  7248. "ザー名を使用する必要があります!"
  7249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:876
  7250. msgid "The IP address %h is already used by another static lease"
  7251. msgstr ""
  7252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:885
  7253. msgid "The IP address is outside of any DHCP pool address range"
  7254. msgstr ""
  7255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606
  7256. msgid "The IP address of the boot server"
  7257. msgstr ""
  7258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:859
  7259. msgid ""
  7260. "The IP address to be used for this host, or <em>ignore</em> to ignore any "
  7261. "DHCP request from this host."
  7262. msgstr ""
  7263. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  7264. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  7265. msgstr "リモートエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
  7266. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  7267. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  7268. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  7269. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:40
  7270. msgid ""
  7271. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  7272. msgstr "リモートトンネルエンドのIPv4アドレスまたは完全修飾ドメイン名です。"
  7273. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  7274. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  7275. msgstr "リモートエンドのIPv6アドレスまたは完全修飾ドメイン名です。"
  7276. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  7277. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  7278. msgid ""
  7279. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  7280. msgstr "リモートトンネルエンドのIPv6アドレスまたは完全修飾ドメイン名です。"
  7281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:912
  7282. msgid ""
  7283. "The IPv6 interface identifier (address suffix) as hexadecimal number (max. 8 "
  7284. "chars)."
  7285. msgstr ""
  7286. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  7287. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  7288. msgid ""
  7289. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  7290. msgstr ""
  7291. "プロバイダーに割り当てられるIPv6プレフィックスです。通常、 <code>::</code>で"
  7292. "終わります"
  7293. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:7
  7294. msgid "The LED blinks with the configured on/off frequency"
  7295. msgstr "LED は設定されたオン/オフ間隔に基づいて点滅します。"
  7296. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:7
  7297. msgid "The LED flashes to simulate actual heart beat."
  7298. msgstr "LED は心拍を再現するように点滅します。"
  7299. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:8
  7300. msgid ""
  7301. "The LED flashes with link status and activity on the configured interface."
  7302. msgstr ""
  7303. "LED は、設定されたインターフェースにおけるリンク状態やアクティビティに基づい"
  7304. "て点滅します。"
  7305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:7
  7306. msgid "The LED is always in default state off."
  7307. msgstr "LED はデフォルトの状態で常にオフです。"
  7308. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  7309. msgid "The LED is always in default state on."
  7310. msgstr "LED はデフォルトの状態で常にオンです。"
  7311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  7312. msgid ""
  7313. "The MAC address %h is already used by another static lease in the same DHCP "
  7314. "pool"
  7315. msgstr ""
  7316. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:640
  7317. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  7318. msgstr ""
  7319. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:942
  7320. msgid "The VLAN ID must be unique"
  7321. msgstr "VLAN ID はユニークでなければなりません"
  7322. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:45
  7323. msgid "The algorithm that is used to discover mesh routes"
  7324. msgstr ""
  7325. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2104
  7326. msgid ""
  7327. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  7328. "code> and <code>_</code>"
  7329. msgstr ""
  7330. "使用可能な文字: <code>A-Z</code>、<code>a-z</code>、<code>0-9</code>、"
  7331. "<code>_</code>"
  7332. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  7333. msgid "The configuration file could not be loaded due to the following error:"
  7334. msgstr "設定ファイルは次のエラーにより読み込めませんでした:"
  7335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2098
  7336. msgid ""
  7337. "The correct SSID must be manually specified when joining a hidden wireless "
  7338. "network"
  7339. msgstr ""
  7340. "非表示の無線ネットワークに接続する場合、正しいSSIDを手動で指定する必要があり"
  7341. "ます"
  7342. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4563
  7343. msgid ""
  7344. "The device could not be reached within %d seconds after applying the pending "
  7345. "changes, which caused the configuration to be rolled back for safety "
  7346. "reasons. If you believe that the configuration changes are correct "
  7347. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  7348. "can dismiss this warning and edit changes before attempting to apply again, "
  7349. "or revert all pending changes to keep the currently working configuration "
  7350. "state."
  7351. msgstr ""
  7352. "保留していた変更を適用後、デバイスへ%d秒以内に再接続できませんでした。安全上"
  7353. "の理由により設定がロールバックされました。もし変更した設定が正しいと思う場合"
  7354. "は、チェックなしの変更の適用を行ってください。もしくは、再度適用する前にこの"
  7355. "警告を閉じて設定内容の編集を行うか、現在動作している設定の状態を維持するため"
  7356. "に、未適用の変更を取り消すこともできます。"
  7357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:281
  7358. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:393
  7359. msgid ""
  7360. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  7361. "</abbr> <code>/dev/sda1</code>)"
  7362. msgstr ""
  7363. "デバイスファイルまたはパーティション(<abbr title=\"for example\">例</abbr> "
  7364. "<code>/dev/sda1</code>)"
  7365. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  7366. msgid "The device name \"%s\" is already taken"
  7367. msgstr "デバイス名 \"%s\" は既に使用されています"
  7368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:410
  7369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:444
  7370. msgid ""
  7371. "The existing network configuration needs to be changed for LuCI to function "
  7372. "properly."
  7373. msgstr ""
  7374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:788
  7375. msgid ""
  7376. "The existing wireless configuration needs to be changed for LuCI to function "
  7377. "properly."
  7378. msgstr "LuCIが正常に機能するには、既存の無線設定を変更する必要があります。"
  7379. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:220
  7380. msgid ""
  7381. "The flash image was uploaded. Below is the checksum and file size listed, "
  7382. "compare them with the original file to ensure data integrity. <br /> Click "
  7383. "'Continue' below to start the flash procedure."
  7384. msgstr ""
  7385. "イメージファイルがアップロードされました。以下はそのチェックサムとファイルサ"
  7386. "イズです。オリジナルのファイルと比較し、データの整合性を確認してください。"
  7387. "<br />\"続行\" をクリックすると、フラッシュ処理を開始します。"
  7388. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249
  7389. msgid "The following rules are currently active on this system."
  7390. msgstr "このシステムでは、現在以下のルールが有効です。"
  7391. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:8
  7392. msgid "The frequency is in direct proportion to 1-minute average CPU load."
  7393. msgstr "点滅周期は1分間の平均 CPU 負荷を表します。"
  7394. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  7395. msgid "The gateway address must not be a local IP address"
  7396. msgstr "ゲートウェイアドレスは非ローカルIPアドレスでなければなりません"
  7397. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:757
  7398. msgid ""
  7399. "The generated configuration can be imported into a WireGuard client "
  7400. "application to set up a connection towards this device."
  7401. msgstr ""
  7402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  7403. msgid "The given SSH public key has already been added."
  7404. msgstr "入力されたSSH公開鍵はすでに追加されています。"
  7405. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178
  7406. msgid ""
  7407. "The given SSH public key is invalid. Please supply proper public RSA, "
  7408. "ED25519 or ECDSA keys."
  7409. msgstr ""
  7410. "指定されたSSH公開鍵は無効です。正しいRSAまたはECDSA鍵を指定してください。"
  7411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:800
  7412. msgid "The hardware address(es) of this entry/host, separated by spaces."
  7413. msgstr ""
  7414. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:93
  7415. msgid ""
  7416. "The hop penalty setting allows to modify batman-adv's preference for "
  7417. "multihop routes vs. short routes. The value is applied to the TQ of each "
  7418. "forwarded OGM, thereby propagating the cost of an extra hop (the packet has "
  7419. "to be received and retransmitted which costs airtime)"
  7420. msgstr ""
  7421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:600
  7422. msgid "The hostname of the boot server"
  7423. msgstr ""
  7424. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:28
  7425. msgid "The interface could not be found"
  7426. msgstr ""
  7427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1169
  7428. msgid "The interface name is already used"
  7429. msgstr "インターフェース名はすでに使用されています"
  7430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1175
  7431. msgid "The interface name is too long"
  7432. msgstr "インターフェース名が長すぎます"
  7433. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  7434. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  7435. msgid ""
  7436. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  7437. "addresses."
  7438. msgstr ""
  7439. "IPv4プレフィックスの長さ(ビット)です。残りはIPv6アドレスで使用されます。"
  7440. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  7441. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  7442. msgid "The length of the IPv6 prefix in bits"
  7443. msgstr "IPv6プレフィックスの長さ(ビット)"
  7444. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:165
  7445. msgid "The local IPv4 address"
  7446. msgstr "ローカルIPv4アドレス"
  7447. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  7448. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  7449. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  7450. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:44
  7451. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  7452. msgid "The local IPv4 address over which the tunnel is created (optional)."
  7453. msgstr "トンネルが作成されるローカルIPv4アドレス(オプション)。"
  7454. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:171
  7455. msgid "The local IPv4 netmask"
  7456. msgstr "ローカルIPv4ネットマスク"
  7457. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  7458. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  7459. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  7460. msgid "The local IPv6 address over which the tunnel is created (optional)."
  7461. msgstr "トンネルが作成されるローカルIPv6アドレス(オプション)。"
  7462. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  7463. msgid ""
  7464. "The max response time in centiseconds inserted into group-specific queries "
  7465. "sent in response to leave group messages. It is also the amount of time "
  7466. "between group-specific query messages. This value may be tuned to modify the "
  7467. "\"leave latency\" of the network. A reduced value results in reduced time to "
  7468. "detect the loss of the last member of a group"
  7469. msgstr ""
  7470. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:615
  7471. msgid ""
  7472. "The max response time in centiseconds inserted into the periodic general "
  7473. "queries. By varying the value, an administrator may tune the burstiness of "
  7474. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  7475. "host responses are spread out over a larger interval"
  7476. msgstr ""
  7477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:905
  7478. msgid ""
  7479. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  7480. "abbr> messages. Maximum is 255 hops."
  7481. msgstr ""
  7482. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4699
  7483. msgid ""
  7484. "The network access to this device could be interrupted by changing settings "
  7485. "of the \"%h\" interface."
  7486. msgstr ""
  7487. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2110
  7488. msgid "The network name is already used"
  7489. msgstr "ネットワーク名はすでに使用されています"
  7490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  7491. msgid ""
  7492. "The network ports on this device can be combined to several <abbr "
  7493. "title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  7494. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  7495. "Network\">VLAN</abbr>s are often used to separate different network "
  7496. "segments. Often there is by default one Uplink port for a connection to the "
  7497. "next greater network like the internet and other ports for a local network."
  7498. msgstr ""
  7499. "ネットワークポートは、コンピューターが他と直接通信することができる複数の"
  7500. "<abbr title=\"Virtual Local Area Network\">VLAN</abbr>にまとめることができま"
  7501. "す。<abbr title=\"Virtual Local Area Network\">VLAN</abbr>は、異なるネット"
  7502. "ワークセグメントの分離によく使われます。通常、インターネットなどの上位のネッ"
  7503. "トワークへの接続に使用するアップリンクポートと、ローカルネットワーク用のその"
  7504. "他のポートが存在します。"
  7505. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:776
  7506. msgid ""
  7507. "The public hostname or IP address of this system the peer should connect to. "
  7508. "This usually is a static public IP address, a static hostname or a DDNS "
  7509. "domain."
  7510. msgstr ""
  7511. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:623
  7512. msgid "The query response interval must be lower than the query interval value"
  7513. msgstr ""
  7514. "クエリー レスポンス間隔は、クエリー間隔の値よりも小さくなければなりません"
  7515. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  7516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  7517. msgid "The reboot command failed with code %d"
  7518. msgstr "rebootコマンドが失敗しました(コード: %d)"
  7519. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  7520. msgid "The restore command failed with code %d"
  7521. msgstr "restoreコマンドが失敗しました(コード: %d)"
  7522. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:605
  7523. msgid ""
  7524. "The robustness value allows tuning for the expected packet loss on the "
  7525. "network. If a network is expected to be lossy, the robustness value may be "
  7526. "increased. IGMP is robust to (Robustness-1) packet losses"
  7527. msgstr ""
  7528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:172
  7529. msgid ""
  7530. "The rule target is a jump to another rule specified by its priority value"
  7531. msgstr ""
  7532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:92
  7533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:167
  7534. msgid ""
  7535. "The rule target is a table lookup ID: a numeric table index ranging from 0 "
  7536. "to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special "
  7537. "aliases local (255), main (254) and default (253) are also valid"
  7538. msgstr ""
  7539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  7540. msgid "The selected %s mode is incompatible with %s encryption"
  7541. msgstr "選択された%sモードは、%s暗号化と互換性がありません"
  7542. #: modules/luci-base/ucode/template/csrftoken.ut:11
  7543. msgid "The submitted security token is invalid or already expired!"
  7544. msgstr "送信されたセキュリティトークンは無効または期限切れです!"
  7545. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  7546. msgid ""
  7547. "The system is erasing the configuration partition now and will reboot itself "
  7548. "when finished."
  7549. msgstr ""
  7550. "システムは設定パーティションを消去中です。完了後、自動的に再起動します。"
  7551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:320
  7552. msgid ""
  7553. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  7554. "few minutes before you try to reconnect. It might be necessary to renew the "
  7555. "address of your computer to reach the device again, depending on your "
  7556. "settings."
  7557. msgstr ""
  7558. "システム更新中です。<br />絶対に電源を切らないでください!<br />再接続する前"
  7559. "に数分お待ち下さい。ルーターの設定が変わり、再接続時にコンピュータのIPアドレ"
  7560. "スを変更しなければならない場合があります。"
  7561. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  7562. msgid ""
  7563. "The system is rebooting now. If the restored configuration changed the "
  7564. "current LAN IP address, you might need to reconnect manually."
  7565. msgstr ""
  7566. "システムは現在再起動中です。復元された設定によって現在のLAN IPアドレスが変更"
  7567. "された場合、手動での再接続が必要になるかもしれません。"
  7568. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  7569. msgid "The system password has been successfully changed."
  7570. msgstr "システムパスワードの変更に成功しました。"
  7571. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:345
  7572. msgid "The sysupgrade command failed with code %d"
  7573. msgstr "sysupgradeコマンドが失敗しました(コード: %d)"
  7574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:773
  7575. msgid ""
  7576. "The tag construct filters which host directives are used; more than one tag "
  7577. "can be provided, in this case the request must match all of them. Tagged "
  7578. "directives are used in preference to untagged ones. Note that one of mac, "
  7579. "duid or hostname still needs to be specified (can be a wildcard)."
  7580. msgstr ""
  7581. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  7582. msgid ""
  7583. "The uploaded backup archive appears to be valid and contains the files "
  7584. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  7585. "\"Cancel\" to abort the operation."
  7586. msgstr ""
  7587. "アップロードされたバックアップアーカイブは有効であり、以下のファイルを含んで"
  7588. "います。\"続行\"をクリックするとバックアップを復元し、再起動します。\"キャン"
  7589. "セル\"をクリックすると復元処理を中止します。"
  7590. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  7591. msgid "The uploaded backup archive is not readable"
  7592. msgstr "アップロードされたバックアップアーカイブは読み込めません"
  7593. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249
  7594. msgid "The uploaded firmware does not allow keeping current configuration."
  7595. msgstr "アップロードされたファームウェアは、現在の設定を保持しません。"
  7596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  7597. msgid ""
  7598. "The uploaded image file does not contain a supported format. Make sure that "
  7599. "you choose the generic image format for your platform."
  7600. msgstr ""
  7601. "アップロードされたイメージファイルは、サポートされているフォーマットではあり"
  7602. "ません。このプラットフォームの通常のイメージフォーマットかどうか、確認してく"
  7603. "ださい。"
  7604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1515
  7605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1527
  7606. msgid "The value is overridden by configuration."
  7607. msgstr "設定値によりオーバーライドされます。"
  7608. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:56
  7609. msgid ""
  7610. "The value specifies the interval (milliseconds) in which batman-adv floods "
  7611. "the network with its protocol information."
  7612. msgstr ""
  7613. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:678
  7614. msgid ""
  7615. "There are legacy iptables rules present on the system. Mixing iptables and "
  7616. "nftables rules is discouraged and may lead to incomplete traffic filtering."
  7617. msgstr ""
  7618. "システムにレガシーな iptables ルールが存在しています。iptables と nftables の"
  7619. "ルールの混用は、不完全なトラフィックフィルタリングを引き起こす恐れがあり、推"
  7620. "奨されません。"
  7621. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:985
  7622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:1017
  7623. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130
  7624. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179
  7625. msgid "There are no active leases"
  7626. msgstr "アクティブなリースはありません"
  7627. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4731
  7628. msgid "There are no changes to apply"
  7629. msgstr "適用する変更はありません"
  7630. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58
  7631. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:78
  7632. #: themes/luci-theme-librecmc-2020/ucode/template/themes/librecmc2020/header.ut:55
  7633. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  7634. msgid ""
  7635. "There is no password set on this router. Please configure a root password to "
  7636. "protect the web interface."
  7637. msgstr ""
  7638. "このルーターにパスワードが設定されていません。Webインターフェースを保護するた"
  7639. "めに、管理者パスワードを設定してください。"
  7640. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  7641. msgid "This IPv4 address of the relay"
  7642. msgstr "リレーのIPv4アドレス"
  7643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1722
  7644. msgid "This authentication type is not applicable to the selected EAP method."
  7645. msgstr "この認証タイプは、選択されたEAP方式に適用できません。"
  7646. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:58
  7647. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:56
  7648. msgid "This does not look like a valid PEM file"
  7649. msgstr "これは有効なPEMファイルではないようです"
  7650. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454
  7651. msgid ""
  7652. "This is a list of shell glob patterns for matching files and directories to "
  7653. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  7654. "configurations are automatically preserved."
  7655. msgstr ""
  7656. "これはsysupgrade中にバックアップ対象に含めるファイルとディレクトリのグロブパ"
  7657. "ターンリストです。/etc/config/ 内及びその他特定の設定の変更されたファイルは自"
  7658. "動的に保持されます。"
  7659. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  7660. msgid ""
  7661. "This is either the \"Update Key\" configured for the tunnel or the account "
  7662. "password if no update key has been configured"
  7663. msgstr ""
  7664. "これはトンネルに対して設定された\"更新キー\"か、更新キーが設定されていない場"
  7665. "合はアカウントパスワードのどちらかです"
  7666. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv_hardif.js:42
  7667. msgid ""
  7668. "This is the batman-adv device where you want to link the physical Device "
  7669. "from above to. If this list is empty, then you need to create one first. If "
  7670. "you want to route mesh traffic over a wired network device, then please "
  7671. "select it from the above Device selector. If you want to assign the batman-"
  7672. "adv interface to a Wi-fi mesh then do not select a Device in the Device "
  7673. "selector but rather go to the Wireless settings and select this Interface as "
  7674. "a network from there."
  7675. msgstr ""
  7676. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  7677. msgid ""
  7678. "This is the content of /etc/rc.local. Insert your own commands here (in "
  7679. "front of 'exit 0') to execute them at the end of the boot process."
  7680. msgstr ""
  7681. "これは/etc/rc.localの内容です。ブートプロセスの最後に実行したいコマンド"
  7682. "を'exit 0'行より上に入力してください。"
  7683. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  7684. msgid ""
  7685. "This is the local endpoint address assigned by the tunnel broker, it usually "
  7686. "ends with <code>...:2/64</code>"
  7687. msgstr ""
  7688. "これはトンネルブローカーによって割り当てられた、ローカルエンドポイントアドレ"
  7689. "スです。通常、最後が<code>...:2/64</code>で終わります"
  7690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  7691. msgid "This is the only DHCP server in the local network."
  7692. msgstr ""
  7693. "これはローカルネットワーク内で1つだけの<abbr title=\"Dynamic Host "
  7694. "Configuration Protocol\">DHCP</abbr>です"
  7695. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  7696. msgid "This is the plain username for logging into the account"
  7697. msgstr "これはアカウントにログインするためのプレーンなユーザー名です"
  7698. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  7699. msgid ""
  7700. "This is the prefix routed to you by the tunnel broker for use by clients"
  7701. msgstr ""
  7702. "これはクライアントが使用するためにトンネルブローカーによってルーティングされ"
  7703. "るプレフィックスです"
  7704. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  7705. msgid "This is the system crontab in which scheduled tasks can be defined."
  7706. msgstr ""
  7707. "システムcrontabを使用することで、定期的に特定のタスクの実行が可能です。"
  7708. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  7709. #, fuzzy
  7710. msgid ""
  7711. "This is usually the address of the nearest PoP operated by the tunnel broker"
  7712. msgstr ""
  7713. "これは通常、トンネルブローカーによって運営される最も近いPoPのアドレスです"
  7714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  7715. msgid ""
  7716. "This list gives an overview over currently running system processes and "
  7717. "their status."
  7718. msgstr "このリストは現在実行中のシステムプロセスとステータスを表示しています。"
  7719. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1676
  7720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  7721. msgid ""
  7722. "This option cannot be used because the ca-bundle package is not installed."
  7723. msgstr ""
  7724. "ca-bundleパッケージがインストールされていないため、このオプションは使用できま"
  7725. "せん。"
  7726. #: modules/luci-base/htdocs/luci-static/resources/form.js:2280
  7727. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  7728. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  7729. msgid "This section contains no values yet"
  7730. msgstr "このセクションはまだ設定されていません"
  7731. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:124
  7732. msgid "Time Synchronization"
  7733. msgstr "時刻同期"
  7734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629
  7735. msgid "Time advertisement"
  7736. msgstr ""
  7737. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:713
  7738. msgid "Time in milliseconds"
  7739. msgstr "時間(ミリ秒)"
  7740. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:581
  7741. msgid "Time in seconds to spend in listening and learning states"
  7742. msgstr "リスニングとラーニングの状態で経過させる時間(秒)"
  7743. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  7744. msgid "Time interval for rekeying GTK"
  7745. msgstr "Group Temporal Key(GTK)再生成間隔"
  7746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1638
  7747. msgid "Time zone"
  7748. msgstr ""
  7749. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  7750. msgid "Timed-out"
  7751. msgstr "タイムアウト"
  7752. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:717
  7753. msgid "Timeout in seconds"
  7754. msgstr "タイムアウト(秒)"
  7755. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:567
  7756. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  7757. msgstr "転送データベース内の学習済み MAC アドレスのタイムアウト(秒)"
  7758. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  7759. msgid "Timeout in seconds until topology updates on link loss"
  7760. msgstr "リンク ロス時にトポロジーを更新するまでのタイムアウト(秒)"
  7761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:145
  7762. msgid "Timezone"
  7763. msgstr "タイムゾーン"
  7764. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:438
  7765. msgid ""
  7766. "To fully configure the local WireGuard interface from an existing (e.g. "
  7767. "provider supplied) configuration file, use the <strong><a class=\"full-"
  7768. "import\" href=\"#\">configuration import</a></strong> instead."
  7769. msgstr ""
  7770. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:400
  7771. msgid ""
  7772. "To restore configuration files, you can upload a previously generated backup "
  7773. "archive here. To reset the firmware to its initial state, click \"Perform "
  7774. "reset\" (only possible with squashfs images)."
  7775. msgstr ""
  7776. "設定を復元するには、以前に生成したバックアップアーカイブをアップロードしてく"
  7777. "ださい。ファームウェアを初期状態にリセットする場合、\"初期化する\"をクリック"
  7778. "してください(squashfsイメージでのみ初期化可能)。"
  7779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1569
  7780. msgid "Tone"
  7781. msgstr "トーン"
  7782. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  7783. msgid "Total Available"
  7784. msgstr "利用可能な合計"
  7785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:110
  7786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:111
  7787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:121
  7788. msgid "Traceroute"
  7789. msgstr "トレースルート"
  7790. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/view/modemmanager/status.js:126
  7791. msgid "Tracking Area Code"
  7792. msgstr ""
  7793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  7794. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  7795. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:139
  7796. msgid "Traffic"
  7797. msgstr "トラフィック"
  7798. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  7799. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  7800. msgid "Traffic Class"
  7801. msgstr "トラフィッククラス"
  7802. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:528
  7803. msgid "Traffic filter chain \"%h\""
  7804. msgstr "トラフィックフィルター チェーン \"%h\""
  7805. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:466
  7806. msgctxt "nft counter"
  7807. msgid "Traffic matched by rule: %.1000mPackets, %.1024mBytes"
  7808. msgstr ""
  7809. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  7810. msgid "Transfer"
  7811. msgstr "転送"
  7812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  7813. msgid "Transmit"
  7814. msgstr "送信"
  7815. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:319
  7816. msgid "Transmit Hash Policy"
  7817. msgstr "送信ハッシュポリシー"
  7818. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:248
  7819. msgid "Transmit dropped"
  7820. msgstr ""
  7821. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:247
  7822. msgid "Transmit errors"
  7823. msgstr ""
  7824. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:58
  7825. #, fuzzy
  7826. msgid "Transmitted Data"
  7827. msgstr "送信済みデータ"
  7828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:245
  7829. msgid "Transmitted bytes"
  7830. msgstr ""
  7831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:246
  7832. msgid "Transmitted packets"
  7833. msgstr ""
  7834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:79
  7835. msgctxt "nft @th,off,len"
  7836. msgid "Transport header bits %d-%d"
  7837. msgstr ""
  7838. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:59
  7839. msgctxt "nft th dport"
  7840. msgid "Transport header destination port"
  7841. msgstr ""
  7842. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:58
  7843. msgctxt "nft th sport"
  7844. msgid "Transport header source port"
  7845. msgstr ""
  7846. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:75
  7847. msgid "Trigger"
  7848. msgstr "トリガー"
  7849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:20
  7850. msgid "Trigger Mode"
  7851. msgstr "トリガーモード"
  7852. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  7853. msgid "Tunnel ID"
  7854. msgstr "トンネルID"
  7855. #: modules/luci-base/htdocs/luci-static/resources/network.js:3005
  7856. #: modules/luci-compat/luasrc/model/network.lua:1431
  7857. msgid "Tunnel Interface"
  7858. msgstr "トンネルインターフェース"
  7859. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  7860. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  7861. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  7862. msgid "Tunnel Link"
  7863. msgstr "トンネルリンク"
  7864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  7865. msgid "Tunnel device"
  7866. msgstr "トンネル デバイス"
  7867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  7868. msgid "Tx-Power"
  7869. msgstr "送信出力"
  7870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  7871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1503
  7872. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:169
  7873. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  7874. msgid "Type"
  7875. msgstr "タイプ"
  7876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:182
  7877. msgid "Type of service"
  7878. msgstr ""
  7879. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:56
  7880. msgctxt "nft udp dport"
  7881. msgid "UDP destination port"
  7882. msgstr ""
  7883. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:55
  7884. msgctxt "nft udp sport"
  7885. msgid "UDP source port"
  7886. msgstr ""
  7887. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  7888. msgid "UDP:"
  7889. msgstr "UDP:"
  7890. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  7891. msgid "UMTS only"
  7892. msgstr "UMTSのみ"
  7893. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  7894. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  7895. msgid "UMTS/GPRS/EV-DO"
  7896. msgstr "UMTS/GPRS/EV-DO"
  7897. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:255
  7898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:361
  7899. msgid "UUID"
  7900. msgstr "UUID"
  7901. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  7902. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  7903. #: modules/luci-compat/luasrc/model/network.lua:34
  7904. #: modules/luci-compat/luasrc/model/network.lua:35
  7905. msgid "Unable to determine device name"
  7906. msgstr "デバイス名を確定できません"
  7907. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  7908. #: modules/luci-compat/luasrc/model/network.lua:36
  7909. msgid "Unable to determine external IP address"
  7910. msgstr "外部IPアドレスを確定できません"
  7911. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  7912. #: modules/luci-compat/luasrc/model/network.lua:37
  7913. msgid "Unable to determine upstream interface"
  7914. msgstr "アップストリーム インターフェースを確定できません"
  7915. #: modules/luci-base/ucode/template/error404.ut:12
  7916. msgid "Unable to dispatch"
  7917. msgstr "ディスパッチできません"
  7918. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:85
  7919. msgid "Unable to generate QR code: %s"
  7920. msgstr ""
  7921. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  7922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  7923. msgid "Unable to load log data:"
  7924. msgstr "ログデータを読み込めません:"
  7925. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  7926. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  7927. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  7928. msgid "Unable to obtain client ID"
  7929. msgstr "クライアントIDを取得できません"
  7930. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  7931. msgid "Unable to obtain mount information"
  7932. msgstr "マウント情報を取得できません"
  7933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  7934. msgid "Unable to reset ip6tables counters: %s"
  7935. msgstr "ip6tablesカウンターをリセットできません: %s"
  7936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  7937. msgid "Unable to reset iptables counters: %s"
  7938. msgstr "iptablesカウンターをリセットできません: %s"
  7939. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  7940. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  7941. msgid "Unable to resolve AFTR host name"
  7942. msgstr "AFTRホスト名を解決できません"
  7943. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  7944. #: modules/luci-compat/luasrc/model/network.lua:38
  7945. msgid "Unable to resolve peer host name"
  7946. msgstr "ピアのホスト名を解決できません"
  7947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  7948. msgid "Unable to restart firewall: %s"
  7949. msgstr "ファイアウォールを再起動できません: %s"
  7950. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:22
  7951. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  7952. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  7953. msgid "Unable to save contents: %s"
  7954. msgstr "内容を保存できません: %s"
  7955. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:14
  7956. msgid "Unable to set allowed mode list."
  7957. msgstr ""
  7958. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:17
  7959. msgid "Unable to set preferred mode."
  7960. msgstr ""
  7961. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:29
  7962. msgid "Unable to verify PIN"
  7963. msgstr ""
  7964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1360
  7965. msgid "Unconfigure"
  7966. msgstr "設定解除"
  7967. #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8
  7968. msgid "Unet"
  7969. msgstr ""
  7970. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  7971. msgid "Unexpected reply data format"
  7972. msgstr "予期しない応答データ形式"
  7973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  7974. msgid ""
  7975. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  7976. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  7977. "analogous to IPv4 private network addressing. This prefix is randomly "
  7978. "generated at first install."
  7979. msgstr ""
  7980. #: modules/luci-base/htdocs/luci-static/resources/network.js:2092
  7981. #: modules/luci-compat/luasrc/model/network.lua:971
  7982. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  7983. msgid "Unknown"
  7984. msgstr "不明"
  7985. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:12
  7986. msgid "Unknown and unsupported connection method."
  7987. msgstr "不明およびサポートされていない接続方法です。"
  7988. #: modules/luci-base/htdocs/luci-static/resources/network.js:2401
  7989. #: modules/luci-compat/luasrc/model/network.lua:1138
  7990. msgid "Unknown error (%s)"
  7991. msgstr "不明なエラー(%s)"
  7992. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  7993. msgid "Unknown error code"
  7994. msgstr "不明なエラーコード"
  7995. #: modules/luci-base/htdocs/luci-static/resources/network.js:2089
  7996. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  7997. #: modules/luci-compat/luasrc/model/network.lua:965
  7998. msgid "Unmanaged"
  7999. msgstr "アンマネージド"
  8000. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  8001. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  8002. msgid "Unmount"
  8003. msgstr "アンマウント"
  8004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121
  8005. msgid "Unnamed key"
  8006. msgstr "名前がない鍵"
  8007. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4381
  8008. msgid "Unsaved Changes"
  8009. msgstr "保存されていない変更"
  8010. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  8011. msgid "Unspecified error"
  8012. msgstr "未指定エラー"
  8013. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  8014. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  8015. msgid "Unsupported MAP type"
  8016. msgstr "サポートされていないMAPタイプ"
  8017. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  8018. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  8019. msgid "Unsupported modem"
  8020. msgstr "サポートされていないモデム"
  8021. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  8022. msgid "Unsupported protocol"
  8023. msgstr ""
  8024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:316
  8025. msgid "Unsupported protocol type."
  8026. msgstr "サポートされていないプロトコルタイプです。"
  8027. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:215
  8028. msgctxt "VLAN port state"
  8029. msgid "Untagged"
  8030. msgstr ""
  8031. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:532
  8032. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:97
  8033. msgid "Untitled peer"
  8034. msgstr ""
  8035. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  8036. msgid "Up"
  8037. msgstr "上へ"
  8038. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  8039. msgid "Up Delay"
  8040. msgstr "上り遅延"
  8041. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4268
  8042. msgid "Upload"
  8043. msgstr "アップロード"
  8044. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:441
  8045. msgid ""
  8046. "Upload a sysupgrade-compatible image here to replace the running firmware."
  8047. msgstr ""
  8048. "実行中のファームウェアを置き換えるには、ここにsysupgrade互換イメージをアップ"
  8049. "ロードしてください。"
  8050. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  8051. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  8052. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  8053. msgid "Upload archive..."
  8054. msgstr "アーカイブをアップロード..."
  8055. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2875
  8056. msgid "Upload file"
  8057. msgstr "ファイルをアップロード"
  8058. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2850
  8059. msgid "Upload file…"
  8060. msgstr "ファイルをアップロード…"
  8061. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4214
  8062. msgid "Upload has been cancelled"
  8063. msgstr ""
  8064. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2797
  8065. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4256
  8066. msgid "Upload request failed: %s"
  8067. msgstr "アップロードのリクエストに失敗: %s"
  8068. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4175
  8069. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4229
  8070. msgid "Uploading file…"
  8071. msgstr "ファイルをアップロード中…"
  8072. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:789
  8073. msgid ""
  8074. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  8075. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  8076. "restarted to apply the updated configuration."
  8077. msgstr ""
  8078. "\"続行\"をクリックすると匿名の\"wifi-iface\"セクションに<em>wifinet#</em>形式"
  8079. "の名前が割り当てられ、設定を適用するためにネットワークは再起動されます。"
  8080. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:411
  8081. msgid ""
  8082. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  8083. "network will be restarted to apply the updated configuration."
  8084. msgstr ""
  8085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:445
  8086. msgid ""
  8087. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  8088. "will be restarted to apply the updated configuration."
  8089. msgstr ""
  8090. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:509
  8091. msgid "Upstream resolvers will be queried in the order of the resolv file."
  8092. msgstr ""
  8093. "リゾルバファイルの順番に<abbr title=\"Domain Name System\">DNS</abbr>サーバー"
  8094. "に問い合わせる"
  8095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  8096. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:62
  8097. msgid "Uptime"
  8098. msgstr "稼働時間"
  8099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  8100. msgid "Use <code>/etc/ethers</code>"
  8101. msgstr "<code>/etc/ethers</code>を使用"
  8102. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:106
  8103. msgid "Use DHCP"
  8104. msgstr ""
  8105. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:295
  8106. msgid "Use DHCP advertised servers"
  8107. msgstr "DHCPから通知されたサーバを使用"
  8108. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  8109. msgid "Use DHCP gateway"
  8110. msgstr "DHCPゲートウェイを使用"
  8111. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:115
  8112. msgid "Use DHCPv6"
  8113. msgstr ""
  8114. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:999
  8115. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:144
  8116. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:160
  8117. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:132
  8118. msgid "Use DNS servers advertised by peer"
  8119. msgstr "ピアから通知されたDNSサーバーを使用"
  8120. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:616
  8121. msgid "Use ISO/IEC 3166 alpha2 country codes."
  8122. msgstr "ISO/IEC 3166 alpha2の国コードを使用します。"
  8123. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  8124. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  8125. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  8126. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  8127. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  8128. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  8129. msgid "Use MTU on tunnel interface"
  8130. msgstr "トンネルインターフェースでMTUを使用"
  8131. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  8132. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  8133. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  8134. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  8135. msgid "Use TTL on tunnel interface"
  8136. msgstr "トンネルインターフェースでTTLを使用"
  8137. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  8138. msgid "Use XOR of hardware MAC addresses (layer2)"
  8139. msgstr "ハードウェアMACアドレスのXORを使用(layer2)"
  8140. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  8141. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  8142. msgstr "ハードウェアMACアドレスとIPアドレスのXORを使用(layer2+3)"
  8143. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:325
  8144. msgid ""
  8145. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  8146. "(encap2+3)"
  8147. msgstr ""
  8148. "ハードウェアMACアドレスとIPアドレスのXORを使用し、skb_flow_dissectに依存"
  8149. "(encap2+3)"
  8150. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:295
  8151. msgid "Use as external overlay (/overlay)"
  8152. msgstr "外部オーバーレイとして使用(/overlay)"
  8153. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  8154. msgid "Use as root filesystem (/)"
  8155. msgstr "ルートファイルシステムとして使用(/)"
  8156. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  8157. msgid "Use broadcast flag"
  8158. msgstr "ブロードキャストフラグを使用"
  8159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1295
  8160. msgid "Use builtin IPv6-management"
  8161. msgstr "ビルトインIPv6管理を使用"
  8162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  8163. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:148
  8164. msgid "Use custom DNS servers"
  8165. msgstr "カスタムDNSサーバーを使用"
  8166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:995
  8167. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:133
  8168. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:156
  8169. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  8170. msgid "Use default gateway"
  8171. msgstr "デフォルトゲートウェイを使用"
  8172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1017
  8173. #: protocols/luci-proto-mbim/htdocs/luci-static/resources/protocol/mbim.js:138
  8174. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:164
  8175. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:126
  8176. msgid "Use gateway metric"
  8177. msgstr "ゲートウェイメトリックを使用"
  8178. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8179. msgid "Use legacy MAP"
  8180. msgstr "従来のMAPを使用"
  8181. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  8182. msgid ""
  8183. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  8184. "instead of RFC7597"
  8185. msgstr ""
  8186. "RFC7597の代わりに従来のMAPインターフェース識別子フォーマット(draft-ietf-"
  8187. "softwire-map-00)を使用"
  8188. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  8189. msgid "Use routing table"
  8190. msgstr "ルーティングテーブルを使用"
  8191. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:63
  8192. msgctxt "nft nat flag persistent"
  8193. msgid "Use same source and destination for each connection"
  8194. msgstr ""
  8195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  8196. msgid "Use system certificates"
  8197. msgstr "システム証明書を使用"
  8198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  8199. msgid "Use system certificates for inner-tunnel"
  8200. msgstr "内部トンネルにシステム証明書を使用"
  8201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:772
  8202. msgid ""
  8203. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  8204. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  8205. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  8206. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  8207. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  8208. msgstr ""
  8209. "新しいリースエントリーを追加するには、<em>追加</em>ボタンをクリックしてくださ"
  8210. "い。<em>MACアドレス</em>を元にホストを識別し、<em>IPv4アドレス</em>を静的アド"
  8211. "レスとして設定します。また、<em>ホスト名</em>を要求したホストに対して一時的に"
  8212. "割り当てます。<em>リース期間</em>はオプションで、ホストに通常とは異なるリース"
  8213. "期間を設定できます(例: 12h、3d、infinite)。"
  8214. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  8215. msgid "Use upper layer protocol information (layer3+4)"
  8216. msgstr "上位層のプロトコル情報を使用(layer3+4)"
  8217. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:326
  8218. msgid ""
  8219. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  8220. msgstr "skb_flow_dissectに依存する上位層プロトコル情報を使用(encap3+4)"
  8221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  8222. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  8223. msgid "Used"
  8224. msgstr "使用中"
  8225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  8226. msgid "Used Key Slot"
  8227. msgstr "使用するキースロット"
  8228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1557
  8229. msgid ""
  8230. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  8231. "needed with normal WPA(2)-PSK."
  8232. msgstr ""
  8233. "RADIUS NAS IDと802.11r R0KH-IDの2つの異なる目的のために使用中です。通常のWPA"
  8234. "(2)-PSKは必要ありません。"
  8235. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:146
  8236. msgid "User Group"
  8237. msgstr "ユーザーグループ"
  8238. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158
  8239. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:106
  8240. msgid "User certificate (PEM encoded)"
  8241. msgstr "ユーザー証明書(PEMエンコード)"
  8242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:187
  8243. msgid "User identifier"
  8244. msgstr ""
  8245. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:170
  8246. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:118
  8247. msgid "User key (PEM encoded)"
  8248. msgstr "ユーザー鍵(PEMエンコード)"
  8249. #: modules/luci-base/ucode/template/sysauth.ut:23
  8250. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:147
  8251. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101
  8252. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  8253. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13
  8254. msgid "Username"
  8255. msgstr "ユーザー名"
  8256. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:131
  8257. msgid "Utilize flow table <strong>%h</strong>"
  8258. msgstr ""
  8259. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1637
  8260. msgid "VC-Mux"
  8261. msgstr "VC多重化"
  8262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1585
  8263. msgid "VDSL"
  8264. msgstr "VDSL"
  8265. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:489
  8266. msgctxt "MACVLAN mode"
  8267. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  8268. msgstr ""
  8269. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:400
  8270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  8271. msgid "VLAN (802.1ad)"
  8272. msgstr ""
  8273. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:399
  8274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  8275. msgid "VLAN (802.1q)"
  8276. msgstr ""
  8277. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  8278. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:923
  8279. msgid "VLAN ID"
  8280. msgstr ""
  8281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  8282. msgid "VLANs on %q"
  8283. msgstr "%q上のVLAN"
  8284. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  8285. msgid "VPN"
  8286. msgstr "VPN"
  8287. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  8288. msgid "VPN Local address"
  8289. msgstr "VPNローカルアドレス"
  8290. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  8291. msgid "VPN Local port"
  8292. msgstr "VPNローカルポート"
  8293. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:97
  8294. msgid "VPN Protocol"
  8295. msgstr "VPNプロトコル"
  8296. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:103
  8297. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:93
  8298. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  8299. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  8300. msgid "VPN Server"
  8301. msgstr "VPNサーバー"
  8302. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:152
  8303. msgid "VPN Server certificate's SHA256 hash"
  8304. msgstr ""
  8305. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:140
  8306. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:96
  8307. msgid "VPN Server port"
  8308. msgstr "VPNサーバーポート"
  8309. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  8310. msgid "VPN Server's certificate SHA1 hash"
  8311. msgstr "VPNサーバー証明書 SHA1ハッシュ"
  8312. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  8313. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  8314. msgid "VPNC (CISCO 3000 (and others) VPN)"
  8315. msgstr "VPNC(CISCO 3000(またはその他の)VPN)"
  8316. #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10
  8317. msgid "VTI"
  8318. msgstr ""
  8319. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  8320. msgid "VXLAN (RFC7348)"
  8321. msgstr "VXLAN(RFC7348)"
  8322. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  8323. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  8324. msgid "VXLAN network identifier"
  8325. msgstr "VXLANネットワーク識別子"
  8326. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  8327. msgid "VXLANv6 (RFC7348)"
  8328. msgstr "VXLANv6(RFC7348)"
  8329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:484
  8330. msgid ""
  8331. "Validate DNS replies and cache DNSSEC data, requires upstream to support "
  8332. "DNSSEC."
  8333. msgstr ""
  8334. "未署名のドメインレスポンスが、本当にその未署名のドメインから来たものであるか"
  8335. "検証します。上位サーバがDNSSECをサポートしている必要があります"
  8336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1669
  8337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1727
  8338. msgid ""
  8339. "Validate server certificate using built-in system CA bundle,<br />requires "
  8340. "the \"ca-bundle\" package"
  8341. msgstr ""
  8342. "サーバー証明書をビルトインのシステムCAバンドルを用いて検証します<br />\"ca-"
  8343. "bundle\" パッケージが必要"
  8344. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  8345. msgid "Validation for all slaves"
  8346. msgstr "すべてのスレーブを検証"
  8347. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  8348. msgid "Validation only for active slave"
  8349. msgstr "アクティブなスレーブのみを検証"
  8350. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  8351. msgid "Validation only for backup slaves"
  8352. msgstr "バックアップスレーブのみを検証"
  8353. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  8354. msgid "Vendor"
  8355. msgstr "ベンダー"
  8356. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  8357. msgid "Vendor Class to send when requesting DHCP"
  8358. msgstr "DHCPリクエスト時に送信するベンダークラス"
  8359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:489
  8360. msgid "Verify unsigned domain responses really come from unsigned domains."
  8361. msgstr ""
  8362. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  8363. msgid "Verifying the uploaded image file."
  8364. msgstr "アップロードされたイメージファイルを検証中です。"
  8365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:951
  8366. msgid "Very High"
  8367. msgstr "非常に高い"
  8368. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:402
  8369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  8370. msgid "Virtual Ethernet"
  8371. msgstr ""
  8372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  8373. msgid "Virtual dynamic interface"
  8374. msgstr "仮想ダイナミックインターフェース"
  8375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1101
  8376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1102
  8377. msgid "WDS"
  8378. msgstr "WDS"
  8379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1298
  8380. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  8381. msgid "WEP Open System"
  8382. msgstr "WEPオープンシステム"
  8383. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1299
  8384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  8385. msgid "WEP Shared Key"
  8386. msgstr "WEP共有キー"
  8387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8388. msgid "WEP passphrase"
  8389. msgstr "WEP暗号フレーズ"
  8390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:983
  8391. msgid "WLAN roaming"
  8392. msgstr ""
  8393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8394. msgid "WMM Mode"
  8395. msgstr "WMMモード"
  8396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1642
  8397. msgid "WNM Sleep Mode"
  8398. msgstr ""
  8399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  8400. msgid "WNM Sleep Mode Fixes"
  8401. msgstr ""
  8402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2119
  8403. msgid "WPA passphrase"
  8404. msgstr "WPA暗号フレーズ"
  8405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  8406. msgid ""
  8407. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  8408. "and ad-hoc mode) to be installed."
  8409. msgstr ""
  8410. "WPA暗号化を使用するには、wpa_supplicant(クライアントモードを使用する場合)ま"
  8411. "たはhostapd(アクセスポイントとアドホックモードを使用する場合)がインストール"
  8412. "されている必要があります。"
  8413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:153
  8414. msgid "WPS status"
  8415. msgstr "WPSステータス"
  8416. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  8417. msgid "Waiting for device..."
  8418. msgstr "起動が終了するのを待っています..."
  8419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:189
  8420. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  8421. msgid "Warning"
  8422. msgstr "警告"
  8423. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  8424. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  8425. msgstr "警告: 再起動で失われる、保留中の設定があります!"
  8426. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  8427. msgid "Weak"
  8428. msgstr "弱"
  8429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670
  8430. msgid "Weight"
  8431. msgstr ""
  8432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:921
  8433. msgid ""
  8434. "When a host matches an entry then the special tag <em>known</em> is set. Use "
  8435. "<em>known</em> to match all known hosts."
  8436. msgstr ""
  8437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  8438. msgid ""
  8439. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  8440. "preference value are considered first when allocating subnets."
  8441. msgstr ""
  8442. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:105
  8443. msgid ""
  8444. "When enabled network coding increases the WiFi throughput by combining "
  8445. "multiple frames into a single frame, thus reducing the needed air time."
  8446. msgstr ""
  8447. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:76
  8448. msgid ""
  8449. "When enabled the distributed ARP table forms a mesh-wide ARP cache that "
  8450. "helps non-mesh clients to get ARP responses much more reliably and without "
  8451. "much delay."
  8452. msgstr ""
  8453. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:110
  8454. msgid ""
  8455. "When enabled, gateway is on-link even if the gateway does not match any "
  8456. "interface prefix"
  8457. msgstr ""
  8458. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  8459. msgid ""
  8460. "When enabled, new ARP table entries are added from received gratuitous APR "
  8461. "requests or replies, otherwise only preexisting table entries are updated, "
  8462. "but no new hosts are learned."
  8463. msgstr ""
  8464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:14
  8465. msgid ""
  8466. "When inverted, the LED is continuously lit and flickers instead of it being "
  8467. "off by default and blinking on system activity."
  8468. msgstr ""
  8469. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:66
  8470. msgid ""
  8471. "When running the mesh over multiple WiFi interfaces per node batman-adv is "
  8472. "capable of optimizing the traffic flow to gain maximum performance."
  8473. msgstr ""
  8474. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1580
  8475. msgid ""
  8476. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  8477. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  8478. "key options."
  8479. msgstr ""
  8480. "PSKを使用する場合、PMKが自動的に生成されることがあります。これが有効な場合、"
  8481. "以下のR0/R1キーオプションは適用されません。R0とR1キーのオプションを使用するに"
  8482. "は、これを無効にしてください。"
  8483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1139
  8484. msgid ""
  8485. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  8486. "802.11a/802.11g rates."
  8487. msgstr ""
  8488. "Wi-Fiマルチメディア(WMM)モードのQoSが無効になっている場合、クライアントは"
  8489. "802.11a /802.11gレートに制限される場合があります。"
  8490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1135
  8491. msgid ""
  8492. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  8493. "may be significantly reduced."
  8494. msgstr ""
  8495. "ESSID が非表示の場合、クライアントがローミングに失敗し、通信時間の効率が大幅"
  8496. "に低下する可能性があります。"
  8497. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  8498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:513
  8499. msgid "Width"
  8500. msgstr "帯域幅"
  8501. #: protocols/luci-proto-wireguard/root/usr/share/luci/menu.d/luci-proto-wireguard.json:3
  8502. msgid "WireGuard"
  8503. msgstr "WireGuard"
  8504. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:120
  8505. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:165
  8506. msgid "WireGuard Status"
  8507. msgstr "WireGuard ステータス"
  8508. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  8509. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:119
  8510. msgid "WireGuard VPN"
  8511. msgstr "WireGuard VPN"
  8512. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:539
  8513. msgid "WireGuard peer is disabled"
  8514. msgstr ""
  8515. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  8516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  8517. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:148
  8518. msgid "Wireless"
  8519. msgstr "無線"
  8520. #: modules/luci-base/htdocs/luci-static/resources/network.js:2992
  8521. #: modules/luci-compat/luasrc/model/network.lua:1419
  8522. msgid "Wireless Adapter"
  8523. msgstr "無線アダプタ"
  8524. #: modules/luci-base/htdocs/luci-static/resources/network.js:2971
  8525. #: modules/luci-base/htdocs/luci-static/resources/network.js:4276
  8526. #: modules/luci-compat/luasrc/model/network.lua:1405
  8527. #: modules/luci-compat/luasrc/model/network.lua:1868
  8528. msgid "Wireless Network"
  8529. msgstr "無線ネットワーク"
  8530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:805
  8531. msgid "Wireless Overview"
  8532. msgstr "無線デバイス一覧"
  8533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  8534. msgid "Wireless Security"
  8535. msgstr "無線セキュリティ"
  8536. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:787
  8537. msgid "Wireless configuration migration"
  8538. msgstr "無線設定を移行"
  8539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8541. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8542. msgid "Wireless is disabled"
  8543. msgstr "無線機能は無効"
  8544. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  8545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  8546. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:152
  8547. msgid "Wireless is not associated"
  8548. msgstr "無線機器はまだ接続されていません"
  8549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8550. msgid "Wireless network is disabled"
  8551. msgstr "無線ネットワークは無効"
  8552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929
  8553. msgid "Wireless network is enabled"
  8554. msgstr "無線ネットワークは有効"
  8555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  8556. msgid "Write received DNS queries to syslog."
  8557. msgstr "受信したDNSリクエストをsyslogへ記録"
  8558. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  8559. msgid "Write system log to file"
  8560. msgstr "システムログをファイルに書き込む"
  8561. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  8562. msgid "XOR policy (balance-xor, 2)"
  8563. msgstr "XORポリシー(balance-xor、2)"
  8564. #: modules/luci-base/htdocs/luci-static/resources/form.js:4094
  8565. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:297
  8566. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  8567. msgid "Yes"
  8568. msgstr "はい"
  8569. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  8570. msgid "Yes (none, 0)"
  8571. msgstr "はい(none、0)"
  8572. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  8573. msgid ""
  8574. "You appear to be currently connected to the device via the \"%h\" interface. "
  8575. "Do you really want to shut down the interface?"
  8576. msgstr ""
  8577. "現在\"%h\"インターフェースを通してデバイスにログインしています。本当にイン"
  8578. "ターフェースをシャットダウンしますか?"
  8579. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  8580. msgid ""
  8581. "You can enable or disable installed init scripts here. Changes will applied "
  8582. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  8583. "scripts like \"network\", your device might become inaccessible!</strong>"
  8584. msgstr ""
  8585. "ここで、インストール済みのinitスクリプトの有効または無効を切り替えられます。"
  8586. "変更は再起動後に適用されます。<br /><strong>警告: \"network\"などの重要なスク"
  8587. "リプトを無効にするとデバイスにアクセスできなくなることがあります!</strong>"
  8588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:640
  8589. msgid "You may add multiple records for the same Target."
  8590. msgstr ""
  8591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:677
  8592. msgid "You may add multiple records for the same domain."
  8593. msgstr ""
  8594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357
  8595. msgid "You may add multiple unique Relay To on the same Listen addr."
  8596. msgstr ""
  8597. #: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78
  8598. #: themes/luci-theme-material/ucode/template/themes/material/header.ut:98
  8599. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  8600. msgid ""
  8601. "You must enable JavaScript in your browser or LuCI will not work properly."
  8602. msgstr "JavaScriptが有効でない場合、LuCIは正しく動作しません。"
  8603. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:117
  8604. msgid ""
  8605. "You must select a primary interface which is included in selected slave "
  8606. "interfaces!"
  8607. msgstr ""
  8608. "選択されたスレーブインターフェースに含まれるプライマリインターフェースを選択"
  8609. "してください!"
  8610. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98
  8611. msgid ""
  8612. "You must select at least one ARP IP target if ARP monitoring is selected!"
  8613. msgstr ""
  8614. "ARPモニタリングが選択されている場合、少なくとも1つのARP IPターゲットを選択す"
  8615. "る必要があります!"
  8616. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:213
  8617. msgid "ZRam Compression Algorithm"
  8618. msgstr "ZRam圧縮アルゴリズム"
  8619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:206
  8620. msgid "ZRam Settings"
  8621. msgstr "ZRam設定"
  8622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:208
  8623. msgid "ZRam Size"
  8624. msgstr "ZRamサイズ"
  8625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:639
  8626. msgid "_proto: _tcp, _udp, _sctp, _quic, … ."
  8627. msgstr ""
  8628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:638
  8629. msgid ""
  8630. "_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is "
  8631. "possible, no browsers support SRV records.)"
  8632. msgstr ""
  8633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:535
  8634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:153
  8635. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:164
  8636. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103
  8637. msgid "any"
  8638. msgstr "すべて"
  8639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1570
  8640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1578
  8641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1583
  8642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:103
  8643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:134
  8644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238
  8645. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  8646. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  8647. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  8648. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  8649. msgid "auto"
  8650. msgstr "自動"
  8651. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:816
  8653. msgid "automatic"
  8654. msgstr "自動"
  8655. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8656. msgid "automatic (disabled)"
  8657. msgstr ""
  8658. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:198
  8659. msgid "automatic (enabled)"
  8660. msgstr ""
  8661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  8662. msgid "baseT"
  8663. msgstr "baseT"
  8664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1643
  8665. msgid "bridged"
  8666. msgstr "ブリッジ"
  8667. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  8668. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:406
  8669. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  8670. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  8671. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  8672. msgid "create"
  8673. msgstr "作成"
  8674. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  8675. msgid "create:"
  8676. msgstr "作成:"
  8677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  8678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  8679. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  8680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  8681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  8682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  8683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  8684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  8685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  8686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  8687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  8688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  8689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  8690. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  8691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:278
  8692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  8693. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:283
  8694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:284
  8695. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  8696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  8697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  8698. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  8699. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  8700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  8701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  8702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  8703. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  8704. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  8705. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  8706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  8707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  8708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  8709. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  8710. msgid "dBm"
  8711. msgstr "dBm"
  8712. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:73
  8713. msgctxt "nft unit"
  8714. msgid "day"
  8715. msgstr ""
  8716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1082
  8717. msgid "disable"
  8718. msgstr "無効"
  8719. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8720. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:681
  8721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:805
  8722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  8723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  8724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1040
  8725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  8726. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  8727. msgid "disabled"
  8728. msgstr "無効"
  8729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:570
  8730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:604
  8731. msgid "driver default"
  8732. msgstr "ドライバーデフォルト"
  8733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8734. msgid "driver default (%s)"
  8735. msgstr ""
  8736. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  8737. msgid "e.g: --proxy 10.10.10.10"
  8738. msgstr "例: --proxy 10.10.10.10"
  8739. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  8740. msgid "e.g: dump"
  8741. msgstr "例: dump"
  8742. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:157
  8743. msgid "enabled"
  8744. msgstr ""
  8745. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8746. msgctxt "WireGuard keep alive interval"
  8747. msgid "every %ds"
  8748. msgstr ""
  8749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:965
  8750. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:995
  8751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101
  8752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148
  8753. msgid "expired"
  8754. msgstr "期限切れ"
  8755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:820
  8756. msgid "forced"
  8757. msgstr "強制"
  8758. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  8759. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:196
  8760. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  8761. msgid "forward"
  8762. msgstr "転送"
  8763. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8765. msgid "full-duplex"
  8766. msgstr "全二重"
  8767. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:98
  8768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  8769. msgid "half-duplex"
  8770. msgstr "半二重"
  8771. #: modules/luci-base/htdocs/luci-static/resources/validation.js:593
  8772. msgid "hexadecimal encoded value"
  8773. msgstr "エンコードされた値(16進数)"
  8774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1914
  8775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:309
  8776. msgid "hidden"
  8777. msgstr "(非表示)"
  8778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:74
  8779. msgctxt "nft unit"
  8780. msgid "hour"
  8781. msgstr ""
  8782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  8783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:933
  8784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:967
  8785. msgid "hybrid mode"
  8786. msgstr "ハイブリッドモード"
  8787. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  8788. msgid "ignore"
  8789. msgstr "無視"
  8790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:900
  8791. msgid "infinite (lease does not expire)"
  8792. msgstr ""
  8793. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8794. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:192
  8795. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8796. msgid "input"
  8797. msgstr "入力"
  8798. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  8799. msgid "key between 8 and 63 characters"
  8800. msgstr "8文字以上63文字以下のキー"
  8801. #: modules/luci-base/htdocs/luci-static/resources/validation.js:422
  8802. msgid "key with either 5 or 13 characters"
  8803. msgstr "5文字または13文字のキー"
  8804. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:924
  8805. msgid "known"
  8806. msgstr ""
  8807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:926
  8808. msgid "known-othernet (on different subnet)"
  8809. msgstr ""
  8810. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:833
  8811. msgid "managed config (M)"
  8812. msgstr ""
  8813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1397
  8814. msgid "medium security"
  8815. msgstr "セキュリティ: 中"
  8816. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:75
  8817. msgctxt "nft unit"
  8818. msgid "minute"
  8819. msgstr ""
  8820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  8821. msgid "minutes"
  8822. msgstr "分"
  8823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:837
  8824. msgid "mobile home agent (H)"
  8825. msgstr ""
  8826. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:423
  8827. msgid "netif_carrier_ok()"
  8828. msgstr "netif_carrier_ok()"
  8829. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  8830. msgid "no"
  8831. msgstr "いいえ"
  8832. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:104
  8833. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  8834. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/29_ports.js:232
  8835. msgid "no link"
  8836. msgstr "リンクなし"
  8837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1162
  8838. msgid "no override"
  8839. msgstr ""
  8840. #: modules/luci-base/htdocs/luci-static/resources/form.js:2269
  8841. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  8842. msgid "non-empty value"
  8843. msgstr "空でない値"
  8844. #: modules/luci-base/htdocs/luci-static/resources/form.js:3424
  8845. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:840
  8846. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:39
  8847. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:56
  8848. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:60
  8849. msgid "none"
  8850. msgstr "なし"
  8851. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  8852. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  8853. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  8854. msgid "not present"
  8855. msgstr "存在しません"
  8856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:349
  8857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:959
  8858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:963
  8859. msgid "off"
  8860. msgstr "オフ"
  8861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  8862. msgid "on available prefix"
  8863. msgstr "利用可能なプレフィックス"
  8864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  8865. msgid "open network"
  8866. msgstr "オープンネットワーク"
  8867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:835
  8868. msgid "other config (O)"
  8869. msgstr ""
  8870. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  8871. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  8872. msgid "output"
  8873. msgstr "出力"
  8874. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/view/wireguard/status.js:28
  8875. msgid "over a day ago"
  8876. msgstr "1日以上前"
  8877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:69
  8878. msgctxt "nft unit"
  8879. msgid "packets"
  8880. msgstr ""
  8881. #: modules/luci-base/htdocs/luci-static/resources/validation.js:252
  8882. msgid "positive decimal value"
  8883. msgstr "正の値(10進数)"
  8884. #: modules/luci-base/htdocs/luci-static/resources/validation.js:244
  8885. msgid "positive integer value"
  8886. msgstr "正の整数値"
  8887. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:178
  8888. msgid "random"
  8889. msgstr "ランダム"
  8890. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1163
  8891. msgid "randomly generated"
  8892. msgstr ""
  8893. #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:51
  8894. msgid ""
  8895. "reduces overhead by collecting and aggregating originator messages in a "
  8896. "single packet rather than many small ones"
  8897. msgstr ""
  8898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:809
  8899. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:931
  8900. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:965
  8901. msgid "relay mode"
  8902. msgstr "リレーモード"
  8903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1644
  8904. msgid "routed"
  8905. msgstr "ルート"
  8906. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  8907. msgid "sec"
  8908. msgstr "秒"
  8909. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:807
  8910. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929
  8911. msgid "server mode"
  8912. msgstr "サーバーモード"
  8913. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  8914. msgid "sstpc Log-level"
  8915. msgstr "sstpcログレベル"
  8916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1396
  8917. msgid "strong security"
  8918. msgstr "セキュリティ: 強"
  8919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:354
  8920. msgid "tagged"
  8921. msgstr "タグ付き"
  8922. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1568
  8923. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  8924. msgstr "時間単位(TUs/1.024ミリ秒)[1000-65535]"
  8925. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9
  8926. msgid ""
  8927. "uHTTPd offers <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> or "
  8928. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network "
  8929. "access."
  8930. msgstr ""
  8931. "uHTTPd は <abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> または "
  8932. "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ネットワーク"
  8933. "アクセスを提供します。"
  8934. #: modules/luci-base/htdocs/luci-static/resources/validation.js:583
  8935. msgid "unique value"
  8936. msgstr "固有の値"
  8937. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:585
  8938. msgid "unknown"
  8939. msgstr "不明"
  8940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:28
  8941. msgid "unknown version"
  8942. msgstr ""
  8943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542
  8944. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:963
  8945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:993
  8946. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99
  8947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146
  8948. msgid "unlimited"
  8949. msgstr "無制限"
  8950. #: modules/luci-base/htdocs/luci-static/resources/form.js:3789
  8951. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  8952. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  8953. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:370
  8954. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:397
  8955. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:433
  8956. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:470
  8957. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:566
  8958. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  8959. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  8960. msgid "unspecified"
  8961. msgstr "未設定"
  8962. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  8963. msgid "unspecified -or- create:"
  8964. msgstr "未設定 -または- 作成:"
  8965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  8966. msgid "untagged"
  8967. msgstr "タグなし"
  8968. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  8970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  8971. msgid "valid IP address"
  8972. msgstr "有効なIPアドレス"
  8973. #: modules/luci-base/htdocs/luci-static/resources/validation.js:257
  8974. msgid "valid IP address or prefix"
  8975. msgstr "有効なIPアドレスまたはプレフィックス"
  8976. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  8977. msgid "valid IPv4 CIDR"
  8978. msgstr "有効なIPv4 CIDR"
  8979. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  8981. msgid "valid IPv4 address"
  8982. msgstr "有効なIPv4アドレス"
  8983. #: modules/luci-base/htdocs/luci-static/resources/validation.js:265
  8984. msgid "valid IPv4 address or network"
  8985. msgstr "有効なIPv4アドレスまたはネットワーク"
  8986. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  8987. msgid "valid IPv4 address:port"
  8988. msgstr "有効なIPv4アドレス:ポート"
  8989. #: modules/luci-base/htdocs/luci-static/resources/validation.js:328
  8990. msgid "valid IPv4 network"
  8991. msgstr "有効なIPv4ネットワーク"
  8992. #: modules/luci-base/htdocs/luci-static/resources/validation.js:288
  8993. msgid "valid IPv4 or IPv6 CIDR"
  8994. msgstr "有効なIPv4またはIPv6 CIDR"
  8995. #: modules/luci-base/htdocs/luci-static/resources/validation.js:278
  8996. msgid "valid IPv4 prefix value (0-32)"
  8997. msgstr "有効なIPv4プレフィックス値(0-32)"
  8998. #: modules/luci-base/htdocs/luci-static/resources/validation.js:300
  8999. msgid "valid IPv6 CIDR"
  9000. msgstr "有効なIPv6 CIDR"
  9001. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  9002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  9003. msgid "valid IPv6 address"
  9004. msgstr "有効なIPv6アドレス"
  9005. #: modules/luci-base/htdocs/luci-static/resources/validation.js:273
  9006. msgid "valid IPv6 address or prefix"
  9007. msgstr "有効なIPv6アドレスまたはプレフィックス"
  9008. #: modules/luci-base/htdocs/luci-static/resources/validation.js:318
  9009. msgid "valid IPv6 host id"
  9010. msgstr "有効なIPv6ホストID"
  9011. #: modules/luci-base/htdocs/luci-static/resources/validation.js:333
  9012. msgid "valid IPv6 network"
  9013. msgstr "有効なIPv6ネットワーク"
  9014. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  9015. msgid "valid IPv6 prefix value (0-128)"
  9016. msgstr "有効なIPv6プレフィックス値(0-128)"
  9017. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  9018. msgid "valid MAC address"
  9019. msgstr "有効なMACアドレス"
  9020. #: modules/luci-base/htdocs/luci-static/resources/validation.js:426
  9021. msgid "valid UCI identifier"
  9022. msgstr "有効なUCI識別子"
  9023. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  9024. msgid "valid UCI identifier, hostname or IP address range"
  9025. msgstr "有効なUCI識別子、ホスト名またはIPアドレス"
  9026. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  9027. #: modules/luci-base/htdocs/luci-static/resources/validation.js:401
  9028. msgid "valid address:port"
  9029. msgstr "有効なアドレス:ポート"
  9030. #: modules/luci-base/htdocs/luci-static/resources/validation.js:557
  9031. #: modules/luci-base/htdocs/luci-static/resources/validation.js:561
  9032. msgid "valid date (YYYY-MM-DD)"
  9033. msgstr "有効な日付(YYYY-MM-DD)"
  9034. #: modules/luci-base/htdocs/luci-static/resources/validation.js:248
  9035. msgid "valid decimal value"
  9036. msgstr "有効な10進数の値"
  9037. #: modules/luci-base/htdocs/luci-static/resources/validation.js:420
  9038. msgid "valid hexadecimal WEP key"
  9039. msgstr "有効なWEPキー(16進数)"
  9040. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  9041. msgid "valid hexadecimal WPA key"
  9042. msgstr "有効なWPAキー(16進数)"
  9043. #: modules/luci-base/htdocs/luci-static/resources/validation.js:383
  9044. msgid "valid host:port"
  9045. msgstr "有効なホスト:ポート"
  9046. #: modules/luci-base/htdocs/luci-static/resources/validation.js:370
  9047. #: modules/luci-base/htdocs/luci-static/resources/validation.js:372
  9048. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:127
  9049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:133
  9050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  9051. msgid "valid hostname"
  9052. msgstr "有効なホスト名"
  9053. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  9054. msgid "valid hostname or IP address"
  9055. msgstr "有効なホスト名またはIPアドレス"
  9056. #: modules/luci-base/htdocs/luci-static/resources/validation.js:240
  9057. msgid "valid integer value"
  9058. msgstr "有効な整数値"
  9059. #: modules/luci-base/htdocs/luci-static/resources/validation.js:355
  9060. msgid "valid multicast MAC address"
  9061. msgstr ""
  9062. #: modules/luci-base/htdocs/luci-static/resources/validation.js:435
  9063. msgid ""
  9064. "valid network device name between 1 and 15 characters not containing \":\", "
  9065. "\"/\", \"%\" or spaces"
  9066. msgstr ""
  9067. #: modules/luci-base/htdocs/luci-static/resources/validation.js:433
  9068. msgid "valid network device name, not \".\" or \"..\""
  9069. msgstr ""
  9070. #: modules/luci-base/htdocs/luci-static/resources/validation.js:323
  9071. msgid "valid network in address/netmask notation"
  9072. msgstr "有効なネットワーク(アドレス/ネットマスク表記)"
  9073. #: modules/luci-base/htdocs/luci-static/resources/validation.js:532
  9074. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  9075. msgstr "有効な電話番号(0-9、\"*\"、\"#\"、\"!\"、\".\")"
  9076. #: modules/luci-base/htdocs/luci-static/resources/validation.js:346
  9077. #: modules/luci-base/htdocs/luci-static/resources/validation.js:349
  9078. msgid "valid port or port range (port1-port2)"
  9079. msgstr "有効なポートまたはポート範囲(port1-port2)"
  9080. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  9081. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:192
  9082. msgid "valid port value"
  9083. msgstr "有効なポート番号"
  9084. #: modules/luci-base/htdocs/luci-static/resources/validation.js:537
  9085. msgid "valid time (HH:MM:SS)"
  9086. msgstr "有効な時刻(HH:MM:SS)"
  9087. #: modules/luci-base/htdocs/luci-static/resources/validation.js:459
  9088. msgid "value between %d and %d characters"
  9089. msgstr "%d文字以上%d文字以下の値"
  9090. #: modules/luci-base/htdocs/luci-static/resources/validation.js:440
  9091. msgid "value between %f and %f"
  9092. msgstr "%fと%fの間の値"
  9093. #: modules/luci-base/htdocs/luci-static/resources/validation.js:444
  9094. msgid "value greater or equal to %f"
  9095. msgstr "%f以上の値"
  9096. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  9097. msgid "value smaller or equal to %f"
  9098. msgstr "%f以下の値"
  9099. #: modules/luci-base/htdocs/luci-static/resources/validation.js:453
  9100. msgid "value with %d characters"
  9101. msgstr "%d文字の値"
  9102. #: modules/luci-base/htdocs/luci-static/resources/validation.js:464
  9103. msgid "value with at least %d characters"
  9104. msgstr "%d文字以上の値"
  9105. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  9106. msgid "value with at most %d characters"
  9107. msgstr "最大%d文字の値"
  9108. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1398
  9109. msgid "weak security"
  9110. msgstr "セキュリティ: 弱"
  9111. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72
  9112. msgctxt "nft unit"
  9113. msgid "week"
  9114. msgstr ""
  9115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  9116. msgid "yes"
  9117. msgstr "はい"
  9118. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  9119. msgid "« Back"
  9120. msgstr "« 戻る"