base.po 342 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2021-06-09 13:32+0000\n"
  7. "Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n"
  8. "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/luci/ko/>"
  9. "\n"
  10. "Language: ko\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=2; plural=n == 1 ? 0 : 1;\n"
  15. "X-Generator: Weblate 4.7-dev\n"
  16. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484
  17. msgid "%.1f dB"
  18. msgstr "%.1f dB"
  19. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117
  20. msgid "%d Bit"
  21. msgstr "%d Bit"
  22. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3712
  23. msgid "%d invalid field(s)"
  24. msgstr "%d 잘못된 부분(들)"
  25. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:35
  26. msgid "%s is untagged in multiple VLANs!"
  27. msgstr "%s 는 여러 VLAN에서 태그 없음으로 설정되었습니다!"
  28. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:296
  29. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:405
  30. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:272
  31. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:309
  32. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:327
  33. msgid "(%d minute window, %d second interval)"
  34. msgstr "(%d 분 window, %d 초 간격)"
  35. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:118
  36. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:124
  37. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:258
  38. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:282
  39. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:88
  40. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:91
  41. msgid "(empty)"
  42. msgstr "(비어 있음)"
  43. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:351
  44. #: modules/luci-compat/luasrc/view/cbi/network_netinfo.htm:23
  45. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:58
  46. msgid "(no interfaces attached)"
  47. msgstr "(연결된 인터페이스 없음)"
  48. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  49. msgid "-- Additional Field --"
  50. msgstr "-- 추가 설정 --"
  51. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:275
  52. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  53. #: modules/luci-base/htdocs/luci-static/resources/form.js:3763
  54. #: modules/luci-base/htdocs/luci-static/resources/ui.js:784
  55. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1022
  56. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1995
  57. #: modules/luci-compat/luasrc/view/cbi/header.htm:8
  58. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:89
  59. msgid "-- Please choose --"
  60. msgstr "-- 선택하세요 --"
  61. #: modules/luci-base/htdocs/luci-static/resources/cbi.js:276
  62. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1023
  63. #: modules/luci-base/htdocs/luci-static/resources/ui.js:1996
  64. #: modules/luci-compat/luasrc/view/cbi/header.htm:9
  65. msgid "-- custom --"
  66. msgstr "-- 사용자 지정 --"
  67. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:270
  68. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:379
  69. msgid "-- match by label --"
  70. msgstr "--label로 지정 --"
  71. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:256
  72. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:362
  73. msgid "-- match by uuid --"
  74. msgstr "-- uuid로 지정 --"
  75. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:27
  76. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:44
  77. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:23
  78. msgid "-- please select --"
  79. msgstr "-- 선택하세요 --"
  80. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55
  81. msgctxt "sstp log level value"
  82. msgid "0"
  83. msgstr "0"
  84. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  85. msgid "0 = not using RSSI threshold, 1 = do not change driver default"
  86. msgstr "0 = RSSI 임계값을 사용하지 않음, 1 = 드라이버 기본값 사용"
  87. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  88. msgctxt "sstp log level value"
  89. msgid "1"
  90. msgstr "1"
  91. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  92. msgid "1 Minute Load:"
  93. msgstr "1분간 부하:"
  94. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  95. msgid "15 Minute Load:"
  96. msgstr "15분간 부하:"
  97. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  98. msgctxt "sstp log level value"
  99. msgid "2"
  100. msgstr "2"
  101. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  102. msgctxt "sstp log level value"
  103. msgid "3"
  104. msgstr "3"
  105. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  106. msgctxt "sstp log level value"
  107. msgid "4"
  108. msgstr "4"
  109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  110. msgid "4-character hexadecimal ID"
  111. msgstr "4자리 16진수 ID"
  112. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  113. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  114. msgid "464XLAT (CLAT)"
  115. msgstr "464XLAT (CLAT)"
  116. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  117. msgid "5 Minute Load:"
  118. msgstr "5분간 부하:"
  119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  120. msgid "6-octet identifier as a hex string - no colons"
  121. msgstr "6-옥텟 식별자를 콜론 없이 16진수 문자열로써 사용"
  122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  123. msgid "802.11r Fast Transition"
  124. msgstr "802.11r Fast Transition"
  125. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  126. msgid "802.11w Association SA Query maximum timeout"
  127. msgstr "802.11w Association SA 쿼리 최대 대기 시간"
  128. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  129. msgid "802.11w Association SA Query retry timeout"
  130. msgstr "802.11w Association SA 쿼리 재시도 최대 대기 시간"
  131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  132. msgid "802.11w Management Frame Protection"
  133. msgstr "802.11w 관리 프레임 보호 (Management Frame Protection)"
  134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  135. msgid "802.11w maximum timeout"
  136. msgstr "802.11w 최대 대기 시간"
  137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  138. msgid "802.11w retry timeout"
  139. msgstr "802.11w 재시도 대기 시간"
  140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  141. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  142. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  144. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  145. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 쿼리 포트"
  146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  147. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  148. msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 서버 포트"
  149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  150. msgid ""
  151. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  152. "order of the resolvfile"
  153. msgstr ""
  154. "<abbr title=\"Domain Name System\">DNS</abbr> 서버들이 resolvfile의 순서에 따"
  155. "라 쿼리됩니다"
  156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  157. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  158. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  160. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  161. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-주소"
  162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  163. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  164. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-게이트웨이"
  165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  167. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  168. msgstr "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-넷마스크"
  169. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  170. msgid ""
  171. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  172. "(CIDR)"
  173. msgstr ""
  174. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-주소 및 네트워크 "
  175. "(CIDR)"
  176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  177. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  178. msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-게이트웨이"
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  180. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  181. msgstr ""
  182. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-접미사 (16진수)"
  183. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  184. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  185. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 구성"
  186. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  187. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  188. msgstr "<abbr title=\"Light Emitting Diode\">LED</abbr> 이름"
  189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  190. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  191. msgstr "<abbr title=\"Media Access Control\">MAC</abbr>-주소"
  192. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  193. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  194. msgstr "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-프록시"
  195. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  196. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  197. msgstr ""
  198. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  199. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  200. msgstr ""
  201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  202. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  203. msgstr ""
  204. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  205. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  206. msgstr ""
  207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  208. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  209. msgstr ""
  210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  211. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  212. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  213. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  214. msgid ""
  215. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  216. "Protocol\">DHCP</abbr> leases"
  217. msgstr ""
  218. "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Dynamic Host Configuration "
  219. "Protocol\">DHCP</abbr> 임대 수"
  220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  221. msgid ""
  222. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  223. "Domain Name System\">EDNS0</abbr> packet size"
  224. msgstr ""
  225. "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Extension Mechanisms for "
  226. "Domain Name System\">EDNS0</abbr> 패킷 크기"
  227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  228. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  229. msgstr "<abbr title=\"maximal\">최대</abbr> 동시 처리 쿼리 수"
  230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  231. msgid ""
  232. "<br/>Note: you need to manually restart the cron service if the crontab file "
  233. "was empty before editing."
  234. msgstr ""
  235. "<br/>참고: 만약 비어있는 crontab 파일을 수정했다면 수동으로 cron 서비스를 다"
  236. "시 시작해야 합니다."
  237. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  238. msgid "A configuration for the device \"%s\" already exists"
  239. msgstr ""
  240. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  241. msgid "A directory with the same name already exists."
  242. msgstr "이미 같은 이름의 디렉터리가 존재합니다."
  243. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  244. msgid "A new login is required since the authentication session expired."
  245. msgstr "인증 세션이 만료되어 새 로그인이 필요합니다."
  246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  247. msgid "A43C + J43 + A43"
  248. msgstr "A43C + J43 + A43"
  249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  250. msgid "A43C + J43 + A43 + V43"
  251. msgstr "A43C + J43 + A43 + V43"
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  253. msgid "ADSL"
  254. msgstr "ADSL"
  255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  256. msgid "ANSI T1.413"
  257. msgstr "ANSI T1.413"
  258. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  259. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  260. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  261. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  262. msgid "APN"
  263. msgstr "APN"
  264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  265. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  266. msgid "ARP"
  267. msgstr "ARP"
  268. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  269. msgid "ARP IP Targets"
  270. msgstr "ARP IP 타겟"
  271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  272. msgid "ARP Interval"
  273. msgstr "ARP 간격"
  274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  275. msgid "ARP Validation"
  276. msgstr "ARP 검증"
  277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  278. msgid "ARP mode to consider a slave as being up"
  279. msgstr "ARP 모드가 슬레이브를 작동 중인 것으로 간주하기"
  280. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  281. msgid "ARP monitoring is not supported for the selected policy!"
  282. msgstr "선택된 정책은 ARP 모니터링을 지원하지 않습니다!"
  283. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  284. msgid "ARP retry threshold"
  285. msgstr "ARP 재시도 임계값"
  286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  287. msgid "ATM (Asynchronous Transfer Mode)"
  288. msgstr "ATM (비동기 전송 모드)"
  289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  290. msgid "ATM Bridges"
  291. msgstr "ATM 브릿지"
  292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  293. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  294. msgid "ATM Virtual Channel Identifier (VCI)"
  295. msgstr "ATM 가상 채널 식별자 (VCI)"
  296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  297. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  298. msgid "ATM Virtual Path Identifier (VPI)"
  299. msgstr "ATM 가상 경로 식별자 (VPI)"
  300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  301. msgid ""
  302. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  303. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  304. "to dial into the provider network."
  305. msgstr ""
  306. "ATM 브리지는 AAL5 연결에서 캡슐화된 이더넷을 DHCP 또는 PPP와 함께 사용하여 공"
  307. "급자 네트워크에 연결할 수 있는 가상 Linux 네트워크 인터페이스로 표시합니다."
  308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  309. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  310. msgid "ATM device number"
  311. msgstr "ATM 디바이스 번호"
  312. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  313. msgid "ATU-C System Vendor ID"
  314. msgstr "ATU-C 시스템 벤더 ID"
  315. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  316. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  317. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  318. msgid "Absent Interface"
  319. msgstr "인터페이스 없음"
  320. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  321. msgid "Accept local"
  322. msgstr ""
  323. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  324. msgid "Accept packets with local source addresses"
  325. msgstr ""
  326. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  327. #, fuzzy
  328. msgid "Access Concentrator"
  329. msgstr "Concentrator 접근"
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  332. msgid "Access Point"
  333. msgstr "액세스 포인트 (AP)"
  334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  335. msgid "Actions"
  336. msgstr "관리 도구"
  337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  338. msgid "Active"
  339. msgstr "활성화"
  340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  341. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  342. msgstr ""
  343. "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Route 경로"
  344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  345. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  346. msgstr ""
  347. "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Route 경로"
  348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  349. msgid "Active Connections"
  350. msgstr "활성 연결 수"
  351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  353. msgid "Active DHCP Leases"
  354. msgstr "활성화 된 DHCP 임대 목록"
  355. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  357. msgid "Active DHCPv6 Leases"
  358. msgstr "활성화 된 DHCPv6 임대 목록"
  359. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  360. msgid "Active-Backup policy (active-backup, 1)"
  361. msgstr "활성화된 백업 정책 (active-backup, 1)"
  362. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  364. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  365. msgid "Ad-Hoc"
  366. msgstr "애드혹"
  367. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  368. msgid "Adaptive load balancing (balance-alb, 6)"
  369. msgstr "적응형 부하 분산 (balance-alb, 6)"
  370. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  371. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  372. msgstr "적응형 송신 부하 분산 (balance-tlb, 5)"
  373. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  374. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  375. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  376. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  377. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  378. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  379. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  380. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  381. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  382. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  383. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  385. msgid "Add"
  386. msgstr "추가"
  387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  388. msgid "Add ATM Bridge"
  389. msgstr "ATM 브릿지 추가"
  390. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  391. msgid "Add IPv4 address…"
  392. msgstr "IPv4 주소 추가…"
  393. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  394. msgid "Add IPv6 address…"
  395. msgstr "IPv6 주소 추가…"
  396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  397. msgid "Add LED action"
  398. msgstr "LED 액션 추가"
  399. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  400. msgid "Add VLAN"
  401. msgstr "VLAN 추가"
  402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  403. msgid "Add device configuration"
  404. msgstr ""
  405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  406. msgid "Add device configuration…"
  407. msgstr ""
  408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  409. msgid "Add instance"
  410. msgstr "인스턴스 추가"
  411. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  412. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  413. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  414. msgid "Add key"
  415. msgstr "키 추가"
  416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  417. msgid "Add local domain suffix to names served from hosts files"
  418. msgstr "hosts에 등록된 호스트 명에 로컬 도메인 접미사를 추가합니다"
  419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  421. msgid "Add new interface..."
  422. msgstr "새로운 인터페이스 추가..."
  423. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  424. msgid "Add peer"
  425. msgstr "피어 추가"
  426. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  427. msgid "Add to Blacklist"
  428. msgstr "블랙리스트에 추가"
  429. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  430. msgid "Add to Whitelist"
  431. msgstr "화이트리스트에 추가"
  432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  433. msgid "Additional Hosts files"
  434. msgstr "추가적인 Hosts 파일들"
  435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  436. #, fuzzy
  437. msgid "Additional servers file"
  438. msgstr "추가적인 servers 파일"
  439. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  441. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  442. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  443. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  449. msgid "Address"
  450. msgstr "주소"
  451. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  452. msgid "Address to access local relay bridge"
  453. msgstr "로컬 릴레이 브릿지에 액세스하는 주소"
  454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  455. msgid "Addresses"
  456. msgstr "주소"
  457. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  458. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  459. msgid "Administration"
  460. msgstr "관리"
  461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  468. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  469. msgid "Advanced Settings"
  470. msgstr "고급 설정"
  471. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  472. msgid "Advanced device options"
  473. msgstr ""
  474. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  475. msgid "Ageing time"
  476. msgstr ""
  477. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  478. msgid "Aggregate Transmit Power (ACTATP)"
  479. msgstr "전송 전력 집계 (ACTATP)"
  480. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  481. msgid "Aggregation Selection Logic"
  482. msgstr "집계 선택 논리"
  483. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  484. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  485. msgstr ""
  486. "Aggregator: 모든 slaves가 종료 되었거나, 존재하지 않습니다. (stable, 0)"
  487. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  488. msgid ""
  489. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  490. "state changes (count, 2)"
  491. msgstr ""
  492. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  493. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  494. msgstr ""
  495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  496. msgid "Alert"
  497. msgstr "경고"
  498. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  499. #: modules/luci-compat/luasrc/model/network.lua:1417
  500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  501. msgid "Alias Interface"
  502. msgstr ""
  503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  504. msgid "Alias of \"%s\""
  505. msgstr ""
  506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  507. msgid "All Servers"
  508. msgstr "모든 서버"
  509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  510. msgid ""
  511. "Allocate IP addresses sequentially, starting from the lowest available "
  512. "address"
  513. msgstr "이용 가능한 가장 낮은 주소부터 순차적으로 IP주소 할당"
  514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  515. msgid "Allocate IP sequentially"
  516. msgstr "순차적으로 IP 할당"
  517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  518. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  519. msgstr "<abbr title=\"Secure Shell\">SSH</abbr> 암호 인증을 허용합니다"
  520. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  521. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  522. msgstr "낮은 ACK 조건을 기준으로 AP 모드에서 STA의 연결을 끊을 수 있습니다"
  523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  524. msgid "Allow all except listed"
  525. msgstr "목록의 주소 외 모두 허용"
  526. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  527. msgid "Allow full UCI access for legacy applications"
  528. msgstr "이전 애플리케이션을 위해 완전한 UCI 접근 허용"
  529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  530. msgid "Allow legacy 802.11b rates"
  531. msgstr "레거시 802.11b rates 허용"
  532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  533. msgid "Allow listed only"
  534. msgstr "목록의 주소만 허용"
  535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  536. msgid "Allow localhost"
  537. msgstr "localhost 허용"
  538. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  539. msgid "Allow rebooting the device"
  540. msgstr "기기 재부팅 허용"
  541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  542. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  543. msgstr "원격 호스트의 로컬 SSH로 포워드된 포트 접속을 허용합니다"
  544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  545. msgid "Allow root logins with password"
  546. msgstr "암호를 이용한 root 접근 허용"
  547. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  548. msgid "Allow system feature probing"
  549. msgstr "시스템 기능 프로빙 허용"
  550. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  551. msgid "Allow the <em>root</em> user to login with password"
  552. msgstr "암호를 이용한 <em>root</em> 사용자 접근을 허용합니다"
  553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  554. msgid ""
  555. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  556. msgstr "127.0.0.0/8 루프백 범위 내에서 업스트림 응답 허용 (예: RBL 서비스)"
  557. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  558. msgid "Allowed IPs"
  559. msgstr "허용된 IP"
  560. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  561. msgid "Always"
  562. msgstr ""
  563. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  564. msgid "Always off (kernel: none)"
  565. msgstr "항상 끄기 (kernel: none)"
  566. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  567. msgid "Always on (kernel: default-on)"
  568. msgstr "항상 켜기 (kernel: default-on)"
  569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  570. msgid ""
  571. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  572. "option does not comply with IEEE 802.11n-2009!"
  573. msgstr ""
  574. "두 번째 채널과 겹쳐도 항상 40MHz 채널 사용. 이 옵션을 사용하는 것은 IEEE "
  575. "802.11n-2009 를 준수하는 것이 아닙니다!"
  576. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  577. msgid "Amount of Duplicate Address Detection probes to send"
  578. msgstr ""
  579. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  580. msgid "An error occurred while saving the form:"
  581. msgstr "양식을 저장하는 동안 오류가 발생했습니다:"
  582. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  583. msgid "An optional, short description for this device"
  584. msgstr ""
  585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  587. msgid "Annex"
  588. msgstr ""
  589. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  590. msgid "Annex A + L + M (all)"
  591. msgstr ""
  592. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  593. msgid "Annex A G.992.1"
  594. msgstr ""
  595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  596. msgid "Annex A G.992.2"
  597. msgstr ""
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  599. msgid "Annex A G.992.3"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  602. msgid "Annex A G.992.5"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  605. msgid "Annex B (all)"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  608. msgid "Annex B G.992.1"
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  611. msgid "Annex B G.992.3"
  612. msgstr ""
  613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  614. msgid "Annex B G.992.5"
  615. msgstr ""
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  617. msgid "Annex J (all)"
  618. msgstr ""
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  620. msgid "Annex L G.992.3 POTS 1"
  621. msgstr ""
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  623. msgid "Annex M (all)"
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  626. msgid "Annex M G.992.3"
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  629. msgid "Annex M G.992.5"
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  632. msgid "Announce this device as IPv6 DNS server."
  633. msgstr ""
  634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  635. msgid ""
  636. "Announce this device as default router if a local IPv6 default route is "
  637. "present."
  638. msgstr ""
  639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  640. msgid ""
  641. "Announce this device as default router if a public IPv6 prefix is available, "
  642. "regardless of local default route availability."
  643. msgstr ""
  644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  645. msgid ""
  646. "Announce this device as default router regardless of whether a prefix or "
  647. "default route is present."
  648. msgstr ""
  649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  650. msgid "Announced DNS domains"
  651. msgstr "알려진 DNS 도메인"
  652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  653. msgid "Announced IPv6 DNS servers"
  654. msgstr ""
  655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  656. msgid "Anonymous Identity"
  657. msgstr "익명 신분"
  658. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  659. msgid "Anonymous Mount"
  660. msgstr ""
  661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  662. msgid "Anonymous Swap"
  663. msgstr ""
  664. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  665. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  666. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  667. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  668. msgid "Any zone"
  669. msgstr ""
  670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  671. msgid "Apply backup?"
  672. msgstr ""
  673. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  674. msgid "Apply request failed with status <code>%h</code>"
  675. msgstr ""
  676. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  677. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  678. msgid "Apply unchecked"
  679. msgstr ""
  680. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  681. msgid "Applying configuration changes… %ds"
  682. msgstr ""
  683. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  684. msgid "Architecture"
  685. msgstr "아키텍처"
  686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  687. msgid ""
  688. "Assign a part of given length of every public IPv6-prefix to this interface"
  689. msgstr ""
  690. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  691. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  692. msgid ""
  693. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  694. msgstr ""
  695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  697. #, fuzzy
  698. msgid "Associated Stations"
  699. msgstr "연결된 스테이션"
  700. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  701. msgid "Associations"
  702. msgstr ""
  703. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  704. msgid "Attempt to enable configured mount points for attached devices"
  705. msgstr ""
  706. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  707. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  708. msgid "Auth Group"
  709. msgstr ""
  710. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  711. msgid "Authentication"
  712. msgstr ""
  713. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  714. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  715. msgid "Authentication Type"
  716. msgstr ""
  717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  718. msgid "Authoritative"
  719. msgstr ""
  720. #: modules/luci-base/luasrc/view/sysauth.htm:17
  721. msgid "Authorization Required"
  722. msgstr "인증이 필요합니다"
  723. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  724. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  725. msgid "Auto Refresh"
  726. msgstr "자동 Refresh"
  727. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  728. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  729. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  730. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  731. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  732. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  733. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  734. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  735. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  736. msgid "Automatic"
  737. msgstr ""
  738. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  739. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  740. msgid "Automatic Homenet (HNCP)"
  741. msgstr ""
  742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  743. msgid "Automatically check filesystem for errors before mounting"
  744. msgstr ""
  745. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  746. msgid "Automatically mount filesystems on hotplug"
  747. msgstr ""
  748. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  749. msgid "Automatically mount swap on hotplug"
  750. msgstr ""
  751. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  752. msgid "Automount Filesystem"
  753. msgstr ""
  754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  755. msgid "Automount Swap"
  756. msgstr ""
  757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  758. msgid "Available"
  759. msgstr "사용 가능"
  760. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  761. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  762. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  763. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  764. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  765. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  766. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  767. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  768. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  769. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  771. msgid "Average:"
  772. msgstr "평균:"
  773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  774. msgid "B43 + B43C"
  775. msgstr "B43 + B43C"
  776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  777. msgid "B43 + B43C + V43"
  778. msgstr "B43 + B43C + V43"
  779. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  780. msgid "BR / DMR / AFTR"
  781. msgstr "BR / DMR / AFTR"
  782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  785. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  786. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  787. msgid "BSSID"
  788. msgstr "BSSID"
  789. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  790. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  791. msgid "Back to Overview"
  792. msgstr "개요로 이동"
  793. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  794. msgid "Back to configuration"
  795. msgstr "설정으로 돌아가기"
  796. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  797. msgid "Backup"
  798. msgstr "백업"
  799. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  800. msgid "Backup / Flash Firmware"
  801. msgstr "펌웨어 백업 / 플래시"
  802. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  803. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  804. msgid "Backup file list"
  805. msgstr ""
  806. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  808. msgid "Band"
  809. msgstr ""
  810. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  811. msgid "Base device"
  812. msgstr ""
  813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  814. msgid "Beacon Interval"
  815. msgstr ""
  816. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  817. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  818. msgid ""
  819. "Below is the determined list of files to backup. It consists of changed "
  820. "configuration files marked by opkg, essential base files and the user "
  821. "defined backup patterns."
  822. msgstr ""
  823. "아래는 백업할 파일 목록입니다. 이 목록은 opkg 가 수정되었다고 판단한 파일, 필"
  824. "수 기본 파일 그리고 사용자가 패턴 정의로 백업하도록 지정한 것들로 이루어져 있"
  825. "습니다."
  826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  827. msgid ""
  828. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  829. "linux default)"
  830. msgstr ""
  831. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  832. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  833. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  834. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  835. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  836. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  837. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  838. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  839. msgid "Bind interface"
  840. msgstr ""
  841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  843. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  844. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  845. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  846. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  847. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  848. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  849. msgid "Bind the tunnel to this interface (optional)."
  850. msgstr ""
  851. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  852. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  853. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  854. msgid "Bitrate"
  855. msgstr "비트레이트"
  856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  857. msgid "Bogus NX Domain Override"
  858. msgstr ""
  859. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  860. msgid "Bonding Policy"
  861. msgstr ""
  862. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  863. #: modules/luci-compat/luasrc/model/network.lua:1421
  864. msgid "Bridge"
  865. msgstr ""
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  867. msgctxt "MACVLAN mode"
  868. msgid "Bridge (Support direct communication between MAC VLANs)"
  869. msgstr ""
  870. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  872. msgid "Bridge VLAN filtering"
  873. msgstr ""
  874. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  876. msgid "Bridge device"
  877. msgstr ""
  878. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  880. msgid "Bridge port specific options"
  881. msgstr ""
  882. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  883. msgid "Bridge ports"
  884. msgstr ""
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  886. msgid "Bridge unit number"
  887. msgstr ""
  888. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  889. msgid "Bring up empty bridge"
  890. msgstr ""
  891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  892. msgid "Bring up on boot"
  893. msgstr "부팅시 활성화"
  894. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  895. msgid "Bring up the bridge interface even if no ports are attached"
  896. msgstr ""
  897. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  898. msgid "Broadcast policy (broadcast, 3)"
  899. msgstr ""
  900. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  901. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  902. msgid "Browse…"
  903. msgstr ""
  904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  905. msgid "Buffered"
  906. msgstr "버퍼된 양"
  907. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  908. msgid "CA certificate; if empty it will be saved after the first connection."
  909. msgstr ""
  910. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  911. msgid "CLAT configuration failed"
  912. msgstr ""
  913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  914. msgid "CPU usage (%)"
  915. msgstr "CPU 사용량 (%)"
  916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  917. msgid "Cached"
  918. msgstr "캐시 된 양"
  919. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  920. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  921. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  922. msgid "Call failed"
  923. msgstr ""
  924. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  925. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  926. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  927. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  928. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  931. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  933. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  934. msgid "Cancel"
  935. msgstr "취소"
  936. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  937. msgid "Category"
  938. msgstr ""
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  940. msgid "Certificate constraint (Domain)"
  941. msgstr ""
  942. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  943. msgid "Certificate constraint (SAN)"
  944. msgstr ""
  945. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  946. msgid "Certificate constraint (Subject)"
  947. msgstr ""
  948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  949. msgid "Certificate constraint (Wildcard)"
  950. msgstr ""
  951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  953. msgid ""
  954. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  955. "`logread -f` during handshake for actual values"
  956. msgstr ""
  957. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  959. msgid ""
  960. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  961. "Subject CN (exact match)"
  962. msgstr ""
  963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  965. msgid ""
  966. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  967. "Subject CN (suffix match)"
  968. msgstr ""
  969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  971. msgid ""
  972. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  973. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  974. msgstr ""
  975. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  976. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  977. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  978. msgid "Chain"
  979. msgstr ""
  980. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  981. msgid "Changes"
  982. msgstr "변경 사항"
  983. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  984. msgid "Changes have been reverted."
  985. msgstr ""
  986. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  987. msgid "Changes the administrator password for accessing the device"
  988. msgstr "장비 접근을 위한 관리자 암호를 변경합니다"
  989. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  992. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  994. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  995. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  996. msgid "Channel"
  997. msgstr ""
  998. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  999. msgid "Channel Analysis"
  1000. msgstr "채널 분석"
  1001. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  1002. msgid "Channel Width"
  1003. msgstr ""
  1004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1005. msgid "Check filesystems before mount"
  1006. msgstr ""
  1007. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  1008. msgid "Check this option to delete the existing networks from this radio."
  1009. msgstr ""
  1010. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1011. msgid "Checking archive…"
  1012. msgstr ""
  1013. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1015. msgid "Checking image…"
  1016. msgstr ""
  1017. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1018. msgid "Choose mtdblock"
  1019. msgstr "mtdblock 선택"
  1020. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1021. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1022. msgid ""
  1023. "Choose the firewall zone you want to assign to this interface. Select "
  1024. "<em>unspecified</em> to remove the interface from the associated zone or "
  1025. "fill out the <em>custom</em> field to define a new zone and attach the "
  1026. "interface to it."
  1027. msgstr ""
  1028. "이 인터페이스에 할당하고자 하는 firewall zone 을 선택하세요. 연결된 zone 으로"
  1029. "부터 인터페이스를 제거하고 싶다면 <em>명시되지 않음</em> 을 선택하세요. 새로"
  1030. "운 zone 을 정의하고 인터페이스 연결을 원한다면 <em>create</em> 항목을 입력하"
  1031. "세요."
  1032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1033. msgid ""
  1034. "Choose the network(s) you want to attach to this wireless interface or fill "
  1035. "out the <em>custom</em> field to define a new network."
  1036. msgstr ""
  1037. "이 무선랜 인터페이스와 연결하고자 하는 네트워크(들)을 선택하세요. 혹은 새로"
  1038. "운 네트워크를 정의할려면 <em>create</em> 을 작성하세요."
  1039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1040. msgid "Cipher"
  1041. msgstr ""
  1042. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1043. msgid "Cisco UDP encapsulation"
  1044. msgstr ""
  1045. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1046. msgid ""
  1047. "Click \"Generate archive\" to download a tar archive of the current "
  1048. "configuration files."
  1049. msgstr ""
  1050. "현재 설정 파일에 대한 tar 아카이브 다운로드를 원한다면 \"아카이브 생성\" 버튼"
  1051. "을 클릭하세요."
  1052. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1053. msgid ""
  1054. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1055. "FEATURE IS FOR PROFESSIONALS! )"
  1056. msgstr ""
  1057. "지정된 mtdblock 파일을 다운로드하려면 \"mtdblock 저장\"을 클릭하세요. (참고: "
  1058. "이 기능은 전문가를 위한 것입니다!)"
  1059. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1062. msgid "Client"
  1063. msgstr ""
  1064. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1065. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1066. msgid "Client ID to send when requesting DHCP"
  1067. msgstr "DHCP 요청시 전송할 Client ID"
  1068. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1069. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1070. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1071. msgid "Close"
  1072. msgstr ""
  1073. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1074. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1075. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1076. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1077. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1078. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1079. msgid ""
  1080. "Close inactive connection after the given amount of seconds, use 0 to "
  1081. "persist connection"
  1082. msgstr ""
  1083. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1084. msgid "Close list..."
  1085. msgstr "목록 닫기..."
  1086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1087. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1089. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1090. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1091. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1092. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1093. msgid "Collecting data..."
  1094. msgstr "데이터 수집 중..."
  1095. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1096. msgid "Command"
  1097. msgstr "명령어"
  1098. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1099. msgid "Command OK"
  1100. msgstr ""
  1101. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1102. msgid "Command failed"
  1103. msgstr ""
  1104. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1105. msgid "Comment"
  1106. msgstr ""
  1107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1108. msgid ""
  1109. "Complicates key reinstallation attacks on the client side by disabling "
  1110. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1111. "workaround might cause interoperability issues and reduced robustness of key "
  1112. "negotiation especially in environments with heavy traffic load."
  1113. msgstr ""
  1114. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1115. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1116. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1117. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1118. msgid "Compute outgoing checksum (optional)."
  1119. msgstr ""
  1120. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1121. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1122. msgid "Configuration"
  1123. msgstr "설정"
  1124. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1125. msgid "Configuration changes applied."
  1126. msgstr ""
  1127. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1128. msgid "Configuration changes have been rolled back!"
  1129. msgstr ""
  1130. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1131. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1132. msgid "Configuration failed"
  1133. msgstr ""
  1134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1135. msgid ""
  1136. "Configures data rates based on the coverage cell density. Normal configures "
  1137. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1138. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1139. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1140. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1141. "offered."
  1142. msgstr ""
  1143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1144. msgid ""
  1145. "Configures the default router advertisement in <abbr title=\"Router "
  1146. "Advertisement\">RA</abbr> messages."
  1147. msgstr ""
  1148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1149. msgid ""
  1150. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1151. "\">RA</abbr> service on this interface."
  1152. msgstr ""
  1153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1154. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1155. msgstr ""
  1156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1157. msgid ""
  1158. "Configures the operation mode of the NDP proxy service on this interface."
  1159. msgstr ""
  1160. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1161. msgid "Configure…"
  1162. msgstr ""
  1163. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1164. msgid "Confirm disconnect"
  1165. msgstr ""
  1166. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1167. msgid "Confirmation"
  1168. msgstr "다시 확인"
  1169. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1170. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1172. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1173. msgid "Connected"
  1174. msgstr "연결 시간"
  1175. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1176. #: modules/luci-compat/luasrc/model/network.lua:27
  1177. msgid "Connection attempt failed"
  1178. msgstr ""
  1179. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1180. msgid "Connection attempt failed."
  1181. msgstr ""
  1182. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1183. msgid "Connection lost"
  1184. msgstr ""
  1185. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1186. msgid "Connections"
  1187. msgstr "연결"
  1188. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1189. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1190. msgstr ""
  1191. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1192. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1193. msgstr ""
  1194. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1195. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1197. msgid "Contents have been saved."
  1198. msgstr ""
  1199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1202. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1203. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1204. msgid "Continue"
  1205. msgstr ""
  1206. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1207. msgid ""
  1208. "Could not regain access to the device after applying the configuration "
  1209. "changes. You might need to reconnect if you modified network related "
  1210. "settings such as the IP address or wireless security credentials."
  1211. msgstr ""
  1212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1213. msgid "Country"
  1214. msgstr ""
  1215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1216. msgid "Country Code"
  1217. msgstr ""
  1218. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1219. msgid "Coverage cell density"
  1220. msgstr ""
  1221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1223. msgid "Create / Assign firewall-zone"
  1224. msgstr "Firewall-zone 생성 / 할당"
  1225. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1226. msgid "Create interface"
  1227. msgstr ""
  1228. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1229. msgid "Critical"
  1230. msgstr ""
  1231. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1232. msgid "Cron Log Level"
  1233. msgstr ""
  1234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1235. msgid "Current power"
  1236. msgstr ""
  1237. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1238. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1239. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1240. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1241. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1242. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1243. msgid "Custom Interface"
  1244. msgstr "임의의 인터페이스"
  1245. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1246. msgid ""
  1247. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1248. "this, perform a factory-reset first."
  1249. msgstr ""
  1250. "사용자 지정 파일(인증서, 스크립트)이 시스템에 남아 있을 수 있습니다. 이를 방"
  1251. "지하려면 먼저 공장 초기화를 수행하세요."
  1252. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1253. msgid "Custom flash interval (kernel: timer)"
  1254. msgstr "사용자 지정 플래시 간격 (kernel: timer)"
  1255. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1256. msgid ""
  1257. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1258. "\">LED</abbr>s if possible."
  1259. msgstr ""
  1260. "가능하다면 <abbr title=\"Light Emitting Diode\">LED</abbr> 의 동작을 직접 지"
  1261. "정 할 수 있습니다."
  1262. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1263. msgid "DAD transmits"
  1264. msgstr ""
  1265. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1266. msgid "DAE-Client"
  1267. msgstr ""
  1268. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1269. msgid "DAE-Port"
  1270. msgstr ""
  1271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1272. msgid "DAE-Secret"
  1273. msgstr ""
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1275. msgid "DHCP Server"
  1276. msgstr "DHCP 서버"
  1277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1278. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1279. msgid "DHCP and DNS"
  1280. msgstr "DHCP 와 DNS"
  1281. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1282. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1283. #: modules/luci-compat/luasrc/model/network.lua:969
  1284. msgid "DHCP client"
  1285. msgstr "DHCP client"
  1286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1287. msgid "DHCP-Options"
  1288. msgstr "DHCP-옵션들"
  1289. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1290. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1291. msgid "DHCPv6 client"
  1292. msgstr ""
  1293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1294. msgid "DHCPv6-Service"
  1295. msgstr ""
  1296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1297. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1298. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1299. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1300. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1301. msgid "DNS"
  1302. msgstr "DNS"
  1303. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1304. msgid "DNS forwardings"
  1305. msgstr ""
  1306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1307. msgid "DNS search domains"
  1308. msgstr ""
  1309. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1310. msgid "DNS weight"
  1311. msgstr ""
  1312. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1313. msgid "DNS-Label / FQDN"
  1314. msgstr ""
  1315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1316. msgid "DNSSEC"
  1317. msgstr ""
  1318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1319. msgid "DNSSEC check unsigned"
  1320. msgstr ""
  1321. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1322. msgid "DPD Idle Timeout"
  1323. msgstr ""
  1324. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1325. msgid "DS-Lite AFTR address"
  1326. msgstr ""
  1327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1328. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1329. msgid "DSL"
  1330. msgstr "DSL"
  1331. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1332. msgid "DSL Status"
  1333. msgstr ""
  1334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1335. msgid "DSL line mode"
  1336. msgstr ""
  1337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1338. msgid "DTIM Interval"
  1339. msgstr ""
  1340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1341. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1342. msgid "DUID"
  1343. msgstr "DUID"
  1344. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1345. msgid "Data Rate"
  1346. msgstr ""
  1347. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1349. msgid "Debug"
  1350. msgstr ""
  1351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1354. msgid "Default %d"
  1355. msgstr ""
  1356. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1357. msgid "Default router"
  1358. msgstr ""
  1359. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1360. msgid "Default state"
  1361. msgstr "기본 상태"
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1363. msgid ""
  1364. "Define additional DHCP options, for example "
  1365. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1366. "servers to clients."
  1367. msgstr ""
  1368. "추가적인 DHCP 옵션을 정의합니다. 예를 들어 "
  1369. "\"<code>6,192.168.2.1,192.168.2.2</code>\" 는 client 에게 다른 DNS 서버를 세"
  1370. "팅하도록 권고할 수 있습니다."
  1371. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1372. msgid ""
  1373. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1374. "but for outgoing frames"
  1375. msgstr ""
  1376. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1377. msgid ""
  1378. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1379. "priority on incoming frames"
  1380. msgstr ""
  1381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1382. msgid "Delegate IPv6 prefixes"
  1383. msgstr ""
  1384. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1385. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1386. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1387. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1388. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1389. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1390. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1391. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1392. msgid "Delete"
  1393. msgstr "삭제"
  1394. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1395. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1396. msgid "Delete key"
  1397. msgstr ""
  1398. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1399. msgid "Delete request failed: %s"
  1400. msgstr ""
  1401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1402. msgid "Delete this network"
  1403. msgstr "이 네트워크를 삭제합니다"
  1404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1405. msgid "Delivery Traffic Indication Message Interval"
  1406. msgstr ""
  1407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1409. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1410. msgid "Description"
  1411. msgstr "설명"
  1412. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1413. msgid "Deselect"
  1414. msgstr ""
  1415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1416. msgid "Design"
  1417. msgstr "테마"
  1418. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1419. msgid "Designated master"
  1420. msgstr ""
  1421. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1422. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1423. msgid "Destination"
  1424. msgstr ""
  1425. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1426. msgid "Destination port"
  1427. msgstr ""
  1428. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1429. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1430. msgid "Destination zone"
  1431. msgstr ""
  1432. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1433. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1434. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1437. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1439. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1440. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1446. msgid "Device"
  1447. msgstr ""
  1448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1449. msgid "Device Configuration"
  1450. msgstr "장치 설정"
  1451. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1452. msgid "Device is not active"
  1453. msgstr ""
  1454. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1455. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1456. msgid "Device is restarting…"
  1457. msgstr ""
  1458. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1459. msgid "Device name"
  1460. msgstr ""
  1461. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1462. msgid "Device not managed by ModemManager."
  1463. msgstr ""
  1464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1465. msgid "Device not present"
  1466. msgstr ""
  1467. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1468. msgid "Device type"
  1469. msgstr ""
  1470. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1471. msgid "Device unreachable!"
  1472. msgstr ""
  1473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1474. msgid "Device unreachable! Still waiting for device..."
  1475. msgstr ""
  1476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1477. msgid "Devices"
  1478. msgstr ""
  1479. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1480. msgid "Diagnostics"
  1481. msgstr "진단"
  1482. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1483. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1484. msgid "Dial number"
  1485. msgstr ""
  1486. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1487. msgid "Directory"
  1488. msgstr ""
  1489. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1490. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1491. msgid "Disable"
  1492. msgstr "비활성화"
  1493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1494. msgid ""
  1495. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1496. "this interface."
  1497. msgstr ""
  1498. "이 인터페이스에 대해 <abbr title=\"Dynamic Host Configuration Protocol"
  1499. "\">DHCP</abbr> 기능을 비활성합니다."
  1500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1502. msgid "Disable DNS lookups"
  1503. msgstr ""
  1504. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1505. msgid "Disable Encryption"
  1506. msgstr ""
  1507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1508. msgid "Disable Inactivity Polling"
  1509. msgstr ""
  1510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1511. msgid "Disable this network"
  1512. msgstr ""
  1513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1516. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1517. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1518. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1519. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1520. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1521. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1522. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1523. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1524. msgid "Disabled"
  1525. msgstr ""
  1526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1527. msgid "Disassociate On Low Acknowledgement"
  1528. msgstr ""
  1529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1530. msgid "Discard upstream RFC1918 responses"
  1531. msgstr ""
  1532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1534. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1536. msgid "Disconnect"
  1537. msgstr ""
  1538. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1539. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1540. msgid "Disconnection attempt failed"
  1541. msgstr ""
  1542. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1543. msgid "Disconnection attempt failed."
  1544. msgstr ""
  1545. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1546. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1547. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1548. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1550. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1551. msgid "Dismiss"
  1552. msgstr ""
  1553. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1554. msgid "Distance Optimization"
  1555. msgstr ""
  1556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1557. msgid "Distance to farthest network member in meters."
  1558. msgstr ""
  1559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1560. msgid ""
  1561. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1562. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1563. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1564. "firewalls"
  1565. msgstr ""
  1566. "Dnsmasq 는 <abbr title=\"Network Address Translation\">NAT</abbr> 방화벽을 위"
  1567. "한 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>-서버와 "
  1568. "<abbr title=\"Domain Name System\">DNS</abbr>-Forwarder 기능을 제공합니다."
  1569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1570. msgid "Do not cache negative replies, e.g. for not existing domains"
  1571. msgstr ""
  1572. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1573. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1574. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1575. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1576. msgid "Do not create host route to peer (optional)."
  1577. msgstr ""
  1578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1579. msgid "Do not forward requests that cannot be answered by public name servers"
  1580. msgstr ""
  1581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1582. msgid "Do not forward reverse lookups for local networks"
  1583. msgstr ""
  1584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1585. msgid "Do not offer DHCPv6 service on this interface."
  1586. msgstr ""
  1587. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1588. msgctxt "VLAN port state"
  1589. msgid "Do not participate"
  1590. msgstr ""
  1591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1592. msgid ""
  1593. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1594. "packets."
  1595. msgstr ""
  1596. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1597. msgid "Do not send a hostname"
  1598. msgstr ""
  1599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1600. msgid ""
  1601. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1602. "abbr> messages on this interface."
  1603. msgstr ""
  1604. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1605. msgid "Do you really want to delete \"%s\" ?"
  1606. msgstr ""
  1607. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1608. msgid "Do you really want to delete the following SSH key?"
  1609. msgstr ""
  1610. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1611. msgid "Do you really want to erase all settings?"
  1612. msgstr ""
  1613. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1614. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1615. msgstr ""
  1616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1617. msgid "Domain required"
  1618. msgstr ""
  1619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1620. msgid "Domain whitelist"
  1621. msgstr ""
  1622. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1623. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1624. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1625. msgid "Don't Fragment"
  1626. msgstr ""
  1627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1628. msgid ""
  1629. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1630. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1631. msgstr ""
  1632. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1633. msgid "Down"
  1634. msgstr ""
  1635. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1636. msgid "Down Delay"
  1637. msgstr ""
  1638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1639. msgid "Download backup"
  1640. msgstr "백업 다운로드"
  1641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1642. msgid "Download mtdblock"
  1643. msgstr "mtdblock 다운로드"
  1644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1645. msgid "Downstream SNR offset"
  1646. msgstr ""
  1647. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1648. msgid "Drag to reorder"
  1649. msgstr ""
  1650. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1651. msgid "Drop Duplicate Frames"
  1652. msgstr ""
  1653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1654. msgid "Dropbear Instance"
  1655. msgstr "Dropbear 설정"
  1656. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1657. msgid ""
  1658. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1659. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1660. msgstr ""
  1661. "Dropbear 는 <abbr title=\"Secure Shell\">SSH</abbr> network shell 접근과 "
  1662. "<abbr title=\"Secure Copy\">SCP</abbr> 서버 기능을 제공합니다"
  1663. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1664. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1665. msgid "Dual-Stack Lite (RFC6333)"
  1666. msgstr ""
  1667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1668. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1669. msgstr ""
  1670. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1671. msgid "Dynamic tunnel"
  1672. msgstr ""
  1673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1674. msgid ""
  1675. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1676. "having static leases will be served."
  1677. msgstr ""
  1678. "동적으로 DHCP 주소를 클라이언트에 할당합니다. 비활성화시, 고정 임대가 설정된 "
  1679. "클라이언트만 주소 제공이 이루어집니다."
  1680. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1681. msgid "EA-bits length"
  1682. msgstr ""
  1683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1684. msgid "EAP-Method"
  1685. msgstr ""
  1686. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1687. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1688. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1689. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1690. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1691. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1692. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1693. msgid "Edit"
  1694. msgstr "수정"
  1695. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1696. msgid ""
  1697. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1698. "reload the page."
  1699. msgstr ""
  1700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1701. msgid "Edit this network"
  1702. msgstr "이 네트워크를 수정합니다"
  1703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1704. msgid "Edit wireless network"
  1705. msgstr ""
  1706. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1707. msgid "Egress QoS mapping"
  1708. msgstr ""
  1709. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1710. msgctxt "VLAN port state"
  1711. msgid "Egress tagged"
  1712. msgstr ""
  1713. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1714. msgctxt "VLAN port state"
  1715. msgid "Egress untagged"
  1716. msgstr ""
  1717. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1718. msgid "Emergency"
  1719. msgstr ""
  1720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1722. msgid "Enable"
  1723. msgstr "활성화"
  1724. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1725. msgid ""
  1726. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1727. "snooping"
  1728. msgstr ""
  1729. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1730. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1731. msgstr "<abbr title=\"Spanning Tree Protocol\">STP</abbr> 활성화"
  1732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1733. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1734. msgstr ""
  1735. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1736. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1737. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1738. msgid "Enable DNS lookups"
  1739. msgstr ""
  1740. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1741. msgid "Enable Dynamic Shuffling Of Flows"
  1742. msgstr ""
  1743. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1744. msgid "Enable HE.net dynamic endpoint update"
  1745. msgstr ""
  1746. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1747. msgid "Enable IPv6"
  1748. msgstr ""
  1749. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1750. msgid "Enable IPv6 negotiation"
  1751. msgstr ""
  1752. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1753. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1754. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1755. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1756. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1757. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1758. msgid "Enable IPv6 negotiation on the PPP link"
  1759. msgstr ""
  1760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1761. msgid "Enable Jumbo Frame passthrough"
  1762. msgstr ""
  1763. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1764. msgid "Enable MAC address learning"
  1765. msgstr ""
  1766. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1767. msgid "Enable NTP client"
  1768. msgstr "NTP 클라이언트 활성화"
  1769. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1770. msgid "Enable Single DES"
  1771. msgstr ""
  1772. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1773. msgid "Enable TFTP server"
  1774. msgstr "TFTP 서버 활성화"
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1776. msgid "Enable VLAN filtering"
  1777. msgstr ""
  1778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1779. msgid "Enable VLAN functionality"
  1780. msgstr "VLAN 기능 활성화"
  1781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1782. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1783. msgstr ""
  1784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1785. msgid ""
  1786. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1787. msgstr ""
  1788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1789. msgid "Enable key reinstallation (KRACK) countermeasures"
  1790. msgstr ""
  1791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1792. msgid "Enable learning and aging"
  1793. msgstr ""
  1794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1795. msgid "Enable mirroring of incoming packets"
  1796. msgstr ""
  1797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1798. msgid "Enable mirroring of outgoing packets"
  1799. msgstr ""
  1800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1801. msgid "Enable multicast fast leave"
  1802. msgstr ""
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1804. msgid "Enable multicast querier"
  1805. msgstr ""
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1807. msgid "Enable multicast support"
  1808. msgstr ""
  1809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1810. msgid ""
  1811. "Enable packet steering across all CPUs. May help or hinder network speed."
  1812. msgstr ""
  1813. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1814. msgid "Enable promiscuous mode"
  1815. msgstr ""
  1816. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1817. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1818. msgid "Enable rx checksum"
  1819. msgstr ""
  1820. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1821. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1823. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1824. msgid "Enable support for multicast traffic (optional)."
  1825. msgstr ""
  1826. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1827. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1828. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1829. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1830. msgstr ""
  1831. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1832. msgid "Enable this network"
  1833. msgstr ""
  1834. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1835. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1836. msgid "Enable tx checksum"
  1837. msgstr ""
  1838. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1839. msgid "Enable unicast flooding"
  1840. msgstr ""
  1841. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1842. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1843. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1844. msgid "Enabled"
  1845. msgstr "활성화"
  1846. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1847. msgid "Enables IGMP snooping on this bridge"
  1848. msgstr ""
  1849. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1850. msgid ""
  1851. "Enables fast roaming among access points that belong to the same Mobility "
  1852. "Domain"
  1853. msgstr ""
  1854. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1855. msgid "Enables the Spanning Tree Protocol on this bridge"
  1856. msgstr "이 bridge 에 Spanning Tree Protocol 활성화합니다"
  1857. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1858. msgid "Encapsulation limit"
  1859. msgstr ""
  1860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1862. msgid "Encapsulation mode"
  1863. msgstr ""
  1864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1868. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1869. msgid "Encryption"
  1870. msgstr "암호화"
  1871. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1872. msgid "Endpoint Host"
  1873. msgstr ""
  1874. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1875. msgid "Endpoint Port"
  1876. msgstr ""
  1877. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1878. msgid "Enforce IGMPv1"
  1879. msgstr ""
  1880. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1881. msgid "Enforce IGMPv2"
  1882. msgstr ""
  1883. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1884. msgid "Enforce IGMPv3"
  1885. msgstr ""
  1886. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1887. msgid "Enforce MLD version 1"
  1888. msgstr ""
  1889. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1890. msgid "Enforce MLD version 2"
  1891. msgstr ""
  1892. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1893. msgid "Enter custom value"
  1894. msgstr ""
  1895. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1896. msgid "Enter custom values"
  1897. msgstr ""
  1898. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1899. msgid "Erasing..."
  1900. msgstr ""
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1902. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1904. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1905. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1906. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1907. msgid "Error"
  1908. msgstr ""
  1909. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1910. msgid "Errored seconds (ES)"
  1911. msgstr ""
  1912. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1913. #: modules/luci-compat/luasrc/model/network.lua:1433
  1914. msgid "Ethernet Adapter"
  1915. msgstr ""
  1916. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1917. #: modules/luci-compat/luasrc/model/network.lua:1423
  1918. msgid "Ethernet Switch"
  1919. msgstr "Ethernet 스위치"
  1920. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1921. msgid "Every 30 seconds (slow, 0)"
  1922. msgstr ""
  1923. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1924. msgid "Every second (fast, 1)"
  1925. msgstr ""
  1926. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1927. msgid "Exclude interfaces"
  1928. msgstr ""
  1929. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1930. msgid "Existing device"
  1931. msgstr ""
  1932. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1933. msgid "Expand hosts"
  1934. msgstr ""
  1935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1936. msgid "Expecting a hexadecimal assignment hint"
  1937. msgstr ""
  1938. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1939. msgid "Expecting a valid IPv4 address"
  1940. msgstr ""
  1941. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1942. msgid "Expecting a valid IPv6 address"
  1943. msgstr ""
  1944. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1945. msgid "Expecting two priority values separated by a colon"
  1946. msgstr ""
  1947. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1951. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1954. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1956. msgid "Expecting: %s"
  1957. msgstr ""
  1958. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1959. msgid "Expecting: non-empty value"
  1960. msgstr ""
  1961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1962. msgid "Expires"
  1963. msgstr "만료 시간"
  1964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1965. msgid ""
  1966. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1967. msgstr "임대한 주소의 유효 시간. 최소값은 2 분 (<code>2m</code>) 입니다."
  1968. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1969. msgid "External"
  1970. msgstr ""
  1971. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1972. msgid "External R0 Key Holder List"
  1973. msgstr ""
  1974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1975. msgid "External R1 Key Holder List"
  1976. msgstr ""
  1977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1978. msgid "External system log server"
  1979. msgstr "외부 시스템 로그 서버"
  1980. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1981. msgid "External system log server port"
  1982. msgstr "외부 시스템 로그 서버 포트"
  1983. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  1984. msgid "External system log server protocol"
  1985. msgstr "외부 시스템 로그 서버 프로토콜"
  1986. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  1987. msgid "Extra SSH command options"
  1988. msgstr ""
  1989. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  1990. msgid "Extra pppd options"
  1991. msgstr ""
  1992. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  1993. msgid "Extra sstpc options"
  1994. msgstr ""
  1995. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  1996. msgid "FT over DS"
  1997. msgstr ""
  1998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  1999. msgid "FT over the Air"
  2000. msgstr ""
  2001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  2002. msgid "FT protocol"
  2003. msgstr ""
  2004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2005. msgid "Failed to change the system password."
  2006. msgstr ""
  2007. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  2008. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2009. msgstr ""
  2010. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2011. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2012. msgstr ""
  2013. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  2014. msgid "File"
  2015. msgstr ""
  2016. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  2017. msgid "File not accessible"
  2018. msgstr ""
  2019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  2020. msgid "Filename"
  2021. msgstr ""
  2022. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  2023. msgid "Filename of the boot image advertised to clients"
  2024. msgstr ""
  2025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2026. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  2027. msgid "Filesystem"
  2028. msgstr ""
  2029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2030. msgid "Filter private"
  2031. msgstr ""
  2032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2033. msgid "Filter useless"
  2034. msgstr ""
  2035. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2036. msgid "Filtering for all slaves, no validation"
  2037. msgstr ""
  2038. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2039. msgid "Filtering for all slaves, validation only for active slave"
  2040. msgstr ""
  2041. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2042. msgid "Filtering for all slaves, validation only for backup slaves"
  2043. msgstr ""
  2044. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2045. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2046. msgid "Finalizing failed"
  2047. msgstr ""
  2048. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2049. msgid ""
  2050. "Find all currently attached filesystems and swap and replace configuration "
  2051. "with defaults based on what was detected"
  2052. msgstr ""
  2053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2054. msgid "Find and join network"
  2055. msgstr "네트워크 검색 및 연결합니다"
  2056. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2057. msgid "Finish"
  2058. msgstr ""
  2059. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2060. msgid "Firewall"
  2061. msgstr "방화벽"
  2062. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2063. msgid "Firewall Mark"
  2064. msgstr ""
  2065. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2066. msgid "Firewall Settings"
  2067. msgstr "방화벽 설정"
  2068. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2069. msgid "Firewall Status"
  2070. msgstr "방화벽 상태"
  2071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2072. msgid "Firmware File"
  2073. msgstr "펌웨어 파일"
  2074. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2075. msgid "Firmware Version"
  2076. msgstr "펌웨어 버전"
  2077. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2078. msgid "Fixed source port for outbound DNS queries"
  2079. msgstr ""
  2080. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2081. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2082. msgid "Flash image..."
  2083. msgstr "이미지로 플래시..."
  2084. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2085. msgid "Flash image?"
  2086. msgstr "이미지를 플래시 하시겠습니까?"
  2087. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2088. msgid "Flash new firmware image"
  2089. msgstr "새로운 펌웨어 이미지 플래시"
  2090. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2091. msgid "Flash operations"
  2092. msgstr "플래시 작업"
  2093. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2094. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2095. msgid "Flashing…"
  2096. msgstr "플래시 중…"
  2097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2098. msgid "Force"
  2099. msgstr "강제하기"
  2100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2101. msgid "Force 40MHz mode"
  2102. msgstr ""
  2103. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2104. msgid "Force CCMP (AES)"
  2105. msgstr ""
  2106. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2107. msgid "Force DHCP on this network even if another server is detected."
  2108. msgstr "다른 DHCP 서버가 탐지되더라도 이 네트워크에 DHCP 를 강제합니다."
  2109. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2110. msgid "Force IGMP version"
  2111. msgstr ""
  2112. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2113. msgid "Force MLD version"
  2114. msgstr ""
  2115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2116. msgid "Force TKIP"
  2117. msgstr ""
  2118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2119. msgid "Force TKIP and CCMP (AES)"
  2120. msgstr ""
  2121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2122. msgid "Force link"
  2123. msgstr ""
  2124. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2125. msgid ""
  2126. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2127. "format check fails. Use only if you are sure that the firmware is correct "
  2128. "and meant for your device!"
  2129. msgstr ""
  2130. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2131. msgid "Force use of NAT-T"
  2132. msgstr ""
  2133. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2134. msgid "Form token mismatch"
  2135. msgstr ""
  2136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2137. msgid ""
  2138. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2139. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2140. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2141. "interface and downstream interfaces."
  2142. msgstr ""
  2143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2144. msgid ""
  2145. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2146. "messages received on the designated master interface to downstream "
  2147. "interfaces."
  2148. msgstr ""
  2149. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2150. msgid "Forward DHCP traffic"
  2151. msgstr ""
  2152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2153. msgid ""
  2154. "Forward DHCPv6 messages between the designated master interface and "
  2155. "downstream interfaces."
  2156. msgstr ""
  2157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2158. msgid "Forward Error Correction Seconds (FECS)"
  2159. msgstr ""
  2160. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2161. msgid "Forward broadcast traffic"
  2162. msgstr ""
  2163. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2164. msgid "Forward delay"
  2165. msgstr ""
  2166. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2167. msgid "Forward mesh peer traffic"
  2168. msgstr ""
  2169. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2170. msgid "Forward multicast packets as unicast packets on this device."
  2171. msgstr ""
  2172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2173. msgid "Forwarding mode"
  2174. msgstr ""
  2175. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2176. msgid "Fragmentation Threshold"
  2177. msgstr ""
  2178. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2179. msgid ""
  2180. "Further information about WireGuard interfaces and peers at <a href='http://"
  2181. "wireguard.com'>wireguard.com</a>."
  2182. msgstr ""
  2183. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2185. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2186. msgid "GHz"
  2187. msgstr "GHz"
  2188. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2189. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2190. msgid "GPRS only"
  2191. msgstr ""
  2192. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2193. msgid "GRE tunnel over IPv4"
  2194. msgstr ""
  2195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2196. msgid "GRE tunnel over IPv6"
  2197. msgstr ""
  2198. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2199. msgid "GRETAP tunnel over IPv4"
  2200. msgstr ""
  2201. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2202. msgid "GRETAP tunnel over IPv6"
  2203. msgstr ""
  2204. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2205. msgid "Gateway"
  2206. msgstr ""
  2207. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2208. msgid "Gateway Ports"
  2209. msgstr "게이트웨이 포트 허용"
  2210. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2211. #: modules/luci-compat/luasrc/model/network.lua:29
  2212. msgid "Gateway address is invalid"
  2213. msgstr ""
  2214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2217. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2218. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2219. msgid "General Settings"
  2220. msgstr "기본 설정"
  2221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2225. msgid "General Setup"
  2226. msgstr "기본 설정"
  2227. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2228. msgid "General device options"
  2229. msgstr ""
  2230. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2231. msgid "Generate Config"
  2232. msgstr ""
  2233. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2234. msgid "Generate Key"
  2235. msgstr ""
  2236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2237. msgid "Generate PMK locally"
  2238. msgstr ""
  2239. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2240. msgid "Generate archive"
  2241. msgstr "아카이브 생성"
  2242. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2243. msgid "Given password confirmation did not match, password not changed!"
  2244. msgstr ""
  2245. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2246. msgid "Global Settings"
  2247. msgstr ""
  2248. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2249. msgid "Global network options"
  2250. msgstr ""
  2251. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2252. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2253. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2254. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2255. msgid "Go to password configuration..."
  2256. msgstr "암호 설정 하기"
  2257. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2258. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2259. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2260. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2261. msgid "Go to relevant configuration page"
  2262. msgstr ""
  2263. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2264. msgid "Grant access to DHCP configuration"
  2265. msgstr "DHCP 구성에 관한 접근 권한 부여"
  2266. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2267. msgid "Grant access to DHCP status display"
  2268. msgstr "DHCP 상태 표시에 관한 접근 권한 부여"
  2269. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2270. msgid "Grant access to DSL status display"
  2271. msgstr "DSL 상태 표시에 관한 접근 권한 부여"
  2272. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2273. msgid "Grant access to LuCI OpenConnect procedures"
  2274. msgstr "LuCI OpenConnect 절차에 관한 접근 권한 부여"
  2275. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2276. msgid "Grant access to LuCI Wireguard procedures"
  2277. msgstr "LuCI Wireguard 절차에 관한 접근 권한 부여"
  2278. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2279. msgid "Grant access to SSH configuration"
  2280. msgstr "SSH 구성에 관한 접근 권한 부여"
  2281. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2282. msgid "Grant access to basic LuCI procedures"
  2283. msgstr "기본 LuCI 절차에 관한 접근 권한 부여"
  2284. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2285. msgid "Grant access to crontab configuration"
  2286. msgstr "crontab 구성에 관한 접근 권한 부여"
  2287. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2288. msgid "Grant access to firewall status"
  2289. msgstr "방화벽 상태 확인에 관한 접근 권한 부여"
  2290. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2291. msgid "Grant access to flash operations"
  2292. msgstr "플래시 작업에 관한 접근 권한 부여"
  2293. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2294. msgid "Grant access to main status display"
  2295. msgstr "메인 상태 표시에 관한 접근 권한 부여"
  2296. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2297. msgid "Grant access to mmcli"
  2298. msgstr "mmcli 에 관한 접근 권한 부여"
  2299. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2300. msgid "Grant access to mount configuration"
  2301. msgstr "마운트 구성에 관한 접근 권한 부여"
  2302. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2303. msgid "Grant access to network configuration"
  2304. msgstr "네트워크 구성에 관한 접근 권한 부여"
  2305. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2306. msgid "Grant access to network diagnostic tools"
  2307. msgstr "네트워크 분석 도구들에 관한 접근 권한 부여"
  2308. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2309. msgid "Grant access to network status information"
  2310. msgstr "네트워크 상태 정보 확인에 관한 접근 권한 부여"
  2311. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2312. msgid "Grant access to process status"
  2313. msgstr "프로세스 상태 확인에 관한 접근 권한 부여"
  2314. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2315. msgid "Grant access to realtime statistics"
  2316. msgstr "실시간 상태 확인에 관한 접근 권한 부여"
  2317. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2318. msgid "Grant access to startup configuration"
  2319. msgstr "시작 구성에 관한 접근 권한 부여"
  2320. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2321. msgid "Grant access to system configuration"
  2322. msgstr "시스템 구성에 관한 접근 권한 부여"
  2323. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2324. msgid "Grant access to system logs"
  2325. msgstr "시스템 로그에 관한 접근 권한 부여"
  2326. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2327. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2328. msgid "Grant access to the system route status"
  2329. msgstr "시스템 라우트 상태에 관한 접근 권한 부여"
  2330. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2331. msgid "Grant access to wireless status display"
  2332. msgstr "무선랜 상태 표시에 관한 접근 권한 부여"
  2333. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2334. msgid "Group Password"
  2335. msgstr "그룹 암호"
  2336. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2337. msgid "Guest"
  2338. msgstr "게스트"
  2339. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2340. msgid "HE.net password"
  2341. msgstr ""
  2342. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2343. msgid "HE.net username"
  2344. msgstr ""
  2345. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2346. msgid "Hang Up"
  2347. msgstr "중단"
  2348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2349. msgid "Header Error Code Errors (HEC)"
  2350. msgstr "Header Error Code Errors (HEC)"
  2351. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2352. msgid "Heartbeat interval (kernel: heartbeat)"
  2353. msgstr "하트비트 간격 (kernel: heartbeat)"
  2354. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2355. msgid "Hello interval"
  2356. msgstr ""
  2357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2358. msgid ""
  2359. "Here you can configure the basic aspects of your device like its hostname or "
  2360. "the timezone."
  2361. msgstr ""
  2362. "여기서 호스트 이름이나 시간대와 같은 기본적인 장비 설정을 할 수 있습니다."
  2363. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2364. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2365. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> 숨기기"
  2366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2368. msgid "Hide empty chains"
  2369. msgstr ""
  2370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2371. msgid "High"
  2372. msgstr ""
  2373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2374. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2375. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2377. msgid "Host"
  2378. msgstr "호스트"
  2379. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2380. msgid "Host entries"
  2381. msgstr "호스트 목록들"
  2382. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2383. msgid "Host expiry timeout"
  2384. msgstr ""
  2385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2386. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2387. msgstr "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> 혹은 Network"
  2388. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2389. msgid "Host-Uniq tag content"
  2390. msgstr ""
  2391. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2396. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2397. msgid "Hostname"
  2398. msgstr "호스트 이름"
  2399. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2400. msgid "Hostname to send when requesting DHCP"
  2401. msgstr "DHCP 요청시 전달할 호스트이름"
  2402. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2403. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2404. msgid "Hostnames"
  2405. msgstr "호스트 이름"
  2406. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2407. msgid "Human-readable counters"
  2408. msgstr ""
  2409. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2410. msgid "Hybrid"
  2411. msgstr ""
  2412. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2413. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2414. msgid "ID used to uniquely identify the VXLAN"
  2415. msgstr ""
  2416. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2417. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2418. msgstr ""
  2419. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2420. msgid "IKE DH Group"
  2421. msgstr ""
  2422. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2423. msgid "IP Addresses"
  2424. msgstr ""
  2425. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2426. msgid "IP Protocol"
  2427. msgstr ""
  2428. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2429. msgid "IP Type"
  2430. msgstr ""
  2431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2432. msgid "IP address"
  2433. msgstr "IP 주소"
  2434. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2435. #: modules/luci-compat/luasrc/model/network.lua:28
  2436. msgid "IP address is invalid"
  2437. msgstr ""
  2438. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2439. #: modules/luci-compat/luasrc/model/network.lua:31
  2440. msgid "IP address is missing"
  2441. msgstr ""
  2442. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2449. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2450. msgid "IPv4"
  2451. msgstr "IPv4"
  2452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2453. msgid "IPv4 Firewall"
  2454. msgstr "IPv4 방화벽"
  2455. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2456. #, fuzzy
  2457. msgid "IPv4 Upstream"
  2458. msgstr "IPv4 업스트림"
  2459. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2461. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2462. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2463. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2464. msgid "IPv4 address"
  2465. msgstr "IPv4 주소"
  2466. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2467. msgid "IPv4 assignment length"
  2468. msgstr ""
  2469. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2470. msgid "IPv4 broadcast"
  2471. msgstr ""
  2472. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2473. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2474. msgid "IPv4 gateway"
  2475. msgstr ""
  2476. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2477. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2478. msgid "IPv4 netmask"
  2479. msgstr ""
  2480. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2481. msgid "IPv4 network in address/netmask notation"
  2482. msgstr ""
  2483. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2484. msgid "IPv4 only"
  2485. msgstr ""
  2486. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2487. msgid "IPv4 prefix"
  2488. msgstr ""
  2489. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2490. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2491. msgid "IPv4 prefix length"
  2492. msgstr ""
  2493. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2494. msgid "IPv4+IPv6"
  2495. msgstr ""
  2496. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2497. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2498. msgid "IPv4-in-IPv4 (RFC2003)"
  2499. msgstr ""
  2500. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2501. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2502. msgstr ""
  2503. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2506. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2508. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2509. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2512. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2514. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2515. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2516. msgid "IPv6"
  2517. msgstr "IPv6"
  2518. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2519. msgid "IPv6 Firewall"
  2520. msgstr "IPv6 방화벽"
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2522. msgid "IPv6 MTU"
  2523. msgstr ""
  2524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2525. msgid "IPv6 Neighbours"
  2526. msgstr "IPv6 Neighbour 들"
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2528. msgid "IPv6 RA Settings"
  2529. msgstr ""
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2531. msgid "IPv6 Settings"
  2532. msgstr "IPv6 설정"
  2533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2534. msgid "IPv6 ULA-Prefix"
  2535. msgstr ""
  2536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2537. msgid "IPv6 Upstream"
  2538. msgstr ""
  2539. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2541. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2543. msgid "IPv6 address"
  2544. msgstr "IPv6-주소"
  2545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2546. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2547. msgid "IPv6 assignment hint"
  2548. msgstr ""
  2549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2550. msgid "IPv6 assignment length"
  2551. msgstr ""
  2552. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2553. msgid "IPv6 gateway"
  2554. msgstr ""
  2555. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2556. msgid "IPv6 network in address/netmask notation"
  2557. msgstr ""
  2558. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2559. msgid "IPv6 only"
  2560. msgstr ""
  2561. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2562. msgid "IPv6 preference"
  2563. msgstr ""
  2564. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2565. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2566. msgid "IPv6 prefix"
  2567. msgstr ""
  2568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2569. msgid "IPv6 prefix filter"
  2570. msgstr ""
  2571. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2572. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2573. msgid "IPv6 prefix length"
  2574. msgstr ""
  2575. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2576. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2577. msgid "IPv6 routed prefix"
  2578. msgstr ""
  2579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2580. msgid "IPv6 suffix"
  2581. msgstr ""
  2582. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2583. msgid "IPv6 support"
  2584. msgstr ""
  2585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2586. msgid "IPv6-PD"
  2587. msgstr ""
  2588. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2589. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2590. msgid "IPv6-in-IPv4 (RFC4213)"
  2591. msgstr ""
  2592. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2593. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2594. msgid "IPv6-over-IPv4 (6rd)"
  2595. msgstr ""
  2596. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2597. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2598. msgid "IPv6-over-IPv4 (6to4)"
  2599. msgstr ""
  2600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2601. msgid "Identity"
  2602. msgstr ""
  2603. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2604. msgid "If checked, 1DES is enabled"
  2605. msgstr ""
  2606. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2607. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2608. msgstr ""
  2609. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2610. msgid "If checked, encryption is disabled"
  2611. msgstr ""
  2612. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2613. msgid ""
  2614. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2615. "classes."
  2616. msgstr ""
  2617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2618. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2619. msgid ""
  2620. "If specified, mount the device by its UUID instead of a fixed device node"
  2621. msgstr ""
  2622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2623. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2624. msgid ""
  2625. "If specified, mount the device by the partition label instead of a fixed "
  2626. "device node"
  2627. msgstr ""
  2628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2629. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2630. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2631. msgid "If unchecked, no default route is configured"
  2632. msgstr "체크하지 않을 경우, 기본 route 가 설정되지 않습니다"
  2633. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2634. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2635. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2636. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2637. msgstr "체크하지 않을 경우, 사용하도록 권장된 DNS 주소는 무시됩니다"
  2638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2639. msgid ""
  2640. "If your physical memory is insufficient unused data can be temporarily "
  2641. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2642. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2643. "slow process as the swap-device cannot be accessed with the high datarates "
  2644. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2645. msgstr ""
  2646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2647. msgid "Ignore <code>/etc/hosts</code>"
  2648. msgstr "<code>/etc/hosts</code> 파일 무시"
  2649. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2650. msgid "Ignore interface"
  2651. msgstr "인터페이스 무시"
  2652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2653. msgid "Ignore resolve file"
  2654. msgstr "resolve 파일 무시"
  2655. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2656. msgid "Image"
  2657. msgstr "이미지"
  2658. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2659. msgid "In"
  2660. msgstr "In"
  2661. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2662. msgid ""
  2663. "In order to prevent unauthorized access to the system, your request has been "
  2664. "blocked. Click \"Continue »\" below to return to the previous page."
  2665. msgstr ""
  2666. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2667. msgid "In seconds"
  2668. msgstr ""
  2669. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2670. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2671. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2672. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2673. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2674. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2675. msgid "Inactivity timeout"
  2676. msgstr ""
  2677. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2678. msgid "Inbound:"
  2679. msgstr ""
  2680. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2681. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2682. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2683. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2684. msgid "Incoming checksum"
  2685. msgstr ""
  2686. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2687. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2688. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2689. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2690. msgid "Incoming key"
  2691. msgstr ""
  2692. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2693. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2694. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2695. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2696. msgid "Incoming serialization"
  2697. msgstr ""
  2698. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2699. msgid "Info"
  2700. msgstr ""
  2701. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2702. msgid "Information"
  2703. msgstr ""
  2704. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2705. msgid "Ingress QoS mapping"
  2706. msgstr ""
  2707. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2708. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2709. msgid "Initialization failure"
  2710. msgstr ""
  2711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2712. msgid "Initscript"
  2713. msgstr ""
  2714. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2715. msgid "Initscripts"
  2716. msgstr "Initscript 들"
  2717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2718. msgid "Inner certificate constraint (Domain)"
  2719. msgstr ""
  2720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2721. msgid "Inner certificate constraint (SAN)"
  2722. msgstr ""
  2723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2724. msgid "Inner certificate constraint (Subject)"
  2725. msgstr ""
  2726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2727. msgid "Inner certificate constraint (Wildcard)"
  2728. msgstr ""
  2729. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2730. msgid "Install protocol extensions..."
  2731. msgstr ""
  2732. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2733. msgid ""
  2734. "Instead of joining any network with a matching SSID, only connect to the "
  2735. "BSSID <code>%h</code>."
  2736. msgstr ""
  2737. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2738. msgid "Insufficient permissions to read UCI configuration."
  2739. msgstr ""
  2740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2741. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2742. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2744. msgid "Interface"
  2745. msgstr "인터페이스"
  2746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2747. msgid "Interface \"%h\" is already marked as designated master."
  2748. msgstr ""
  2749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2750. msgid "Interface %q device auto-migrated from %q to %q."
  2751. msgstr ""
  2752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2753. msgid "Interface Configuration"
  2754. msgstr "인터페이스 설정"
  2755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2756. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2757. msgid "Interface has %d pending changes"
  2758. msgstr ""
  2759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2760. msgid "Interface is disabled"
  2761. msgstr ""
  2762. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2763. msgid "Interface is marked for deletion"
  2764. msgstr ""
  2765. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2766. msgid "Interface is reconnecting..."
  2767. msgstr ""
  2768. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2771. msgid "Interface is shutting down..."
  2772. msgstr ""
  2773. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2774. msgid "Interface is starting..."
  2775. msgstr ""
  2776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2777. msgid "Interface is stopping..."
  2778. msgstr ""
  2779. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2780. msgid "Interface name"
  2781. msgstr "인터페이스 이름"
  2782. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2784. msgid "Interface not present or not connected yet."
  2785. msgstr ""
  2786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2788. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2789. msgid "Interfaces"
  2790. msgstr "인터페이스"
  2791. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2792. msgid "Internal"
  2793. msgstr ""
  2794. #: modules/luci-base/luasrc/view/error500.htm:8
  2795. msgid "Internal Server Error"
  2796. msgstr ""
  2797. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2798. msgid "Interval For Sending Learning Packets"
  2799. msgstr ""
  2800. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2801. msgid ""
  2802. "Interval in centiseconds between multicast general queries. By varying the "
  2803. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2804. "larger values cause IGMP Queries to be sent less often"
  2805. msgstr ""
  2806. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2807. msgid "Interval in seconds for STP hello packets"
  2808. msgstr ""
  2809. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2810. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2811. msgid "Invalid"
  2812. msgstr ""
  2813. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2814. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2815. msgid "Invalid Base64 key string"
  2816. msgstr ""
  2817. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2818. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2819. msgid "Invalid TOS value, expected 00..FF or inherit"
  2820. msgstr ""
  2821. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2822. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2823. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2824. msgstr ""
  2825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2826. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2827. msgstr ""
  2828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2829. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2830. msgstr ""
  2831. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2832. msgid "Invalid argument"
  2833. msgstr ""
  2834. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2835. msgid ""
  2836. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2837. "supports one and only one bearer."
  2838. msgstr ""
  2839. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2840. msgid "Invalid command"
  2841. msgstr ""
  2842. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2843. msgid "Invalid hexadecimal value"
  2844. msgstr ""
  2845. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2846. msgid "Invalid username and/or password! Please try again."
  2847. msgstr ""
  2848. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2849. msgid "Isolate Clients"
  2850. msgstr ""
  2851. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2852. msgid ""
  2853. "It appears that you are trying to flash an image that does not fit into the "
  2854. "flash memory, please verify the image file!"
  2855. msgstr ""
  2856. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2857. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2858. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2859. msgid "JavaScript required!"
  2860. msgstr ""
  2861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2862. msgid "Join Network"
  2863. msgstr "네트워크 연결"
  2864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2865. msgid "Join Network: Wireless Scan"
  2866. msgstr "네트워크 연결: 무선랜 스캔 결과"
  2867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2868. msgid "Joining Network: %q"
  2869. msgstr "네트워크 연결중: %q"
  2870. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2871. msgid "Keep settings and retain the current configuration"
  2872. msgstr ""
  2873. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2874. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2875. msgid "Kernel Log"
  2876. msgstr "커널 로그"
  2877. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2878. #, fuzzy
  2879. msgid "Kernel Version"
  2880. msgstr "커널 버전"
  2881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2882. msgid "Key"
  2883. msgstr ""
  2884. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2886. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2889. msgid "Key #%d"
  2890. msgstr ""
  2891. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2892. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2893. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2894. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2895. msgid "Key for incoming packets (optional)."
  2896. msgstr ""
  2897. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2898. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2899. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2900. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2901. msgid "Key for outgoing packets (optional)."
  2902. msgstr ""
  2903. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2904. msgid "Kill"
  2905. msgstr "강제 종료"
  2906. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2907. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2908. msgid "L2TP"
  2909. msgstr ""
  2910. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2911. msgid "L2TP Server"
  2912. msgstr ""
  2913. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2914. msgid "LACPDU Packets"
  2915. msgstr ""
  2916. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2917. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2918. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2919. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2920. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2921. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2922. msgid "LCP echo failure threshold"
  2923. msgstr ""
  2924. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2925. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2926. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2927. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2928. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2929. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2930. msgid "LCP echo interval"
  2931. msgstr ""
  2932. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2933. msgid "LED Configuration"
  2934. msgstr ""
  2935. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2936. msgid "LLC"
  2937. msgstr ""
  2938. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2940. msgid "Label"
  2941. msgstr ""
  2942. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2943. msgid "Language"
  2944. msgstr "언어"
  2945. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2946. msgid "Language and Style"
  2947. msgstr "언어와 스타일"
  2948. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2949. msgid "Last member interval"
  2950. msgstr ""
  2951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2952. msgid "Latency"
  2953. msgstr ""
  2954. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2955. msgid "Leaf"
  2956. msgstr ""
  2957. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2958. msgid "Learn"
  2959. msgstr ""
  2960. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2961. msgid "Learn routes"
  2962. msgstr ""
  2963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2965. msgid "Lease time"
  2966. msgstr "임대 시간"
  2967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2969. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  2970. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  2971. msgid "Lease time remaining"
  2972. msgstr "남아있는 임대 시간"
  2973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  2974. msgid "Leasefile"
  2975. msgstr ""
  2976. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  2977. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  2978. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  2979. msgid "Leave empty to autodetect"
  2980. msgstr ""
  2981. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  2982. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  2983. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  2984. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  2985. msgid "Leave empty to use the current WAN address"
  2986. msgstr ""
  2987. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  2988. msgid ""
  2989. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  2990. "interoperate. Airtime efficiency may be significantly reduced where these "
  2991. "are used. It is recommended to not allow 802.11b rates where possible."
  2992. msgstr ""
  2993. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  2994. msgid "Legend:"
  2995. msgstr ""
  2996. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  2997. msgid "Limit"
  2998. msgstr "제한"
  2999. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  3000. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  3001. msgstr ""
  3002. "DNS 를 제공하기로한 subnet 인터페이스들에 대해서만 DNS 서비스를 제공합니다."
  3003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  3004. msgid "Limit listening to these interfaces, and loopback."
  3005. msgstr ""
  3006. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3007. msgid "Line Attenuation (LATN)"
  3008. msgstr ""
  3009. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  3010. msgid "Line Mode"
  3011. msgstr ""
  3012. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  3013. msgid "Line State"
  3014. msgstr ""
  3015. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  3016. msgid "Line Uptime"
  3017. msgstr "회선 가동 시간"
  3018. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  3019. msgid "Link Aggregation (Channel Bonding)"
  3020. msgstr ""
  3021. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  3022. msgid "Link Monitoring"
  3023. msgstr ""
  3024. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  3025. msgid "Link On"
  3026. msgstr ""
  3027. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  3028. msgid ""
  3029. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  3030. "requests to"
  3031. msgstr ""
  3032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  3033. msgid ""
  3034. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3035. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3036. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3037. "from the R0KH that the STA used during the Initial Mobility Domain "
  3038. "Association."
  3039. msgstr ""
  3040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  3041. msgid ""
  3042. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3043. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3044. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3045. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3046. "PMK-R1 keys."
  3047. msgstr ""
  3048. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3049. msgid "List of SSH key files for auth"
  3050. msgstr ""
  3051. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3052. msgid "List of domains to allow RFC1918 responses for"
  3053. msgstr ""
  3054. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3055. msgid "List of domains to force to an IP address."
  3056. msgstr ""
  3057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3058. msgid "List of hosts that supply bogus NX domain results"
  3059. msgstr ""
  3060. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3061. msgid "Listen Interfaces"
  3062. msgstr ""
  3063. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3064. msgid "Listen Port"
  3065. msgstr "접근 포트"
  3066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3067. msgid "Listen only on the given interface or, if unspecified, on all"
  3068. msgstr ""
  3069. "지정한 인터페이스에만 리스닝 하며 미 지정시 모든 인터페이스에 적용됩니다"
  3070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3071. msgid "Listening port for inbound DNS queries"
  3072. msgstr ""
  3073. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3074. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3075. msgid "Load"
  3076. msgstr "부하"
  3077. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3078. msgid "Load Average"
  3079. msgstr "부하 평균"
  3080. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3081. msgid "Loading directory contents…"
  3082. msgstr ""
  3083. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3084. #: modules/luci-base/luasrc/view/view.htm:4
  3085. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3086. msgid "Loading view…"
  3087. msgstr ""
  3088. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3089. msgid "Local"
  3090. msgstr ""
  3091. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3092. msgid "Local IP address"
  3093. msgstr ""
  3094. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3095. #: modules/luci-compat/luasrc/model/network.lua:30
  3096. msgid "Local IP address is invalid"
  3097. msgstr ""
  3098. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3099. msgid "Local IP address to assign"
  3100. msgstr ""
  3101. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3102. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3103. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3104. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3105. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3106. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3107. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3108. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3109. msgid "Local IPv4 address"
  3110. msgstr ""
  3111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3112. msgid "Local IPv6 DNS server"
  3113. msgstr ""
  3114. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3115. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3116. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3117. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3118. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3119. msgid "Local IPv6 address"
  3120. msgstr ""
  3121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3122. msgid "Local Service Only"
  3123. msgstr ""
  3124. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3125. msgid "Local Startup"
  3126. msgstr "로컬 시작 프로그램"
  3127. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3129. msgid "Local Time"
  3130. msgstr "지역 시간"
  3131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3132. msgid "Local ULA"
  3133. msgstr ""
  3134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3135. msgid "Local domain"
  3136. msgstr ""
  3137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3138. msgid ""
  3139. "Local domain specification. Names matching this domain are never forwarded "
  3140. "and are resolved from DHCP or hosts files only"
  3141. msgstr ""
  3142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3143. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3144. msgstr ""
  3145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3146. msgid "Local server"
  3147. msgstr ""
  3148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3149. msgid ""
  3150. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3151. "available"
  3152. msgstr ""
  3153. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3154. msgid "Localise queries"
  3155. msgstr ""
  3156. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3157. msgid "Lock to BSSID"
  3158. msgstr ""
  3159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3160. msgid "Log output level"
  3161. msgstr "출력할 로그 레벨"
  3162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3163. msgid "Log queries"
  3164. msgstr ""
  3165. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3166. msgid "Logging"
  3167. msgstr ""
  3168. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3169. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3170. msgid ""
  3171. "Logical network from which to select the local endpoint if local IPv6 "
  3172. "address is empty and no WAN IPv6 is available (optional)."
  3173. msgstr ""
  3174. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3175. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3176. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3177. msgstr ""
  3178. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3179. msgid "Login"
  3180. msgstr "로그인"
  3181. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3182. msgid "Logout"
  3183. msgstr "로그아웃"
  3184. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3185. msgid "Loose filtering"
  3186. msgstr ""
  3187. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3188. msgid "Loss of Signal Seconds (LOSS)"
  3189. msgstr ""
  3190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3191. msgid "Lowest leased address as offset from the network address."
  3192. msgstr "임대되는 주소의 최소 시작점. (네트워크 주소로 부터의 offset)"
  3193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3194. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3195. msgid "MAC"
  3196. msgstr "MAC"
  3197. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3198. msgid "MAC Address"
  3199. msgstr ""
  3200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3201. msgid "MAC Address Filter"
  3202. msgstr "MAC-주소 필터"
  3203. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3204. msgid "MAC Address For The Actor"
  3205. msgstr ""
  3206. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3208. msgid "MAC VLAN"
  3209. msgstr ""
  3210. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3213. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3214. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3215. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3216. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3217. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3218. msgid "MAC address"
  3219. msgstr "MAC-주소"
  3220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3221. msgid "MAC-Filter"
  3222. msgstr "MAC-필터"
  3223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3224. msgid "MAC-List"
  3225. msgstr ""
  3226. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3227. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3228. msgid "MAP / LW4over6"
  3229. msgstr ""
  3230. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3231. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3232. msgid "MAP rule is invalid"
  3233. msgstr ""
  3234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3235. msgid "MD5"
  3236. msgstr "MD5"
  3237. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3238. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3239. msgid "MHz"
  3240. msgstr "MHz"
  3241. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3242. msgid "MII"
  3243. msgstr ""
  3244. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3245. msgid "MII / ETHTOOL ioctls"
  3246. msgstr ""
  3247. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3248. msgid "MII Interval"
  3249. msgstr ""
  3250. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3253. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3254. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3255. msgid "MTU"
  3256. msgstr "MTU"
  3257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3258. msgid ""
  3259. "Make sure to clone the root filesystem using something like the commands "
  3260. "below:"
  3261. msgstr ""
  3262. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3263. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3264. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3265. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3266. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3267. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3268. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3269. msgid "Manual"
  3270. msgstr ""
  3271. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3272. msgid "Master"
  3273. msgstr ""
  3274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3275. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3276. msgstr ""
  3277. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3278. msgid "Max. Attainable Data Rate (ATTNDR)"
  3279. msgstr ""
  3280. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3281. msgid "Maximum age"
  3282. msgstr ""
  3283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3284. msgid "Maximum allowed Listen Interval"
  3285. msgstr ""
  3286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3287. msgid "Maximum allowed number of active DHCP leases"
  3288. msgstr "활성화 된 DHCP 임대 건의 최대 허용 숫자"
  3289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3290. msgid "Maximum allowed number of concurrent DNS queries"
  3291. msgstr "허용되는 최대 동시 DNS query 수"
  3292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3293. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3294. msgstr "허용된 최대 EDNS.0 UDP 패킷 크기"
  3295. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3296. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3297. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3298. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3299. msgstr ""
  3300. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3301. msgid "Maximum number of leased addresses."
  3302. msgstr "임대될 수 있는 주소의 최대 숫자."
  3303. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3304. msgid "Maximum snooping table size"
  3305. msgstr ""
  3306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3307. msgid ""
  3308. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3309. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3310. msgstr ""
  3311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3312. msgid "Maximum transmit power"
  3313. msgstr ""
  3314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3321. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3322. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3323. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3324. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3325. msgid "Mbit/s"
  3326. msgstr ""
  3327. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3328. msgid "Medium"
  3329. msgstr ""
  3330. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3331. msgid "Memory"
  3332. msgstr "메모리"
  3333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3334. msgid "Memory usage (%)"
  3335. msgstr "메모리 사용량 (%)"
  3336. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3337. msgid "Mesh"
  3338. msgstr ""
  3339. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3340. msgid "Mesh ID"
  3341. msgstr ""
  3342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3343. msgid "Mesh Id"
  3344. msgstr ""
  3345. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3346. msgid "Method not found"
  3347. msgstr ""
  3348. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3349. msgid "Method of link monitoring"
  3350. msgstr ""
  3351. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3352. msgid "Method to determine link status"
  3353. msgstr ""
  3354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3357. msgid "Metric"
  3358. msgstr ""
  3359. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3360. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3361. msgstr ""
  3362. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3363. msgid "Minimum ARP validity time"
  3364. msgstr ""
  3365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3366. msgid "Minimum Number of Links"
  3367. msgstr ""
  3368. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3369. msgid ""
  3370. "Minimum required time in seconds before an ARP entry may be replaced. "
  3371. "Prevents ARP cache thrashing."
  3372. msgstr ""
  3373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3374. msgid ""
  3375. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3376. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3377. msgstr ""
  3378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3379. msgid "Mirror monitor port"
  3380. msgstr ""
  3381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3382. msgid "Mirror source port"
  3383. msgstr ""
  3384. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3385. msgid "Mobile Data"
  3386. msgstr ""
  3387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3388. msgid "Mobility Domain"
  3389. msgstr ""
  3390. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3391. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3396. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3398. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3399. msgid "Mode"
  3400. msgstr "모드"
  3401. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3402. msgid "Model"
  3403. msgstr "모델"
  3404. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3405. msgid "Modem bearer teardown in progress."
  3406. msgstr ""
  3407. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3408. msgid ""
  3409. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3410. "minutes."
  3411. msgstr ""
  3412. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3413. msgid "Modem default"
  3414. msgstr ""
  3415. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3416. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3417. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3418. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3419. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3420. msgid "Modem device"
  3421. msgstr ""
  3422. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3423. msgid "Modem disconnection in progress. Please wait."
  3424. msgstr ""
  3425. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3426. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3427. msgid "Modem information query failed"
  3428. msgstr ""
  3429. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3430. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3431. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3432. msgid "Modem init timeout"
  3433. msgstr ""
  3434. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3435. msgid "Modem is disabled."
  3436. msgstr ""
  3437. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3438. msgid "ModemManager"
  3439. msgstr ""
  3440. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3442. msgid "Monitor"
  3443. msgstr ""
  3444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3445. msgid "More Characters"
  3446. msgstr ""
  3447. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3448. msgid "More…"
  3449. msgstr ""
  3450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3451. msgid "Mount Point"
  3452. msgstr ""
  3453. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3454. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3455. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3456. msgid "Mount Points"
  3457. msgstr ""
  3458. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3459. msgid "Mount Points - Mount Entry"
  3460. msgstr ""
  3461. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3462. msgid "Mount Points - Swap Entry"
  3463. msgstr ""
  3464. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3465. msgid ""
  3466. "Mount Points define at which point a memory device will be attached to the "
  3467. "filesystem"
  3468. msgstr ""
  3469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3470. msgid "Mount attached devices"
  3471. msgstr ""
  3472. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3473. msgid "Mount filesystems not specifically configured"
  3474. msgstr ""
  3475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3476. msgid "Mount options"
  3477. msgstr ""
  3478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3479. msgid "Mount point"
  3480. msgstr ""
  3481. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3482. msgid "Mount swap not specifically configured"
  3483. msgstr ""
  3484. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3485. msgid "Mounted file systems"
  3486. msgstr ""
  3487. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3488. msgid "Move down"
  3489. msgstr ""
  3490. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3491. msgid "Move up"
  3492. msgstr ""
  3493. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3494. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3495. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3496. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3497. msgid "Multicast"
  3498. msgstr ""
  3499. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3500. msgid "Multicast routing"
  3501. msgstr ""
  3502. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3503. msgid "Multicast to unicast"
  3504. msgstr ""
  3505. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3506. msgid "NAS ID"
  3507. msgstr ""
  3508. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3509. msgid "NAT-T Mode"
  3510. msgstr ""
  3511. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3512. msgid "NAT64 Prefix"
  3513. msgstr ""
  3514. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3515. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3516. msgid "NCM"
  3517. msgstr "NCM"
  3518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3519. msgid "NDP-Proxy slave"
  3520. msgstr ""
  3521. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3522. msgid "NT Domain"
  3523. msgstr ""
  3524. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3525. msgid "NTP server candidates"
  3526. msgstr "NTP 서버 목록"
  3527. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3528. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3529. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3531. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3532. msgid "Name"
  3533. msgstr "이름"
  3534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3535. msgid "Name of the new network"
  3536. msgstr ""
  3537. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3538. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3539. msgid "Navigation"
  3540. msgstr ""
  3541. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3542. msgid "Neighbour cache validity"
  3543. msgstr ""
  3544. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3547. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3548. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3549. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3550. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3552. msgid "Network"
  3553. msgstr "네트워크"
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3555. msgid "Network SSID"
  3556. msgstr ""
  3557. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3558. msgid "Network Utilities"
  3559. msgstr "네트워크 유틸리티"
  3560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3561. msgid "Network boot image"
  3562. msgstr "네트워크 boot 이미지"
  3563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3564. msgid "Network bridge configuration migration"
  3565. msgstr ""
  3566. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3568. msgid "Network device"
  3569. msgstr ""
  3570. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3571. msgid "Network device activity (kernel: netdev)"
  3572. msgstr ""
  3573. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3574. #: modules/luci-compat/luasrc/model/network.lua:33
  3575. msgid "Network device is not present"
  3576. msgstr ""
  3577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3578. msgid "Network ifname configuration migration"
  3579. msgstr ""
  3580. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3581. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3582. msgid "Network interface"
  3583. msgstr ""
  3584. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3585. msgid "Never"
  3586. msgstr ""
  3587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3588. msgid "New interface for \"%s\" can not be created: %s"
  3589. msgstr ""
  3590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3591. msgid "New interface name…"
  3592. msgstr ""
  3593. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3594. msgid "Next »"
  3595. msgstr ""
  3596. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3597. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3598. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3599. msgid "No"
  3600. msgstr ""
  3601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3602. msgid "No DHCP Server configured for this interface"
  3603. msgstr ""
  3604. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3605. msgid "No Data"
  3606. msgstr ""
  3607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3608. msgid "No Encryption"
  3609. msgstr ""
  3610. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3611. msgid "No Host Routes"
  3612. msgstr ""
  3613. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3614. msgid "No NAT-T"
  3615. msgstr ""
  3616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3617. msgid "No RX signal"
  3618. msgstr ""
  3619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3620. msgid "No client associated"
  3621. msgstr ""
  3622. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3623. msgid "No data received"
  3624. msgstr ""
  3625. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3626. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3627. msgid "No enforcement"
  3628. msgstr ""
  3629. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3630. msgid "No entries in this directory"
  3631. msgstr ""
  3632. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3633. msgid "No files found"
  3634. msgstr ""
  3635. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3636. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3637. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3638. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3639. msgid "No host route"
  3640. msgstr ""
  3641. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3642. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3643. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3644. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3645. msgid "No information available"
  3646. msgstr "이용 가능한 정보가 없습니다"
  3647. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3648. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3649. msgid "No matching prefix delegation"
  3650. msgstr ""
  3651. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3652. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3653. msgid "No more slaves available"
  3654. msgstr ""
  3655. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3656. msgid "No more slaves available, can not save interface"
  3657. msgstr ""
  3658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3659. msgid "No negative cache"
  3660. msgstr ""
  3661. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3662. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3663. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3664. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3665. msgid "No password set!"
  3666. msgstr "암호 설정을 해주세요!"
  3667. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3668. msgid "No peers defined yet"
  3669. msgstr ""
  3670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3672. msgid "No public keys present yet."
  3673. msgstr "현재 공개 키가 없습니다."
  3674. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3675. msgid "No rules in this chain."
  3676. msgstr ""
  3677. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3678. msgid "No validation or filtering"
  3679. msgstr ""
  3680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3682. msgid "No zone assigned"
  3683. msgstr ""
  3684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3685. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3689. msgid "Noise"
  3690. msgstr "노이즈"
  3691. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3692. msgid "Noise Margin (SNR)"
  3693. msgstr ""
  3694. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3695. msgid "Noise:"
  3696. msgstr ""
  3697. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3698. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3699. msgstr ""
  3700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3701. msgid "Non-wildcard"
  3702. msgstr ""
  3703. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3705. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3706. msgid "None"
  3707. msgstr ""
  3708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3709. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3710. msgid "Normal"
  3711. msgstr ""
  3712. #: modules/luci-base/luasrc/view/error404.htm:8
  3713. msgid "Not Found"
  3714. msgstr ""
  3715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3716. msgid "Not associated"
  3717. msgstr ""
  3718. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3719. msgid "Not connected"
  3720. msgstr "연결되지 않음"
  3721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3726. msgid "Not present"
  3727. msgstr ""
  3728. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3729. msgid "Not started on boot"
  3730. msgstr ""
  3731. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3732. msgid "Not supported"
  3733. msgstr ""
  3734. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3735. msgid ""
  3736. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3737. "have problems"
  3738. msgstr ""
  3739. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3740. msgid "Notes"
  3741. msgstr ""
  3742. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3743. msgid "Notice"
  3744. msgstr ""
  3745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3746. msgid "Nslookup"
  3747. msgstr ""
  3748. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3749. msgid "Number of IGMP membership reports"
  3750. msgstr ""
  3751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3752. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3753. msgstr ""
  3754. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3755. msgid "Number of peer notifications after failover event"
  3756. msgstr ""
  3757. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3758. msgid "Obfuscated Group Password"
  3759. msgstr ""
  3760. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3761. msgid "Obfuscated Password"
  3762. msgstr ""
  3763. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3764. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3765. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3766. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3767. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3768. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3769. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3770. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3771. msgid "Obtain IPv6 address"
  3772. msgstr ""
  3773. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3774. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3775. msgid "Off"
  3776. msgstr ""
  3777. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3778. msgid "Off-State Delay"
  3779. msgstr ""
  3780. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3781. msgid "On"
  3782. msgstr ""
  3783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3784. msgid "On-Link route"
  3785. msgstr ""
  3786. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3787. msgid "On-State Delay"
  3788. msgstr ""
  3789. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3790. msgid "One of hostname or mac address must be specified!"
  3791. msgstr ""
  3792. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3793. msgid "One of the following: %s"
  3794. msgstr ""
  3795. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3796. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3797. msgid "One or more fields contain invalid values!"
  3798. msgstr ""
  3799. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3800. msgid "One or more invalid/required values on tab"
  3801. msgstr ""
  3802. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3803. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3804. msgid "One or more required fields have no value!"
  3805. msgstr ""
  3806. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3807. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3808. msgstr ""
  3809. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3810. msgid ""
  3811. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3812. msgstr ""
  3813. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3814. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3815. msgid "Open list..."
  3816. msgstr "목록 열람..."
  3817. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3818. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3819. msgid "OpenConnect (CISCO AnyConnect)"
  3820. msgstr ""
  3821. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3822. msgid "OpenFortivpn"
  3823. msgstr ""
  3824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3825. msgid ""
  3826. "Operate in <em>relay mode</em> if a designated master interface is "
  3827. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3828. "Protocol\">NDP</abbr> proxying."
  3829. msgstr ""
  3830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3831. msgid ""
  3832. "Operate in <em>relay mode</em> if a designated master interface is "
  3833. "configured and active, otherwise fall back to <em>server mode</em>."
  3834. msgstr ""
  3835. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3836. msgid ""
  3837. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3838. "otherwise disable service."
  3839. msgstr ""
  3840. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3841. msgid "Operating frequency"
  3842. msgstr "동작 주파수"
  3843. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3844. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3845. msgid "Option \"%s\" contains an invalid input value."
  3846. msgstr ""
  3847. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3848. msgid "Option \"%s\" must not be empty."
  3849. msgstr ""
  3850. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3851. msgid "Option changed"
  3852. msgstr "변경된 option"
  3853. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3854. msgid "Option removed"
  3855. msgstr "삭제된 option"
  3856. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3857. msgid "Optional"
  3858. msgstr ""
  3859. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3860. msgid "Optional, free-form notes about this device"
  3861. msgstr ""
  3862. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3863. msgid ""
  3864. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3865. "starting with <code>0x</code>."
  3866. msgstr ""
  3867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3868. msgid ""
  3869. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3870. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3871. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3872. "for the interface."
  3873. msgstr ""
  3874. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3875. msgid ""
  3876. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3877. "symmetric-key cryptography for post-quantum resistance."
  3878. msgstr ""
  3879. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3880. msgid "Optional. Create routes for Allowed IPs for this peer."
  3881. msgstr ""
  3882. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3883. msgid "Optional. Description of peer."
  3884. msgstr ""
  3885. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3886. msgid "Optional. Do not create host routes to peers."
  3887. msgstr ""
  3888. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3889. msgid ""
  3890. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3891. "interface."
  3892. msgstr ""
  3893. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3894. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3895. msgstr ""
  3896. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3897. msgid "Optional. Port of peer."
  3898. msgstr ""
  3899. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3900. msgid ""
  3901. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3902. "Recommended value if this device is behind a NAT is 25."
  3903. msgstr ""
  3904. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3905. msgid "Optional. UDP port used for outgoing and incoming packets."
  3906. msgstr ""
  3907. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3908. msgid "Options"
  3909. msgstr ""
  3910. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3911. msgid "Options:"
  3912. msgstr ""
  3913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3914. msgid "Other:"
  3915. msgstr ""
  3916. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3917. msgid "Out"
  3918. msgstr ""
  3919. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3920. msgid "Outbound:"
  3921. msgstr ""
  3922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3924. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3925. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3926. msgid "Outgoing checksum"
  3927. msgstr ""
  3928. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3929. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3930. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3931. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3932. msgid "Outgoing key"
  3933. msgstr ""
  3934. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3935. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3936. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3937. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3938. msgid "Outgoing serialization"
  3939. msgstr ""
  3940. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3941. msgid "Output Interface"
  3942. msgstr ""
  3943. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3944. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3945. msgid "Output zone"
  3946. msgstr ""
  3947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3948. msgid "Overlap"
  3949. msgstr ""
  3950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3951. msgid "Override IPv4 routing table"
  3952. msgstr ""
  3953. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3954. msgid "Override IPv6 routing table"
  3955. msgstr ""
  3956. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3957. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3958. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3960. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3961. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3962. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3963. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  3964. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  3965. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  3966. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  3967. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  3968. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  3969. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  3970. msgid "Override MTU"
  3971. msgstr "MTU 덮어쓰기"
  3972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  3973. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  3974. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  3975. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  3976. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  3977. msgid "Override TOS"
  3978. msgstr ""
  3979. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  3980. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  3981. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  3982. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  3983. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  3984. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  3985. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  3986. msgid "Override TTL"
  3987. msgstr ""
  3988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  3989. msgid "Override default interface name"
  3990. msgstr "기본 인터페이스 이름을 덮어씁니다"
  3991. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  3992. msgid "Override the gateway in DHCP responses"
  3993. msgstr ""
  3994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  3995. msgid ""
  3996. "Override the netmask sent to clients. Normally it is calculated from the "
  3997. "subnet that is served."
  3998. msgstr ""
  3999. "클라이언트에 전달될 넷마스크를 덮어 쓸 수 있습니다. 보통 해당 값은 제공되는 "
  4000. "서브넷에 따라 자동 계산됩니다."
  4001. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  4002. msgid "Override the table used for internal routes"
  4003. msgstr ""
  4004. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  4005. msgid "Overview"
  4006. msgstr "개요"
  4007. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  4008. msgid "Overwrite existing file \"%s\" ?"
  4009. msgstr ""
  4010. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  4011. msgid "Owner"
  4012. msgstr "소유자"
  4013. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  4014. msgid "PAP/CHAP (both)"
  4015. msgstr ""
  4016. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  4017. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  4018. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  4019. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  4020. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  4021. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  4022. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  4023. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  4024. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  4025. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  4026. msgid "PAP/CHAP password"
  4027. msgstr ""
  4028. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  4029. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  4030. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  4031. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  4032. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  4033. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  4034. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  4035. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4036. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4037. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4038. msgid "PAP/CHAP username"
  4039. msgstr ""
  4040. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4041. msgid "PDP Type"
  4042. msgstr ""
  4043. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4044. msgid "PID"
  4045. msgstr "PID"
  4046. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4047. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4048. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4049. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4050. msgid "PIN"
  4051. msgstr ""
  4052. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4053. #: modules/luci-compat/luasrc/model/network.lua:39
  4054. msgid "PIN code rejected"
  4055. msgstr ""
  4056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4057. msgid "PMK R1 Push"
  4058. msgstr ""
  4059. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4060. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4061. msgid "PPP"
  4062. msgstr ""
  4063. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4064. msgid "PPPoA Encapsulation"
  4065. msgstr ""
  4066. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4067. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4068. msgid "PPPoATM"
  4069. msgstr "PPPoATM"
  4070. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4071. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4072. msgid "PPPoE"
  4073. msgstr "PPPoE"
  4074. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4075. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4076. msgid "PPPoSSH"
  4077. msgstr "PPPoSSH"
  4078. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4079. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4080. msgid "PPtP"
  4081. msgstr ""
  4082. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4083. msgid "PSID offset"
  4084. msgstr ""
  4085. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4086. msgid "PSID-bits length"
  4087. msgstr ""
  4088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4089. msgid "PTM/EFM (Packet Transfer Mode)"
  4090. msgstr ""
  4091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4092. msgid "Packet Steering"
  4093. msgstr ""
  4094. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4095. msgid "Packets"
  4096. msgstr ""
  4097. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4098. msgid "Packets To Transmit Before Moving To Next Slave"
  4099. msgstr ""
  4100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4101. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4102. msgid "Part of zone %q"
  4103. msgstr ""
  4104. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4105. msgctxt "MACVLAN mode"
  4106. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4107. msgstr ""
  4108. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4109. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4110. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4111. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4112. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4113. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4114. msgid "Password"
  4115. msgstr "암호"
  4116. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4117. msgid "Password authentication"
  4118. msgstr "암호 인증"
  4119. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4120. msgid "Password of Private Key"
  4121. msgstr ""
  4122. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4123. msgid "Password of inner Private Key"
  4124. msgstr ""
  4125. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4126. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4127. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4128. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4129. msgid "Password strength"
  4130. msgstr ""
  4131. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4132. msgid "Password2"
  4133. msgstr ""
  4134. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4135. msgid "Paste or drag SSH key file…"
  4136. msgstr ""
  4137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4138. msgid "Path to CA-Certificate"
  4139. msgstr ""
  4140. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4141. msgid "Path to Client-Certificate"
  4142. msgstr ""
  4143. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4144. msgid "Path to Private Key"
  4145. msgstr ""
  4146. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4147. msgid "Path to inner CA-Certificate"
  4148. msgstr ""
  4149. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4150. msgid "Path to inner Client-Certificate"
  4151. msgstr ""
  4152. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4153. msgid "Path to inner Private Key"
  4154. msgstr ""
  4155. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4156. msgid "Paused"
  4157. msgstr ""
  4158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4159. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4160. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4161. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4162. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4163. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4164. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4165. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4166. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4167. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4168. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4169. msgid "Peak:"
  4170. msgstr "최고치:"
  4171. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4172. msgid "Peer IP address to assign"
  4173. msgstr ""
  4174. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4175. msgid "Peer MAC address"
  4176. msgstr ""
  4177. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4178. #: modules/luci-compat/luasrc/model/network.lua:32
  4179. msgid "Peer address is missing"
  4180. msgstr ""
  4181. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4182. msgid "Peer device name"
  4183. msgstr ""
  4184. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4185. msgid "Peers"
  4186. msgstr ""
  4187. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4188. msgid "Perfect Forward Secrecy"
  4189. msgstr ""
  4190. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4191. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4192. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4193. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4194. msgid "Perform outgoing packets serialization (optional)."
  4195. msgstr ""
  4196. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4197. msgid "Perform reboot"
  4198. msgstr "재부팅하기"
  4199. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4200. msgid "Perform reset"
  4201. msgstr "초기화 하기"
  4202. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4203. msgid "Permission denied"
  4204. msgstr ""
  4205. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4206. msgid "Persistent Keep Alive"
  4207. msgstr ""
  4208. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4209. msgid "Phy Rate:"
  4210. msgstr ""
  4211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4212. msgid "Physical Settings"
  4213. msgstr "Physical 설정"
  4214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4216. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4217. msgid "Ping"
  4218. msgstr ""
  4219. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4220. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4221. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4222. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4223. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4224. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4225. msgid "Pkts."
  4226. msgstr "Pkts."
  4227. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4228. msgid "Please enter your username and password."
  4229. msgstr "사용자이름과 암호를 입력해 주세요."
  4230. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4231. msgid "Please select the file to upload."
  4232. msgstr ""
  4233. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4234. msgid "Policy"
  4235. msgstr ""
  4236. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4237. msgid "Port"
  4238. msgstr "포트"
  4239. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4240. msgid "Port isolation"
  4241. msgstr ""
  4242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4243. msgid "Port status:"
  4244. msgstr "포트 상태:"
  4245. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4246. msgid "Potential negation of: %s"
  4247. msgstr ""
  4248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4249. msgid "Power Management Mode"
  4250. msgstr ""
  4251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4252. msgid "Pre-emptive CRC errors (CRCP_P)"
  4253. msgstr ""
  4254. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4255. msgid "Prefer LTE"
  4256. msgstr ""
  4257. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4258. msgid "Prefer UMTS"
  4259. msgstr ""
  4260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4261. msgid "Prefix Delegated"
  4262. msgstr ""
  4263. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4264. msgid "Preshared Key"
  4265. msgstr ""
  4266. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4267. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4268. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4269. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4270. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4271. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4272. msgid ""
  4273. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4274. "ignore failures"
  4275. msgstr ""
  4276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4277. msgid "Prevent listening on these interfaces."
  4278. msgstr ""
  4279. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4280. msgid "Prevents client-to-client communication"
  4281. msgstr ""
  4282. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4283. msgid "Primary Slave"
  4284. msgstr ""
  4285. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4286. msgctxt "VLAN port state"
  4287. msgid "Primary VLAN ID"
  4288. msgstr ""
  4289. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4290. msgid ""
  4291. "Primary becomes active slave when it comes back up if speed and duplex "
  4292. "better than current slave (better, 1)"
  4293. msgstr ""
  4294. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4295. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4296. msgstr ""
  4297. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4298. msgid "Priority"
  4299. msgstr ""
  4300. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4301. msgctxt "MACVLAN mode"
  4302. msgid "Private (Prevent communication between MAC VLANs)"
  4303. msgstr ""
  4304. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4305. msgid "Private Key"
  4306. msgstr ""
  4307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4308. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4309. msgid "Processes"
  4310. msgstr "프로세스"
  4311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4312. msgid "Prot."
  4313. msgstr "Prot."
  4314. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4316. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4317. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4318. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4320. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4321. msgid "Protocol"
  4322. msgstr "프로토콜"
  4323. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4324. #, fuzzy
  4325. msgid "Provide NTP server"
  4326. msgstr "NTP 서버 제공"
  4327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4328. msgid ""
  4329. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4330. "and requests."
  4331. msgstr ""
  4332. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4333. msgid "Provide new network"
  4334. msgstr "새로운 네트워크를 추가합니다"
  4335. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4336. msgid "Pseudo Ad-Hoc (ahdemo)"
  4337. msgstr ""
  4338. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4339. msgid "Public Key"
  4340. msgstr "공개 키"
  4341. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4342. msgid ""
  4343. "Public keys allow for the passwordless SSH logins with a higher security "
  4344. "compared to the use of plain passwords. In order to upload a new key to the "
  4345. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4346. "code> file into the input field."
  4347. msgstr ""
  4348. "공개 키를 사용하면 일반 암호 사용과 비교하여 보안이 강화된 암호 없는 SSH 로그"
  4349. "인을 수행할 수 있습니다. 장치에 새 키를 업로드하려면 Open(열기)을 붙여 넣습니"
  4350. "다. OpenSSH에 호환되는 공개 키 라인 또는 <code>.pub</code> 파일을 입력 필드"
  4351. "로 끌어다 놓습니다."
  4352. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4353. msgid "Public prefix routed to this device for distribution to clients."
  4354. msgstr ""
  4355. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4356. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4357. msgid "QMI Cellular"
  4358. msgstr ""
  4359. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4360. msgid "Quality"
  4361. msgstr ""
  4362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4363. msgid ""
  4364. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4365. "servers"
  4366. msgstr ""
  4367. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4368. msgid "Query interval"
  4369. msgstr ""
  4370. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4371. msgid "Query response interval"
  4372. msgstr ""
  4373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4374. msgid "R0 Key Lifetime"
  4375. msgstr ""
  4376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4377. msgid "R1 Key Holder"
  4378. msgstr ""
  4379. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4380. msgid "RFC3947 NAT-T mode"
  4381. msgstr ""
  4382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4383. msgid "RSSI threshold for joining"
  4384. msgstr ""
  4385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4386. msgid "RTS/CTS Threshold"
  4387. msgstr ""
  4388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4390. msgid "RX"
  4391. msgstr ""
  4392. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4393. msgid "RX Rate"
  4394. msgstr ""
  4395. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4396. msgid "RX Rate / TX Rate"
  4397. msgstr ""
  4398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4399. msgid "Radius-Accounting-Port"
  4400. msgstr ""
  4401. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4402. msgid "Radius-Accounting-Secret"
  4403. msgstr ""
  4404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4405. msgid "Radius-Accounting-Server"
  4406. msgstr ""
  4407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4408. msgid "Radius-Authentication-Port"
  4409. msgstr ""
  4410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4411. msgid "Radius-Authentication-Secret"
  4412. msgstr ""
  4413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4414. msgid "Radius-Authentication-Server"
  4415. msgstr ""
  4416. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4417. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4418. msgstr ""
  4419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4420. msgid ""
  4421. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4422. "Configuration Protocol\">DHCP</abbr>-Server"
  4423. msgstr ""
  4424. "<code>/etc/ethers</code> 파일을 읽어 <abbr title=\"Dynamic Host "
  4425. "Configuration Protocol\">DHCP</abbr>-서버를 설정합니다"
  4426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4427. msgid "Really switch protocol?"
  4428. msgstr "정말 프로토콜 변경을 원하세요?"
  4429. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4430. msgid "Realtime Graphs"
  4431. msgstr "실시간 그래프"
  4432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4433. msgid "Reassociation Deadline"
  4434. msgstr ""
  4435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4436. msgid "Rebind protection"
  4437. msgstr ""
  4438. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4439. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4440. msgid "Reboot"
  4441. msgstr "재부팅"
  4442. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4443. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4444. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4445. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4446. msgid "Rebooting…"
  4447. msgstr ""
  4448. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4449. msgid "Reboots the operating system of your device"
  4450. msgstr "장치의 운영체제를 재부팅합니다"
  4451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4452. msgid "Receive"
  4453. msgstr ""
  4454. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4455. msgid "Recommended. IP addresses of the WireGuard interface."
  4456. msgstr ""
  4457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4458. msgid "Reconnect this interface"
  4459. msgstr "이 인터페이스를 재연결합니다"
  4460. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4461. msgid "References"
  4462. msgstr ""
  4463. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4464. msgid "Refreshing"
  4465. msgstr ""
  4466. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4467. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4468. msgid "Relay"
  4469. msgstr ""
  4470. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4471. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4472. msgid "Relay Bridge"
  4473. msgstr ""
  4474. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4475. msgid "Relay between networks"
  4476. msgstr ""
  4477. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4478. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4479. msgid "Relay bridge"
  4480. msgstr ""
  4481. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4482. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4483. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4484. msgid "Remote IPv4 address"
  4485. msgstr ""
  4486. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4487. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4488. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4489. msgid "Remote IPv4 address or FQDN"
  4490. msgstr ""
  4491. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4492. msgid "Remote IPv6 address"
  4493. msgstr ""
  4494. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4495. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4496. msgid "Remote IPv6 address or FQDN"
  4497. msgstr ""
  4498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4499. msgid "Remove"
  4500. msgstr "제거"
  4501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4502. msgid "Remove related device settings from the configuration"
  4503. msgstr ""
  4504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4505. msgid "Replace wireless configuration"
  4506. msgstr ""
  4507. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4508. msgid "Request IPv6-address"
  4509. msgstr ""
  4510. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4511. msgid "Request IPv6-prefix of length"
  4512. msgstr ""
  4513. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4514. msgid "Request timeout"
  4515. msgstr ""
  4516. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4517. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4519. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4520. msgid "Require incoming checksum (optional)."
  4521. msgstr ""
  4522. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4523. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4524. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4525. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4526. msgid "Require incoming packets serialization (optional)."
  4527. msgstr ""
  4528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4529. msgid "Required"
  4530. msgstr ""
  4531. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4532. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4533. msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)"
  4534. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4535. msgid "Required. Base64-encoded private key for this interface."
  4536. msgstr ""
  4537. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4538. msgid "Required. Base64-encoded public key of peer."
  4539. msgstr ""
  4540. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4541. msgid ""
  4542. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4543. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4544. "routes through the tunnel."
  4545. msgstr ""
  4546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4547. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4549. msgid "Requires hostapd"
  4550. msgstr ""
  4551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4553. msgid "Requires hostapd with EAP Suite-B support"
  4554. msgstr ""
  4555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4556. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4557. msgid "Requires hostapd with EAP support"
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4560. msgid "Requires hostapd with OWE support"
  4561. msgstr ""
  4562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4564. msgid "Requires hostapd with SAE support"
  4565. msgstr ""
  4566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4568. msgid "Requires hostapd with WEP support"
  4569. msgstr ""
  4570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4571. msgid ""
  4572. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4573. "come from unsigned domains"
  4574. msgstr ""
  4575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4580. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4581. msgid "Requires wpa-supplicant"
  4582. msgstr ""
  4583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4584. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4585. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4586. msgstr ""
  4587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4589. msgid "Requires wpa-supplicant with EAP support"
  4590. msgstr ""
  4591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4592. msgid "Requires wpa-supplicant with OWE support"
  4593. msgstr ""
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4595. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4597. msgid "Requires wpa-supplicant with SAE support"
  4598. msgstr ""
  4599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4601. msgid "Requires wpa-supplicant with WEP support"
  4602. msgstr ""
  4603. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4604. msgid "Reselection policy for primary slave"
  4605. msgstr ""
  4606. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4607. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4608. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4609. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4610. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4612. msgid "Reset"
  4613. msgstr "초기화"
  4614. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4615. msgid "Reset Counters"
  4616. msgstr "집계 초기화"
  4617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4618. msgid "Reset to defaults"
  4619. msgstr "기본값으로 초기화"
  4620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4621. msgid "Resolv and Hosts Files"
  4622. msgstr "Resolv 와 Hosts 파일"
  4623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4624. msgid "Resolve file"
  4625. msgstr "Resolve 파일"
  4626. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4627. msgid "Resource not found"
  4628. msgstr "리소스 찾을 수 없음"
  4629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4631. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4632. msgid "Restart"
  4633. msgstr "재시작"
  4634. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4635. msgid "Restart Firewall"
  4636. msgstr "방화벽 재시작"
  4637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4638. msgid "Restart radio interface"
  4639. msgstr "라디오 인터페이스 재시작"
  4640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4641. msgid "Restore"
  4642. msgstr "복구"
  4643. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4644. msgid "Restore backup"
  4645. msgstr "백업 복구"
  4646. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4647. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4648. msgid "Reveal/hide password"
  4649. msgstr "암호 보이기/숨기기"
  4650. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4651. msgid "Reverse path filter"
  4652. msgstr ""
  4653. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4654. msgid "Revert"
  4655. msgstr "변경 취소"
  4656. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4657. msgid "Revert changes"
  4658. msgstr "변경사항 되돌리기"
  4659. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4660. msgid "Revert request failed with status <code>%h</code>"
  4661. msgstr ""
  4662. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4663. msgid "Reverting configuration…"
  4664. msgstr "설정 되돌리는 중…"
  4665. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4666. msgid "Robustness"
  4667. msgstr ""
  4668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4669. msgid "Root directory for files served via TFTP"
  4670. msgstr "TFTP 를 통해 제공되는 파일들의 root 디렉토리"
  4671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4672. msgid "Root preparation"
  4673. msgstr ""
  4674. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4675. msgid "Round-Robin policy (balance-rr, 0)"
  4676. msgstr "라운드 로빈 정책 (balance-rr, 0)"
  4677. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4678. msgid "Route Allowed IPs"
  4679. msgstr ""
  4680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4681. msgid "Route table"
  4682. msgstr ""
  4683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4684. msgid "Route type"
  4685. msgstr ""
  4686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4687. msgid ""
  4688. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4689. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4690. msgstr ""
  4691. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4692. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4693. msgid "Router Password"
  4694. msgstr "라우터 암호"
  4695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4696. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4697. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4698. msgid "Routes"
  4699. msgstr "라우트"
  4700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4701. msgid ""
  4702. "Routes specify over which interface and gateway a certain host or network "
  4703. "can be reached."
  4704. msgstr ""
  4705. "라우트는 특정 호스트 또는 네트워크에 도달 할 수 있는 인터페이스와 게이트웨이"
  4706. "를 지정합니다."
  4707. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4708. msgid "Rule"
  4709. msgstr ""
  4710. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4711. msgid "Run a filesystem check before mounting the device"
  4712. msgstr "기기 마운트 전에 파일시스템 검사 실행"
  4713. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4714. msgid "Run filesystem check"
  4715. msgstr "파일시스템 검사 실행"
  4716. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4717. msgid "Runtime error"
  4718. msgstr "런타임 오류"
  4719. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4720. #, fuzzy
  4721. msgid "SHA256"
  4722. msgstr "SHA256"
  4723. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4725. msgid "SNR"
  4726. msgstr ""
  4727. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4728. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4729. msgid "SSH Access"
  4730. msgstr "SSH 접속"
  4731. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4732. msgid "SSH server address"
  4733. msgstr "SSH 서버 주소"
  4734. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4735. msgid "SSH server port"
  4736. msgstr "SSH 서버 포트"
  4737. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4738. msgid "SSH username"
  4739. msgstr "SSH 사용자 이름"
  4740. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4741. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4742. #, fuzzy
  4743. msgid "SSH-Keys"
  4744. msgstr "SSH-Keys"
  4745. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4748. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4749. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4750. msgid "SSID"
  4751. msgstr "SSID"
  4752. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4753. #, fuzzy
  4754. msgid "SSTP"
  4755. msgstr "SSTP"
  4756. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4757. msgid "SSTP Server"
  4758. msgstr "SSTP 서버"
  4759. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4760. msgid "SWAP"
  4761. msgstr ""
  4762. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4763. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4764. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4765. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4766. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4767. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4768. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4769. msgid "Save"
  4770. msgstr "저장"
  4771. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4772. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4773. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4774. msgid "Save & Apply"
  4775. msgstr "저장 & 적용"
  4776. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4777. msgid "Save error"
  4778. msgstr ""
  4779. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4780. msgid "Save mtdblock"
  4781. msgstr "mtdblock 저장"
  4782. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4783. msgid "Save mtdblock contents"
  4784. msgstr "mtdblock 내용 저장"
  4785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4786. msgid "Scan"
  4787. msgstr "스캔"
  4788. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4789. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4790. msgid "Scheduled Tasks"
  4791. msgstr "작업 관리"
  4792. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4793. msgid "Section added"
  4794. msgstr "추가된 section"
  4795. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4796. msgid "Section removed"
  4797. msgstr "섹션 삭제됨"
  4798. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4799. msgid "See \"mount\" manpage for details"
  4800. msgstr "자세한 사항은 \"mount\"의 manpage를 확인하세요"
  4801. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4802. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4803. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4804. msgid "Select file…"
  4805. msgstr "파일 선택…"
  4806. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4807. msgid "Selects the transmit hash policy to use for slave selection"
  4808. msgstr ""
  4809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4810. msgid ""
  4811. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4812. "messages advertising this device as IPv6 router."
  4813. msgstr ""
  4814. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4815. msgid "Send ICMP redirects"
  4816. msgstr ""
  4817. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4818. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4819. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4820. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4821. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4822. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4823. msgid ""
  4824. "Send LCP echo requests at the given interval in seconds, only effective in "
  4825. "conjunction with failure threshold"
  4826. msgstr ""
  4827. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4828. msgid "Send the hostname of this device"
  4829. msgstr ""
  4830. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4831. msgid "Server Settings"
  4832. msgstr "서버 설정"
  4833. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4834. msgid "Service Name"
  4835. msgstr "서비스 이름"
  4836. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4837. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4838. msgid "Service Type"
  4839. msgstr "서비스 유형"
  4840. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4841. msgid "Services"
  4842. msgstr "서비스"
  4843. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4844. msgid "Session expired"
  4845. msgstr "세션 만료됨"
  4846. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4847. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4848. msgid "Set Static"
  4849. msgstr ""
  4850. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4851. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4852. msgstr ""
  4853. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4854. msgid ""
  4855. "Set interface properties regardless of the link carrier (If set, carrier "
  4856. "sense events do not invoke hotplug handlers)."
  4857. msgstr ""
  4858. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4859. msgid "Set same MAC Address to all slaves"
  4860. msgstr ""
  4861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4862. msgid ""
  4863. "Set the autonomous address-configuration flag in the prefix information "
  4864. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4865. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4866. msgstr ""
  4867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4868. msgid ""
  4869. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4870. "proxying."
  4871. msgstr ""
  4872. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4873. msgid "Set to currently active slave (active, 1)"
  4874. msgstr ""
  4875. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4876. msgid "Set to first slave added to the bond (follow, 2)"
  4877. msgstr ""
  4878. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4879. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4880. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4881. msgid "Setting PLMN failed"
  4882. msgstr "PLMN 설정 실패"
  4883. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4884. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4885. msgid "Setting operation mode failed"
  4886. msgstr ""
  4887. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4888. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4889. msgid "Setup DHCP Server"
  4890. msgstr "DHCP 서버 구성"
  4891. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4892. msgid "Setup routes for proxied IPv6 neighbours."
  4893. msgstr ""
  4894. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4895. msgid "Severely Errored Seconds (SES)"
  4896. msgstr ""
  4897. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4898. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4899. msgid "Short GI"
  4900. msgstr ""
  4901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4902. msgid "Short Preamble"
  4903. msgstr ""
  4904. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4905. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4906. msgid "Show current backup file list"
  4907. msgstr "현재 백업 파일 목록 보기"
  4908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4909. msgid "Show empty chains"
  4910. msgstr ""
  4911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4912. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4913. msgid "Show raw counters"
  4914. msgstr ""
  4915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4916. msgid "Shutdown this interface"
  4917. msgstr "이 인터페이스 정지"
  4918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4921. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4927. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4928. msgid "Signal"
  4929. msgstr "신호"
  4930. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4931. msgid "Signal / Noise"
  4932. msgstr ""
  4933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4934. msgid "Signal Attenuation (SATN)"
  4935. msgstr ""
  4936. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4937. msgid "Signal Refresh Rate"
  4938. msgstr ""
  4939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4940. msgid "Signal:"
  4941. msgstr ""
  4942. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4943. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4944. msgid "Size"
  4945. msgstr "크기"
  4946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4947. msgid "Size of DNS query cache"
  4948. msgstr "DNS 쿼리 캐시 크기"
  4949. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4950. msgid "Size of the ZRam device in megabytes"
  4951. msgstr ""
  4952. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4953. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4954. msgid "Skip"
  4955. msgstr "건너뛰기"
  4956. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4957. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4958. msgid "Skip to content"
  4959. msgstr ""
  4960. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4961. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4962. msgid "Skip to navigation"
  4963. msgstr ""
  4964. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4965. msgid "Slave Interfaces"
  4966. msgstr ""
  4967. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4968. #: modules/luci-compat/luasrc/model/network.lua:1428
  4969. msgid "Software VLAN"
  4970. msgstr "소프트웨어 VLAN"
  4971. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  4972. msgid "Some fields are invalid, cannot save values!"
  4973. msgstr "일부 필드가 올바르지 않아, 값을 저장할 수 없습니다!"
  4974. #: modules/luci-base/luasrc/view/error404.htm:9
  4975. msgid "Sorry, the object you requested was not found."
  4976. msgstr "죄송합니다, 요청하신 객체를 찾을 수 없습니다."
  4977. #: modules/luci-base/luasrc/view/error500.htm:9
  4978. msgid "Sorry, the server encountered an unexpected error."
  4979. msgstr "죄송합니다, 서버가 예상치 못한 오류에 걸렸습니다."
  4980. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  4981. msgid ""
  4982. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  4983. "flashed manually. Please refer to the wiki for device specific install "
  4984. "instructions."
  4985. msgstr ""
  4986. "죄송합니다. 현재 sysupgrade 를 지원하지 않습니다. 새 펌웨어 이미지를 수동으"
  4987. "로 플래시해야 합니다. 장치별 설치 지침은 OpenWrt 위키를 참조하세요."
  4988. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  4989. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  4990. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  4991. msgid "Source"
  4992. msgstr "소스"
  4993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  4994. msgid "Source Address"
  4995. msgstr "소스 주소"
  4996. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  4997. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  4998. msgid "Source interface"
  4999. msgstr "소스 인터페이스"
  5000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  5001. msgid ""
  5002. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  5003. "unspecified, the local device DNS search domain will be announced."
  5004. msgstr ""
  5005. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  5006. msgid ""
  5007. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  5008. "If left unspecified, the device will announce itself as IPv6 DNS server "
  5009. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  5010. msgstr ""
  5011. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  5012. msgid ""
  5013. "Specifies that duplicate frames (received on inactive ports) should be "
  5014. "dropped or delivered"
  5015. msgstr ""
  5016. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  5017. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  5018. msgstr ""
  5019. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  5020. msgid "Specifies the IP addresses to use for ARP monitoring"
  5021. msgstr "ARP 모니터링에 사용할 IP주소 지정"
  5022. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  5023. msgid "Specifies the MII link monitoring frequency in milliseconds"
  5024. msgstr ""
  5025. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  5026. msgid "Specifies the aggregation selection logic to use"
  5027. msgstr ""
  5028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  5029. msgid "Specifies the directory the device is attached to"
  5030. msgstr "디바이스가 연결된 디렉터리 지정"
  5031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  5032. msgid ""
  5033. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  5034. "messages, for example to instruct clients to request further information via "
  5035. "stateful DHCPv6."
  5036. msgstr ""
  5037. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  5038. msgid ""
  5039. "Specifies the mac-address for the actor in protocol packet exchanges "
  5040. "(LACPDUs). If empty, masters' mac address defaults to system default"
  5041. msgstr ""
  5042. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  5043. msgid ""
  5044. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  5045. "to be dead"
  5046. msgstr ""
  5047. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5048. msgid ""
  5049. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5050. "dead"
  5051. msgstr ""
  5052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  5053. msgid ""
  5054. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5055. "on regulatory requirements and wireless usage, the actual transmit power may "
  5056. "be reduced by the driver."
  5057. msgstr ""
  5058. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5059. msgid ""
  5060. "Specifies the minimum number of links that must be active before asserting "
  5061. "carrier"
  5062. msgstr ""
  5063. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5064. msgid "Specifies the mode to be used for this bonding interface"
  5065. msgstr ""
  5066. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5067. msgid ""
  5068. "Specifies the number of IGMP membership reports to be issued after a "
  5069. "failover event in 200ms intervals"
  5070. msgstr ""
  5071. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5072. msgid ""
  5073. "Specifies the number of packets to transmit through a slave before moving to "
  5074. "the next one"
  5075. msgstr ""
  5076. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5077. msgid ""
  5078. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5079. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5080. msgstr ""
  5081. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5082. msgid ""
  5083. "Specifies the number of seconds between instances where the bonding driver "
  5084. "sends learning packets to each slaves peer switch"
  5085. msgstr ""
  5086. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5087. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5088. msgstr ""
  5089. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5090. msgid ""
  5091. "Specifies the rate in which the link partner will be asked to transmit "
  5092. "LACPDU packets"
  5093. msgstr ""
  5094. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5095. msgid ""
  5096. "Specifies the reselection policy for the primary slave when failure of the "
  5097. "active slave or recovery of the primary slave occurs"
  5098. msgstr ""
  5099. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5100. msgid "Specifies the system priority"
  5101. msgstr ""
  5102. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5103. msgid ""
  5104. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5105. "link failure detection"
  5106. msgstr ""
  5107. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5108. msgid ""
  5109. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5110. "link recovery detection"
  5111. msgstr ""
  5112. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5113. msgid ""
  5114. "Specifies the wired ports to attach to this bridge. In order to attach "
  5115. "wireless networks, choose the associated interface as network in the "
  5116. "wireless settings."
  5117. msgstr ""
  5118. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5119. msgid ""
  5120. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5121. "traffic should be filtered for link monitoring"
  5122. msgstr ""
  5123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5124. msgid ""
  5125. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5126. "address at enslavement"
  5127. msgstr ""
  5128. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5129. msgid ""
  5130. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5131. "netif_carrier_ok()"
  5132. msgstr ""
  5133. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5134. msgid ""
  5135. "Specifies whether to shuffle active flows across slaves based on the load"
  5136. msgstr ""
  5137. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5138. msgid ""
  5139. "Specifies which slave interfaces should be attached to this bonding interface"
  5140. msgstr ""
  5141. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5142. msgid ""
  5143. "Specifies which slave is the primary device. It will always be the active "
  5144. "slave while it is available"
  5145. msgstr ""
  5146. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5147. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5148. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5149. msgid "Specify a TOS (Type of Service)."
  5150. msgstr ""
  5151. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5152. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5153. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5154. msgid ""
  5155. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5156. "header inherits the value of the inner header) or an hexadecimal value "
  5157. "<code>00..FF</code> (optional)."
  5158. msgstr ""
  5159. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5160. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5161. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5162. msgid ""
  5163. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5164. "default (64) (optional)."
  5165. msgstr ""
  5166. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5167. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5168. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5169. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5170. msgid ""
  5171. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5172. "default (64)."
  5173. msgstr ""
  5174. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5175. msgid ""
  5176. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5177. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5178. "FF</code> (optional)."
  5179. msgstr ""
  5180. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5181. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5182. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5183. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5184. msgid ""
  5185. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5186. "bytes) (optional)."
  5187. msgstr ""
  5188. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5189. msgid ""
  5190. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5191. "bytes)."
  5192. msgstr ""
  5193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5194. msgid "Specify the secret encryption key here."
  5195. msgstr ""
  5196. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5197. msgid "Stale neighbour cache timeout"
  5198. msgstr ""
  5199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5200. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5201. msgid "Start"
  5202. msgstr "시작"
  5203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5204. msgid "Start WPS"
  5205. msgstr ""
  5206. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5207. msgid "Start priority"
  5208. msgstr "시작 우선순위"
  5209. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5210. msgid "Start refresh"
  5211. msgstr "새로고침 시작"
  5212. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5213. msgid "Starting configuration apply…"
  5214. msgstr "구성 적용 시작하는 중…"
  5215. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5216. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5217. msgid "Starting wireless scan..."
  5218. msgstr "무선 스캔 시작하는 중..."
  5219. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5220. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5221. msgid "Startup"
  5222. msgstr "시작 프로그램"
  5223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5224. msgid "Static IPv4 Routes"
  5225. msgstr "정적 IPv4 라우트"
  5226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5227. msgid "Static IPv6 Routes"
  5228. msgstr "정적 IPv6 라우트"
  5229. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5230. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5231. msgid "Static Lease"
  5232. msgstr ""
  5233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5234. msgid "Static Leases"
  5235. msgstr "정적 임대"
  5236. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5237. msgid "Static Routes"
  5238. msgstr "정적 라우트"
  5239. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5240. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5241. #: modules/luci-compat/luasrc/model/network.lua:967
  5242. msgid "Static address"
  5243. msgstr "정적 주소"
  5244. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5245. msgid ""
  5246. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5247. "to DHCP clients. They are also required for non-dynamic interface "
  5248. "configurations where only hosts with a corresponding lease are served."
  5249. msgstr ""
  5250. "정적 임대는 고정IP 할당과 심볼릭 호스트명을 DHCP 클라이언트에 지정하는 데 사"
  5251. "용됩니다. 이 기능은 지정된 host 에 대해서만 주소 임대를 하도록 하는 non-"
  5252. "dynamic 인터페이스 설정에도 요구됩니다."
  5253. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5254. msgid "Station inactivity limit"
  5255. msgstr ""
  5256. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5259. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5260. msgid "Status"
  5261. msgstr "상태"
  5262. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5264. msgid "Stop"
  5265. msgstr "정지"
  5266. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5267. msgid "Stop WPS"
  5268. msgstr ""
  5269. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5271. msgid "Stop refresh"
  5272. msgstr "새로고침 정지"
  5273. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5274. msgid "Strict filtering"
  5275. msgstr ""
  5276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5277. msgid "Strict order"
  5278. msgstr "Strict order"
  5279. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5280. msgid "Strong"
  5281. msgstr ""
  5282. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5284. msgid "Submit"
  5285. msgstr "제출하기"
  5286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5287. msgid "Suppress logging"
  5288. msgstr ""
  5289. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5290. msgid "Suppress logging of the routine operation of these protocols"
  5291. msgstr ""
  5292. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5293. msgid "Swap free"
  5294. msgstr ""
  5295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5296. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5297. msgid "Switch"
  5298. msgstr "스위치"
  5299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5300. msgid "Switch %q"
  5301. msgstr "스위치 %q"
  5302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5303. msgid ""
  5304. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5305. msgstr ""
  5306. "%q 스위치에 알려지지 않은 위상 배치가 있습니다. - VLAN 설정이 정확하지 않을 "
  5307. "수 있습니다."
  5308. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5309. #: modules/luci-compat/luasrc/model/network.lua:1426
  5310. msgid "Switch VLAN"
  5311. msgstr "스위치 VLAN"
  5312. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5313. msgid "Switch port"
  5314. msgstr ""
  5315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5316. msgid "Switch protocol"
  5317. msgstr "프로토콜 변경"
  5318. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5319. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5320. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5321. msgid "Switch to CIDR list notation"
  5322. msgstr ""
  5323. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5324. msgid "Symbolic link"
  5325. msgstr "심볼릭 링크"
  5326. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5327. msgid "Sync with NTP-Server"
  5328. msgstr ""
  5329. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5330. msgid "Sync with browser"
  5331. msgstr "브라우저 시간대로 동기화"
  5332. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5333. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5334. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5335. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5336. msgid "System"
  5337. msgstr "시스템"
  5338. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5339. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5340. msgid "System Log"
  5341. msgstr "시스템 로그"
  5342. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5343. msgid "System Priority"
  5344. msgstr ""
  5345. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5346. msgid "System Properties"
  5347. msgstr "시스템 정보"
  5348. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5349. msgid "System log buffer size"
  5350. msgstr "시스템 로그 버퍼 크기"
  5351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5352. msgid "TCP:"
  5353. msgstr ""
  5354. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5355. msgid "TFTP Settings"
  5356. msgstr "TFTP 설정"
  5357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5358. msgid "TFTP server root"
  5359. msgstr "TFTP 서버 root"
  5360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5362. msgid "TX"
  5363. msgstr "TX"
  5364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5365. msgid "TX Rate"
  5366. msgstr ""
  5367. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5368. msgid "TX queue length"
  5369. msgstr ""
  5370. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5372. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5373. msgid "Table"
  5374. msgstr ""
  5375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5376. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5377. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5379. msgid "Target"
  5380. msgstr ""
  5381. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5382. msgid "Target network"
  5383. msgstr ""
  5384. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5385. msgid "Terminate"
  5386. msgstr "종료"
  5387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5388. msgid ""
  5389. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5390. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5391. "Minimum is 1280 bytes."
  5392. msgstr ""
  5393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5394. msgid ""
  5395. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5396. "addresses are available via DHCPv6."
  5397. msgstr ""
  5398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5399. msgid ""
  5400. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5401. "also acting as Mobile IPv6 home agent on this link."
  5402. msgstr ""
  5403. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5404. msgid ""
  5405. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5406. "such as DNS servers, is available via DHCPv6."
  5407. msgstr ""
  5408. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5409. msgid "The <em>block mount</em> command failed with code %d"
  5410. msgstr ""
  5411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5412. msgid ""
  5413. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5414. "weight specified here"
  5415. msgstr ""
  5416. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5417. msgid ""
  5418. "The HE.net endpoint update configuration changed, you must now use the plain "
  5419. "username instead of the user ID!"
  5420. msgstr ""
  5421. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5422. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5423. msgstr ""
  5424. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5425. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5426. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5427. msgid ""
  5428. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5429. msgstr ""
  5430. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5431. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5432. msgstr ""
  5433. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5434. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5435. msgid ""
  5436. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5437. msgstr ""
  5438. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5439. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5440. msgid ""
  5441. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5442. msgstr ""
  5443. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5444. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5445. msgstr ""
  5446. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5447. msgid "The VLAN ID must be unique"
  5448. msgstr ""
  5449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5450. msgid ""
  5451. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5452. "code> and <code>_</code>"
  5453. msgstr ""
  5454. "다음과 같은 글자를 사용할 수 있습니다: <code>A-Z</code>, <code>a-z</code>, "
  5455. "<code>0-9</code> and <code>_</code>"
  5456. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5457. msgid "The configuration file could not be loaded due to the following error:"
  5458. msgstr "다음과 같은 오류 때문에 구성 파일을 불러오지 못했습니다:"
  5459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5460. msgid ""
  5461. "The correct SSID must be manually specified when joining a hidden wireless "
  5462. "network"
  5463. msgstr ""
  5464. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5465. msgid ""
  5466. "The device could not be reached within %d seconds after applying the pending "
  5467. "changes, which caused the configuration to be rolled back for safety "
  5468. "reasons. If you believe that the configuration changes are correct "
  5469. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5470. "can dismiss this warning and edit changes before attempting to apply again, "
  5471. "or revert all pending changes to keep the currently working configuration "
  5472. "state."
  5473. msgstr ""
  5474. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5476. msgid ""
  5477. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5478. "</abbr> <code>/dev/sda1</code>)"
  5479. msgstr ""
  5480. "메모리 또는 파티션의 디바이스 파일 (<abbr title=\"for example\">예시: </"
  5481. "abbr><code>/dev/sda1</code>)"
  5482. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5483. msgid "The device name \"%s\" is already taken"
  5484. msgstr ""
  5485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5487. msgid ""
  5488. "The existing network configuration needs to be changed for LuCI to function "
  5489. "properly."
  5490. msgstr ""
  5491. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5492. msgid ""
  5493. "The existing wireless configuration needs to be changed for LuCI to function "
  5494. "properly."
  5495. msgstr "LuCI가 제대로 작동하려면 기존 무선 구성이 변경되어야 합니다."
  5496. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5497. msgid ""
  5498. "The flash image was uploaded. Below is the checksum and file size listed, "
  5499. "compare them with the original file to ensure data integrity. <br /> Click "
  5500. "'Continue' below to start the flash procedure."
  5501. msgstr ""
  5502. "플래시 이미지가 업로드 되었습니다. 아래는 체크섬과 파일 크기 목록입니다. 원"
  5503. "본 파일과 비교하여 데이터 무결성을 검증하세요.<br />아래 \"진행하기\"를 눌러 "
  5504. "플래시 절차를 시작하세요."
  5505. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5506. #, fuzzy
  5507. msgid "The following rules are currently active on this system."
  5508. msgstr "다음의 규칙들이 현재 이 시스템에 적용 중입니다."
  5509. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5510. msgid "The gateway address must not be a local IP address"
  5511. msgstr "게이트웨이 주소는 절대로 로컬 IP 주소면 안됩니다"
  5512. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5513. msgid "The given SSH public key has already been added."
  5514. msgstr "제출하신 SSH 공개키는 이미 추가되어 있습니다."
  5515. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5516. msgid ""
  5517. "The given SSH public key is invalid. Please supply proper public RSA or "
  5518. "ECDSA keys."
  5519. msgstr ""
  5520. "제출하신 SSH 키는 올바르지 않습니다. 올바른 RSA 또는 ECDSA 키를 제출해주세요."
  5521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5522. msgid "The interface name is already used"
  5523. msgstr "이미 사용된 인터페이스 이름입니다"
  5524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5525. msgid "The interface name is too long"
  5526. msgstr "인터페이스 이름이 너무 깁니다"
  5527. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5528. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5529. msgid ""
  5530. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5531. "addresses."
  5532. msgstr ""
  5533. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5534. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5535. msgid "The length of the IPv6 prefix in bits"
  5536. msgstr ""
  5537. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5538. msgid "The local IPv4 address"
  5539. msgstr "로컬 IPv4 주소"
  5540. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5541. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5542. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5543. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5544. #, fuzzy
  5545. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5546. msgstr "터널이 생성되는 로컬 IPv4 주소 (선택사항)."
  5547. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5548. msgid "The local IPv4 netmask"
  5549. msgstr "로컬 IPv4 넷마스크"
  5550. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5551. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5552. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5553. #, fuzzy
  5554. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5555. msgstr "터널이 생성되는 로컬 IPv6 주소 (선택사항)."
  5556. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5557. msgid ""
  5558. "The max response time in centiseconds inserted into group-specific queries "
  5559. "sent in response to leave group messages. It is also the amount of time "
  5560. "between group-specific query messages. This value may be tuned to modify the "
  5561. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5562. "detect the loss of the last member of a group"
  5563. msgstr ""
  5564. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5565. msgid ""
  5566. "The max response time in centiseconds inserted into the periodic general "
  5567. "queries. By varying the value, an administrator may tune the burstiness of "
  5568. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5569. "host responses are spread out over a larger interval"
  5570. msgstr ""
  5571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5572. msgid ""
  5573. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5574. "abbr> messages. Maximum is 255 hops."
  5575. msgstr ""
  5576. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5577. msgid "The network name is already used"
  5578. msgstr "네트워크 이름이 이미 사용 중입니다"
  5579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5580. msgid ""
  5581. "The network ports on this device can be combined to several <abbr title="
  5582. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5583. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5584. "Network\">VLAN</abbr>s are often used to separate different network "
  5585. "segments. Often there is by default one Uplink port for a connection to the "
  5586. "next greater network like the internet and other ports for a local network."
  5587. msgstr ""
  5588. "이 장치의 네트워크 포트들은 컴퓨터끼리 직접 통신을 할 수 있도록 여러 <abbr "
  5589. "title=\"Virtual Local Area Network\">VLAN</abbr> 으로 구성될 수 있습니다. "
  5590. "<abbr title=\"Virtual Local Area Network\">VLAN</abbr>은 종종 다른 네트워크 "
  5591. "segment 들을 분리하는데 사용되기도 합니다. 한 개의 uplink 포트가 인터넷에 연"
  5592. "결되어 있고 나머지 포트들은 local 네트워크로 연결되는 구성에 자주 사용됩니다."
  5593. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5594. msgid "The query response interval must be lower than the query interval value"
  5595. msgstr ""
  5596. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5597. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5598. msgid "The reboot command failed with code %d"
  5599. msgstr "재시작 명령이 %d 인수로 인해 실패했습니다"
  5600. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5601. msgid "The restore command failed with code %d"
  5602. msgstr "복구 명령이 %d 인수로 인해 실패했습니다"
  5603. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5604. msgid ""
  5605. "The robustness value allows tuning for the expected packet loss on the "
  5606. "network. If a network is expected to be lossy, the robustness value may be "
  5607. "increased. IGMP is robust to (Robustness-1) packet losses"
  5608. msgstr ""
  5609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5610. msgid "The selected %s mode is incompatible with %s encryption"
  5611. msgstr "선택된 %s 모드는 %s 암호화 방식과 호환되지 않습니다"
  5612. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5613. msgid "The submitted security token is invalid or already expired!"
  5614. msgstr "전송된 보안 토큰이 잘못되었거나 이미 만료되었습니다!"
  5615. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5616. msgid ""
  5617. "The system is erasing the configuration partition now and will reboot itself "
  5618. "when finished."
  5619. msgstr ""
  5620. "시스템이 지금 구성 파티션을 지우고 있으며, 완료되면 자동으로 재시작됩니다."
  5621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5622. msgid ""
  5623. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5624. "few minutes before you try to reconnect. It might be necessary to renew the "
  5625. "address of your computer to reach the device again, depending on your "
  5626. "settings."
  5627. msgstr ""
  5628. "시스템이 플래싱 됩니다.<br />절대 기기의 전원을 끄지 마세요!<br />다시 연결하"
  5629. "기 전에 잠시 기다리세요. 설정에 따라 장치에 다시 연결하려면 컴퓨터 주소를 갱"
  5630. "신해야 할 수도 있습니다."
  5631. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5632. msgid ""
  5633. "The system is rebooting now. If the restored configuration changed the "
  5634. "current LAN IP address, you might need to reconnect manually."
  5635. msgstr ""
  5636. "시스템이 재시작 됩니다. 복원된 구성에서 현재 LAN IP 주소가 변경된 경우 수동으"
  5637. "로 다시 연결해야 할 수 있습니다."
  5638. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5639. msgid "The system password has been successfully changed."
  5640. msgstr "시스템 암호가 성공적으로 변경 되었습니다."
  5641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5642. msgid "The sysupgrade command failed with code %d"
  5643. msgstr "복구 명령이 %d 인수로 인해 실패했습니다"
  5644. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5645. msgid ""
  5646. "The uploaded backup archive appears to be valid and contains the files "
  5647. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5648. "\"Cancel\" to abort the operation."
  5649. msgstr ""
  5650. "업로드된 백업 아카이브는 유효한 것으로 보이며, 아래 목록에 나열된 파일들을 포"
  5651. "함 하고 있습니다. \"계속\" 버튼을 누르면 백업본으로 복구 후, 재시작 됩니다. "
  5652. "또는 \"취소\" 버튼을 눌러 이 작업을 취소 할 수 있습니다."
  5653. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5654. msgid "The uploaded backup archive is not readable"
  5655. msgstr "업로드 된 백업 아카이브를 읽을 수 없습니다"
  5656. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5657. msgid "The uploaded firmware does not allow keeping current configuration."
  5658. msgstr "업로드 된 펌웨어는 현재 설정을 유지 할 수 없습니다."
  5659. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5660. #, fuzzy
  5661. msgid ""
  5662. "The uploaded image file does not contain a supported format. Make sure that "
  5663. "you choose the generic image format for your platform."
  5664. msgstr ""
  5665. "업로드 된 이미지 파일은 지원 하지 않는 포맷입니다. 플랫폼에 대한 일반 이미지 "
  5666. "형식을 선택해야 합니다."
  5667. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5669. msgid "The value is overridden by configuration. Original: %s"
  5670. msgstr ""
  5671. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5672. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5673. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5674. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5675. #, fuzzy
  5676. msgid "There are no active leases"
  5677. msgstr "활성화 되어 있는 임대 없음"
  5678. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5679. msgid "There are no changes to apply"
  5680. msgstr "변경된 사항이 없습니다"
  5681. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5682. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5683. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5684. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5685. msgid ""
  5686. "There is no password set on this router. Please configure a root password to "
  5687. "protect the web interface."
  5688. msgstr ""
  5689. "이 공유기에 암호 설정이 되지 않았습니다. 웹 UI 와 SSH 부분을 보호하기 위해서 "
  5690. "꼭 root 암호를 설정해 주세요."
  5691. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5692. msgid "This IPv4 address of the relay"
  5693. msgstr ""
  5694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5695. msgid "This authentication type is not applicable to the selected EAP method."
  5696. msgstr ""
  5697. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5698. msgid "This does not look like a valid PEM file"
  5699. msgstr ""
  5700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5701. msgid ""
  5702. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5703. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5704. "Name System\">DNS</abbr> servers."
  5705. msgstr ""
  5706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5707. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5708. msgid ""
  5709. "This is a list of shell glob patterns for matching files and directories to "
  5710. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5711. "configurations are automatically preserved."
  5712. msgstr ""
  5713. "이것은 sysupgrade 시 유지되어야 하는 파일과 디렉토리 목록에 대한 shell glob "
  5714. "패턴들입니다. /etc/config/ 하위의 수정된 파일이나 특정 다른 설정들은 자동적으"
  5715. "로 변경 사항이 보존됩니다."
  5716. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5717. msgid ""
  5718. "This is either the \"Update Key\" configured for the tunnel or the account "
  5719. "password if no update key has been configured"
  5720. msgstr ""
  5721. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5722. msgid ""
  5723. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5724. "front of 'exit 0') to execute them at the end of the boot process."
  5725. msgstr ""
  5726. "이것은 /etc/rc.local 파일의 내용입니다. 여기에 ('exit 0' 앞에) 부팅 절차가 끝"
  5727. "날 때 실행하고자 하는 명령들을 삽입하세요."
  5728. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5729. msgid ""
  5730. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5731. "ends with <code>...:2/64</code>"
  5732. msgstr ""
  5733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5734. msgid ""
  5735. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5736. "abbr> in the local network"
  5737. msgstr ""
  5738. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5739. msgid "This is the plain username for logging into the account"
  5740. msgstr ""
  5741. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5742. msgid ""
  5743. "This is the prefix routed to you by the tunnel broker for use by clients"
  5744. msgstr ""
  5745. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5746. msgid "This is the system crontab in which scheduled tasks can be defined."
  5747. msgstr "아래는 예정된 작업들이 정의된 시스템 crontab 내용입니다."
  5748. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5749. msgid ""
  5750. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5751. msgstr ""
  5752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5753. msgid ""
  5754. "This list gives an overview over currently running system processes and "
  5755. "their status."
  5756. msgstr ""
  5757. "이 목록은 현재 실행중인 시스템 프로세스와 해당 상태에 대한 개요를 보여줍니다."
  5758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5760. msgid ""
  5761. "This option cannot be used because the ca-bundle package is not installed."
  5762. msgstr ""
  5763. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5764. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5765. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5766. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5767. msgid "This section contains no values yet"
  5768. msgstr "이 항목에 입력된 값이 없습니다"
  5769. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5770. msgid "Time Synchronization"
  5771. msgstr "시간 동기화"
  5772. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5773. msgid "Time in milliseconds"
  5774. msgstr ""
  5775. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5776. msgid "Time in seconds to spend in listening and learning states"
  5777. msgstr ""
  5778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5779. msgid "Time interval for rekeying GTK"
  5780. msgstr ""
  5781. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5782. msgid "Timed-out"
  5783. msgstr "시간 초과"
  5784. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5785. msgid "Timeout in seconds"
  5786. msgstr ""
  5787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5788. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5789. msgstr ""
  5790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5791. msgid "Timeout in seconds until topology updates on link loss"
  5792. msgstr ""
  5793. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5794. msgid "Timezone"
  5795. msgstr "시간대"
  5796. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5797. msgid "To login…"
  5798. msgstr ""
  5799. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5800. msgid ""
  5801. "To restore configuration files, you can upload a previously generated backup "
  5802. "archive here. To reset the firmware to its initial state, click \"Perform "
  5803. "reset\" (only possible with squashfs images)."
  5804. msgstr ""
  5805. "설정 파일을 복구하고자 한다면 이전에 백업하신 아카이브 파일을 여기로 업로드"
  5806. "할 수 있습니다. 펌웨어의 초기 설정 초기화를 원하시다면, \"초기화 하기\" 를 클"
  5807. "릭하세요. (squashfs 이미지들만 가능)."
  5808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5809. msgid "Tone"
  5810. msgstr ""
  5811. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5812. msgid "Total Available"
  5813. msgstr "총 이용 가능한 양"
  5814. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5817. msgid "Traceroute"
  5818. msgstr ""
  5819. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5820. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5821. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5822. msgid "Traffic"
  5823. msgstr "트래픽"
  5824. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5825. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5826. msgid "Traffic Class"
  5827. msgstr ""
  5828. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5829. msgid "Transfer"
  5830. msgstr "전송량"
  5831. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5832. msgid "Transmit"
  5833. msgstr ""
  5834. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5835. msgid "Transmit Hash Policy"
  5836. msgstr ""
  5837. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5838. msgid "Trigger"
  5839. msgstr "트리거"
  5840. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5841. msgid "Trigger Mode"
  5842. msgstr "트리거 모드"
  5843. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5844. msgid "Tunnel ID"
  5845. msgstr ""
  5846. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5847. #: modules/luci-compat/luasrc/model/network.lua:1431
  5848. msgid "Tunnel Interface"
  5849. msgstr ""
  5850. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5851. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5852. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5853. msgid "Tunnel Link"
  5854. msgstr ""
  5855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5856. msgid "Tunnel device"
  5857. msgstr ""
  5858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5859. msgid "Tx-Power"
  5860. msgstr ""
  5861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5864. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5865. msgid "Type"
  5866. msgstr "유형"
  5867. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5868. msgid "UDP:"
  5869. msgstr ""
  5870. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5871. msgid "UMTS only"
  5872. msgstr ""
  5873. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5874. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5875. msgid "UMTS/GPRS/EV-DO"
  5876. msgstr ""
  5877. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5878. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5879. msgid "UUID"
  5880. msgstr ""
  5881. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5882. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5883. #: modules/luci-compat/luasrc/model/network.lua:34
  5884. #: modules/luci-compat/luasrc/model/network.lua:35
  5885. msgid "Unable to determine device name"
  5886. msgstr ""
  5887. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5888. #: modules/luci-compat/luasrc/model/network.lua:36
  5889. msgid "Unable to determine external IP address"
  5890. msgstr ""
  5891. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5892. #: modules/luci-compat/luasrc/model/network.lua:37
  5893. msgid "Unable to determine upstream interface"
  5894. msgstr ""
  5895. #: modules/luci-base/luasrc/view/error404.htm:11
  5896. msgid "Unable to dispatch"
  5897. msgstr ""
  5898. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5899. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5900. msgid "Unable to load log data:"
  5901. msgstr ""
  5902. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5903. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5904. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5905. msgid "Unable to obtain client ID"
  5906. msgstr ""
  5907. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5908. msgid "Unable to obtain mount information"
  5909. msgstr ""
  5910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5911. msgid "Unable to reset ip6tables counters: %s"
  5912. msgstr "ip6tables의 집계를 초기화 할 수 없습니다: %s"
  5913. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5914. msgid "Unable to reset iptables counters: %s"
  5915. msgstr "iptables의 집계를 초기화 할 수 없습니다: %s"
  5916. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5917. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5918. msgid "Unable to resolve AFTR host name"
  5919. msgstr ""
  5920. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5921. #: modules/luci-compat/luasrc/model/network.lua:38
  5922. msgid "Unable to resolve peer host name"
  5923. msgstr ""
  5924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5925. msgid "Unable to restart firewall: %s"
  5926. msgstr ""
  5927. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5928. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5929. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5930. msgid "Unable to save contents: %s"
  5931. msgstr ""
  5932. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5933. msgid "Unavailable Seconds (UAS)"
  5934. msgstr ""
  5935. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5936. msgid "Unexpected reply data format"
  5937. msgstr ""
  5938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5939. msgid ""
  5940. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5941. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5942. "analogous to IPv4 private network addressing. This prefix is randomly "
  5943. "generated at first install."
  5944. msgstr ""
  5945. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5946. #: modules/luci-compat/luasrc/model/network.lua:971
  5947. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5948. msgid "Unknown"
  5949. msgstr "알수없음"
  5950. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5951. msgid "Unknown and unsupported connection method."
  5952. msgstr ""
  5953. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5954. #: modules/luci-compat/luasrc/model/network.lua:1138
  5955. msgid "Unknown error (%s)"
  5956. msgstr ""
  5957. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5958. msgid "Unknown error code"
  5959. msgstr ""
  5960. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5961. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5962. #: modules/luci-compat/luasrc/model/network.lua:965
  5963. msgid "Unmanaged"
  5964. msgstr ""
  5965. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5966. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5967. msgid "Unmount"
  5968. msgstr ""
  5969. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5970. msgid "Unnamed key"
  5971. msgstr ""
  5972. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5973. msgid "Unsaved Changes"
  5974. msgstr "적용 안된 변경 사항"
  5975. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5976. msgid "Unspecified error"
  5977. msgstr "명시되지 않은 오류"
  5978. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5979. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5980. msgid "Unsupported MAP type"
  5981. msgstr ""
  5982. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5983. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5984. msgid "Unsupported modem"
  5985. msgstr ""
  5986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5987. msgid "Unsupported protocol type."
  5988. msgstr ""
  5989. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  5990. msgid "Up"
  5991. msgstr ""
  5992. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  5993. msgid "Up Delay"
  5994. msgstr ""
  5995. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  5996. msgid "Upload"
  5997. msgstr ""
  5998. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  5999. msgid ""
  6000. "Upload a sysupgrade-compatible image here to replace the running firmware."
  6001. msgstr ""
  6002. "현재 실행 중인 펌웨어를 교체하려면 여기에서 sysupgrade 와 호환되는 이미지를 "
  6003. "업로드하세요."
  6004. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  6005. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  6006. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  6007. msgid "Upload archive..."
  6008. msgstr "아카이브 업로드..."
  6009. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  6010. msgid "Upload file"
  6011. msgstr ""
  6012. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  6013. msgid "Upload file…"
  6014. msgstr ""
  6015. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  6016. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  6017. msgid "Upload request failed: %s"
  6018. msgstr ""
  6019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  6020. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  6021. msgid "Uploading file…"
  6022. msgstr ""
  6023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  6024. msgid ""
  6025. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  6026. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  6027. "restarted to apply the updated configuration."
  6028. msgstr ""
  6029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  6030. msgid ""
  6031. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  6032. "network will be restarted to apply the updated configuration."
  6033. msgstr ""
  6034. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  6035. msgid ""
  6036. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  6037. "will be restarted to apply the updated configuration."
  6038. msgstr ""
  6039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6040. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  6041. msgid "Uptime"
  6042. msgstr "가동 시간"
  6043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  6044. msgid "Use <code>/etc/ethers</code>"
  6045. msgstr "<code>/etc/ethers</code> 사용"
  6046. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  6047. msgid "Use DHCP advertised servers"
  6048. msgstr "DHCP advertised된 서버 사용"
  6049. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  6050. msgid "Use DHCP gateway"
  6051. msgstr ""
  6052. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  6053. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  6054. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  6055. msgid "Use DNS servers advertised by peer"
  6056. msgstr "Peer 가 권장한 DNS 서버 사용"
  6057. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  6058. msgid "Use ISO/IEC 3166 alpha2 country codes."
  6059. msgstr ""
  6060. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  6061. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  6062. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  6063. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  6064. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  6065. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  6066. msgid "Use MTU on tunnel interface"
  6067. msgstr ""
  6068. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  6069. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  6070. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  6071. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  6072. msgid "Use TTL on tunnel interface"
  6073. msgstr ""
  6074. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6075. msgid "Use XOR of hardware MAC addresses (layer2)"
  6076. msgstr ""
  6077. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  6078. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  6079. msgstr ""
  6080. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  6081. msgid ""
  6082. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  6083. "(encap2+3)"
  6084. msgstr ""
  6085. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  6086. msgid "Use as external overlay (/overlay)"
  6087. msgstr ""
  6088. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6089. msgid "Use as root filesystem (/)"
  6090. msgstr ""
  6091. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6092. msgid "Use broadcast flag"
  6093. msgstr "Broadcast flag 사용"
  6094. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  6095. msgid "Use builtin IPv6-management"
  6096. msgstr "자체 내장 IPv6-관리 기능 사용"
  6097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  6098. msgid "Use custom DNS servers"
  6099. msgstr "임의의 DNS 서버 사용"
  6100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  6101. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6102. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6103. msgid "Use default gateway"
  6104. msgstr "Default gateway 사용"
  6105. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  6106. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6107. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6108. msgid "Use gateway metric"
  6109. msgstr "Gateway metric 사용"
  6110. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6111. msgid "Use legacy MAP"
  6112. msgstr ""
  6113. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6114. msgid ""
  6115. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6116. "instead of RFC7597"
  6117. msgstr ""
  6118. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6119. msgid "Use routing table"
  6120. msgstr "Routing table 사용"
  6121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6122. msgid "Use system certificates"
  6123. msgstr ""
  6124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6125. msgid "Use system certificates for inner-tunnel"
  6126. msgstr ""
  6127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6128. msgid ""
  6129. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6130. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6131. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6132. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6133. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6134. msgstr ""
  6135. "새로운 항목을 추가하기 위해서는 <em>추가</em> 버튼을 사용하세요. <em>MAC-주소"
  6136. "</em>는 host 를 나타내며, <em>IPv4-주소</em>는 사용할 고정 주소를 나타내고, "
  6137. "요청하는 host 에 대해 <em>hostname</em> 이 symbolic name 으로 부여됩니다. 선"
  6138. "택 사항인 <em>임대 시간</em>은 해당 host 에만 해당되는 시각을 설정하는데 사용"
  6139. "될 수 있습니다. 예를 들어 12h, 3d 혹은 infinite 값들이 가능합니다."
  6140. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6141. msgid "Use upper layer protocol information (layer3+4)"
  6142. msgstr ""
  6143. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6144. msgid ""
  6145. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6146. msgstr ""
  6147. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6148. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6149. msgid "Used"
  6150. msgstr ""
  6151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6152. msgid "Used Key Slot"
  6153. msgstr ""
  6154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6155. msgid ""
  6156. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6157. "needed with normal WPA(2)-PSK."
  6158. msgstr ""
  6159. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6160. msgid "User Group"
  6161. msgstr ""
  6162. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6163. msgid "User certificate (PEM encoded)"
  6164. msgstr ""
  6165. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6166. msgid "User key (PEM encoded)"
  6167. msgstr ""
  6168. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6169. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6170. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6171. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6172. msgid "Username"
  6173. msgstr "사용자이름"
  6174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6175. msgid "VC-Mux"
  6176. msgstr ""
  6177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6178. msgid "VDSL"
  6179. msgstr ""
  6180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6181. msgctxt "MACVLAN mode"
  6182. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6183. msgstr ""
  6184. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6186. msgid "VLAN (802.1ad)"
  6187. msgstr ""
  6188. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6189. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6190. msgid "VLAN (802.1q)"
  6191. msgstr ""
  6192. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6193. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6194. msgid "VLAN ID"
  6195. msgstr ""
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6197. msgid "VLANs on %q"
  6198. msgstr ""
  6199. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6200. msgid "VPN"
  6201. msgstr "VPN"
  6202. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6203. msgid "VPN Local address"
  6204. msgstr ""
  6205. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6206. msgid "VPN Local port"
  6207. msgstr ""
  6208. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6209. msgid "VPN Protocol"
  6210. msgstr ""
  6211. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6212. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6213. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6214. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6215. msgid "VPN Server"
  6216. msgstr ""
  6217. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6218. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6219. msgid "VPN Server port"
  6220. msgstr ""
  6221. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6222. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6223. msgid "VPN Server's certificate SHA1 hash"
  6224. msgstr ""
  6225. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6226. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6227. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6228. msgstr ""
  6229. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6230. msgid "VXLAN (RFC7348)"
  6231. msgstr ""
  6232. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6233. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6234. msgid "VXLAN network identifier"
  6235. msgstr ""
  6236. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6237. msgid "VXLANv6 (RFC7348)"
  6238. msgstr ""
  6239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6241. msgid ""
  6242. "Validate server certificate using built-in system CA bundle,<br />requires "
  6243. "the \"ca-bundle\" package"
  6244. msgstr ""
  6245. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6246. msgid "Validation for all slaves"
  6247. msgstr ""
  6248. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6249. msgid "Validation only for active slave"
  6250. msgstr ""
  6251. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6252. msgid "Validation only for backup slaves"
  6253. msgstr ""
  6254. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6255. msgid "Value must not be empty"
  6256. msgstr ""
  6257. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6258. msgid "Vendor"
  6259. msgstr ""
  6260. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6261. msgid "Vendor Class to send when requesting DHCP"
  6262. msgstr "DHCP 요청시 전송할 Vendor Class"
  6263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6264. msgid "Verifying the uploaded image file."
  6265. msgstr ""
  6266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6267. msgid "Very High"
  6268. msgstr ""
  6269. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6270. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6271. msgid "Virtual Ethernet"
  6272. msgstr ""
  6273. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6274. msgid "Virtual dynamic interface"
  6275. msgstr ""
  6276. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6278. msgid "WDS"
  6279. msgstr "WDS"
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6282. msgid "WEP Open System"
  6283. msgstr ""
  6284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6286. msgid "WEP Shared Key"
  6287. msgstr ""
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6289. msgid "WEP passphrase"
  6290. msgstr ""
  6291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6292. msgid "WMM Mode"
  6293. msgstr "WMM Mode"
  6294. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6295. msgid "WPA passphrase"
  6296. msgstr ""
  6297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6298. msgid ""
  6299. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6300. "and ad-hoc mode) to be installed."
  6301. msgstr ""
  6302. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6303. msgid "WPS status"
  6304. msgstr "WPS 상태"
  6305. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6306. msgid "Waiting for device..."
  6307. msgstr ""
  6308. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6309. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6310. msgid "Warning"
  6311. msgstr ""
  6312. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6313. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6314. msgstr ""
  6315. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6316. msgid "Weak"
  6317. msgstr ""
  6318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6319. msgid ""
  6320. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6321. "preference value are considered first when allocating subnets."
  6322. msgstr ""
  6323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6324. msgid ""
  6325. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6326. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6327. "key options."
  6328. msgstr ""
  6329. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6330. msgid ""
  6331. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6332. "802.11a/802.11g rates."
  6333. msgstr ""
  6334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6335. msgid ""
  6336. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6337. "may be significantly reduced."
  6338. msgstr ""
  6339. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6341. msgid "Width"
  6342. msgstr ""
  6343. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6344. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6345. msgid "WireGuard VPN"
  6346. msgstr ""
  6347. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6348. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6349. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6350. msgid "Wireless"
  6351. msgstr "무선"
  6352. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6353. #: modules/luci-compat/luasrc/model/network.lua:1419
  6354. msgid "Wireless Adapter"
  6355. msgstr ""
  6356. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6357. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6358. #: modules/luci-compat/luasrc/model/network.lua:1405
  6359. #: modules/luci-compat/luasrc/model/network.lua:1868
  6360. msgid "Wireless Network"
  6361. msgstr "무선랜 네트워크"
  6362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6363. msgid "Wireless Overview"
  6364. msgstr "무선랜 개요"
  6365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6366. msgid "Wireless Security"
  6367. msgstr "무선랜 보안"
  6368. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6369. msgid "Wireless configuration migration"
  6370. msgstr ""
  6371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6372. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6373. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6374. msgid "Wireless is disabled"
  6375. msgstr "무선이 비활성화되어"
  6376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6377. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6378. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6379. msgid "Wireless is not associated"
  6380. msgstr "무선이 연결되어 있지 않습니다"
  6381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6382. msgid "Wireless network is disabled"
  6383. msgstr "무선 네트워크가 꺼져 있음"
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6385. msgid "Wireless network is enabled"
  6386. msgstr "무선 네트워크가 켜져 있음"
  6387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6388. msgid "Write received DNS requests to syslog"
  6389. msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다"
  6390. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6391. msgid "Write system log to file"
  6392. msgstr "시스템 로그 출력 파일 경로"
  6393. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6394. msgid "XOR policy (balance-xor, 2)"
  6395. msgstr ""
  6396. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6397. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6398. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6399. msgid "Yes"
  6400. msgstr ""
  6401. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6402. msgid "Yes (none, 0)"
  6403. msgstr ""
  6404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6405. msgid ""
  6406. "You appear to be currently connected to the device via the \"%h\" interface. "
  6407. "Do you really want to shut down the interface?"
  6408. msgstr ""
  6409. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6410. msgid ""
  6411. "You can enable or disable installed init scripts here. Changes will applied "
  6412. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6413. "scripts like \"network\", your device might become inaccessible!</strong>"
  6414. msgstr ""
  6415. "이 메뉴에서 설치된 init script 를 활성화/비활성화 할 수 있습니다. 변경 사항"
  6416. "은 장치가 재부팅 될 때 적용되게 됩니다.<br /><strong>경고: 만약 \"network\" "
  6417. "와 같은 중요 init script 를 비활성화 할 경우, 장치에 접속을 못하실 수 있습니"
  6418. "다!</strong>"
  6419. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6420. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6421. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6422. msgid ""
  6423. "You must enable JavaScript in your browser or LuCI will not work properly."
  6424. msgstr ""
  6425. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6426. msgid ""
  6427. "You must select a primary interface which is included in selected slave "
  6428. "interfaces!"
  6429. msgstr ""
  6430. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6431. msgid ""
  6432. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6433. msgstr ""
  6434. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6435. msgid "ZRam Compression Algorithm"
  6436. msgstr ""
  6437. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6438. msgid "ZRam Settings"
  6439. msgstr ""
  6440. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6441. msgid "ZRam Size"
  6442. msgstr ""
  6443. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6444. msgid "any"
  6445. msgstr ""
  6446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6449. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6450. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6451. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6452. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6453. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6454. msgid "auto"
  6455. msgstr ""
  6456. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6458. msgid "automatic"
  6459. msgstr ""
  6460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6461. msgid "baseT"
  6462. msgstr ""
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6464. msgid "bridged"
  6465. msgstr ""
  6466. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6467. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6468. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6469. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6470. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6471. msgid "create"
  6472. msgstr ""
  6473. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6474. msgid "create:"
  6475. msgstr ""
  6476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6477. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6480. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6481. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6482. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6483. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6486. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6487. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6488. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6489. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6490. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6492. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6493. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6494. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6495. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6496. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6497. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6498. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6499. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6500. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6501. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6502. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6503. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6504. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6505. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6509. msgid "dBm"
  6510. msgstr "dBm"
  6511. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6512. msgid "disable"
  6513. msgstr ""
  6514. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6515. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6517. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6520. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6521. msgid "disabled"
  6522. msgstr ""
  6523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6525. msgid "driver default"
  6526. msgstr ""
  6527. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6528. msgid "e.g: --proxy 10.10.10.10"
  6529. msgstr ""
  6530. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6531. msgid "e.g: dump"
  6532. msgstr ""
  6533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6537. msgid "expired"
  6538. msgstr "만료됨"
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6540. msgid ""
  6541. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6542. "abbr>-leases will be stored"
  6543. msgstr ""
  6544. "할당된 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>-lease "
  6545. "정보가 저장되는 파일"
  6546. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6547. msgid "forced"
  6548. msgstr ""
  6549. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6550. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6551. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6552. msgid "forward"
  6553. msgstr ""
  6554. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6556. msgid "full-duplex"
  6557. msgstr ""
  6558. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6560. msgid "half-duplex"
  6561. msgstr ""
  6562. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6563. msgid "hexadecimal encoded value"
  6564. msgstr ""
  6565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6566. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6567. msgid "hidden"
  6568. msgstr ""
  6569. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6572. msgid "hybrid mode"
  6573. msgstr ""
  6574. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6575. msgid "if target is a network"
  6576. msgstr "Target 이 네트워크일 경우"
  6577. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6578. msgid "ignore"
  6579. msgstr ""
  6580. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6581. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6582. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6583. msgid "input"
  6584. msgstr ""
  6585. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6586. msgid "key between 8 and 63 characters"
  6587. msgstr ""
  6588. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6589. msgid "key with either 5 or 13 characters"
  6590. msgstr ""
  6591. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6592. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6593. msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파일"
  6594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6595. msgid "managed config (M)"
  6596. msgstr ""
  6597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6598. msgid "medium security"
  6599. msgstr ""
  6600. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6601. msgid "minutes"
  6602. msgstr ""
  6603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6604. msgid "mobile home agent (H)"
  6605. msgstr ""
  6606. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6607. msgid "netif_carrier_ok()"
  6608. msgstr ""
  6609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6610. msgid "no"
  6611. msgstr ""
  6612. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6614. msgid "no link"
  6615. msgstr "link 없음"
  6616. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6617. msgid "non-empty value"
  6618. msgstr ""
  6619. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6620. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6621. msgid "none"
  6622. msgstr "없음"
  6623. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6624. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6625. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6626. msgid "not present"
  6627. msgstr ""
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6631. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6632. #, fuzzy
  6633. msgid "off"
  6634. msgstr "꺼짐"
  6635. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6636. #, fuzzy
  6637. msgid "on"
  6638. msgstr "켜짐"
  6639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6640. msgid "on available prefix"
  6641. msgstr ""
  6642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6643. msgid "open network"
  6644. msgstr "개방 네트워크"
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6646. msgid "other config (O)"
  6647. msgstr ""
  6648. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6649. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6650. msgid "output"
  6651. msgstr "출력"
  6652. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6653. msgid "positive decimal value"
  6654. msgstr "양수인 10진수 값"
  6655. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6656. msgid "positive integer value"
  6657. msgstr "양수 값"
  6658. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6659. msgid "random"
  6660. msgstr "랜덤"
  6661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6662. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6663. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6664. msgid "relay mode"
  6665. msgstr "릴레이 모드"
  6666. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6667. msgid "routed"
  6668. msgstr "라우트 됨"
  6669. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6670. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6671. msgid "sec"
  6672. msgstr "sec"
  6673. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6674. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6675. msgid "server mode"
  6676. msgstr "서버 모드"
  6677. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6678. msgid "sstpc Log-level"
  6679. msgstr "sstpc 로그 레벨"
  6680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6681. msgid "strong security"
  6682. msgstr "높은 보안성"
  6683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6684. #, fuzzy
  6685. msgid "tagged"
  6686. msgstr "태그 됨"
  6687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6688. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6689. msgstr "time units (TUs / 1.024 ms) [1000-65535]"
  6690. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6691. msgid "unique value"
  6692. msgstr "유니크 값"
  6693. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6696. msgid "unknown"
  6697. msgstr "알 수 없는"
  6698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6701. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6702. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6703. msgid "unlimited"
  6704. msgstr "무제한"
  6705. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6706. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6707. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6708. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6709. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6710. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6711. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6712. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6713. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6714. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6715. msgid "unspecified"
  6716. msgstr "명시되지 않음"
  6717. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6718. msgid "unspecified -or- create:"
  6719. msgstr "unspecified -혹은- create:"
  6720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6721. msgid "untagged"
  6722. msgstr "태그 되지 않음"
  6723. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6724. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6726. msgid "valid IP address"
  6727. msgstr "유효한 IP 주소"
  6728. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6729. msgid "valid IP address or prefix"
  6730. msgstr "유효한 IP 주소 또는 접두사"
  6731. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6732. msgid "valid IPv4 CIDR"
  6733. msgstr "유효한 IPv4 CIDR"
  6734. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6736. msgid "valid IPv4 address"
  6737. msgstr "유효한 IPv4 주소"
  6738. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6739. msgid "valid IPv4 address or network"
  6740. msgstr "유효한 IPv4 주소 또는, 네트워크"
  6741. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6742. #, fuzzy
  6743. msgid "valid IPv4 address:port"
  6744. msgstr "유효한 IPv4 address:port"
  6745. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6746. msgid "valid IPv4 network"
  6747. msgstr "유효한 IPv4 네트워크"
  6748. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6749. msgid "valid IPv4 or IPv6 CIDR"
  6750. msgstr "유효한 IPv4 또는 IPv6 CIDR"
  6751. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6752. msgid "valid IPv4 prefix value (0-32)"
  6753. msgstr "유효한 IPv4 접두사 값 (0-32)"
  6754. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6755. msgid "valid IPv6 CIDR"
  6756. msgstr "유효한 IPv6 CIDR"
  6757. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6759. msgid "valid IPv6 address"
  6760. msgstr "유효한 IPv6 주소"
  6761. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6762. msgid "valid IPv6 address or prefix"
  6763. msgstr "유효한 IPv6 주소 또한, 접두사"
  6764. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6765. #, fuzzy
  6766. msgid "valid IPv6 host id"
  6767. msgstr "유효한 IPv6 호스트 ID"
  6768. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6769. msgid "valid IPv6 network"
  6770. msgstr "유효한 IPv6 네트워크"
  6771. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6772. msgid "valid IPv6 prefix value (0-128)"
  6773. msgstr "유효한 IPv6 접두사 값 (0-128)"
  6774. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6775. msgid "valid MAC address"
  6776. msgstr "유효한 MAC 주소"
  6777. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6778. msgid "valid UCI identifier"
  6779. msgstr "유효한 UCI 식별자"
  6780. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6781. #, fuzzy
  6782. msgid "valid UCI identifier, hostname or IP address range"
  6783. msgstr "유효한 UCI 식별자, 호스트이름 또는 IP 주소"
  6784. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6785. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6786. msgid "valid address:port"
  6787. msgstr "유효한 address:port"
  6788. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6789. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6790. msgid "valid date (YYYY-MM-DD)"
  6791. msgstr "유효한 일자 (YYYY-MM-DD)"
  6792. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6793. msgid "valid decimal value"
  6794. msgstr "유효한 16진수 값"
  6795. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6796. msgid "valid hexadecimal WEP key"
  6797. msgstr "유효한 16진수 WEP 키"
  6798. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6799. msgid "valid hexadecimal WPA key"
  6800. msgstr "유효한 16진수 WPA 키"
  6801. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6802. msgid "valid host:port"
  6803. msgstr "유효한 host:port"
  6804. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6805. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6807. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6809. msgid "valid hostname"
  6810. msgstr "유효한 호스트이름"
  6811. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6812. msgid "valid hostname or IP address"
  6813. msgstr ""
  6814. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6815. msgid "valid integer value"
  6816. msgstr ""
  6817. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6818. msgid "valid network in address/netmask notation"
  6819. msgstr ""
  6820. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6821. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6822. msgstr ""
  6823. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6824. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6825. msgid "valid port or port range (port1-port2)"
  6826. msgstr ""
  6827. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6829. msgid "valid port value"
  6830. msgstr ""
  6831. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6832. msgid "valid time (HH:MM:SS)"
  6833. msgstr ""
  6834. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6835. msgid "value between %d and %d characters"
  6836. msgstr ""
  6837. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6838. msgid "value between %f and %f"
  6839. msgstr ""
  6840. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6841. msgid "value greater or equal to %f"
  6842. msgstr ""
  6843. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6844. msgid "value smaller or equal to %f"
  6845. msgstr ""
  6846. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6847. msgid "value with %d characters"
  6848. msgstr ""
  6849. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6850. msgid "value with at least %d characters"
  6851. msgstr ""
  6852. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6853. msgid "value with at most %d characters"
  6854. msgstr ""
  6855. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6856. msgid "weak security"
  6857. msgstr "보안 취약"
  6858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6859. msgid "yes"
  6860. msgstr ""
  6861. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6862. msgid "« Back"
  6863. msgstr "« 이전"
  6864. #~ msgid "Announced DNS servers"
  6865. #~ msgstr "알려진 DNS 서버"
  6866. #~ msgid "Override MAC address"
  6867. #~ msgstr "MAC 주소 덮어쓰기"
  6868. #, fuzzy
  6869. #~ msgid "stateless"
  6870. #~ msgstr "무상태"
  6871. #, fuzzy
  6872. #~ msgid "stateless + stateful"
  6873. #~ msgstr "무상태성 + 상태성"
  6874. #~ msgid "Bridge interfaces"
  6875. #~ msgstr "Bridge 인터페이스"
  6876. #~ msgid "Creates a bridge over specified interface(s)"
  6877. #~ msgstr "지정한 인터페이스(들)로 구성된 bridge 를 생성합니다"
  6878. #~ msgid ""
  6879. #~ "Select 'Force upgrade' to flash the image even if the image format check "
  6880. #~ "fails. Use only if you are sure that the firmware is correct and meant "
  6881. #~ "for your device!"
  6882. #~ msgstr ""
  6883. #~ "이미지 포맷 확인에 실패해도 이미지를 플래시 하려면 \"강제 업그레이드\"를 "
  6884. #~ "선택하세요. 펌웨어에 문제가 없고 기기에 맞다는 확신이 있을 때만 사용하세"
  6885. #~ "요!"
  6886. #~ msgid "Always announce default router"
  6887. #~ msgstr "항상 기본 라우터 안내"
  6888. #~ msgid "Set VPN as Default Route"
  6889. #~ msgstr "VPN 을 기본 라우트로 설정"
  6890. #~ msgid "Enable/Disable"
  6891. #~ msgstr "활성/비활성"
  6892. #~ msgid "Free"
  6893. #~ msgstr "이용 가능한 양"
  6894. #~ msgid "Waiting for command to complete..."
  6895. #~ msgstr "실행한 명령이 끝나기를 기다리는 중입니다..."
  6896. #~ msgid "Realtime Connections"
  6897. #~ msgstr "실시간 연결수"
  6898. #~ msgid "Realtime Load"
  6899. #~ msgstr "실시간 부하"
  6900. #~ msgid "Realtime Traffic"
  6901. #~ msgstr "실시간 트래픽"
  6902. #~ msgid ""
  6903. #~ "This page gives an overview over currently active network connections."
  6904. #~ msgstr "이 페이지는 현재 active 상태인 네트워크 연결을 보여줍니다."
  6905. #~ msgid "Keep settings"
  6906. #~ msgstr "설정 유지"
  6907. #~ msgid ""
  6908. #~ "Upload a sysupgrade-compatible image here to replace the running "
  6909. #~ "firmware. Check \"Keep settings\" to retain the current configuration "
  6910. #~ "(requires a compatible firmware image)."
  6911. #~ msgstr ""
  6912. #~ "실행중인 firmware 변경을 하고자 한다면 여기에 sysupgrade 호환성이 유지되"
  6913. #~ "는 이미지를 업로드하세요. 현재의 설정을 유지하고자 한다면 \"설정 유지\" "
  6914. #~ "를 체크하세요. (이를 지원하는 firmware 이미지 필요)"
  6915. #~ msgid "Waiting for changes to be applied..."
  6916. #~ msgstr "변경 사항이 적용되기를 기다리는 중입니다..."
  6917. #~ msgid "Specifies the listening port of this <em>Dropbear</em> instance"
  6918. #~ msgstr "<em>Dropbear</em> instance 의 listening 포트를 지정합니다"
  6919. #~ msgid "Switch %q (%s)"
  6920. #~ msgstr "스위치 %q (%s)"
  6921. #~ msgid "VLANs on %q (%s)"
  6922. #~ msgstr "VLAN 설정: %q (%s)"
  6923. #~ msgid "Common Configuration"
  6924. #~ msgstr "공통 설정"
  6925. #~ msgid "Connect"
  6926. #~ msgstr "연결"
  6927. #~ msgid "Edit this interface"
  6928. #~ msgstr "이 인터페이스를 수정합니다"
  6929. #~ msgid "Interface Overview"
  6930. #~ msgstr "인터페이스 개요"
  6931. #~ msgid ""
  6932. #~ "On this page you can configure the network interfaces. You can bridge "
  6933. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  6934. #~ "the names of several network interfaces separated by spaces. You can also "
  6935. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  6936. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  6937. #~ "<samp>eth0.1</samp>)."
  6938. #~ msgstr ""
  6939. #~ "이 페이지에서는 네트워크 인터페이스를 설정할 수 있습니다. \"Bridge 인터페"
  6940. #~ "이스\" 항목을 클릭하고, 공백으로 구분된 네트워크 인터페이스들의 이름을 적"
  6941. #~ "는 방식으로 여러 인터페이스들을 bridge 할 수 있습니다. 또한 <abbr title="
  6942. #~ "\"Virtual Local Area Network\">VLAN</abbr> 표기법인 <samp>INTERFACE."
  6943. #~ "VLANNR</samp> (<abbr title=\"for example\">예</abbr>: <samp>eth0.1</"
  6944. #~ "samp>) 를 사용하실 수 있습니다."
  6945. #~ msgid ""
  6946. #~ "The <em>Device Configuration</em> section covers physical settings of the "
  6947. #~ "radio hardware such as channel, transmit power or antenna selection which "
  6948. #~ "are shared among all defined wireless networks (if the radio hardware is "
  6949. #~ "multi-SSID capable). Per network settings like encryption or operation "
  6950. #~ "mode are grouped in the <em>Interface Configuration</em>."
  6951. #~ msgstr ""
  6952. #~ "<em>장치 설정<em> 섹션은 channel, transmit power 혹은 antenna 선택과 같은 "
  6953. #~ "물리적인 설정 내용을 다룹니다. 이 설정은 (만약 radio 하드웨어가 multi-"
  6954. #~ "SSID 지원이 가능하다면) 정의된 모든 무선 네트워크에 공통적으로 적용됩니"
  6955. #~ "다. 암호화 혹은 operation mode 와 같은 각 네트워크 설정들은 <em>인터페이"
  6956. #~ "스 설정</em>에서 다루어집니다."
  6957. #~ msgid "Uploaded File"
  6958. #~ msgstr "Uploaded File"
  6959. #~ msgid "Wireless is restarting..."
  6960. #~ msgstr "무선랜이 재시작중입니다..."
  6961. #~ msgid "Back"
  6962. #~ msgstr "뒤로"
  6963. #~ msgid "The following changes have been reverted"
  6964. #~ msgstr "다음의 변경 사항들이 취소되었습니다"
  6965. #~ msgid "Theme"
  6966. #~ msgstr "디자인"
  6967. #~ msgid "Time Synchronization is not configured yet."
  6968. #~ msgstr "시간 동기화가 아직 설정되지 않았습니다."
  6969. #~ msgid ""
  6970. #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key "
  6971. #~ "authentication."
  6972. #~ msgstr ""
  6973. #~ "아래에 SSH public-key 인증을 위한 공개 SSH-Key 들 (한 줄당 한개) 를 입력"
  6974. #~ "할 수 있습니다."
  6975. #~ msgid "Available packages"
  6976. #~ msgstr "이용 가능한 패키지"
  6977. #~ msgid ""
  6978. #~ "Build/distribution specific feed definitions. This file will NOT be "
  6979. #~ "preserved in any sysupgrade."
  6980. #~ msgstr ""
  6981. #~ "Build/distribution 지정 feed 목록입니다. 이 파일의 내용은 sysupgrade 시 "
  6982. #~ "초기화됩니다."
  6983. #~ msgid ""
  6984. #~ "Custom feed definitions, e.g. private feeds. This file can be preserved "
  6985. #~ "in a sysupgrade."
  6986. #~ msgstr ""
  6987. #~ "개인이 운영하는 feed 같은 정보를 입력할 수 있는 custom feed 목록입니다. "
  6988. #~ "이 파일은 sysupgrade 시 입력된 정보가 유지됩니다."
  6989. #~ msgid "Custom feeds"
  6990. #~ msgstr "Custom feed 들"
  6991. #~ msgid "Distribution feeds"
  6992. #~ msgstr "Distribution feed 들"
  6993. #~ msgid "Download and install package"
  6994. #~ msgstr "패키지 다운로드 후 설치"
  6995. #~ msgid "Filter"
  6996. #~ msgstr "필터"
  6997. #~ msgid "Find package"
  6998. #~ msgstr "패키지 찾기"
  6999. #~ msgid "Free space"
  7000. #~ msgstr "여유 공간"
  7001. #~ msgid "General options for opkg"
  7002. #~ msgstr "opkg 명령의 기본 옵션들"
  7003. #~ msgid "Install"
  7004. #~ msgstr "설치"
  7005. #~ msgid "Installed packages"
  7006. #~ msgstr "설치된 패키지"
  7007. #~ msgid "OPKG-Configuration"
  7008. #~ msgstr "OPKG-설정"
  7009. #~ msgid "Package name"
  7010. #~ msgstr "패키지 이름"
  7011. #~ msgid "Size (.ipk)"
  7012. #~ msgstr "크기 (.ipk)"
  7013. #~ msgid "Software"
  7014. #~ msgstr "소프트웨어"
  7015. #~ msgid "Version"
  7016. #~ msgstr "버전"
  7017. #~ msgid "IPv4 and IPv6"
  7018. #~ msgstr "IPv4 와 IPv6"
  7019. #~ msgid "No chains in this table"
  7020. #~ msgstr "이 table 에는 정의된 chain 이 없음"
  7021. #~ msgid "Activate this network"
  7022. #~ msgstr "이 네트워를 활성화합니다"
  7023. #~ msgid "Reconnecting interface"
  7024. #~ msgstr "인터페이스 재연결중입니다"
  7025. #~ msgid "Shutdown this network"
  7026. #~ msgstr "이 네트워크를 shutdown 합니다"
  7027. #~ msgid "Wireless restarted"
  7028. #~ msgstr "무선랜이 재시작되었습니다"
  7029. #~ msgid "Wireless shut down"
  7030. #~ msgstr "무선랜이 shutdown 되었습니다"
  7031. #~ msgid "DHCP Leases"
  7032. #~ msgstr "DHCP 임대 정보"
  7033. #~ msgid "DHCPv6 Leases"
  7034. #~ msgstr "DHCPv6 임대 정보"
  7035. #~ msgid ""
  7036. #~ "Really shut down network? You might lose access to this device if you are "
  7037. #~ "connected via this interface."
  7038. #~ msgstr ""
  7039. #~ "정말로 네트워크를 shutdown 하시겠습니까?\\n이 인터페이스를 통해 연결하였다"
  7040. #~ "면 접속이 끊어질 수 있습니다."
  7041. #~ msgid "Sort"
  7042. #~ msgstr "순서"
  7043. #~ msgid "IPv4 WAN Status"
  7044. #~ msgstr "IPv4 WAN 상태"
  7045. #~ msgid "IPv6 WAN Status"
  7046. #~ msgstr "IPv6 WAN 상태"
  7047. #~ msgid "Apply"
  7048. #~ msgstr "적용"
  7049. #~ msgid "Save &#38; Apply"
  7050. #~ msgstr "저장 &#38; 적용"
  7051. #~ msgid "Leasetime"
  7052. #~ msgstr "임대 시간"