base.po 346 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: LuCI\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2009-06-10 03:40+0200\n"
  6. "PO-Revision-Date: 2021-05-07 11:32+0000\n"
  7. "Last-Translator: Omar Destefani <omar.destefani@gmail.com>\n"
  8. "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/luci/it/"
  9. ">\n"
  10. "Language: it\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;\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 campo/i non valido/i"
  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 non è taggato in VLAN multiple!"
  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 "(finestra di %d minuti, intervallo di %d secondi)"
  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 "(vuoto)"
  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 "(nessuna interfaccia collegata)"
  48. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:48
  49. msgid "-- Additional Field --"
  50. msgstr "-- Campo Aggiuntivo --"
  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 "-- Scegli --"
  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 "-- personalizzato --"
  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 "-- corrispondenza per etichetta --"
  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 "-- corrispondenza per 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 "-- seleziona --"
  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 ""
  87. "0 = non usare la soglia RSSI, 1 = non modificare l'impostazione predefinita "
  88. "del driver"
  89. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56
  90. msgctxt "sstp log level value"
  91. msgid "1"
  92. msgstr "1"
  93. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:233
  94. msgid "1 Minute Load:"
  95. msgstr "Carico in 1 minuto:"
  96. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:253
  97. msgid "15 Minute Load:"
  98. msgstr "Carico in 15 minuti:"
  99. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57
  100. msgctxt "sstp log level value"
  101. msgid "2"
  102. msgstr "2"
  103. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58
  104. msgctxt "sstp log level value"
  105. msgid "3"
  106. msgstr "3"
  107. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:59
  108. msgctxt "sstp log level value"
  109. msgid "4"
  110. msgstr "4"
  111. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  112. msgid "4-character hexadecimal ID"
  113. msgstr "ID esadecimale di 4 caratteri"
  114. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:18
  115. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:11
  116. msgid "464XLAT (CLAT)"
  117. msgstr "464XLAT (CLAT)"
  118. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:243
  119. msgid "5 Minute Load:"
  120. msgstr "Carico in 5 minuti:"
  121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  122. msgid "6-octet identifier as a hex string - no colons"
  123. msgstr "stringa esadecimale di 6 byte (12 caratteri) - senza separatori"
  124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  125. msgid "802.11r Fast Transition"
  126. msgstr ""
  127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  128. msgid "802.11w Association SA Query maximum timeout"
  129. msgstr ""
  130. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  131. msgid "802.11w Association SA Query retry timeout"
  132. msgstr ""
  133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  134. msgid "802.11w Management Frame Protection"
  135. msgstr ""
  136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690
  137. msgid "802.11w maximum timeout"
  138. msgstr ""
  139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1697
  140. msgid "802.11w retry timeout"
  141. msgstr ""
  142. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1019
  143. msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  144. msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"
  145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326
  146. msgid "<abbr title=\"Domain Name System\">DNS</abbr> query port"
  147. msgstr "Porta di richiesta <abbr title=\"Domain Name System\">DNS</abbr>"
  148. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317
  149. msgid "<abbr title=\"Domain Name System\">DNS</abbr> server port"
  150. msgstr "Porta Server <abbr title=\"Domain Name System\">DNS</abbr>"
  151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260
  152. msgid ""
  153. "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the "
  154. "order of the resolvfile"
  155. msgstr ""
  156. "I server <abbr title=\"Domain Name System\">DNS</abbr> che verranno "
  157. "interrogati nell'ordine del resolvfile"
  158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1008
  159. msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  160. msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:495
  162. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Address"
  163. msgstr "Indirizzo <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  165. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"
  166. msgstr "Gateway <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  168. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  169. msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"
  170. msgstr ""
  171. "Maschera di rete <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>"
  172. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  173. msgid ""
  174. "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network "
  175. "(CIDR)"
  176. msgstr ""
  177. "Indirizzo <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> o rete "
  178. "(CIDR)"
  179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:42
  180. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway"
  181. msgstr "Gateway <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>"
  182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531
  183. msgid "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hex)"
  184. msgstr ""
  185. "Suffisso <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> "
  186. "(esadecimale)"
  187. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58
  188. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"
  189. msgstr "Configurazione <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>"
  190. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:69
  191. msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name"
  192. msgstr "Nome del <abbr title=\"Diodo ad Emissione di Luce\">LED</abbr>"
  193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:431
  194. msgid "<abbr title=\"Media Access Control\">MAC</abbr>-Address"
  195. msgstr "Indirizzo <abbr title=\"Media Access Control\">MAC</abbr>"
  196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:897
  197. msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy"
  198. msgstr ""
  199. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:791
  200. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Flags"
  201. msgstr ""
  202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  203. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Hop Limit"
  204. msgstr ""
  205. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  206. msgid "<abbr title=\"Router Advertisement\">RA</abbr> Lifetime"
  207. msgstr ""
  208. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  209. msgid "<abbr title=\"Router Advertisement\">RA</abbr> MTU"
  210. msgstr ""
  211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763
  212. msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service"
  213. msgstr ""
  214. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525
  215. msgid "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  216. msgstr "<abbr title=\"The DHCP Unique Identifier\">DUID</abbr>"
  217. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:335
  218. msgid ""
  219. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration "
  220. "Protocol\">DHCP</abbr> leases"
  221. msgstr ""
  222. "<abbr title=\"maximal\">Max.</abbr> lease <abbr title=\"Dynamic Host "
  223. "Configuration Protocol\">DHCP</abbr>"
  224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344
  225. msgid ""
  226. "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for "
  227. "Domain Name System\">EDNS0</abbr> packet size"
  228. msgstr ""
  229. "<abbr title=\"maximal\">Max.</abbr> dimensione pacchetti <abbr title="
  230. "\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>"
  231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353
  232. msgid "<abbr title=\"maximal\">Max.</abbr> concurrent queries"
  233. msgstr "Numero <abbr title=\"maximal\">max.</abbr> richieste simultanee"
  234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:29
  235. msgid ""
  236. "<br/>Note: you need to manually restart the cron service if the crontab file "
  237. "was empty before editing."
  238. msgstr ""
  239. "<br/>Nota: devi riavviare manualmente il servizio cron se il file crontab "
  240. "era vuoto prima delle modifiche."
  241. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370
  242. msgid "A configuration for the device \"%s\" already exists"
  243. msgstr ""
  244. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2741
  245. msgid "A directory with the same name already exists."
  246. msgstr "Esiste una directory con lo stesso nome del file."
  247. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2671
  248. msgid "A new login is required since the authentication session expired."
  249. msgstr ""
  250. "È necessario rifare il login in quanto la sessione di autenticazione è "
  251. "scaduta."
  252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1464
  253. msgid "A43C + J43 + A43"
  254. msgstr "A43C + J43 + A43"
  255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1465
  256. msgid "A43C + J43 + A43 + V43"
  257. msgstr "A43C + J43 + A43 + V43"
  258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1477
  259. msgid "ADSL"
  260. msgstr "ADSL"
  261. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1453
  262. msgid "ANSI T1.413"
  263. msgstr "ANSI T1.413"
  264. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95
  265. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94
  266. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87
  267. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68
  268. msgid "APN"
  269. msgstr "APN"
  270. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:200
  271. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:352
  272. msgid "ARP"
  273. msgstr "ARP"
  274. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365
  275. msgid "ARP IP Targets"
  276. msgstr ""
  277. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357
  278. msgid "ARP Interval"
  279. msgstr ""
  280. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381
  281. msgid "ARP Validation"
  282. msgstr ""
  283. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373
  284. msgid "ARP mode to consider a slave as being up"
  285. msgstr ""
  286. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77
  287. msgid "ARP monitoring is not supported for the selected policy!"
  288. msgstr ""
  289. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  290. msgid "ARP retry threshold"
  291. msgstr "Soglia di riprova ARP"
  292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1472
  293. msgid "ATM (Asynchronous Transfer Mode)"
  294. msgstr ""
  295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  296. msgid "ATM Bridges"
  297. msgstr "Ponti ATM"
  298. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1525
  299. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66
  300. msgid "ATM Virtual Channel Identifier (VCI)"
  301. msgstr "Identificatore Canale Virtuale ATM (VCI)"
  302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1526
  303. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70
  304. msgid "ATM Virtual Path Identifier (VPI)"
  305. msgstr "Identificatore Percorso Virtuale ATM (VPI)"
  306. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1493
  307. msgid ""
  308. "ATM bridges expose encapsulated ethernet in AAL5 connections as virtual "
  309. "Linux network interfaces which can be used in conjunction with DHCP or PPP "
  310. "to dial into the provider network."
  311. msgstr ""
  312. "I ponti ATM espongono le connessioni ethernet AAL5 incapsulate come "
  313. "interfacce di rete virtuali Linux che possono essere usate insieme a DHCP o "
  314. "PPP per connettersi alla rete del provider."
  315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532
  316. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:62
  317. msgid "ATM device number"
  318. msgstr "Numero dispositivo ATM"
  319. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36
  320. msgid "ATU-C System Vendor ID"
  321. msgstr ""
  322. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:265
  323. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:544
  324. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:548
  325. msgid "Absent Interface"
  326. msgstr ""
  327. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  328. msgid "Accept local"
  329. msgstr ""
  330. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:647
  331. msgid "Accept packets with local source addresses"
  332. msgstr ""
  333. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  334. msgid "Access Concentrator"
  335. msgstr "Concentratore d'Accesso"
  336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:990
  337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  338. msgid "Access Point"
  339. msgstr "Punto di Accesso (AP)"
  340. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:358
  341. msgid "Actions"
  342. msgstr "Azioni"
  343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:14
  344. msgid "Active"
  345. msgstr "Attivo"
  346. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:203
  347. msgid "Active <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Routes"
  348. msgstr ""
  349. "Instradamenti <abbr title=\"Internet Protocol Version 4\">IPv4</abbr> attivi"
  350. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:209
  351. msgid "Active <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Routes"
  352. msgstr ""
  353. "Instradamenti <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> attivi"
  354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:81
  355. msgid "Active Connections"
  356. msgstr "Connessioni attive"
  357. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:33
  358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:173
  359. msgid "Active DHCP Leases"
  360. msgstr "Lease DHCP attivi"
  361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:52
  362. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:175
  363. msgid "Active DHCPv6 Leases"
  364. msgstr "Lease DHCPv6 attivi"
  365. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203
  366. msgid "Active-Backup policy (active-backup, 1)"
  367. msgstr ""
  368. #: modules/luci-base/htdocs/luci-static/resources/network.js:3864
  369. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:992
  370. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:23
  371. msgid "Ad-Hoc"
  372. msgstr "Ad-Hoc"
  373. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208
  374. msgid "Adaptive load balancing (balance-alb, 6)"
  375. msgstr ""
  376. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207
  377. msgid "Adaptive transmit load balancing (balance-tlb, 5)"
  378. msgstr ""
  379. #: modules/luci-base/htdocs/luci-static/resources/form.js:2192
  380. #: modules/luci-base/htdocs/luci-static/resources/form.js:2195
  381. #: modules/luci-base/htdocs/luci-static/resources/form.js:2209
  382. #: modules/luci-base/htdocs/luci-static/resources/form.js:2210
  383. #: modules/luci-base/htdocs/luci-static/resources/form.js:3195
  384. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:25
  385. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:189
  386. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:197
  387. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:39
  388. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:47
  389. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:54
  390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:884
  391. msgid "Add"
  392. msgstr "Aggiungi"
  393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1497
  394. msgid "Add ATM Bridge"
  395. msgstr ""
  396. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:92
  397. msgid "Add IPv4 address…"
  398. msgstr "Aggiungi indirizzo IPv4…"
  399. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:185
  400. msgid "Add IPv6 address…"
  401. msgstr "Aggiungi indirizzo IPv6…"
  402. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:65
  403. msgid "Add LED action"
  404. msgstr "Aggiungi azione LED"
  405. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:219
  406. msgid "Add VLAN"
  407. msgstr "Aggiungi VLAN"
  408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1287
  409. msgid "Add device configuration"
  410. msgstr ""
  411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1227
  412. msgid "Add device configuration…"
  413. msgstr ""
  414. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:15
  415. msgid "Add instance"
  416. msgstr "Aggiungi istanza"
  417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165
  418. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171
  419. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268
  420. msgid "Add key"
  421. msgstr ""
  422. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:248
  423. msgid "Add local domain suffix to names served from hosts files"
  424. msgstr "Aggiungi il suffisso di dominio locale ai nomi serviti dal file hosts"
  425. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465
  426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114
  427. msgid "Add new interface..."
  428. msgstr "Aggiungi nuova interfaccia..."
  429. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:120
  430. msgid "Add peer"
  431. msgstr ""
  432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  433. msgid "Add to Blacklist"
  434. msgstr "Aggiungi alla Blacklist"
  435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:331
  436. msgid "Add to Whitelist"
  437. msgstr "Aggiungi alla Whitelist"
  438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:200
  439. msgid "Additional Hosts files"
  440. msgstr "File Hosts aggiuntivo"
  441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:255
  442. msgid "Additional servers file"
  443. msgstr "File server addizionali"
  444. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:34
  445. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:35
  446. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:36
  447. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:37
  448. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:38
  449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:39
  450. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:40
  451. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:41
  452. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:42
  453. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:43
  454. msgid "Address"
  455. msgstr "Indirizzo"
  456. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  457. msgid "Address to access local relay bridge"
  458. msgstr "Indirizzo per accedere al bridge locale di trasmissione"
  459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285
  460. msgid "Addresses"
  461. msgstr "Indirizzi"
  462. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:3
  463. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:15
  464. msgid "Administration"
  465. msgstr "Amministrazione"
  466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:164
  467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:478
  468. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633
  469. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523
  470. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:25
  471. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:923
  472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:987
  473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241
  474. msgid "Advanced Settings"
  475. msgstr "Impostazioni Avanzate"
  476. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:337
  477. msgid "Advanced device options"
  478. msgstr ""
  479. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  480. msgid "Ageing time"
  481. msgstr ""
  482. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27
  483. msgid "Aggregate Transmit Power (ACTATP)"
  484. msgstr ""
  485. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258
  486. msgid "Aggregation Selection Logic"
  487. msgstr ""
  488. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261
  489. msgid "Aggregator: All slaves down or has no slaves (stable, 0)"
  490. msgstr ""
  491. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263
  492. msgid ""
  493. "Aggregator: Chosen by the largest number of ports + slave added/removed or "
  494. "state changes (count, 2)"
  495. msgstr ""
  496. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262
  497. msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)"
  498. msgstr ""
  499. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:178
  500. msgid "Alert"
  501. msgstr "Allarme"
  502. #: modules/luci-base/htdocs/luci-static/resources/network.js:2985
  503. #: modules/luci-compat/luasrc/model/network.lua:1417
  504. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:62
  505. msgid "Alias Interface"
  506. msgstr ""
  507. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:146
  508. msgid "Alias of \"%s\""
  509. msgstr ""
  510. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263
  511. msgid "All Servers"
  512. msgstr "Tutti i server"
  513. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:209
  514. msgid ""
  515. "Allocate IP addresses sequentially, starting from the lowest available "
  516. "address"
  517. msgstr ""
  518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:208
  519. msgid "Allocate IP sequentially"
  520. msgstr ""
  521. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  522. msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication"
  523. msgstr ""
  524. "Permetti autenticazione <abbr title=\"Secure Shell\">SSH</abbr> tramite "
  525. "password"
  526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  527. msgid "Allow AP mode to disconnect STAs based on low ACK condition"
  528. msgstr ""
  529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1088
  530. msgid "Allow all except listed"
  531. msgstr "Consenti tutti tranne quelli nell'elenco"
  532. #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3
  533. msgid "Allow full UCI access for legacy applications"
  534. msgstr ""
  535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  536. msgid "Allow legacy 802.11b rates"
  537. msgstr ""
  538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087
  539. msgid "Allow listed only"
  540. msgstr "Consenti solo quelli nell'elenco"
  541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300
  542. msgid "Allow localhost"
  543. msgstr "Permetti localhost"
  544. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:157
  545. msgid "Allow rebooting the device"
  546. msgstr "Permetti di riavviare il dispositivo"
  547. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  548. msgid "Allow remote hosts to connect to local SSH forwarded ports"
  549. msgstr ""
  550. "Permetti agli host remoti di connettersi alle porte SSH locali reindirizzate"
  551. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  552. msgid "Allow root logins with password"
  553. msgstr "Permetti l'accesso a root con password"
  554. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:3
  555. msgid "Allow system feature probing"
  556. msgstr ""
  557. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:31
  558. msgid "Allow the <em>root</em> user to login with password"
  559. msgstr "Abilita l'accesso all'utente <em>root</em> via password"
  560. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301
  561. msgid ""
  562. "Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services"
  563. msgstr ""
  564. "Permetti le risposte upstream nell'intervallo 127.0.0.0/8, ad esempio per i "
  565. "servizi RBL"
  566. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  567. msgid "Allowed IPs"
  568. msgstr "IP permessi"
  569. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:708
  570. msgid "Always"
  571. msgstr ""
  572. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5
  573. msgid "Always off (kernel: none)"
  574. msgstr ""
  575. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:6
  576. msgid "Always on (kernel: default-on)"
  577. msgstr ""
  578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  579. msgid ""
  580. "Always use 40MHz channels even if the secondary channel overlaps. Using this "
  581. "option does not comply with IEEE 802.11n-2009!"
  582. msgstr ""
  583. "Usa sempre canali da 40MHz anche se il canale secondario si sovrappone. "
  584. "L’utilizzo di questa opzione non è conforme all’IEEE 802.11-2009!"
  585. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  586. msgid "Amount of Duplicate Address Detection probes to send"
  587. msgstr ""
  588. #: modules/luci-base/htdocs/luci-static/resources/form.js:603
  589. msgid "An error occurred while saving the form:"
  590. msgstr "Errore durante il salvataggio del form:"
  591. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  592. msgid "An optional, short description for this device"
  593. msgstr ""
  594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1445
  595. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20
  596. msgid "Annex"
  597. msgstr "Annex"
  598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446
  599. msgid "Annex A + L + M (all)"
  600. msgstr ""
  601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1454
  602. msgid "Annex A G.992.1"
  603. msgstr ""
  604. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1455
  605. msgid "Annex A G.992.2"
  606. msgstr ""
  607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1456
  608. msgid "Annex A G.992.3"
  609. msgstr ""
  610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1457
  611. msgid "Annex A G.992.5"
  612. msgstr ""
  613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1447
  614. msgid "Annex B (all)"
  615. msgstr ""
  616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1450
  617. msgid "Annex B G.992.1"
  618. msgstr ""
  619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1451
  620. msgid "Annex B G.992.3"
  621. msgstr ""
  622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1452
  623. msgid "Annex B G.992.5"
  624. msgstr ""
  625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1448
  626. msgid "Annex J (all)"
  627. msgstr ""
  628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458
  629. msgid "Annex L G.992.3 POTS 1"
  630. msgstr ""
  631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1449
  632. msgid "Annex M (all)"
  633. msgstr ""
  634. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1459
  635. msgid "Annex M G.992.3"
  636. msgstr ""
  637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1460
  638. msgid "Annex M G.992.5"
  639. msgstr ""
  640. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:885
  641. msgid "Announce this device as IPv6 DNS server."
  642. msgstr ""
  643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777
  644. msgid ""
  645. "Announce this device as default router if a local IPv6 default route is "
  646. "present."
  647. msgstr ""
  648. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:779
  649. msgid ""
  650. "Announce this device as default router if a public IPv6 prefix is available, "
  651. "regardless of local default route availability."
  652. msgstr ""
  653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:781
  654. msgid ""
  655. "Announce this device as default router regardless of whether a prefix or "
  656. "default route is present."
  657. msgstr ""
  658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:890
  659. msgid "Announced DNS domains"
  660. msgstr ""
  661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:878
  662. msgid "Announced IPv6 DNS servers"
  663. msgstr ""
  664. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1668
  665. msgid "Anonymous Identity"
  666. msgstr ""
  667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  668. msgid "Anonymous Mount"
  669. msgstr ""
  670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  671. msgid "Anonymous Swap"
  672. msgstr ""
  673. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:84
  674. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:174
  675. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  676. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:60
  677. msgid "Any zone"
  678. msgstr "Qualsiasi zona"
  679. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119
  680. msgid "Apply backup?"
  681. msgstr ""
  682. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4299
  683. msgid "Apply request failed with status <code>%h</code>"
  684. msgstr ""
  685. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2182
  686. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4165
  687. msgid "Apply unchecked"
  688. msgstr ""
  689. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4238
  690. msgid "Applying configuration changes… %ds"
  691. msgstr "Applicazione delle modifiche in corso… %ds"
  692. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56
  693. msgid "Architecture"
  694. msgstr "Architettura"
  695. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  696. msgid ""
  697. "Assign a part of given length of every public IPv6-prefix to this interface"
  698. msgstr ""
  699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  700. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  701. msgid ""
  702. "Assign prefix parts using this hexadecimal subprefix ID for this interface."
  703. msgstr ""
  704. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2158
  705. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:362
  706. msgid "Associated Stations"
  707. msgstr "Stazioni associate"
  708. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:145
  709. msgid "Associations"
  710. msgstr ""
  711. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  712. msgid "Attempt to enable configured mount points for attached devices"
  713. msgstr ""
  714. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:110
  715. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:64
  716. msgid "Auth Group"
  717. msgstr ""
  718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607
  719. msgid "Authentication"
  720. msgstr "Autenticazione"
  721. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97
  722. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:71
  723. msgid "Authentication Type"
  724. msgstr "Tipo di autenticazione"
  725. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:172
  726. msgid "Authoritative"
  727. msgstr "Autoritativo"
  728. #: modules/luci-base/luasrc/view/sysauth.htm:17
  729. msgid "Authorization Required"
  730. msgstr "Autorizzazione Richiesta"
  731. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  732. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  733. msgid "Auto Refresh"
  734. msgstr "Aggiornamento Automatico"
  735. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:108
  736. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18
  737. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:24
  738. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:100
  739. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:51
  740. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:96
  741. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:82
  742. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:56
  743. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:69
  744. msgid "Automatic"
  745. msgstr "Automatico"
  746. #: modules/luci-compat/luasrc/model/network/proto_hnet.lua:7
  747. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:7
  748. msgid "Automatic Homenet (HNCP)"
  749. msgstr "Homenet automatico (HNCP)"
  750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  751. msgid "Automatically check filesystem for errors before mounting"
  752. msgstr ""
  753. "Controlla automaticamente la presenza di errori nel filesystem prima di "
  754. "montare"
  755. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  756. msgid "Automatically mount filesystems on hotplug"
  757. msgstr "Monta automaticamente i filesystem in hotplug"
  758. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  759. msgid "Automatically mount swap on hotplug"
  760. msgstr "Monta automaticamente lo swap in hotplug"
  761. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:170
  762. msgid "Automount Filesystem"
  763. msgstr "Automonta Filesystem"
  764. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:166
  765. msgid "Automount Swap"
  766. msgstr "Automonta Swap"
  767. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:193
  768. msgid "Available"
  769. msgstr "Disponibile"
  770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:270
  771. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:280
  772. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:331
  773. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:341
  774. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:351
  775. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:236
  776. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:246
  777. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:256
  778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:265
  779. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:275
  780. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:293
  781. msgid "Average:"
  782. msgstr "Media:"
  783. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1466
  784. msgid "B43 + B43C"
  785. msgstr "B43 + B43C"
  786. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1467
  787. msgid "B43 + B43C + V43"
  788. msgstr "B43 + B43C + V43"
  789. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:48
  790. msgid "BR / DMR / AFTR"
  791. msgstr "BR / DMR / AFTR"
  792. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:158
  793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:182
  794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1735
  795. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:379
  796. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:143
  797. msgid "BSSID"
  798. msgstr "BSSID"
  799. #: modules/luci-compat/luasrc/view/cbi/footer.htm:14
  800. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:48
  801. msgid "Back to Overview"
  802. msgstr "Ritorna alla Panoramica"
  803. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48
  804. msgid "Back to configuration"
  805. msgstr "Torna alla configurazione"
  806. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  807. msgid "Backup"
  808. msgstr "Backup"
  809. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:114
  810. msgid "Backup / Flash Firmware"
  811. msgstr "Backup / Flash Firmware"
  812. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:321
  813. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12
  814. msgid "Backup file list"
  815. msgstr "Elenco dei file di backup"
  816. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:158
  817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:501
  818. msgid "Band"
  819. msgstr ""
  820. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:377
  821. msgid "Base device"
  822. msgstr ""
  823. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:973
  824. msgid "Beacon Interval"
  825. msgstr ""
  826. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:322
  827. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46
  828. msgid ""
  829. "Below is the determined list of files to backup. It consists of changed "
  830. "configuration files marked by opkg, essential base files and the user "
  831. "defined backup patterns."
  832. msgstr ""
  833. "Di seguito è riportato l'elenco dei file di cui eseguire il backup. Esso è "
  834. "composto da file di configurazione modificati contrassegnati da opkg, file "
  835. "di base essenziali e schemi di backup definiti dall'utente."
  836. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:395
  837. msgid ""
  838. "Bind dynamically to interfaces rather than wildcard address (recommended as "
  839. "linux default)"
  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 interface"
  850. msgstr ""
  851. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59
  852. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64
  853. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64
  854. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:69
  855. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:48
  856. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:55
  857. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:57
  858. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:52
  859. msgid "Bind the tunnel to this interface (optional)."
  860. msgstr ""
  861. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  862. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  863. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  864. msgid "Bitrate"
  865. msgstr "Bitrate"
  866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266
  867. msgid "Bogus NX Domain Override"
  868. msgstr "Ignora Dominio Bogus NX"
  869. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199
  870. msgid "Bonding Policy"
  871. msgstr ""
  872. #: modules/luci-base/htdocs/luci-static/resources/network.js:2991
  873. #: modules/luci-compat/luasrc/model/network.lua:1421
  874. msgid "Bridge"
  875. msgstr "Bridge"
  876. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:437
  877. msgctxt "MACVLAN mode"
  878. msgid "Bridge (Support direct communication between MAC VLANs)"
  879. msgstr ""
  880. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:339
  881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:481
  882. msgid "Bridge VLAN filtering"
  883. msgstr ""
  884. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:344
  885. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1368
  886. msgid "Bridge device"
  887. msgstr ""
  888. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:338
  889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:480
  890. msgid "Bridge port specific options"
  891. msgstr ""
  892. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:468
  893. msgid "Bridge ports"
  894. msgstr ""
  895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1533
  896. msgid "Bridge unit number"
  897. msgstr "Numero unità bridge"
  898. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  899. msgid "Bring up empty bridge"
  900. msgstr ""
  901. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:575
  902. msgid "Bring up on boot"
  903. msgstr "Attiva all'avvio"
  904. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504
  905. msgid "Bring up the bridge interface even if no ports are attached"
  906. msgstr ""
  907. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205
  908. msgid "Broadcast policy (broadcast, 3)"
  909. msgstr ""
  910. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2831
  911. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3822
  912. msgid "Browse…"
  913. msgstr ""
  914. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:37
  915. msgid "Buffered"
  916. msgstr "Buffered"
  917. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:144
  918. msgid "CA certificate; if empty it will be saved after the first connection."
  919. msgstr ""
  920. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:7
  921. msgid "CLAT configuration failed"
  922. msgstr ""
  923. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72
  924. msgid "CPU usage (%)"
  925. msgstr "Uso CPU (%)"
  926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:41
  927. msgid "Cached"
  928. msgstr ""
  929. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53
  930. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53
  931. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21
  932. msgid "Call failed"
  933. msgstr ""
  934. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2924
  935. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3831
  936. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:14
  937. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:52
  938. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:188
  939. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1120
  940. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2032
  941. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:128
  942. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:270
  943. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203
  944. msgid "Cancel"
  945. msgstr "Annulla"
  946. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:17
  947. msgid "Category"
  948. msgstr "Categoria"
  949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  950. msgid "Certificate constraint (Domain)"
  951. msgstr ""
  952. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  953. msgid "Certificate constraint (SAN)"
  954. msgstr ""
  955. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  956. msgid "Certificate constraint (Subject)"
  957. msgstr ""
  958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  959. msgid "Certificate constraint (Wildcard)"
  960. msgstr ""
  961. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1585
  962. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  963. msgid ""
  964. "Certificate constraint substring - e.g. /CN=wifi.mycompany.com<br />See "
  965. "`logread -f` during handshake for actual values"
  966. msgstr ""
  967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1591
  968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  969. msgid ""
  970. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  971. "Subject CN (exact match)"
  972. msgstr ""
  973. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1594
  974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  975. msgid ""
  976. "Certificate constraint(s) against DNS SAN values (if available)<br />or "
  977. "Subject CN (suffix match)"
  978. msgstr ""
  979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1588
  980. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  981. msgid ""
  982. "Certificate constraint(s) via Subject Alternate Name values<br />(supported "
  983. "attributes: EMAIL, DNS, URI) - e.g. DNS:wifi.mycompany.com"
  984. msgstr ""
  985. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  986. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  987. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:212
  988. msgid "Chain"
  989. msgstr "Catena"
  990. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  991. msgid "Changes"
  992. msgstr "Modifiche"
  993. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4334
  994. msgid "Changes have been reverted."
  995. msgstr "Le modifiche sono state annullate."
  996. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  997. msgid "Changes the administrator password for accessing the device"
  998. msgstr "Cambia la password di amministratore per accedere al dispositivo"
  999. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:162
  1000. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  1001. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  1002. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:510
  1003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1733
  1004. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:376
  1005. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  1006. msgid "Channel"
  1007. msgstr "Canale"
  1008. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:75
  1009. msgid "Channel Analysis"
  1010. msgstr ""
  1011. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:377
  1012. msgid "Channel Width"
  1013. msgstr ""
  1014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:174
  1015. msgid "Check filesystems before mount"
  1016. msgstr "Controlla i filesystem prima di montare"
  1017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  1018. msgid "Check this option to delete the existing networks from this radio."
  1019. msgstr ""
  1020. "Seleziona questa opzione per cancellare le reti esistenti da questa radio."
  1021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:110
  1022. msgid "Checking archive…"
  1023. msgstr ""
  1024. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:193
  1025. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:195
  1026. msgid "Checking image…"
  1027. msgstr ""
  1028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:397
  1029. msgid "Choose mtdblock"
  1030. msgstr ""
  1031. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1033. msgid ""
  1034. "Choose the firewall zone you want to assign to this interface. Select "
  1035. "<em>unspecified</em> to remove the interface from the associated zone or "
  1036. "fill out the <em>custom</em> field to define a new zone and attach the "
  1037. "interface to it."
  1038. msgstr ""
  1039. "Scegli la zona del firewall che si desidera assegnare a questa interfaccia. "
  1040. "Selezionare <em>non specificato</em> per rimuovere l'interfaccia dalla zona "
  1041. "associata o compilare il campo <em>crea</em> per definire una nuova zona e "
  1042. "collegare l'interfaccia ad esso."
  1043. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  1044. msgid ""
  1045. "Choose the network(s) you want to attach to this wireless interface or fill "
  1046. "out the <em>custom</em> field to define a new network."
  1047. msgstr ""
  1048. "Scegliere la rete o le reti a cui vuoi collegare questa interfaccia wireless "
  1049. "o riempire il campo <em>crea</em> per definire una nuova rete."
  1050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1220
  1051. msgid "Cipher"
  1052. msgstr "Cifra"
  1053. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:91
  1054. msgid "Cisco UDP encapsulation"
  1055. msgstr ""
  1056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:361
  1057. msgid ""
  1058. "Click \"Generate archive\" to download a tar archive of the current "
  1059. "configuration files."
  1060. msgstr ""
  1061. "Premi su \"Genera archivio\" per scaricare un archivio tar dei file di "
  1062. "configurazione attuali."
  1063. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  1064. msgid ""
  1065. "Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS "
  1066. "FEATURE IS FOR PROFESSIONALS! )"
  1067. msgstr ""
  1068. #: modules/luci-base/htdocs/luci-static/resources/network.js:3863
  1069. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:991
  1070. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  1071. msgid "Client"
  1072. msgstr "Client"
  1073. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:37
  1074. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:33
  1075. msgid "Client ID to send when requesting DHCP"
  1076. msgstr "ID Cliente da inviare all'interno della richiesta DHCP"
  1077. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4068
  1078. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167
  1079. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173
  1080. msgid "Close"
  1081. msgstr "Chiudi"
  1082. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  1083. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  1084. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  1085. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  1086. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  1087. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  1088. msgid ""
  1089. "Close inactive connection after the given amount of seconds, use 0 to "
  1090. "persist connection"
  1091. msgstr ""
  1092. "Chiudi le connessioni inattive dopo un determinato numero di secondi, usa 0 "
  1093. "per connessioni persistenti"
  1094. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49
  1095. msgid "Close list..."
  1096. msgstr "Chiudi elenco..."
  1097. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:42
  1098. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:61
  1099. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2156
  1100. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391
  1101. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352
  1102. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355
  1103. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:204
  1104. msgid "Collecting data..."
  1105. msgstr "Raccolta dati..."
  1106. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:71
  1107. msgid "Command"
  1108. msgstr "Comando"
  1109. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:401
  1110. msgid "Command OK"
  1111. msgstr ""
  1112. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:33
  1113. msgid "Command failed"
  1114. msgstr "Comando fallito"
  1115. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:73
  1116. msgid "Comment"
  1117. msgstr "Commento"
  1118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1119. msgid ""
  1120. "Complicates key reinstallation attacks on the client side by disabling "
  1121. "retransmission of EAPOL-Key frames that are used to install keys. This "
  1122. "workaround might cause interoperability issues and reduced robustness of key "
  1123. "negotiation especially in environments with heavy traffic load."
  1124. msgstr ""
  1125. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  1126. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  1127. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  1128. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  1129. msgid "Compute outgoing checksum (optional)."
  1130. msgstr ""
  1131. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4051
  1132. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  1133. msgid "Configuration"
  1134. msgstr "Configurazione"
  1135. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4213
  1136. msgid "Configuration changes applied."
  1137. msgstr "Modifiche alla configurazione applicate."
  1138. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4151
  1139. msgid "Configuration changes have been rolled back!"
  1140. msgstr ""
  1141. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:63
  1142. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:21
  1143. msgid "Configuration failed"
  1144. msgstr ""
  1145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1146. msgid ""
  1147. "Configures data rates based on the coverage cell density. Normal configures "
  1148. "basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to "
  1149. "5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b "
  1150. "rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as "
  1151. "the basic rate. Supported rates lower than the minimum basic rate are not "
  1152. "offered."
  1153. msgstr ""
  1154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775
  1155. msgid ""
  1156. "Configures the default router advertisement in <abbr title=\"Router "
  1157. "Advertisement\">RA</abbr> messages."
  1158. msgstr ""
  1159. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764
  1160. msgid ""
  1161. "Configures the operation mode of the <abbr title=\"Router Advertisement"
  1162. "\">RA</abbr> service on this interface."
  1163. msgstr ""
  1164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:868
  1165. msgid "Configures the operation mode of the DHCPv6 service on this interface."
  1166. msgstr ""
  1167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:898
  1168. msgid ""
  1169. "Configures the operation mode of the NDP proxy service on this interface."
  1170. msgstr ""
  1171. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1273
  1172. msgid "Configure…"
  1173. msgstr ""
  1174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176
  1175. msgid "Confirm disconnect"
  1176. msgstr ""
  1177. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:55
  1178. msgid "Confirmation"
  1179. msgstr "Conferma"
  1180. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  1181. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:100
  1182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  1183. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:51
  1184. msgid "Connected"
  1185. msgstr "Connesso"
  1186. #: modules/luci-base/htdocs/luci-static/resources/network.js:9
  1187. #: modules/luci-compat/luasrc/model/network.lua:27
  1188. msgid "Connection attempt failed"
  1189. msgstr ""
  1190. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40
  1191. msgid "Connection attempt failed."
  1192. msgstr ""
  1193. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:411
  1194. msgid "Connection lost"
  1195. msgstr ""
  1196. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:130
  1197. msgid "Connections"
  1198. msgstr "Connessioni"
  1199. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377
  1200. msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)"
  1201. msgstr ""
  1202. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376
  1203. msgid "Consider the slave up when any ARP IP target is reachable (any, 0)"
  1204. msgstr ""
  1205. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18
  1206. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:338
  1207. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:55
  1208. msgid "Contents have been saved."
  1209. msgstr ""
  1210. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:399
  1211. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:433
  1212. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:799
  1213. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:132
  1214. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:262
  1215. msgid "Continue"
  1216. msgstr ""
  1217. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4187
  1218. msgid ""
  1219. "Could not regain access to the device after applying the configuration "
  1220. "changes. You might need to reconnect if you modified network related "
  1221. "settings such as the IP address or wireless security credentials."
  1222. msgstr ""
  1223. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:189
  1224. msgid "Country"
  1225. msgstr "Nazione"
  1226. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:949
  1227. msgid "Country Code"
  1228. msgstr "Codice Nazione"
  1229. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:952
  1230. msgid "Coverage cell density"
  1231. msgstr ""
  1232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:580
  1233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2022
  1234. msgid "Create / Assign firewall-zone"
  1235. msgstr "Crea / Assegna zona firewall"
  1236. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1149
  1237. msgid "Create interface"
  1238. msgstr ""
  1239. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:177
  1240. msgid "Critical"
  1241. msgstr "Critico"
  1242. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:181
  1243. msgid "Cron Log Level"
  1244. msgstr "Livello di log del Cron"
  1245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:590
  1246. msgid "Current power"
  1247. msgstr ""
  1248. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:569
  1249. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:571
  1250. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:51
  1251. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:53
  1252. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:82
  1253. #: modules/luci-compat/luasrc/view/cbi/network_ifacelist.htm:83
  1254. msgid "Custom Interface"
  1255. msgstr "Interfaccia Personalizzata"
  1256. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  1257. msgid ""
  1258. "Custom files (certificates, scripts) may remain on the system. To prevent "
  1259. "this, perform a factory-reset first."
  1260. msgstr ""
  1261. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:6
  1262. msgid "Custom flash interval (kernel: timer)"
  1263. msgstr ""
  1264. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59
  1265. msgid ""
  1266. "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode"
  1267. "\">LED</abbr>s if possible."
  1268. msgstr ""
  1269. "Personalizza la configurazione dei <abbr title=\"Light Emitting Diode\">LED</"
  1270. "abbr> del sistema se possibile."
  1271. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673
  1272. msgid "DAD transmits"
  1273. msgstr ""
  1274. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1425
  1275. msgid "DAE-Client"
  1276. msgstr ""
  1277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1278. msgid "DAE-Port"
  1279. msgstr ""
  1280. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1435
  1281. msgid "DAE-Secret"
  1282. msgstr ""
  1283. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:483
  1284. msgid "DHCP Server"
  1285. msgstr "Server DHCP"
  1286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1287. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:50
  1288. msgid "DHCP and DNS"
  1289. msgstr "DHCP e DNS"
  1290. #: modules/luci-base/htdocs/luci-static/resources/network.js:2100
  1291. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:16
  1292. #: modules/luci-compat/luasrc/model/network.lua:969
  1293. msgid "DHCP client"
  1294. msgstr "Client DHCP"
  1295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1296. msgid "DHCP-Options"
  1297. msgstr "Opzioni DHCP"
  1298. #: modules/luci-compat/luasrc/model/network/proto_dhcpv6.lua:7
  1299. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:7
  1300. msgid "DHCPv6 client"
  1301. msgstr "Client DHCPv6"
  1302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:867
  1303. msgid "DHCPv6-Service"
  1304. msgstr ""
  1305. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:45
  1306. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:46
  1307. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:47
  1308. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:48
  1309. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:49
  1310. msgid "DNS"
  1311. msgstr "DNS"
  1312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277
  1313. msgid "DNS forwardings"
  1314. msgstr "Inoltri DNS"
  1315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:932
  1316. msgid "DNS search domains"
  1317. msgstr ""
  1318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  1319. msgid "DNS weight"
  1320. msgstr ""
  1321. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:33
  1322. msgid "DNS-Label / FQDN"
  1323. msgstr ""
  1324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:228
  1325. msgid "DNSSEC"
  1326. msgstr ""
  1327. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:232
  1328. msgid "DNSSEC check unsigned"
  1329. msgstr ""
  1330. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:99
  1331. msgid "DPD Idle Timeout"
  1332. msgstr ""
  1333. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:41
  1334. msgid "DS-Lite AFTR address"
  1335. msgstr ""
  1336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1442
  1337. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44
  1338. msgid "DSL"
  1339. msgstr "DSL"
  1340. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14
  1341. msgid "DSL Status"
  1342. msgstr ""
  1343. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1475
  1344. msgid "DSL line mode"
  1345. msgstr ""
  1346. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1347. msgid "DTIM Interval"
  1348. msgstr ""
  1349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57
  1350. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:127
  1351. msgid "DUID"
  1352. msgstr "DUID"
  1353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21
  1354. msgid "Data Rate"
  1355. msgstr ""
  1356. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:172
  1357. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:183
  1358. msgid "Debug"
  1359. msgstr "Debug"
  1360. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  1361. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  1362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1430
  1363. msgid "Default %d"
  1364. msgstr "%d Predefinito"
  1365. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:774
  1366. msgid "Default router"
  1367. msgstr ""
  1368. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11
  1369. msgid "Default state"
  1370. msgstr "Stato predefinito"
  1371. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:707
  1372. msgid ""
  1373. "Define additional DHCP options, for example "
  1374. "\"<code>6,192.168.2.1,192.168.2.2</code>\" which advertises different DNS "
  1375. "servers to clients."
  1376. msgstr ""
  1377. "Definisci opzioni DHCP aggiuntive, per esempio "
  1378. "\"<code>6,192.168.2.1,192.168.2.2</code>\" fornisce differenti server DNS ai "
  1379. "client."
  1380. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1381. msgid ""
  1382. "Defines a mapping of Linux internal packet priority to VLAN header priority "
  1383. "but for outgoing frames"
  1384. msgstr ""
  1385. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  1386. msgid ""
  1387. "Defines a mapping of VLAN header priority to the Linux internal packet "
  1388. "priority on incoming frames"
  1389. msgstr ""
  1390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1391. msgid "Delegate IPv6 prefixes"
  1392. msgstr ""
  1393. #: modules/luci-base/htdocs/luci-static/resources/form.js:2262
  1394. #: modules/luci-base/htdocs/luci-static/resources/form.js:2687
  1395. #: modules/luci-base/htdocs/luci-static/resources/form.js:2691
  1396. #: modules/luci-base/htdocs/luci-static/resources/form.js:3179
  1397. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2893
  1398. #: modules/luci-compat/luasrc/view/cbi/nsection.htm:11
  1399. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:162
  1400. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:16
  1401. msgid "Delete"
  1402. msgstr "Elimina"
  1403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199
  1404. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205
  1405. msgid "Delete key"
  1406. msgstr ""
  1407. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2790
  1408. msgid "Delete request failed: %s"
  1409. msgstr ""
  1410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:904
  1411. msgid "Delete this network"
  1412. msgstr "Rimuovi questa rete"
  1413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1160
  1414. msgid "Delivery Traffic Indication Message Interval"
  1415. msgstr ""
  1416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:340
  1417. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:125
  1418. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  1419. msgid "Description"
  1420. msgstr "Descrizione"
  1421. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2889
  1422. msgid "Deselect"
  1423. msgstr ""
  1424. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:222
  1425. msgid "Design"
  1426. msgstr "Design"
  1427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:715
  1428. msgid "Designated master"
  1429. msgstr ""
  1430. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386
  1431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71
  1432. msgid "Destination"
  1433. msgstr "Destinazione"
  1434. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48
  1435. msgid "Destination port"
  1436. msgstr ""
  1437. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  1438. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  1439. msgid "Destination zone"
  1440. msgstr ""
  1441. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:67
  1442. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  1443. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:43
  1444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  1445. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  1446. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:569
  1447. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1102
  1448. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1384
  1449. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:55
  1450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:12
  1451. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:247
  1452. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  1453. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:356
  1454. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  1455. msgid "Device"
  1456. msgstr "Dispositivo"
  1457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:918
  1458. msgid "Device Configuration"
  1459. msgstr "Configurazione del dispositivo"
  1460. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:132
  1461. msgid "Device is not active"
  1462. msgstr ""
  1463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:233
  1464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:656
  1465. msgid "Device is restarting…"
  1466. msgstr ""
  1467. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:441
  1468. msgid "Device name"
  1469. msgstr ""
  1470. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45
  1471. msgid "Device not managed by ModemManager."
  1472. msgstr ""
  1473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1359
  1474. msgid "Device not present"
  1475. msgstr ""
  1476. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341
  1477. msgid "Device type"
  1478. msgstr ""
  1479. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4186
  1480. msgid "Device unreachable!"
  1481. msgstr "Dispositivo irraggiungibile!"
  1482. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:53
  1483. msgid "Device unreachable! Still waiting for device..."
  1484. msgstr ""
  1485. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1224
  1486. msgid "Devices"
  1487. msgstr "Dispositivi"
  1488. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:88
  1489. msgid "Diagnostics"
  1490. msgstr "Diagnostica"
  1491. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:102
  1492. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:94
  1493. msgid "Dial number"
  1494. msgstr ""
  1495. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2686
  1496. msgid "Directory"
  1497. msgstr "Directory"
  1498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1500. msgid "Disable"
  1501. msgstr "Disabilita"
  1502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  1503. msgid ""
  1504. "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for "
  1505. "this interface."
  1506. msgstr ""
  1507. "Disabilita <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> "
  1508. "per questa interfaccia."
  1509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1511. msgid "Disable DNS lookups"
  1512. msgstr ""
  1513. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  1514. msgid "Disable Encryption"
  1515. msgstr "Disabilita Crittografia"
  1516. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1170
  1517. msgid "Disable Inactivity Polling"
  1518. msgstr ""
  1519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1520. msgid "Disable this network"
  1521. msgstr ""
  1522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:953
  1523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1679
  1524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:13
  1525. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1526. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:109
  1527. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:101
  1528. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:52
  1529. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:97
  1530. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:83
  1531. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:57
  1532. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:70
  1533. msgid "Disabled"
  1534. msgstr "Disabilitato"
  1535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1184
  1536. msgid "Disassociate On Low Acknowledgement"
  1537. msgstr ""
  1538. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294
  1539. msgid "Discard upstream RFC1918 responses"
  1540. msgstr "Scarta risposte RFC1918 upstream"
  1541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198
  1542. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:722
  1543. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:332
  1544. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:347
  1545. msgid "Disconnect"
  1546. msgstr ""
  1547. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:64
  1548. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:22
  1549. msgid "Disconnection attempt failed"
  1550. msgstr ""
  1551. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48
  1552. msgid "Disconnection attempt failed."
  1553. msgstr ""
  1554. #: modules/luci-base/htdocs/luci-static/resources/form.js:606
  1555. #: modules/luci-base/htdocs/luci-static/resources/form.js:2886
  1556. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3330
  1557. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4157
  1558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1758
  1559. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:328
  1560. msgid "Dismiss"
  1561. msgstr "Annulla"
  1562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1563. msgid "Distance Optimization"
  1564. msgstr "Ottimizzazione Distanza"
  1565. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:958
  1566. msgid "Distance to farthest network member in meters."
  1567. msgstr "Distanza dal membro più lontano della rete in metri."
  1568. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:155
  1569. msgid ""
  1570. "Dnsmasq is a combined <abbr title=\"Dynamic Host Configuration Protocol"
  1571. "\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-"
  1572. "Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> "
  1573. "firewalls"
  1574. msgstr ""
  1575. "Dnsmasq è un server <abbr title=\"Dynamic Host Configuration Protocol"
  1576. "\">DHCP</abbr> combinato con un inoltratore <abbr title=\"Domain Name System"
  1577. "\">DNS</abbr> per firewall <abbr title=\"Network Address Translation\">NAT</"
  1578. "abbr>"
  1579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:252
  1580. msgid "Do not cache negative replies, e.g. for not existing domains"
  1581. msgstr "Non memorizzare le repliche negative, es. per domini non esistenti"
  1582. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  1583. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  1584. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  1585. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  1586. msgid "Do not create host route to peer (optional)."
  1587. msgstr ""
  1588. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219
  1589. msgid "Do not forward requests that cannot be answered by public name servers"
  1590. msgstr ""
  1591. "Non inoltrare le richieste che non possono essere risolte dai name server "
  1592. "pubblici"
  1593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:214
  1594. msgid "Do not forward reverse lookups for local networks"
  1595. msgstr "Non inoltrare ricerche inverse per reti locali"
  1596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:870
  1597. msgid "Do not offer DHCPv6 service on this interface."
  1598. msgstr ""
  1599. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158
  1600. msgctxt "VLAN port state"
  1601. msgid "Do not participate"
  1602. msgstr ""
  1603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:900
  1604. msgid ""
  1605. "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> "
  1606. "packets."
  1607. msgstr ""
  1608. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25
  1609. msgid "Do not send a hostname"
  1610. msgstr "Non inviare un hostname"
  1611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:766
  1612. msgid ""
  1613. "Do not send any <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</"
  1614. "abbr> messages on this interface."
  1615. msgstr ""
  1616. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2776
  1617. msgid "Do you really want to delete \"%s\" ?"
  1618. msgstr ""
  1619. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200
  1620. msgid "Do you really want to delete the following SSH key?"
  1621. msgstr ""
  1622. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:94
  1623. msgid "Do you really want to erase all settings?"
  1624. msgstr ""
  1625. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2774
  1626. msgid "Do you really want to recursively delete the directory \"%s\" ?"
  1627. msgstr ""
  1628. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:168
  1629. msgid "Domain required"
  1630. msgstr "Dominio richiesto"
  1631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307
  1632. msgid "Domain whitelist"
  1633. msgstr "Lista domini consentiti"
  1634. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1635. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1636. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1637. msgid "Don't Fragment"
  1638. msgstr "Non Frammentare"
  1639. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:169
  1640. msgid ""
  1641. "Don't forward <abbr title=\"Domain Name System\">DNS</abbr>-Requests without "
  1642. "<abbr title=\"Domain Name System\">DNS</abbr>-Name"
  1643. msgstr ""
  1644. "Non inoltrare richieste <abbr title=\"Domain Name System\">DNS</abbr> senza "
  1645. "nome <abbr title=\"Domain Name System\">DNS</abbr>"
  1646. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  1647. msgid "Down"
  1648. msgstr ""
  1649. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402
  1650. msgid "Down Delay"
  1651. msgstr ""
  1652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:364
  1653. msgid "Download backup"
  1654. msgstr "Download backup"
  1655. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:402
  1656. msgid "Download mtdblock"
  1657. msgstr ""
  1658. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1480
  1659. msgid "Downstream SNR offset"
  1660. msgstr ""
  1661. #: modules/luci-base/htdocs/luci-static/resources/form.js:2645
  1662. msgid "Drag to reorder"
  1663. msgstr ""
  1664. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341
  1665. msgid "Drop Duplicate Frames"
  1666. msgstr ""
  1667. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12
  1668. msgid "Dropbear Instance"
  1669. msgstr "Istanza Dropbear"
  1670. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  1671. msgid ""
  1672. "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access "
  1673. "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server"
  1674. msgstr ""
  1675. "Dropbear offre accesso <abbr title=\"Secure Shell\">SSH</abbr> e integra un "
  1676. "server <abbr title=\"Secure Copy\">SCP</abbr>"
  1677. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14
  1678. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11
  1679. msgid "Dual-Stack Lite (RFC6333)"
  1680. msgstr ""
  1681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1682. msgid "Dynamic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  1683. msgstr ""
  1684. "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> dinamico"
  1685. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1686. msgid "Dynamic tunnel"
  1687. msgstr "Dynamic tunnel"
  1688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:683
  1689. msgid ""
  1690. "Dynamically allocate DHCP addresses for clients. If disabled, only clients "
  1691. "having static leases will be served."
  1692. msgstr ""
  1693. "Fornisci dinamicamente gli indirizzi DHCP ai client. Se disabilitato, solo i "
  1694. "client con un indirizzo statico saranno serviti."
  1695. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:67
  1696. msgid "EA-bits length"
  1697. msgstr ""
  1698. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1563
  1699. msgid "EAP-Method"
  1700. msgstr "Metodo EAP"
  1701. #: modules/luci-base/htdocs/luci-static/resources/form.js:2665
  1702. #: modules/luci-base/htdocs/luci-static/resources/form.js:2668
  1703. #: modules/luci-base/htdocs/luci-static/resources/form.js:3042
  1704. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:154
  1705. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:160
  1706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:495
  1707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:901
  1708. msgid "Edit"
  1709. msgstr "Modifica"
  1710. #: modules/luci-compat/luasrc/view/cbi/error.htm:13
  1711. msgid ""
  1712. "Edit the raw configuration data above to fix any error and hit \"Save\" to "
  1713. "reload the page."
  1714. msgstr ""
  1715. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:899
  1716. msgid "Edit this network"
  1717. msgstr "Modifica questa rete"
  1718. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:850
  1719. msgid "Edit wireless network"
  1720. msgstr "Modifica rete Wireless"
  1721. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:462
  1722. msgid "Egress QoS mapping"
  1723. msgstr ""
  1724. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:166
  1725. msgctxt "VLAN port state"
  1726. msgid "Egress tagged"
  1727. msgstr ""
  1728. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:162
  1729. msgctxt "VLAN port state"
  1730. msgid "Egress untagged"
  1731. msgstr ""
  1732. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:179
  1733. msgid "Emergency"
  1734. msgstr "Emergenza"
  1735. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:896
  1736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:936
  1737. msgid "Enable"
  1738. msgstr "Abilita"
  1739. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1740. msgid ""
  1741. "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> "
  1742. "snooping"
  1743. msgstr ""
  1744. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1745. msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1746. msgstr "Abilita <abbr title=\"Spanning Tree Protocol\">STP</abbr>"
  1747. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:785
  1748. msgid "Enable <abbr title=\"Stateless Address Auto Config\">SLAAC</abbr>"
  1749. msgstr ""
  1750. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174
  1751. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:369
  1752. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375
  1753. msgid "Enable DNS lookups"
  1754. msgstr ""
  1755. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292
  1756. msgid "Enable Dynamic Shuffling Of Flows"
  1757. msgstr ""
  1758. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60
  1759. msgid "Enable HE.net dynamic endpoint update"
  1760. msgstr "Abilita aggiornamento dinamico endpoint HE.net"
  1761. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665
  1762. msgid "Enable IPv6"
  1763. msgstr ""
  1764. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:90
  1765. msgid "Enable IPv6 negotiation"
  1766. msgstr "Abilita negoziazione IPv6"
  1767. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  1768. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  1769. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  1770. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  1771. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  1772. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  1773. msgid "Enable IPv6 negotiation on the PPP link"
  1774. msgstr "Abilita negoziazione IPv6 sul collegamento PPP"
  1775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:192
  1776. msgid "Enable Jumbo Frame passthrough"
  1777. msgstr "Abilita passthrough Jumbo Frame"
  1778. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696
  1779. msgid "Enable MAC address learning"
  1780. msgstr ""
  1781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:242
  1782. msgid "Enable NTP client"
  1783. msgstr "Abilita client NTP"
  1784. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  1785. msgid "Enable Single DES"
  1786. msgstr "Abilita DES Singolo"
  1787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368
  1788. msgid "Enable TFTP server"
  1789. msgstr "Abilita server TFTP"
  1790. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720
  1791. msgid "Enable VLAN filtering"
  1792. msgstr ""
  1793. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184
  1794. msgid "Enable VLAN functionality"
  1795. msgstr "Abilita funzionalità VLAN"
  1796. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1708
  1797. msgid "Enable WPS pushbutton, requires WPA(2)-PSK/WPA3-SAE"
  1798. msgstr "Abilita pulsante WPS, richiede WPA(2)-PSK/WPA3-SAE"
  1799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:955
  1800. msgid ""
  1801. "Enable downstream delegation of IPv6 prefixes available on this interface"
  1802. msgstr ""
  1803. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1704
  1804. msgid "Enable key reinstallation (KRACK) countermeasures"
  1805. msgstr ""
  1806. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:187
  1807. msgid "Enable learning and aging"
  1808. msgstr "Attivare l'apprendimento e l'invecchiamento"
  1809. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:198
  1810. msgid "Enable mirroring of incoming packets"
  1811. msgstr "Abilita mirroring dei pacchetti in ingresso"
  1812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:199
  1813. msgid "Enable mirroring of outgoing packets"
  1814. msgstr "Abilita mirroring dei pacchetti in uscita"
  1815. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:715
  1816. msgid "Enable multicast fast leave"
  1817. msgstr ""
  1818. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:547
  1819. msgid "Enable multicast querier"
  1820. msgstr ""
  1821. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679
  1822. msgid "Enable multicast support"
  1823. msgstr ""
  1824. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  1825. msgid ""
  1826. "Enable packet steering across all CPUs. May help or hinder network speed."
  1827. msgstr ""
  1828. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:622
  1829. msgid "Enable promiscuous mode"
  1830. msgstr ""
  1831. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:71
  1832. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:66
  1833. msgid "Enable rx checksum"
  1834. msgstr ""
  1835. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  1836. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  1837. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  1838. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  1839. msgid "Enable support for multicast traffic (optional)."
  1840. msgstr ""
  1841. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:83
  1842. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:88
  1843. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:67
  1844. msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets."
  1845. msgstr "Abilita l'opzione DF (non Frammentare) dei pacchetti incapsulati."
  1846. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:894
  1847. msgid "Enable this network"
  1848. msgstr ""
  1849. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:75
  1850. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:70
  1851. msgid "Enable tx checksum"
  1852. msgstr ""
  1853. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699
  1854. msgid "Enable unicast flooding"
  1855. msgstr ""
  1856. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243
  1857. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352
  1858. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:66
  1859. msgid "Enabled"
  1860. msgstr "Abilitato"
  1861. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538
  1862. msgid "Enables IGMP snooping on this bridge"
  1863. msgstr ""
  1864. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1503
  1865. msgid ""
  1866. "Enables fast roaming among access points that belong to the same Mobility "
  1867. "Domain"
  1868. msgstr ""
  1869. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518
  1870. msgid "Enables the Spanning Tree Protocol on this bridge"
  1871. msgstr "Abilita il protocollo di Spanning Tree su questo bridge"
  1872. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:59
  1873. msgid "Encapsulation limit"
  1874. msgstr ""
  1875. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1470
  1876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1528
  1877. msgid "Encapsulation mode"
  1878. msgstr "Modalità di incapsulamento"
  1879. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  1880. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  1881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1189
  1882. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1736
  1883. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:144
  1884. msgid "Encryption"
  1885. msgstr "Criptazione"
  1886. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  1887. msgid "Endpoint Host"
  1888. msgstr ""
  1889. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  1890. msgid "Endpoint Port"
  1891. msgstr ""
  1892. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:684
  1893. msgid "Enforce IGMPv1"
  1894. msgstr ""
  1895. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:685
  1896. msgid "Enforce IGMPv2"
  1897. msgstr ""
  1898. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:686
  1899. msgid "Enforce IGMPv3"
  1900. msgstr ""
  1901. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691
  1902. msgid "Enforce MLD version 1"
  1903. msgstr ""
  1904. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692
  1905. msgid "Enforce MLD version 2"
  1906. msgstr ""
  1907. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1908. msgid "Enter custom value"
  1909. msgstr ""
  1910. #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16
  1911. msgid "Enter custom values"
  1912. msgstr ""
  1913. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:97
  1914. msgid "Erasing..."
  1915. msgstr "Cancellazione..."
  1916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:103
  1917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:104
  1918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:105
  1919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:106
  1920. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:107
  1921. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:176
  1922. msgid "Error"
  1923. msgstr "Errore"
  1924. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29
  1925. msgid "Errored seconds (ES)"
  1926. msgstr ""
  1927. #: modules/luci-base/htdocs/luci-static/resources/network.js:3004
  1928. #: modules/luci-compat/luasrc/model/network.lua:1433
  1929. msgid "Ethernet Adapter"
  1930. msgstr "Scheda di Rete"
  1931. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  1932. #: modules/luci-compat/luasrc/model/network.lua:1423
  1933. msgid "Ethernet Switch"
  1934. msgstr "Switch di Rete"
  1935. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270
  1936. msgid "Every 30 seconds (slow, 0)"
  1937. msgstr ""
  1938. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271
  1939. msgid "Every second (fast, 1)"
  1940. msgstr ""
  1941. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:406
  1942. msgid "Exclude interfaces"
  1943. msgstr ""
  1944. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356
  1945. msgid "Existing device"
  1946. msgstr ""
  1947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:247
  1948. msgid "Expand hosts"
  1949. msgstr "Espandi gli hosts"
  1950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:972
  1951. msgid "Expecting a hexadecimal assignment hint"
  1952. msgstr ""
  1953. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1954. msgid "Expecting a valid IPv4 address"
  1955. msgstr ""
  1956. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:18
  1957. msgid "Expecting a valid IPv6 address"
  1958. msgstr ""
  1959. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:28
  1960. msgid "Expecting two priority values separated by a colon"
  1961. msgstr ""
  1962. #: modules/luci-base/htdocs/luci-static/resources/validation.js:64
  1963. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  1964. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  1965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  1966. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  1967. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  1968. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  1969. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  1970. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  1971. msgid "Expecting: %s"
  1972. msgstr ""
  1973. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48
  1974. msgid "Expecting: non-empty value"
  1975. msgstr ""
  1976. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50
  1977. msgid "Expires"
  1978. msgstr "Scadenze"
  1979. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  1980. msgid ""
  1981. "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)."
  1982. msgstr ""
  1983. "Tempo di scadenza degli indirizzi lease, il minimo è di 2 minuti (<code>2m</"
  1984. "code>)."
  1985. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:19
  1986. msgid "External"
  1987. msgstr ""
  1988. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  1989. msgid "External R0 Key Holder List"
  1990. msgstr ""
  1991. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  1992. msgid "External R1 Key Holder List"
  1993. msgstr ""
  1994. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:153
  1995. msgid "External system log server"
  1996. msgstr "Server log di sistema esterno"
  1997. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:158
  1998. msgid "External system log server port"
  1999. msgstr "Porta server log di sistema esterno"
  2000. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:163
  2001. msgid "External system log server protocol"
  2002. msgstr "Protocollo server log di sistema esterno"
  2003. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:79
  2004. msgid "Extra SSH command options"
  2005. msgstr ""
  2006. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  2007. msgid "Extra pppd options"
  2008. msgstr ""
  2009. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  2010. msgid "Extra sstpc options"
  2011. msgstr ""
  2012. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1528
  2013. msgid "FT over DS"
  2014. msgstr ""
  2015. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1529
  2016. msgid "FT over the Air"
  2017. msgstr ""
  2018. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1526
  2019. msgid "FT protocol"
  2020. msgstr "Protocollo FT"
  2021. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:87
  2022. #, fuzzy
  2023. msgid "Failed to change the system password."
  2024. msgstr "Modifica password di sistema fallita."
  2025. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4145
  2026. msgid "Failed to confirm apply within %ds, waiting for rollback…"
  2027. msgstr ""
  2028. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:37
  2029. msgid "Failed to execute \"/etc/init.d/%s %s\" action: %s"
  2030. msgstr ""
  2031. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2694
  2032. msgid "File"
  2033. msgstr "File"
  2034. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641
  2035. msgid "File not accessible"
  2036. msgstr ""
  2037. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832
  2038. msgid "Filename"
  2039. msgstr ""
  2040. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:381
  2041. msgid "Filename of the boot image advertised to clients"
  2042. msgstr "Nome del file dell'immagine di avvio annunciato ai client"
  2043. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191
  2044. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314
  2045. msgid "Filesystem"
  2046. msgstr "Filesystem"
  2047. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:213
  2048. msgid "Filter private"
  2049. msgstr "Filtra privati"
  2050. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:218
  2051. msgid "Filter useless"
  2052. msgstr "Filtra inutili"
  2053. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388
  2054. msgid "Filtering for all slaves, no validation"
  2055. msgstr ""
  2056. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389
  2057. msgid "Filtering for all slaves, validation only for active slave"
  2058. msgstr ""
  2059. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390
  2060. msgid "Filtering for all slaves, validation only for backup slaves"
  2061. msgstr ""
  2062. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65
  2063. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23
  2064. msgid "Finalizing failed"
  2065. msgstr ""
  2066. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2067. msgid ""
  2068. "Find all currently attached filesystems and swap and replace configuration "
  2069. "with defaults based on what was detected"
  2070. msgstr ""
  2071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:877
  2072. msgid "Find and join network"
  2073. msgstr "Trova e aggiungi una rete"
  2074. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:9
  2075. msgid "Finish"
  2076. msgstr "Fine"
  2077. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:15
  2078. msgid "Firewall"
  2079. msgstr "Firewall"
  2080. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  2081. msgid "Firewall Mark"
  2082. msgstr "Marcatore firewall"
  2083. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:482
  2084. msgid "Firewall Settings"
  2085. msgstr "Impostazioni Firewall"
  2086. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:326
  2087. msgid "Firewall Status"
  2088. msgstr "Stato del Firewall"
  2089. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487
  2090. msgid "Firmware File"
  2091. msgstr ""
  2092. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57
  2093. msgid "Firmware Version"
  2094. msgstr "Versione del Firmware"
  2095. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:327
  2096. msgid "Fixed source port for outbound DNS queries"
  2097. msgstr "Porta di origine fissa per le richieste DNS in uscita"
  2098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:281
  2099. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:419
  2100. msgid "Flash image..."
  2101. msgstr "Flash immagine..."
  2102. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:277
  2103. msgid "Flash image?"
  2104. msgstr ""
  2105. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:409
  2106. msgid "Flash new firmware image"
  2107. msgstr "Flash immagine del nuovo firmware"
  2108. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:354
  2109. msgid "Flash operations"
  2110. msgstr "Operazioni flash"
  2111. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:286
  2112. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:288
  2113. msgid "Flashing…"
  2114. msgstr ""
  2115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2116. msgid "Force"
  2117. msgstr "Forza"
  2118. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:970
  2119. msgid "Force 40MHz mode"
  2120. msgstr ""
  2121. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230
  2122. msgid "Force CCMP (AES)"
  2123. msgstr "Forza CCMP (AES)"
  2124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686
  2125. msgid "Force DHCP on this network even if another server is detected."
  2126. msgstr "Forza DHCP su questa rete, anche se viene rilevato un altro server."
  2127. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682
  2128. msgid "Force IGMP version"
  2129. msgstr ""
  2130. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689
  2131. msgid "Force MLD version"
  2132. msgstr ""
  2133. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1231
  2134. msgid "Force TKIP"
  2135. msgstr "Forza TKIP"
  2136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1232
  2137. msgid "Force TKIP and CCMP (AES)"
  2138. msgstr "Forza TKIP e CCMP (AES)"
  2139. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  2140. msgid "Force link"
  2141. msgstr "Forza collegamento"
  2142. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:255
  2143. msgid ""
  2144. "Force upgrade: Select 'Force upgrade' to flash the image even if the image "
  2145. "format check fails. Use only if you are sure that the firmware is correct "
  2146. "and meant for your device!"
  2147. msgstr ""
  2148. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:90
  2149. msgid "Force use of NAT-T"
  2150. msgstr "Forza uso del NAT-T"
  2151. #: modules/luci-base/luasrc/view/csrftoken.htm:8
  2152. msgid "Form token mismatch"
  2153. msgstr ""
  2154. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:902
  2155. msgid ""
  2156. "Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title="
  2157. "\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour "
  2158. "Advertisement, Type 136\">NA</abbr> messages between the designated master "
  2159. "interface and downstream interfaces."
  2160. msgstr ""
  2161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770
  2162. msgid ""
  2163. "Forward <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  2164. "messages received on the designated master interface to downstream "
  2165. "interfaces."
  2166. msgstr ""
  2167. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:164
  2168. msgid "Forward DHCP traffic"
  2169. msgstr "Inoltra il traffico DHCP"
  2170. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:874
  2171. msgid ""
  2172. "Forward DHCPv6 messages between the designated master interface and "
  2173. "downstream interfaces."
  2174. msgstr ""
  2175. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28
  2176. msgid "Forward Error Correction Seconds (FECS)"
  2177. msgstr ""
  2178. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:161
  2179. msgid "Forward broadcast traffic"
  2180. msgstr "Inoltra il traffico broadcast"
  2181. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  2182. msgid "Forward delay"
  2183. msgstr ""
  2184. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:997
  2185. msgid "Forward mesh peer traffic"
  2186. msgstr ""
  2187. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  2188. msgid "Forward multicast packets as unicast packets on this device."
  2189. msgstr ""
  2190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1535
  2191. msgid "Forwarding mode"
  2192. msgstr "Modalità di Inoltro"
  2193. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:962
  2194. msgid "Fragmentation Threshold"
  2195. msgstr "Soglia di frammentazione"
  2196. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  2197. msgid ""
  2198. "Further information about WireGuard interfaces and peers at <a href='http://"
  2199. "wireguard.com'>wireguard.com</a>."
  2200. msgstr ""
  2201. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:128
  2202. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:184
  2203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:164
  2204. msgid "GHz"
  2205. msgstr "GHz"
  2206. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:92
  2207. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:78
  2208. msgid "GPRS only"
  2209. msgstr "Solo GPRS"
  2210. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10
  2211. msgid "GRE tunnel over IPv4"
  2212. msgstr ""
  2213. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10
  2214. msgid "GRE tunnel over IPv6"
  2215. msgstr ""
  2216. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10
  2217. msgid "GRETAP tunnel over IPv4"
  2218. msgstr ""
  2219. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10
  2220. msgid "GRETAP tunnel over IPv6"
  2221. msgstr ""
  2222. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44
  2223. msgid "Gateway"
  2224. msgstr "Gateway"
  2225. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:36
  2226. msgid "Gateway Ports"
  2227. msgstr "Porte Gateway"
  2228. #: modules/luci-base/htdocs/luci-static/resources/network.js:11
  2229. #: modules/luci-compat/luasrc/model/network.lua:29
  2230. msgid "Gateway address is invalid"
  2231. msgstr ""
  2232. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:161
  2233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477
  2234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:24
  2235. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240
  2236. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108
  2237. msgid "General Settings"
  2238. msgstr "Impostazioni Generali"
  2239. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:632
  2240. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1522
  2241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:922
  2242. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:984
  2243. msgid "General Setup"
  2244. msgstr "Configurazione generale"
  2245. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:336
  2246. msgid "General device options"
  2247. msgstr ""
  2248. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:150
  2249. msgid "Generate Config"
  2250. msgstr "Genera Configurazione"
  2251. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:66
  2252. msgid "Generate Key"
  2253. msgstr ""
  2254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  2255. msgid "Generate PMK locally"
  2256. msgstr ""
  2257. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366
  2258. msgid "Generate archive"
  2259. msgstr "Genera archivio"
  2260. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79
  2261. msgid "Given password confirmation did not match, password not changed!"
  2262. msgstr "La conferma della nuova password non corrisponde, modifica annullata!"
  2263. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:146
  2264. msgid "Global Settings"
  2265. msgstr "Impostazioni globali"
  2266. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1430
  2267. msgid "Global network options"
  2268. msgstr "Opzioni di rete globali"
  2269. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:57
  2270. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215
  2271. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62
  2272. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82
  2273. msgid "Go to password configuration..."
  2274. msgstr "Vai alla configurazione della password..."
  2275. #: modules/luci-base/htdocs/luci-static/resources/form.js:2587
  2276. #: modules/luci-base/htdocs/luci-static/resources/form.js:3361
  2277. #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4
  2278. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58
  2279. msgid "Go to relevant configuration page"
  2280. msgstr "Vai alla pagina di configurazione relativa"
  2281. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:37
  2282. msgid "Grant access to DHCP configuration"
  2283. msgstr ""
  2284. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:111
  2285. msgid "Grant access to DHCP status display"
  2286. msgstr "Consentire la visualizzazione dello stato del DHCP"
  2287. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:120
  2288. msgid "Grant access to DSL status display"
  2289. msgstr ""
  2290. #: protocols/luci-proto-openconnect/root/usr/share/rpcd/acl.d/luci-openconnect.json:3
  2291. msgid "Grant access to LuCI OpenConnect procedures"
  2292. msgstr ""
  2293. #: protocols/luci-proto-wireguard/root/usr/share/rpcd/acl.d/luci-wireguard.json:3
  2294. msgid "Grant access to LuCI Wireguard procedures"
  2295. msgstr ""
  2296. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:19
  2297. msgid "Grant access to SSH configuration"
  2298. msgstr ""
  2299. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:12
  2300. msgid "Grant access to basic LuCI procedures"
  2301. msgstr ""
  2302. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:64
  2303. msgid "Grant access to crontab configuration"
  2304. msgstr ""
  2305. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:69
  2306. msgid "Grant access to firewall status"
  2307. msgstr ""
  2308. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:116
  2309. msgid "Grant access to flash operations"
  2310. msgstr ""
  2311. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:95
  2312. msgid "Grant access to main status display"
  2313. msgstr "Consentire la visualizzazione dello stato generale"
  2314. #: protocols/luci-proto-modemmanager/root/usr/share/rpcd/acl.d/luci-proto-modemmanager.json:3
  2315. msgid "Grant access to mmcli"
  2316. msgstr ""
  2317. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:84
  2318. msgid "Grant access to mount configuration"
  2319. msgstr ""
  2320. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:3
  2321. msgid "Grant access to network configuration"
  2322. msgstr ""
  2323. #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:50
  2324. msgid "Grant access to network diagnostic tools"
  2325. msgstr ""
  2326. #: modules/luci-base/root/usr/share/rpcd/acl.d/luci-base.json:36
  2327. msgid "Grant access to network status information"
  2328. msgstr ""
  2329. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:13
  2330. msgid "Grant access to process status"
  2331. msgstr ""
  2332. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:3
  2333. msgid "Grant access to realtime statistics"
  2334. msgstr ""
  2335. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:42
  2336. msgid "Grant access to startup configuration"
  2337. msgstr ""
  2338. #: modules/luci-mod-system/root/usr/share/rpcd/acl.d/luci-mod-system.json:3
  2339. msgid "Grant access to system configuration"
  2340. msgstr ""
  2341. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:30
  2342. msgid "Grant access to system logs"
  2343. msgstr ""
  2344. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:47
  2345. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:60
  2346. msgid "Grant access to the system route status"
  2347. msgstr "Consentire l'accesso allo stato delle route di sistema"
  2348. #: modules/luci-mod-status/root/usr/share/rpcd/acl.d/luci-mod-status.json:129
  2349. msgid "Grant access to wireless status display"
  2350. msgstr "Consentire la visualizzazione dello stato del WIFI"
  2351. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:66
  2352. msgid "Group Password"
  2353. msgstr ""
  2354. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:22
  2355. msgid "Guest"
  2356. msgstr ""
  2357. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  2358. msgid "HE.net password"
  2359. msgstr "Password HE.net"
  2360. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  2361. msgid "HE.net username"
  2362. msgstr ""
  2363. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46
  2364. msgid "Hang Up"
  2365. msgstr "Riaggancia"
  2366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33
  2367. msgid "Header Error Code Errors (HEC)"
  2368. msgstr ""
  2369. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/heartbeat.js:5
  2370. msgid "Heartbeat interval (kernel: heartbeat)"
  2371. msgstr ""
  2372. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2373. msgid "Hello interval"
  2374. msgstr ""
  2375. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:100
  2376. msgid ""
  2377. "Here you can configure the basic aspects of your device like its hostname or "
  2378. "the timezone."
  2379. msgstr ""
  2380. "Qui puoi configurare gli aspetti base del tuo dispositivo come l'hostname o "
  2381. "il fuso orario."
  2382. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  2383. msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2384. msgstr "Nascondi <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"
  2385. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  2386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332
  2387. msgid "Hide empty chains"
  2388. msgstr ""
  2389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:955
  2390. msgid "High"
  2391. msgstr ""
  2392. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:55
  2393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2150
  2394. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:125
  2395. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:230
  2396. msgid "Host"
  2397. msgstr "Host"
  2398. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:22
  2399. msgid "Host entries"
  2400. msgstr "Campi host"
  2401. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  2402. msgid "Host expiry timeout"
  2403. msgstr "Timeout scadenza Host"
  2404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  2405. msgid "Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"
  2406. msgstr "<abbr title=\"Internet Protocol Address\">IP</abbr> dell'host o Rete"
  2407. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  2408. msgid "Host-Uniq tag content"
  2409. msgstr ""
  2410. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:36
  2411. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419
  2412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:27
  2413. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54
  2414. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:86
  2415. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:121
  2416. msgid "Hostname"
  2417. msgstr "Hostname"
  2418. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:22
  2419. msgid "Hostname to send when requesting DHCP"
  2420. msgstr "Nome host da inviare al momento della richiesta DHCP"
  2421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:20
  2422. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:63
  2423. msgid "Hostnames"
  2424. msgstr "Hostname"
  2425. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  2426. msgid "Human-readable counters"
  2427. msgstr ""
  2428. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:24
  2429. msgid "Hybrid"
  2430. msgstr "Ibrido"
  2431. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  2432. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  2433. msgid "ID used to uniquely identify the VXLAN"
  2434. msgstr ""
  2435. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206
  2436. msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)"
  2437. msgstr ""
  2438. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75
  2439. msgid "IKE DH Group"
  2440. msgstr ""
  2441. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  2442. msgid "IP Addresses"
  2443. msgstr "Indirizzi IP"
  2444. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:81
  2445. msgid "IP Protocol"
  2446. msgstr ""
  2447. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115
  2448. msgid "IP Type"
  2449. msgstr ""
  2450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js:31
  2451. msgid "IP address"
  2452. msgstr "Indirizzo IP"
  2453. #: modules/luci-base/htdocs/luci-static/resources/network.js:10
  2454. #: modules/luci-compat/luasrc/model/network.lua:28
  2455. msgid "IP address is invalid"
  2456. msgstr ""
  2457. #: modules/luci-base/htdocs/luci-static/resources/network.js:13
  2458. #: modules/luci-compat/luasrc/model/network.lua:31
  2459. msgid "IP address is missing"
  2460. msgstr ""
  2461. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  2462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  2463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:86
  2464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:87
  2465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:88
  2466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:89
  2467. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:90
  2468. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:83
  2469. msgid "IPv4"
  2470. msgstr "IPv4"
  2471. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:351
  2472. msgid "IPv4 Firewall"
  2473. msgstr "Firewall IPv4"
  2474. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2475. msgid "IPv4 Upstream"
  2476. msgstr ""
  2477. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178
  2478. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:37
  2479. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87
  2480. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:155
  2481. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:162
  2482. msgid "IPv4 address"
  2483. msgstr "Indirizzi IPv4"
  2484. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:29
  2485. msgid "IPv4 assignment length"
  2486. msgstr ""
  2487. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:181
  2488. msgid "IPv4 broadcast"
  2489. msgstr "Broadcast IPv4"
  2490. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:180
  2491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165
  2492. msgid "IPv4 gateway"
  2493. msgstr "Gateway IPv4"
  2494. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:179
  2495. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:168
  2496. msgid "IPv4 netmask"
  2497. msgstr "Maschera di rete IPv4"
  2498. #: modules/luci-base/htdocs/luci-static/resources/validation.js:294
  2499. msgid "IPv4 network in address/netmask notation"
  2500. msgstr ""
  2501. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117
  2502. msgid "IPv4 only"
  2503. msgstr "Solo IPv4"
  2504. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:52
  2505. msgid "IPv4 prefix"
  2506. msgstr "Prefisso IPv4"
  2507. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  2508. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  2509. msgid "IPv4 prefix length"
  2510. msgstr "Lunghezza prefisso IPv4"
  2511. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:84
  2512. msgid "IPv4+IPv6"
  2513. msgstr ""
  2514. #: modules/luci-compat/luasrc/model/network/proto_ipip.lua:9
  2515. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:10
  2516. msgid "IPv4-in-IPv4 (RFC2003)"
  2517. msgstr ""
  2518. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116
  2519. msgid "IPv4/IPv6 (both - defaults to IPv4)"
  2520. msgstr ""
  2521. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  2522. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  2523. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:91
  2524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:92
  2525. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:93
  2526. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:94
  2527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:95
  2528. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:96
  2529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:97
  2530. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:98
  2531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:99
  2532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:100
  2533. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:85
  2534. msgid "IPv6"
  2535. msgstr "IPv6"
  2536. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:354
  2537. msgid "IPv6 Firewall"
  2538. msgstr "Firewall IPv6"
  2539. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669
  2540. msgid "IPv6 MTU"
  2541. msgstr ""
  2542. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:206
  2543. msgid "IPv6 Neighbours"
  2544. msgstr ""
  2545. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:635
  2546. msgid "IPv6 RA Settings"
  2547. msgstr ""
  2548. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634
  2549. msgid "IPv6 Settings"
  2550. msgstr "Impostazioni IPv6"
  2551. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  2552. msgid "IPv6 ULA-Prefix"
  2553. msgstr ""
  2554. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29
  2555. msgid "IPv6 Upstream"
  2556. msgstr ""
  2557. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:183
  2558. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56
  2559. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:126
  2560. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:174
  2561. msgid "IPv6 address"
  2562. msgstr "Indirizzi IPv6"
  2563. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:963
  2564. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:27
  2565. msgid "IPv6 assignment hint"
  2566. msgstr ""
  2567. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:958
  2568. msgid "IPv6 assignment length"
  2569. msgstr ""
  2570. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:188
  2571. msgid "IPv6 gateway"
  2572. msgstr "Gateway IPv6"
  2573. #: modules/luci-base/htdocs/luci-static/resources/validation.js:299
  2574. msgid "IPv6 network in address/netmask notation"
  2575. msgstr ""
  2576. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118
  2577. msgid "IPv6 only"
  2578. msgstr "Solo IPv6"
  2579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  2580. msgid "IPv6 preference"
  2581. msgstr ""
  2582. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  2583. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  2584. msgid "IPv6 prefix"
  2585. msgstr "Prefisso IPv6"
  2586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2587. msgid "IPv6 prefix filter"
  2588. msgstr ""
  2589. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  2590. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  2591. msgid "IPv6 prefix length"
  2592. msgstr "Lunghezza prefisso IPv6"
  2593. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  2594. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  2595. msgid "IPv6 routed prefix"
  2596. msgstr ""
  2597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  2598. msgid "IPv6 suffix"
  2599. msgstr "Suffisso IPv6"
  2600. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2601. msgid "IPv6 support"
  2602. msgstr ""
  2603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:101
  2604. msgid "IPv6-PD"
  2605. msgstr ""
  2606. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:13
  2607. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:10
  2608. msgid "IPv6-in-IPv4 (RFC4213)"
  2609. msgstr "IPv6-in-IPv4 (RFC4213)"
  2610. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:17
  2611. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:9
  2612. msgid "IPv6-over-IPv4 (6rd)"
  2613. msgstr "IPv6-su-IPv4 (6rd)"
  2614. #: modules/luci-compat/luasrc/model/network/proto_6x4.lua:15
  2615. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:9
  2616. msgid "IPv6-over-IPv4 (6to4)"
  2617. msgstr "IPv6-su-IPv4 (6to4)"
  2618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1665
  2619. msgid "Identity"
  2620. msgstr "Identità"
  2621. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:96
  2622. msgid "If checked, 1DES is enabled"
  2623. msgstr "Se selezionata, 1DES è abilitata"
  2624. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51
  2625. msgid "If checked, adds \"+ipv6\" to the pppd options"
  2626. msgstr ""
  2627. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93
  2628. msgid "If checked, encryption is disabled"
  2629. msgstr "Se selezionata, la crittografia è disabilitata"
  2630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:980
  2631. msgid ""
  2632. "If set, downstream subnets are only allocated from the given IPv6 prefix "
  2633. "classes."
  2634. msgstr ""
  2635. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  2636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  2637. msgid ""
  2638. "If specified, mount the device by its UUID instead of a fixed device node"
  2639. msgstr ""
  2640. "Se specificato, monta il dispositivo dal suo UUID invece che dal nodo del "
  2641. "dispositivo fisso"
  2642. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2643. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2644. msgid ""
  2645. "If specified, mount the device by the partition label instead of a fixed "
  2646. "device node"
  2647. msgstr ""
  2648. "Se specificato, montare il dispositivo dall'etichetta della partizione "
  2649. "invece che dal nodo del dispositivo fisso"
  2650. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  2651. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  2652. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:111
  2653. msgid "If unchecked, no default route is configured"
  2654. msgstr "Se deselezionata, non è configurato alcun percorso predefinito"
  2655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  2656. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  2657. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:122
  2658. msgid "If unchecked, the advertised DNS server addresses are ignored"
  2659. msgstr ""
  2660. "Se deselezionata, gli indirizzi ai server DNS annunciati saranno ignorati"
  2661. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  2662. msgid ""
  2663. "If your physical memory is insufficient unused data can be temporarily "
  2664. "swapped to a swap-device resulting in a higher amount of usable <abbr title="
  2665. "\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very "
  2666. "slow process as the swap-device cannot be accessed with the high datarates "
  2667. "of the <abbr title=\"Random Access Memory\">RAM</abbr>."
  2668. msgstr ""
  2669. "Se la tua memoria è insufficiente i dati non usati possono venire "
  2670. "temporaneamente spostati in un'area di swap risultando in un più grande "
  2671. "quantitativo di <abbr title=\"Random Access Memory\">RAM</abbr> usabile. "
  2672. "Sappi che spostare dati in swap è un processo molto lento e che il "
  2673. "dispositivo di swap non può essere acceduto alle alte velocità della <abbr "
  2674. "title=\"Random Access Memory\">RAM</abbr>."
  2675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:197
  2676. msgid "Ignore <code>/etc/hosts</code>"
  2677. msgstr "Ignora <code>/etc/hosts</code>"
  2678. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:666
  2679. msgid "Ignore interface"
  2680. msgstr "Ignora interfaccia"
  2681. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:185
  2682. msgid "Ignore resolve file"
  2683. msgstr "Ignora file resolv"
  2684. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:417
  2685. msgid "Image"
  2686. msgstr "Immagine"
  2687. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:68
  2688. msgid "In"
  2689. msgstr "In"
  2690. #: modules/luci-base/luasrc/view/csrftoken.htm:13
  2691. msgid ""
  2692. "In order to prevent unauthorized access to the system, your request has been "
  2693. "blocked. Click \"Continue »\" below to return to the previous page."
  2694. msgstr ""
  2695. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  2696. msgid "In seconds"
  2697. msgstr ""
  2698. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144
  2699. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128
  2700. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:114
  2701. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:92
  2702. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:101
  2703. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:124
  2704. msgid "Inactivity timeout"
  2705. msgstr "Tempo di inattività"
  2706. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:267
  2707. msgid "Inbound:"
  2708. msgstr "In entrata:"
  2709. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  2710. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  2711. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  2712. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  2713. msgid "Incoming checksum"
  2714. msgstr ""
  2715. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2716. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2717. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2718. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2719. msgid "Incoming key"
  2720. msgstr ""
  2721. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  2722. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  2723. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  2724. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  2725. msgid "Incoming serialization"
  2726. msgstr ""
  2727. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:173
  2728. msgid "Info"
  2729. msgstr "Informazioni"
  2730. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  2731. msgid "Information"
  2732. msgstr "Informazioni"
  2733. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:456
  2734. msgid "Ingress QoS mapping"
  2735. msgstr ""
  2736. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:67
  2737. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:25
  2738. msgid "Initialization failure"
  2739. msgstr ""
  2740. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:77
  2741. msgid "Initscript"
  2742. msgstr "Script di avvio"
  2743. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111
  2744. msgid "Initscripts"
  2745. msgstr "Scripts di avvio"
  2746. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1649
  2747. msgid "Inner certificate constraint (Domain)"
  2748. msgstr ""
  2749. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1646
  2750. msgid "Inner certificate constraint (SAN)"
  2751. msgstr ""
  2752. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1643
  2753. msgid "Inner certificate constraint (Subject)"
  2754. msgstr ""
  2755. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1652
  2756. msgid "Inner certificate constraint (Wildcard)"
  2757. msgstr ""
  2758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:300
  2759. msgid "Install protocol extensions..."
  2760. msgstr "Installa le estensioni del protocollo..."
  2761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  2762. msgid ""
  2763. "Instead of joining any network with a matching SSID, only connect to the "
  2764. "BSSID <code>%h</code>."
  2765. msgstr ""
  2766. #: modules/luci-compat/luasrc/view/cbi/map.htm:43
  2767. msgid "Insufficient permissions to read UCI configuration."
  2768. msgstr ""
  2769. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:27
  2770. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:157
  2771. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:176
  2772. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  2773. msgid "Interface"
  2774. msgstr "Interfaccia"
  2775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:718
  2776. msgid "Interface \"%h\" is already marked as designated master."
  2777. msgstr ""
  2778. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:62
  2779. msgid "Interface %q device auto-migrated from %q to %q."
  2780. msgstr ""
  2781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:980
  2782. msgid "Interface Configuration"
  2783. msgstr "Configurazione Interfaccia"
  2784. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111
  2785. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151
  2786. msgid "Interface has %d pending changes"
  2787. msgstr ""
  2788. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:92
  2789. msgid "Interface is disabled"
  2790. msgstr ""
  2791. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:65
  2792. msgid "Interface is marked for deletion"
  2793. msgstr ""
  2794. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2795. msgid "Interface is reconnecting..."
  2796. msgstr "L'interfaccia si sta ricollegando..."
  2797. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:194
  2798. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:204
  2799. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:210
  2800. msgid "Interface is shutting down..."
  2801. msgstr "L'intefaccia si sta spegnendo..."
  2802. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:285
  2803. msgid "Interface is starting..."
  2804. msgstr ""
  2805. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:288
  2806. msgid "Interface is stopping..."
  2807. msgstr ""
  2808. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  2809. msgid "Interface name"
  2810. msgstr "Nome interfaccia"
  2811. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:123
  2812. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:304
  2813. msgid "Interface not present or not connected yet."
  2814. msgstr "Interfaccia non presente o non ancora connessa."
  2815. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:462
  2816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:491
  2817. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:38
  2818. msgid "Interfaces"
  2819. msgstr "Interfacce"
  2820. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:20
  2821. msgid "Internal"
  2822. msgstr "Interno"
  2823. #: modules/luci-base/luasrc/view/error500.htm:8
  2824. msgid "Internal Server Error"
  2825. msgstr "Errore del Server Interno"
  2826. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283
  2827. msgid "Interval For Sending Learning Packets"
  2828. msgstr ""
  2829. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  2830. msgid ""
  2831. "Interval in centiseconds between multicast general queries. By varying the "
  2832. "value, an administrator may tune the number of IGMP messages on the subnet; "
  2833. "larger values cause IGMP Queries to be sent less often"
  2834. msgstr ""
  2835. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522
  2836. msgid "Interval in seconds for STP hello packets"
  2837. msgstr ""
  2838. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192
  2839. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42
  2840. msgid "Invalid"
  2841. msgstr "Valore immesso non valido"
  2842. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:19
  2843. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:22
  2844. msgid "Invalid Base64 key string"
  2845. msgstr ""
  2846. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:78
  2847. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:83
  2848. msgid "Invalid TOS value, expected 00..FF or inherit"
  2849. msgstr ""
  2850. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:83
  2851. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:88
  2852. msgid "Invalid Traffic Class value, expected 00..FF or inherit"
  2853. msgstr ""
  2854. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:285
  2855. msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed."
  2856. msgstr "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti."
  2857. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:294
  2858. msgid "Invalid VLAN ID given! Only unique IDs are allowed"
  2859. msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti"
  2860. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:403
  2861. msgid "Invalid argument"
  2862. msgstr ""
  2863. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46
  2864. msgid ""
  2865. "Invalid bearer list. Possibly too many bearers created. This protocol "
  2866. "supports one and only one bearer."
  2867. msgstr ""
  2868. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:402
  2869. msgid "Invalid command"
  2870. msgstr ""
  2871. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:101
  2872. msgid "Invalid hexadecimal value"
  2873. msgstr ""
  2874. #: modules/luci-base/luasrc/view/sysauth.htm:12
  2875. msgid "Invalid username and/or password! Please try again."
  2876. msgstr "Username e/o password non validi! Per favore riprova."
  2877. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  2878. msgid "Isolate Clients"
  2879. msgstr "Isola i Client"
  2880. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:231
  2881. msgid ""
  2882. "It appears that you are trying to flash an image that does not fit into the "
  2883. "flash memory, please verify the image file!"
  2884. msgstr ""
  2885. "Sembra tu stia provando a scrivere un'immagine più grande delle dimensioni "
  2886. "della memoria flash, per favore controlla il file!"
  2887. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:64
  2888. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222
  2889. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72
  2890. msgid "JavaScript required!"
  2891. msgstr "JavaScript richiesto!"
  2892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1816
  2893. msgid "Join Network"
  2894. msgstr "Aggiungi Rete"
  2895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1750
  2896. msgid "Join Network: Wireless Scan"
  2897. msgstr "Aggiunta Rete: Rilevamento Wireless"
  2898. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2026
  2899. msgid "Joining Network: %q"
  2900. msgstr ""
  2901. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:223
  2902. msgid "Keep settings and retain the current configuration"
  2903. msgstr ""
  2904. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20
  2905. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:51
  2906. msgid "Kernel Log"
  2907. msgstr "Registro del Kernel"
  2908. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:58
  2909. msgid "Kernel Version"
  2910. msgstr "Versione del Kernel"
  2911. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1441
  2912. msgid "Key"
  2913. msgstr "Chiave"
  2914. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1469
  2915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1470
  2916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1471
  2917. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1472
  2918. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1484
  2919. msgid "Key #%d"
  2920. msgstr "Chiave #%d"
  2921. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92
  2922. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97
  2923. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94
  2924. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99
  2925. msgid "Key for incoming packets (optional)."
  2926. msgstr ""
  2927. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  2928. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  2929. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  2930. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  2931. msgid "Key for outgoing packets (optional)."
  2932. msgstr ""
  2933. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54
  2934. msgid "Kill"
  2935. msgstr "Uccidi"
  2936. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:21
  2937. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:10
  2938. msgid "L2TP"
  2939. msgstr "L2TP"
  2940. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:40
  2941. msgid "L2TP Server"
  2942. msgstr "Server L2TP"
  2943. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267
  2944. msgid "LACPDU Packets"
  2945. msgstr ""
  2946. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  2947. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  2948. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  2949. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  2950. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  2951. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  2952. msgid "LCP echo failure threshold"
  2953. msgstr "Soglia di fallimento echo LCP"
  2954. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  2955. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  2956. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  2957. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  2958. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  2959. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  2960. msgid "LCP echo interval"
  2961. msgstr "Intervallo echo LCP"
  2962. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:101
  2963. msgid "LED Configuration"
  2964. msgstr ""
  2965. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1529
  2966. msgid "LLC"
  2967. msgstr "LLC"
  2968. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:267
  2969. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:376
  2970. msgid "Label"
  2971. msgstr "Etichetta"
  2972. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:211
  2973. msgid "Language"
  2974. msgstr "Lingua"
  2975. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:111
  2976. msgid "Language and Style"
  2977. msgstr "Lingua e Stile"
  2978. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  2979. msgid "Last member interval"
  2980. msgstr ""
  2981. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23
  2982. msgid "Latency"
  2983. msgstr ""
  2984. #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:21
  2985. msgid "Leaf"
  2986. msgstr ""
  2987. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:707
  2988. msgid "Learn"
  2989. msgstr ""
  2990. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  2991. msgid "Learn routes"
  2992. msgstr ""
  2993. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:522
  2994. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679
  2995. msgid "Lease time"
  2996. msgstr "Tempo di lease"
  2997. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39
  2998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:58
  2999. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:89
  3000. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:128
  3001. msgid "Lease time remaining"
  3002. msgstr "Tempo di lease rimanente"
  3003. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:181
  3004. msgid "Leasefile"
  3005. msgstr "File di lease"
  3006. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3007. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:47
  3008. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  3009. msgid "Leave empty to autodetect"
  3010. msgstr "Lascia vuoto per l'autorilevamento"
  3011. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3012. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3013. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3014. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3015. msgid "Leave empty to use the current WAN address"
  3016. msgstr "Lascia vuoto per usare l'indirizzo WAN attuale"
  3017. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:943
  3018. msgid ""
  3019. "Legacy or badly behaving devices may require legacy 802.11b rates to "
  3020. "interoperate. Airtime efficiency may be significantly reduced where these "
  3021. "are used. It is recommended to not allow 802.11b rates where possible."
  3022. msgstr ""
  3023. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4053
  3024. msgid "Legend:"
  3025. msgstr "Legenda:"
  3026. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3027. msgid "Limit"
  3028. msgstr "Limite"
  3029. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389
  3030. msgid "Limit DNS service to subnets interfaces on which we are serving DNS."
  3031. msgstr ""
  3032. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402
  3033. msgid "Limit listening to these interfaces, and loopback."
  3034. msgstr ""
  3035. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24
  3036. msgid "Line Attenuation (LATN)"
  3037. msgstr ""
  3038. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18
  3039. msgid "Line Mode"
  3040. msgstr ""
  3041. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17
  3042. msgid "Line State"
  3043. msgstr ""
  3044. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19
  3045. msgid "Line Uptime"
  3046. msgstr ""
  3047. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123
  3048. msgid "Link Aggregation (Channel Bonding)"
  3049. msgstr ""
  3050. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348
  3051. msgid "Link Monitoring"
  3052. msgstr ""
  3053. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23
  3054. msgid "Link On"
  3055. msgstr "Connessione stabilita"
  3056. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278
  3057. msgid ""
  3058. "List of <abbr title=\"Domain Name System\">DNS</abbr> servers to forward "
  3059. "requests to"
  3060. msgstr ""
  3061. "Elenco di server <abbr title=\"Domain Name System\">DNS</abbr> a cui "
  3062. "inoltrare le richieste"
  3063. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1554
  3064. msgid ""
  3065. "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-"
  3066. "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID "
  3067. "(NAS Identifier) to a destination MAC address when requesting PMK-R1 key "
  3068. "from the R0KH that the STA used during the Initial Mobility Domain "
  3069. "Association."
  3070. msgstr ""
  3071. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1558
  3072. msgid ""
  3073. "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID "
  3074. "as 6 octets with colons,128-bit key as hex string. <br />This list is used "
  3075. "to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the "
  3076. "R0KH. This is also the list of authorized R1KHs in the MD that can request "
  3077. "PMK-R1 keys."
  3078. msgstr ""
  3079. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82
  3080. msgid "List of SSH key files for auth"
  3081. msgstr ""
  3082. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:308
  3083. msgid "List of domains to allow RFC1918 responses for"
  3084. msgstr "Elenco di domini per cui consentire risposte RFC1918"
  3085. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:286
  3086. msgid "List of domains to force to an IP address."
  3087. msgstr ""
  3088. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267
  3089. msgid "List of hosts that supply bogus NX domain results"
  3090. msgstr "Elenco di host che forniscono risultati NX domain fasulli"
  3091. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401
  3092. msgid "Listen Interfaces"
  3093. msgstr ""
  3094. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3095. msgid "Listen Port"
  3096. msgstr "Porta in ascolto"
  3097. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:17
  3098. msgid "Listen only on the given interface or, if unspecified, on all"
  3099. msgstr "Ascolta solo sull'interfaccia data o, se non specificato, su tutte"
  3100. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318
  3101. msgid "Listening port for inbound DNS queries"
  3102. msgstr "Porta di ascolto per le richieste DNS in entrata"
  3103. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:100
  3104. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54
  3105. msgid "Load"
  3106. msgstr "Carico"
  3107. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:61
  3108. msgid "Load Average"
  3109. msgstr "Carico Medio"
  3110. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2959
  3111. msgid "Loading directory contents…"
  3112. msgstr ""
  3113. #: modules/luci-base/htdocs/luci-static/resources/luci.js:1949
  3114. #: modules/luci-base/luasrc/view/view.htm:4
  3115. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12
  3116. msgid "Loading view…"
  3117. msgstr ""
  3118. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:870
  3119. msgid "Local"
  3120. msgstr ""
  3121. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:77
  3122. msgid "Local IP address"
  3123. msgstr ""
  3124. #: modules/luci-base/htdocs/luci-static/resources/network.js:12
  3125. #: modules/luci-compat/luasrc/model/network.lua:30
  3126. msgid "Local IP address is invalid"
  3127. msgstr ""
  3128. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:86
  3129. msgid "Local IP address to assign"
  3130. msgstr ""
  3131. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  3132. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  3133. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  3134. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:40
  3135. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:39
  3136. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:39
  3137. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:151
  3138. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  3139. msgid "Local IPv4 address"
  3140. msgstr "Indirizzo IPv4 locale"
  3141. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:884
  3142. msgid "Local IPv6 DNS server"
  3143. msgstr ""
  3144. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  3145. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  3146. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  3147. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:45
  3148. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  3149. msgid "Local IPv6 address"
  3150. msgstr "Indirizzo IPv6 locale"
  3151. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388
  3152. msgid "Local Service Only"
  3153. msgstr ""
  3154. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:115
  3155. msgid "Local Startup"
  3156. msgstr "Avvio Locale"
  3157. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:59
  3158. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:117
  3159. msgid "Local Time"
  3160. msgstr "Ora locale"
  3161. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:981
  3162. msgid "Local ULA"
  3163. msgstr ""
  3164. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:243
  3165. msgid "Local domain"
  3166. msgstr "Dominio locale"
  3167. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:240
  3168. msgid ""
  3169. "Local domain specification. Names matching this domain are never forwarded "
  3170. "and are resolved from DHCP or hosts files only"
  3171. msgstr ""
  3172. "Specifiche dominio locale. I nomi di dominio corrispondenti a questi criteri "
  3173. "non sono mai inoltrate e risolti solo da DHCP o file hosts"
  3174. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:244
  3175. msgid "Local domain suffix appended to DHCP names and hosts file entries"
  3176. msgstr "Suffisso di dominio locale aggiunto ai nomi DHCP e voci del file hosts"
  3177. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:239
  3178. msgid "Local server"
  3179. msgstr "Server locale"
  3180. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:224
  3181. msgid ""
  3182. "Localise hostname depending on the requesting subnet if multiple IPs are "
  3183. "available"
  3184. msgstr ""
  3185. "Localizzare nome host a seconda della sottorete richiedente se sono "
  3186. "disponibili IP multipli"
  3187. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:223
  3188. msgid "Localise queries"
  3189. msgstr "Localizza richieste"
  3190. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2018
  3191. msgid "Lock to BSSID"
  3192. msgstr ""
  3193. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171
  3194. msgid "Log output level"
  3195. msgstr "Livello di dettaglio registro"
  3196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274
  3197. msgid "Log queries"
  3198. msgstr "Logga richieste"
  3199. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:109
  3200. msgid "Logging"
  3201. msgstr "Registrazione"
  3202. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  3203. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  3204. msgid ""
  3205. "Logical network from which to select the local endpoint if local IPv6 "
  3206. "address is empty and no WAN IPv6 is available (optional)."
  3207. msgstr ""
  3208. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3209. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3210. msgid "Logical network to which the tunnel will be added (bridged) (optional)."
  3211. msgstr ""
  3212. #: modules/luci-base/luasrc/view/sysauth.htm:38
  3213. msgid "Login"
  3214. msgstr "Login"
  3215. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:81
  3216. msgid "Logout"
  3217. msgstr "Esci"
  3218. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:628
  3219. msgid "Loose filtering"
  3220. msgstr ""
  3221. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31
  3222. msgid "Loss of Signal Seconds (LOSS)"
  3223. msgstr ""
  3224. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  3225. msgid "Lowest leased address as offset from the network address."
  3226. msgstr ""
  3227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48
  3228. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83
  3229. msgid "MAC"
  3230. msgstr "MAC"
  3231. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1406
  3232. msgid "MAC Address"
  3233. msgstr ""
  3234. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1083
  3235. msgid "MAC Address Filter"
  3236. msgstr "Filtro indirizzo MAC"
  3237. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251
  3238. msgid "MAC Address For The Actor"
  3239. msgstr ""
  3240. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:347
  3241. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1374
  3242. msgid "MAC VLAN"
  3243. msgstr ""
  3244. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591
  3245. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38
  3246. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2149
  3247. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56
  3248. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88
  3249. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:229
  3250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:156
  3251. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:175
  3252. msgid "MAC address"
  3253. msgstr "Indirizzo MAC"
  3254. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:986
  3255. msgid "MAC-Filter"
  3256. msgstr "Filtro MAC"
  3257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1090
  3258. msgid "MAC-List"
  3259. msgstr "Lista MAC"
  3260. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:16
  3261. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:13
  3262. msgid "MAP / LW4over6"
  3263. msgstr ""
  3264. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:62
  3265. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:7
  3266. msgid "MAP rule is invalid"
  3267. msgstr ""
  3268. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:218
  3269. msgid "MD5"
  3270. msgstr "MD5"
  3271. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3272. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3273. msgid "MHz"
  3274. msgstr "MHz"
  3275. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353
  3276. msgid "MII"
  3277. msgstr ""
  3278. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421
  3279. msgid "MII / ETHTOOL ioctls"
  3280. msgstr ""
  3281. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394
  3282. msgid "MII Interval"
  3283. msgstr ""
  3284. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580
  3285. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418
  3286. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54
  3287. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53
  3288. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3289. msgid "MTU"
  3290. msgstr "MTU"
  3291. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:302
  3292. msgid ""
  3293. "Make sure to clone the root filesystem using something like the commands "
  3294. "below:"
  3295. msgstr ""
  3296. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:110
  3297. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:102
  3298. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:53
  3299. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:98
  3300. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:84
  3301. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:58
  3302. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:71
  3303. msgid "Manual"
  3304. msgstr "Manuale"
  3305. #: modules/luci-base/htdocs/luci-static/resources/network.js:3862
  3306. msgid "Master"
  3307. msgstr ""
  3308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3309. msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3310. msgstr ""
  3311. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22
  3312. msgid "Max. Attainable Data Rate (ATTNDR)"
  3313. msgstr ""
  3314. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  3315. msgid "Maximum age"
  3316. msgstr ""
  3317. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1179
  3318. msgid "Maximum allowed Listen Interval"
  3319. msgstr ""
  3320. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:336
  3321. msgid "Maximum allowed number of active DHCP leases"
  3322. msgstr ""
  3323. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354
  3324. msgid "Maximum allowed number of concurrent DNS queries"
  3325. msgstr ""
  3326. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345
  3327. msgid "Maximum allowed size of EDNS.0 UDP packets"
  3328. msgstr ""
  3329. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3330. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3331. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3332. msgid "Maximum amount of seconds to wait for the modem to become ready"
  3333. msgstr ""
  3334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:674
  3335. msgid "Maximum number of leased addresses."
  3336. msgstr "Numero massimo indirizzi in contratto"
  3337. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:542
  3338. msgid "Maximum snooping table size"
  3339. msgstr ""
  3340. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:811
  3341. msgid ""
  3342. "Maximum time allowed between sending unsolicited <abbr title=\"Router "
  3343. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds."
  3344. msgstr ""
  3345. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  3346. msgid "Maximum transmit power"
  3347. msgstr ""
  3348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129
  3349. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188
  3350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:199
  3351. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:28
  3352. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:165
  3353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:323
  3354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:324
  3355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:325
  3356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:329
  3357. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:330
  3358. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:331
  3359. msgid "Mbit/s"
  3360. msgstr "Mbit/s"
  3361. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  3362. msgid "Medium"
  3363. msgstr ""
  3364. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:24
  3365. msgid "Memory"
  3366. msgstr "Memoria"
  3367. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:73
  3368. msgid "Memory usage (%)"
  3369. msgstr "Uso Memoria (%)"
  3370. #: modules/luci-base/htdocs/luci-static/resources/network.js:3865
  3371. msgid "Mesh"
  3372. msgstr ""
  3373. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  3374. msgid "Mesh ID"
  3375. msgstr ""
  3376. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:994
  3377. msgid "Mesh Id"
  3378. msgstr ""
  3379. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:404
  3380. msgid "Method not found"
  3381. msgstr ""
  3382. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349
  3383. msgid "Method of link monitoring"
  3384. msgstr ""
  3385. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418
  3386. msgid "Method to determine link status"
  3387. msgstr ""
  3388. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46
  3389. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:166
  3390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:185
  3391. msgid "Metric"
  3392. msgstr "Metrica"
  3393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3394. msgid "Min <abbr title=\"Router Advertisement\">RA</abbr> interval"
  3395. msgstr ""
  3396. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3397. msgid "Minimum ARP validity time"
  3398. msgstr ""
  3399. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235
  3400. msgid "Minimum Number of Links"
  3401. msgstr ""
  3402. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:661
  3403. msgid ""
  3404. "Minimum required time in seconds before an ARP entry may be replaced. "
  3405. "Prevents ARP cache thrashing."
  3406. msgstr ""
  3407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:818
  3408. msgid ""
  3409. "Minimum time allowed between sending unsolicited <abbr title=\"Router "
  3410. "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds."
  3411. msgstr ""
  3412. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202
  3413. msgid "Mirror monitor port"
  3414. msgstr ""
  3415. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:201
  3416. msgid "Mirror source port"
  3417. msgstr ""
  3418. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:9
  3419. msgid "Mobile Data"
  3420. msgstr ""
  3421. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1514
  3422. msgid "Mobility Domain"
  3423. msgstr ""
  3424. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:154
  3425. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:434
  3426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:157
  3427. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:180
  3428. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:492
  3429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:989
  3430. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1734
  3431. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:378
  3432. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:142
  3433. msgid "Mode"
  3434. msgstr "Modalità"
  3435. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:55
  3436. msgid "Model"
  3437. msgstr "Modello"
  3438. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43
  3439. msgid "Modem bearer teardown in progress."
  3440. msgstr ""
  3441. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42
  3442. msgid ""
  3443. "Modem connection in progress. Please wait. This process will timeout after 2 "
  3444. "minutes."
  3445. msgstr ""
  3446. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:73
  3447. msgid "Modem default"
  3448. msgstr ""
  3449. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73
  3450. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82
  3451. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61
  3452. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73
  3453. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57
  3454. msgid "Modem device"
  3455. msgstr "Dispositivo modem"
  3456. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41
  3457. msgid "Modem disconnection in progress. Please wait."
  3458. msgstr ""
  3459. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66
  3460. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24
  3461. msgid "Modem information query failed"
  3462. msgstr ""
  3463. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:114
  3464. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:106
  3465. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:95
  3466. msgid "Modem init timeout"
  3467. msgstr ""
  3468. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44
  3469. msgid "Modem is disabled."
  3470. msgstr ""
  3471. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52
  3472. msgid "ModemManager"
  3473. msgstr ""
  3474. #: modules/luci-base/htdocs/luci-static/resources/network.js:3866
  3475. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077
  3476. msgid "Monitor"
  3477. msgstr "Monitor"
  3478. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  3479. msgid "More Characters"
  3480. msgstr ""
  3481. #: modules/luci-base/htdocs/luci-static/resources/form.js:2529
  3482. msgid "More…"
  3483. msgstr ""
  3484. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:192
  3485. msgid "Mount Point"
  3486. msgstr "Punto di Mount"
  3487. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:144
  3488. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3489. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:88
  3490. msgid "Mount Points"
  3491. msgstr "Punti di Mount"
  3492. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:229
  3493. msgid "Mount Points - Mount Entry"
  3494. msgstr "Punti di Mount - Voce di Mount"
  3495. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340
  3496. msgid "Mount Points - Swap Entry"
  3497. msgstr "Punti di Mount - Voce Swap"
  3498. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:228
  3499. msgid ""
  3500. "Mount Points define at which point a memory device will be attached to the "
  3501. "filesystem"
  3502. msgstr ""
  3503. "I punti di mount definiscono in quale punto un dispositivo di memoria verrà "
  3504. "attaccato al tuo filesystem"
  3505. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154
  3506. msgid "Mount attached devices"
  3507. msgstr ""
  3508. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:162
  3509. msgid "Mount filesystems not specifically configured"
  3510. msgstr ""
  3511. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  3512. msgid "Mount options"
  3513. msgstr "Opzioni di mount"
  3514. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  3515. msgid "Mount point"
  3516. msgstr "Punto di mount"
  3517. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:158
  3518. msgid "Mount swap not specifically configured"
  3519. msgstr "Monta swap non configurato specificatamente"
  3520. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:223
  3521. msgid "Mounted file systems"
  3522. msgstr "File system montati"
  3523. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:152
  3524. msgid "Move down"
  3525. msgstr "Muovi giù"
  3526. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  3527. msgid "Move up"
  3528. msgstr "Muovi su"
  3529. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89
  3530. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94
  3531. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:91
  3532. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:96
  3533. msgid "Multicast"
  3534. msgstr ""
  3535. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:705
  3536. msgid "Multicast routing"
  3537. msgstr ""
  3538. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:711
  3539. msgid "Multicast to unicast"
  3540. msgstr ""
  3541. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  3542. msgid "NAS ID"
  3543. msgstr "ID della NAS"
  3544. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:87
  3545. msgid "NAT-T Mode"
  3546. msgstr ""
  3547. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:41
  3548. msgid "NAT64 Prefix"
  3549. msgstr ""
  3550. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:26
  3551. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:31
  3552. msgid "NCM"
  3553. msgstr "NCM"
  3554. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  3555. msgid "NDP-Proxy slave"
  3556. msgstr ""
  3557. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:72
  3558. msgid "NT Domain"
  3559. msgstr ""
  3560. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:276
  3561. msgid "NTP server candidates"
  3562. msgstr "Candidati server NTP"
  3563. #: modules/luci-base/htdocs/luci-static/resources/form.js:2567
  3564. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3808
  3565. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:27
  3566. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1082
  3567. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:67
  3568. msgid "Name"
  3569. msgstr "Nome"
  3570. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  3571. msgid "Name of the new network"
  3572. msgstr "Nome della nuova rete"
  3573. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44
  3574. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50
  3575. msgid "Navigation"
  3576. msgstr "Navigazione"
  3577. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  3578. msgid "Neighbour cache validity"
  3579. msgstr ""
  3580. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:45
  3581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1022
  3582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2148
  3583. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:383
  3584. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:63
  3585. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:228
  3586. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:163
  3587. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:182
  3588. msgid "Network"
  3589. msgstr "Rete"
  3590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  3591. msgid "Network SSID"
  3592. msgstr ""
  3593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:68
  3594. msgid "Network Utilities"
  3595. msgstr "Utilità di Rete"
  3596. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380
  3597. msgid "Network boot image"
  3598. msgstr ""
  3599. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:392
  3600. msgid "Network bridge configuration migration"
  3601. msgstr ""
  3602. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343
  3603. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1380
  3604. msgid "Network device"
  3605. msgstr ""
  3606. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7
  3607. msgid "Network device activity (kernel: netdev)"
  3608. msgstr ""
  3609. #: modules/luci-base/htdocs/luci-static/resources/network.js:15
  3610. #: modules/luci-compat/luasrc/model/network.lua:33
  3611. msgid "Network device is not present"
  3612. msgstr ""
  3613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:426
  3614. msgid "Network ifname configuration migration"
  3615. msgstr ""
  3616. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57
  3617. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:62
  3618. msgid "Network interface"
  3619. msgstr ""
  3620. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:706
  3621. msgid "Never"
  3622. msgstr ""
  3623. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134
  3624. msgid "New interface for \"%s\" can not be created: %s"
  3625. msgstr ""
  3626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1085
  3627. msgid "New interface name…"
  3628. msgstr ""
  3629. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:11
  3630. msgid "Next »"
  3631. msgstr "Prossimo »"
  3632. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  3633. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:296
  3634. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:345
  3635. msgid "No"
  3636. msgstr ""
  3637. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:643
  3638. msgid "No DHCP Server configured for this interface"
  3639. msgstr "Nessun Server DHCP configurato per questa interfaccia"
  3640. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:196
  3641. msgid "No Data"
  3642. msgstr ""
  3643. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1382
  3644. msgid "No Encryption"
  3645. msgstr ""
  3646. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3647. msgid "No Host Routes"
  3648. msgstr ""
  3649. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:89
  3650. msgid "No NAT-T"
  3651. msgstr ""
  3652. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:79
  3653. msgid "No RX signal"
  3654. msgstr ""
  3655. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69
  3656. msgid "No client associated"
  3657. msgstr "Nessun client associato"
  3658. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:406
  3659. msgid "No data received"
  3660. msgstr "Nessun dato ricevuto"
  3661. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:683
  3662. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:690
  3663. msgid "No enforcement"
  3664. msgstr ""
  3665. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899
  3666. msgid "No entries in this directory"
  3667. msgstr ""
  3668. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82
  3669. msgid "No files found"
  3670. msgstr "Nessun file trovato"
  3671. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86
  3672. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91
  3673. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88
  3674. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93
  3675. msgid "No host route"
  3676. msgstr ""
  3677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:731
  3678. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142
  3679. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:358
  3680. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:59
  3681. msgid "No information available"
  3682. msgstr "Nessuna informazione disponibile"
  3683. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:63
  3684. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:8
  3685. msgid "No matching prefix delegation"
  3686. msgstr "Nessun prefisso delegato compatibile"
  3687. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140
  3688. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143
  3689. msgid "No more slaves available"
  3690. msgstr ""
  3691. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187
  3692. msgid "No more slaves available, can not save interface"
  3693. msgstr ""
  3694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251
  3695. msgid "No negative cache"
  3696. msgstr ""
  3697. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:54
  3698. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:212
  3699. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59
  3700. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79
  3701. msgid "No password set!"
  3702. msgstr "Nessuna password immessa!"
  3703. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:125
  3704. msgid "No peers defined yet"
  3705. msgstr ""
  3706. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140
  3707. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277
  3708. msgid "No public keys present yet."
  3709. msgstr ""
  3710. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:91
  3711. msgid "No rules in this chain."
  3712. msgstr "Nessuna regola in questa catena"
  3713. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384
  3714. msgid "No validation or filtering"
  3715. msgstr ""
  3716. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  3717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  3718. msgid "No zone assigned"
  3719. msgstr "Nessuna zona assegnata"
  3720. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  3721. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  3722. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  3723. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  3724. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  3725. msgid "Noise"
  3726. msgstr "Rumore"
  3727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26
  3728. msgid "Noise Margin (SNR)"
  3729. msgstr "Margine di Rumore (SNR)"
  3730. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:272
  3731. msgid "Noise:"
  3732. msgstr "Rumore:"
  3733. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34
  3734. msgid "Non Pre-emptive CRC errors (CRC_P)"
  3735. msgstr ""
  3736. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394
  3737. msgid "Non-wildcard"
  3738. msgstr ""
  3739. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159
  3740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183
  3741. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:101
  3742. msgid "None"
  3743. msgstr "Nessuno"
  3744. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:954
  3745. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:184
  3746. msgid "Normal"
  3747. msgstr "Normale"
  3748. #: modules/luci-base/luasrc/view/error404.htm:8
  3749. msgid "Not Found"
  3750. msgstr "Non Trovato"
  3751. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75
  3752. msgid "Not associated"
  3753. msgstr "Non associato"
  3754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  3755. msgid "Not connected"
  3756. msgstr "Non connesso"
  3757. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46
  3758. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:81
  3759. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:121
  3760. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:147
  3761. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:312
  3762. msgid "Not present"
  3763. msgstr ""
  3764. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:102
  3765. msgid "Not started on boot"
  3766. msgstr ""
  3767. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:409
  3768. msgid "Not supported"
  3769. msgstr ""
  3770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1678
  3771. msgid ""
  3772. "Note: Some wireless drivers do not fully support 802.11w. E.g. mwlwifi may "
  3773. "have problems"
  3774. msgstr ""
  3775. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3776. msgid "Notes"
  3777. msgstr ""
  3778. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:174
  3779. msgid "Notice"
  3780. msgstr "Notizia"
  3781. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:127
  3782. msgid "Nslookup"
  3783. msgstr ""
  3784. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332
  3785. msgid "Number of IGMP membership reports"
  3786. msgstr ""
  3787. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362
  3788. msgid "Number of cached DNS entries (max is 10000, 0 is no caching)"
  3789. msgstr ""
  3790. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309
  3791. msgid "Number of peer notifications after failover event"
  3792. msgstr ""
  3793. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69
  3794. msgid "Obfuscated Group Password"
  3795. msgstr ""
  3796. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:61
  3797. msgid "Obfuscated Password"
  3798. msgstr ""
  3799. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:106
  3800. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:98
  3801. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:49
  3802. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:94
  3803. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:80
  3804. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:54
  3805. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:67
  3806. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:93
  3807. msgid "Obtain IPv6 address"
  3808. msgstr ""
  3809. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3810. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:351
  3811. msgid "Off"
  3812. msgstr ""
  3813. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:15
  3814. msgid "Off-State Delay"
  3815. msgstr ""
  3816. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:18
  3817. msgid "On"
  3818. msgstr ""
  3819. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:96
  3820. msgid "On-Link route"
  3821. msgstr ""
  3822. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/timer.js:11
  3823. msgid "On-State Delay"
  3824. msgstr ""
  3825. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:504
  3826. msgid "One of hostname or mac address must be specified!"
  3827. msgstr "Devi specificare almeno l'hostname o l'indirizzo MAC!"
  3828. #: modules/luci-base/htdocs/luci-static/resources/validation.js:469
  3829. msgid "One of the following: %s"
  3830. msgstr ""
  3831. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:17
  3832. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:22
  3833. msgid "One or more fields contain invalid values!"
  3834. msgstr "Uno o più campi contengono valori non validi!"
  3835. #: modules/luci-compat/luasrc/view/cbi/map.htm:32
  3836. msgid "One or more invalid/required values on tab"
  3837. msgstr ""
  3838. #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19
  3839. #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24
  3840. msgid "One or more required fields have no value!"
  3841. msgstr "Uno o più campi obbligatori sono vuoti!"
  3842. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  3843. msgid "Only allow communication with non-isolated bridge ports when enabled"
  3844. msgstr ""
  3845. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229
  3846. msgid ""
  3847. "Only if current active slave fails and the primary slave is up (failure, 2)"
  3848. msgstr ""
  3849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442
  3850. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19
  3851. msgid "Open list..."
  3852. msgstr "Apri lista..."
  3853. #: modules/luci-compat/luasrc/model/network/proto_openconnect.lua:9
  3854. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:64
  3855. msgid "OpenConnect (CISCO AnyConnect)"
  3856. msgstr ""
  3857. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:12
  3858. msgid "OpenFortivpn"
  3859. msgstr ""
  3860. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:724
  3861. msgid ""
  3862. "Operate in <em>relay mode</em> if a designated master interface is "
  3863. "configured and active, otherwise disable <abbr title=\"Neighbour Discovery "
  3864. "Protocol\">NDP</abbr> proxying."
  3865. msgstr ""
  3866. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723
  3867. msgid ""
  3868. "Operate in <em>relay mode</em> if a designated master interface is "
  3869. "configured and active, otherwise fall back to <em>server mode</em>."
  3870. msgstr ""
  3871. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725
  3872. msgid ""
  3873. "Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, "
  3874. "otherwise disable service."
  3875. msgstr ""
  3876. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939
  3877. msgid "Operating frequency"
  3878. msgstr ""
  3879. #: modules/luci-base/htdocs/luci-static/resources/form.js:1974
  3880. #: modules/luci-base/htdocs/luci-static/resources/form.js:3712
  3881. msgid "Option \"%s\" contains an invalid input value."
  3882. msgstr ""
  3883. #: modules/luci-base/htdocs/luci-static/resources/form.js:1987
  3884. msgid "Option \"%s\" must not be empty."
  3885. msgstr ""
  3886. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4060
  3887. msgid "Option changed"
  3888. msgstr "Opzione cambiata"
  3889. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4062
  3890. msgid "Option removed"
  3891. msgstr "Opzione cancellata"
  3892. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1680
  3893. msgid "Optional"
  3894. msgstr ""
  3895. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128
  3896. msgid "Optional, free-form notes about this device"
  3897. msgstr ""
  3898. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:97
  3899. msgid ""
  3900. "Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, "
  3901. "starting with <code>0x</code>."
  3902. msgstr ""
  3903. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1003
  3904. msgid ""
  3905. "Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or "
  3906. "'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating "
  3907. "server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') "
  3908. "for the interface."
  3909. msgstr ""
  3910. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  3911. msgid ""
  3912. "Optional. Base64-encoded preshared key. Adds in an additional layer of "
  3913. "symmetric-key cryptography for post-quantum resistance."
  3914. msgstr ""
  3915. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  3916. msgid "Optional. Create routes for Allowed IPs for this peer."
  3917. msgstr ""
  3918. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:129
  3919. msgid "Optional. Description of peer."
  3920. msgstr ""
  3921. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:87
  3922. msgid "Optional. Do not create host routes to peers."
  3923. msgstr ""
  3924. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:156
  3925. msgid ""
  3926. "Optional. Host of peer. Names are resolved prior to bringing up the "
  3927. "interface."
  3928. msgstr ""
  3929. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92
  3930. msgid "Optional. Maximum Transmission Unit of tunnel interface."
  3931. msgstr ""
  3932. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:160
  3933. msgid "Optional. Port of peer."
  3934. msgstr ""
  3935. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  3936. msgid ""
  3937. "Optional. Seconds between keep alive messages. Default is 0 (disabled). "
  3938. "Recommended value if this device is behind a NAT is 25."
  3939. msgstr ""
  3940. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78
  3941. msgid "Optional. UDP port used for outgoing and incoming packets."
  3942. msgstr ""
  3943. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:72
  3944. msgid "Options"
  3945. msgstr "Opzioni"
  3946. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119
  3947. msgid "Options:"
  3948. msgstr ""
  3949. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348
  3950. msgid "Other:"
  3951. msgstr "Altro:"
  3952. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:69
  3953. msgid "Out"
  3954. msgstr "Uscita"
  3955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:277
  3956. msgid "Outbound:"
  3957. msgstr "In uscita:"
  3958. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:101
  3959. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:106
  3960. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:103
  3961. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:108
  3962. msgid "Outgoing checksum"
  3963. msgstr ""
  3964. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96
  3965. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101
  3966. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:98
  3967. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:103
  3968. msgid "Outgoing key"
  3969. msgstr ""
  3970. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  3971. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  3972. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  3973. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  3974. msgid "Outgoing serialization"
  3975. msgstr ""
  3976. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50
  3977. msgid "Output Interface"
  3978. msgstr ""
  3979. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59
  3980. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165
  3981. msgid "Output zone"
  3982. msgstr ""
  3983. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:16
  3984. msgid "Overlap"
  3985. msgstr ""
  3986. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:945
  3987. msgid "Override IPv4 routing table"
  3988. msgstr ""
  3989. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:950
  3990. msgid "Override IPv6 routing table"
  3991. msgstr ""
  3992. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  3993. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  3994. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  3995. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  3996. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  3997. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:121
  3998. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:156
  3999. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:57
  4000. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:132
  4001. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:118
  4002. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:96
  4003. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:105
  4004. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:99
  4005. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:62
  4006. msgid "Override MTU"
  4007. msgstr "Sovrascrivi MTU"
  4008. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  4009. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  4010. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  4011. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  4012. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  4013. msgid "Override TOS"
  4014. msgstr "Sovrascrivi TOS"
  4015. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  4016. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  4017. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  4018. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  4019. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  4020. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  4021. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  4022. msgid "Override TTL"
  4023. msgstr "Sovrascrivi TTL"
  4024. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151
  4025. msgid "Override default interface name"
  4026. msgstr "Sovrascrivi nome interfaccia di default"
  4027. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  4028. msgid "Override the gateway in DHCP responses"
  4029. msgstr "Sovrascrivi il gateway nelle risposte DHCP"
  4030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691
  4031. msgid ""
  4032. "Override the netmask sent to clients. Normally it is calculated from the "
  4033. "subnet that is served."
  4034. msgstr ""
  4035. "Sovrascrivi la netmask data ai clienti. Normalmente è calcolata dalla subnet "
  4036. "servita."
  4037. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  4038. msgid "Override the table used for internal routes"
  4039. msgstr "Sovrascrivi la tabella usata per le route interne"
  4040. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3
  4041. msgid "Overview"
  4042. msgstr "Riassunto"
  4043. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2742
  4044. msgid "Overwrite existing file \"%s\" ?"
  4045. msgstr ""
  4046. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:70
  4047. msgid "Owner"
  4048. msgstr "Proprietario"
  4049. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:98
  4050. msgid "PAP/CHAP (both)"
  4051. msgstr ""
  4052. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:99
  4053. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109
  4054. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:91
  4055. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45
  4056. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:90
  4057. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:76
  4058. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:44
  4059. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:63
  4060. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:83
  4061. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:46
  4062. msgid "PAP/CHAP password"
  4063. msgstr ""
  4064. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:97
  4065. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:104
  4066. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:89
  4067. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43
  4068. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:88
  4069. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:74
  4070. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:42
  4071. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:61
  4072. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:78
  4073. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:44
  4074. msgid "PAP/CHAP username"
  4075. msgstr ""
  4076. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:103
  4077. msgid "PDP Type"
  4078. msgstr ""
  4079. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:69
  4080. msgid "PID"
  4081. msgstr "PID"
  4082. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96
  4083. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:95
  4084. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88
  4085. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:69
  4086. msgid "PIN"
  4087. msgstr ""
  4088. #: modules/luci-base/htdocs/luci-static/resources/network.js:21
  4089. #: modules/luci-compat/luasrc/model/network.lua:39
  4090. msgid "PIN code rejected"
  4091. msgstr ""
  4092. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1549
  4093. msgid "PMK R1 Push"
  4094. msgstr ""
  4095. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:13
  4096. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:43
  4097. msgid "PPP"
  4098. msgstr ""
  4099. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:58
  4100. msgid "PPPoA Encapsulation"
  4101. msgstr "Incapsulamento PPPoA"
  4102. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:19
  4103. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:28
  4104. msgid "PPPoATM"
  4105. msgstr "PPPoATM"
  4106. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:17
  4107. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:28
  4108. msgid "PPPoE"
  4109. msgstr "PPPoE"
  4110. #: modules/luci-compat/luasrc/model/network/proto_pppossh.lua:9
  4111. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:28
  4112. msgid "PPPoSSH"
  4113. msgstr "PPPoSSH"
  4114. #: modules/luci-compat/luasrc/model/network/proto_ppp.lua:15
  4115. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:28
  4116. msgid "PPtP"
  4117. msgstr ""
  4118. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:73
  4119. msgid "PSID offset"
  4120. msgstr ""
  4121. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:70
  4122. msgid "PSID-bits length"
  4123. msgstr ""
  4124. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1473
  4125. msgid "PTM/EFM (Packet Transfer Mode)"
  4126. msgstr ""
  4127. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1437
  4128. msgid "Packet Steering"
  4129. msgstr ""
  4130. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4131. msgid "Packets"
  4132. msgstr "Pacchetti"
  4133. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275
  4134. msgid "Packets To Transmit Before Moving To Next Slave"
  4135. msgstr ""
  4136. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:153
  4137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1176
  4138. msgid "Part of zone %q"
  4139. msgstr "Parte della zona %q"
  4140. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:438
  4141. msgctxt "MACVLAN mode"
  4142. msgid "Pass-through (Mirror physical device to single MAC VLAN)"
  4143. msgstr ""
  4144. #: modules/luci-base/luasrc/view/sysauth.htm:29
  4145. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1671
  4146. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51
  4147. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114
  4148. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:52
  4149. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58
  4150. msgid "Password"
  4151. msgstr "Password"
  4152. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:25
  4153. msgid "Password authentication"
  4154. msgstr "Password di authenticazione"
  4155. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1603
  4156. msgid "Password of Private Key"
  4157. msgstr "Password della chiave privata"
  4158. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1661
  4159. msgid "Password of inner Private Key"
  4160. msgstr ""
  4161. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:31
  4162. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  4163. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:35
  4164. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  4165. msgid "Password strength"
  4166. msgstr ""
  4167. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:117
  4168. msgid "Password2"
  4169. msgstr ""
  4170. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260
  4171. msgid "Paste or drag SSH key file…"
  4172. msgstr ""
  4173. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1582
  4174. msgid "Path to CA-Certificate"
  4175. msgstr "Percorso al certificato CA"
  4176. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1597
  4177. msgid "Path to Client-Certificate"
  4178. msgstr ""
  4179. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1600
  4180. msgid "Path to Private Key"
  4181. msgstr "Percorso alla chiave privata"
  4182. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1640
  4183. msgid "Path to inner CA-Certificate"
  4184. msgstr ""
  4185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1655
  4186. msgid "Path to inner Client-Certificate"
  4187. msgstr ""
  4188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1658
  4189. msgid "Path to inner Private Key"
  4190. msgstr ""
  4191. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2732
  4192. msgid "Paused"
  4193. msgstr ""
  4194. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:273
  4195. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js:283
  4196. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:334
  4197. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:344
  4198. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:354
  4199. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:239
  4200. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:249
  4201. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:259
  4202. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:268
  4203. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:278
  4204. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:296
  4205. msgid "Peak:"
  4206. msgstr "Picco:"
  4207. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:89
  4208. msgid "Peer IP address to assign"
  4209. msgstr ""
  4210. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:613
  4211. msgid "Peer MAC address"
  4212. msgstr ""
  4213. #: modules/luci-base/htdocs/luci-static/resources/network.js:14
  4214. #: modules/luci-compat/luasrc/model/network.lua:32
  4215. msgid "Peer address is missing"
  4216. msgstr ""
  4217. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:594
  4218. msgid "Peer device name"
  4219. msgstr ""
  4220. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:110
  4221. msgid "Peers"
  4222. msgstr ""
  4223. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80
  4224. msgid "Perfect Forward Secrecy"
  4225. msgstr ""
  4226. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:103
  4227. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:108
  4228. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:105
  4229. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:110
  4230. msgid "Perform outgoing packets serialization (optional)."
  4231. msgstr ""
  4232. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:34
  4233. msgid "Perform reboot"
  4234. msgstr "Esegui un riavvio"
  4235. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376
  4236. msgid "Perform reset"
  4237. msgstr ""
  4238. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:407
  4239. msgid "Permission denied"
  4240. msgstr ""
  4241. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:164
  4242. msgid "Persistent Keep Alive"
  4243. msgstr ""
  4244. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:290
  4245. msgid "Phy Rate:"
  4246. msgstr ""
  4247. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:479
  4248. msgid "Physical Settings"
  4249. msgstr ""
  4250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79
  4251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80
  4252. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90
  4253. msgid "Ping"
  4254. msgstr ""
  4255. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4256. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  4257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4258. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  4259. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:138
  4260. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64
  4261. msgid "Pkts."
  4262. msgstr ""
  4263. #: modules/luci-base/luasrc/view/sysauth.htm:19
  4264. msgid "Please enter your username and password."
  4265. msgstr "Per favore inserisci il tuo username e la password."
  4266. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3791
  4267. msgid "Please select the file to upload."
  4268. msgstr ""
  4269. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  4270. msgid "Policy"
  4271. msgstr ""
  4272. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21
  4273. msgid "Port"
  4274. msgstr "Port"
  4275. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702
  4276. msgid "Port isolation"
  4277. msgstr ""
  4278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:278
  4279. msgid "Port status:"
  4280. msgstr "Status porta:"
  4281. #: modules/luci-base/htdocs/luci-static/resources/validation.js:495
  4282. msgid "Potential negation of: %s"
  4283. msgstr ""
  4284. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37
  4285. msgid "Power Management Mode"
  4286. msgstr ""
  4287. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35
  4288. msgid "Pre-emptive CRC errors (CRCP_P)"
  4289. msgstr ""
  4290. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:74
  4291. msgid "Prefer LTE"
  4292. msgstr ""
  4293. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:75
  4294. msgid "Prefer UMTS"
  4295. msgstr ""
  4296. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:33
  4297. msgid "Prefix Delegated"
  4298. msgstr ""
  4299. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138
  4300. msgid "Preshared Key"
  4301. msgstr ""
  4302. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:118
  4303. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:102
  4304. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:88
  4305. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:62
  4306. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:75
  4307. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:98
  4308. msgid ""
  4309. "Presume peer to be dead after given amount of LCP echo failures, use 0 to "
  4310. "ignore failures"
  4311. msgstr ""
  4312. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407
  4313. msgid "Prevent listening on these interfaces."
  4314. msgstr ""
  4315. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1147
  4316. msgid "Prevents client-to-client communication"
  4317. msgstr "Impedisci la comunicazione fra Client"
  4318. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211
  4319. msgid "Primary Slave"
  4320. msgstr ""
  4321. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:170
  4322. msgctxt "VLAN port state"
  4323. msgid "Primary VLAN ID"
  4324. msgstr ""
  4325. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228
  4326. msgid ""
  4327. "Primary becomes active slave when it comes back up if speed and duplex "
  4328. "better than current slave (better, 1)"
  4329. msgstr ""
  4330. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227
  4331. msgid "Primary becomes active slave whenever it comes back up (always, 0)"
  4332. msgstr ""
  4333. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508
  4334. msgid "Priority"
  4335. msgstr ""
  4336. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436
  4337. msgctxt "MACVLAN mode"
  4338. msgid "Private (Prevent communication between MAC VLANs)"
  4339. msgstr ""
  4340. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4341. msgid "Private Key"
  4342. msgstr ""
  4343. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:64
  4344. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:63
  4345. msgid "Processes"
  4346. msgstr "Processi"
  4347. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:67
  4348. msgid "Prot."
  4349. msgstr "Prot."
  4350. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:80
  4351. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:554
  4352. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1099
  4353. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:384
  4354. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:32
  4355. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:168
  4356. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187
  4357. msgid "Protocol"
  4358. msgstr "Protocollo"
  4359. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:267
  4360. msgid "Provide NTP server"
  4361. msgstr "Fornisci server NTP"
  4362. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:872
  4363. msgid ""
  4364. "Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations "
  4365. "and requests."
  4366. msgstr ""
  4367. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:882
  4368. msgid "Provide new network"
  4369. msgstr "Fornisci nuova rete"
  4370. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1076
  4371. msgid "Pseudo Ad-Hoc (ahdemo)"
  4372. msgstr "Pseudo Ad-Hoc (ahdemo)"
  4373. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4374. msgid "Public Key"
  4375. msgstr "Chiave pubblica"
  4376. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284
  4377. msgid ""
  4378. "Public keys allow for the passwordless SSH logins with a higher security "
  4379. "compared to the use of plain passwords. In order to upload a new key to the "
  4380. "device, paste an OpenSSH compatible public key line or drag a <code>.pub</"
  4381. "code> file into the input field."
  4382. msgstr ""
  4383. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:192
  4384. msgid "Public prefix routed to this device for distribution to clients."
  4385. msgstr ""
  4386. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:9
  4387. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:27
  4388. msgid "QMI Cellular"
  4389. msgstr ""
  4390. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4391. msgid "Quality"
  4392. msgstr "Qualità"
  4393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264
  4394. msgid ""
  4395. "Query all available upstream <abbr title=\"Domain Name System\">DNS</abbr> "
  4396. "servers"
  4397. msgstr ""
  4398. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556
  4399. msgid "Query interval"
  4400. msgstr ""
  4401. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  4402. msgid "Query response interval"
  4403. msgstr ""
  4404. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  4405. msgid "R0 Key Lifetime"
  4406. msgstr ""
  4407. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1543
  4408. msgid "R1 Key Holder"
  4409. msgstr ""
  4410. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:88
  4411. msgid "RFC3947 NAT-T mode"
  4412. msgstr ""
  4413. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1002
  4414. msgid "RSSI threshold for joining"
  4415. msgstr ""
  4416. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:966
  4417. msgid "RTS/CTS Threshold"
  4418. msgstr "Soglia RTS/CTS"
  4419. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:49
  4420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:84
  4421. msgid "RX"
  4422. msgstr ""
  4423. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  4424. msgid "RX Rate"
  4425. msgstr "Velocità RX"
  4426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2152
  4427. msgid "RX Rate / TX Rate"
  4428. msgstr ""
  4429. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1415
  4430. msgid "Radius-Accounting-Port"
  4431. msgstr ""
  4432. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1420
  4433. msgid "Radius-Accounting-Secret"
  4434. msgstr ""
  4435. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1410
  4436. msgid "Radius-Accounting-Server"
  4437. msgstr ""
  4438. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1400
  4439. msgid "Radius-Authentication-Port"
  4440. msgstr ""
  4441. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1405
  4442. msgid "Radius-Authentication-Secret"
  4443. msgstr ""
  4444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1395
  4445. msgid "Radius-Authentication-Server"
  4446. msgstr ""
  4447. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:88
  4448. msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this"
  4449. msgstr ""
  4450. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:178
  4451. msgid ""
  4452. "Read <code>/etc/ethers</code> to configure the <abbr title=\"Dynamic Host "
  4453. "Configuration Protocol\">DHCP</abbr>-Server"
  4454. msgstr ""
  4455. "Leggi <code>/etc/ethers</code> per configurare il server <abbr title="
  4456. "\"Dynamic Host Configuration Protocol\">DHCP</abbr>"
  4457. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559
  4458. msgid "Really switch protocol?"
  4459. msgstr "Cambiare veramente il protocollo?"
  4460. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:88
  4461. msgid "Realtime Graphs"
  4462. msgstr "Grafici in Tempo Reale"
  4463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  4464. msgid "Reassociation Deadline"
  4465. msgstr ""
  4466. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293
  4467. msgid "Rebind protection"
  4468. msgstr "Protezione rebind"
  4469. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:20
  4470. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:126
  4471. msgid "Reboot"
  4472. msgstr "Riavvia"
  4473. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:153
  4474. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:162
  4475. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:46
  4476. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:51
  4477. msgid "Rebooting…"
  4478. msgstr ""
  4479. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:21
  4480. msgid "Reboots the operating system of your device"
  4481. msgstr "Riavvia il sistema operativo del tuo dispositivo"
  4482. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:25
  4483. msgid "Receive"
  4484. msgstr "Ricezione"
  4485. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:83
  4486. msgid "Recommended. IP addresses of the WireGuard interface."
  4487. msgstr ""
  4488. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504
  4489. msgid "Reconnect this interface"
  4490. msgstr "Ricollega questa interfaccia"
  4491. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57
  4492. msgid "References"
  4493. msgstr "Riferimenti"
  4494. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2726
  4495. msgid "Refreshing"
  4496. msgstr ""
  4497. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153
  4498. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39
  4499. msgid "Relay"
  4500. msgstr ""
  4501. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:157
  4502. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:36
  4503. msgid "Relay Bridge"
  4504. msgstr ""
  4505. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:154
  4506. msgid "Relay between networks"
  4507. msgstr ""
  4508. #: modules/luci-compat/luasrc/model/network/proto_relay.lua:12
  4509. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:64
  4510. msgid "Relay bridge"
  4511. msgstr ""
  4512. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  4513. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  4514. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  4515. msgid "Remote IPv4 address"
  4516. msgstr ""
  4517. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  4518. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  4519. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  4520. msgid "Remote IPv4 address or FQDN"
  4521. msgstr ""
  4522. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  4523. msgid "Remote IPv6 address"
  4524. msgstr ""
  4525. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  4526. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  4527. msgid "Remote IPv6 address or FQDN"
  4528. msgstr ""
  4529. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:906
  4530. msgid "Remove"
  4531. msgstr "Rimuovi"
  4532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1277
  4533. msgid "Remove related device settings from the configuration"
  4534. msgstr ""
  4535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1994
  4536. msgid "Replace wireless configuration"
  4537. msgstr "Sostituisci configurazione wireless"
  4538. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:17
  4539. msgid "Request IPv6-address"
  4540. msgstr "Richiede indirizzo-IPv6"
  4541. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:23
  4542. msgid "Request IPv6-prefix of length"
  4543. msgstr "Richiede prefisso-IPv6 di lunghezza"
  4544. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:408
  4545. msgid "Request timeout"
  4546. msgstr ""
  4547. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:100
  4548. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:105
  4549. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:102
  4550. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:107
  4551. msgid "Require incoming checksum (optional)."
  4552. msgstr ""
  4553. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:102
  4554. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:107
  4555. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:104
  4556. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:109
  4557. msgid "Require incoming packets serialization (optional)."
  4558. msgstr ""
  4559. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681
  4560. msgid "Required"
  4561. msgstr "Richiesto"
  4562. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  4563. msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3"
  4564. msgstr ""
  4565. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:61
  4566. msgid "Required. Base64-encoded private key for this interface."
  4567. msgstr ""
  4568. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134
  4569. msgid "Required. Base64-encoded public key of peer."
  4570. msgstr ""
  4571. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:143
  4572. msgid ""
  4573. "Required. IP addresses and prefixes that this peer is allowed to use inside "
  4574. "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer "
  4575. "routes through the tunnel."
  4576. msgstr ""
  4577. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1311
  4578. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1312
  4579. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313
  4580. msgid "Requires hostapd"
  4581. msgstr ""
  4582. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1318
  4583. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1319
  4584. msgid "Requires hostapd with EAP Suite-B support"
  4585. msgstr ""
  4586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1316
  4587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1317
  4588. msgid "Requires hostapd with EAP support"
  4589. msgstr ""
  4590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1320
  4591. msgid "Requires hostapd with OWE support"
  4592. msgstr ""
  4593. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314
  4594. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1315
  4595. msgid "Requires hostapd with SAE support"
  4596. msgstr ""
  4597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1309
  4598. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1310
  4599. msgid "Requires hostapd with WEP support"
  4600. msgstr ""
  4601. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:233
  4602. msgid ""
  4603. "Requires upstream supports DNSSEC; verify unsigned domain responses really "
  4604. "come from unsigned domains"
  4605. msgstr ""
  4606. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1325
  4607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1326
  4608. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1327
  4609. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1339
  4610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1340
  4611. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1341
  4612. msgid "Requires wpa-supplicant"
  4613. msgstr ""
  4614. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1332
  4615. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1333
  4616. msgid "Requires wpa-supplicant with EAP Suite-B support"
  4617. msgstr ""
  4618. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1330
  4619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1331
  4620. msgid "Requires wpa-supplicant with EAP support"
  4621. msgstr ""
  4622. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1334
  4623. msgid "Requires wpa-supplicant with OWE support"
  4624. msgstr ""
  4625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1328
  4626. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1329
  4627. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1344
  4628. msgid "Requires wpa-supplicant with SAE support"
  4629. msgstr ""
  4630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1323
  4631. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1324
  4632. msgid "Requires wpa-supplicant with WEP support"
  4633. msgstr ""
  4634. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224
  4635. msgid "Reselection policy for primary slave"
  4636. msgstr ""
  4637. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2204
  4638. #: modules/luci-base/luasrc/view/sysauth.htm:39
  4639. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17
  4640. #: modules/luci-compat/luasrc/view/cbi/footer.htm:30
  4641. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66
  4642. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1276
  4643. msgid "Reset"
  4644. msgstr "Reset"
  4645. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:343
  4646. msgid "Reset Counters"
  4647. msgstr "Azzera Contatori"
  4648. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:374
  4649. msgid "Reset to defaults"
  4650. msgstr "Azzera a default"
  4651. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162
  4652. msgid "Resolv and Hosts Files"
  4653. msgstr ""
  4654. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:188
  4655. msgid "Resolve file"
  4656. msgstr "File Resolve"
  4657. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405
  4658. msgid "Resource not found"
  4659. msgstr ""
  4660. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:506
  4661. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:874
  4662. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:100
  4663. msgid "Restart"
  4664. msgstr "Riavvia"
  4665. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:348
  4666. msgid "Restart Firewall"
  4667. msgstr "Riavvia Firewall"
  4668. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:872
  4669. msgid "Restart radio interface"
  4670. msgstr ""
  4671. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  4672. msgid "Restore"
  4673. msgstr "Ripristina"
  4674. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:380
  4675. msgid "Restore backup"
  4676. msgstr "Ripristina backup"
  4677. #: modules/luci-base/htdocs/luci-static/resources/ui.js:371
  4678. #: modules/luci-base/htdocs/luci-static/resources/ui.js:372
  4679. msgid "Reveal/hide password"
  4680. msgstr "Rivela/nascondi password"
  4681. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:625
  4682. msgid "Reverse path filter"
  4683. msgstr ""
  4684. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4076
  4685. msgid "Revert"
  4686. msgstr "Ripristina"
  4687. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4161
  4688. msgid "Revert changes"
  4689. msgstr ""
  4690. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4343
  4691. msgid "Revert request failed with status <code>%h</code>"
  4692. msgstr ""
  4693. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4323
  4694. msgid "Reverting configuration…"
  4695. msgstr ""
  4696. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  4697. msgid "Robustness"
  4698. msgstr ""
  4699. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372
  4700. msgid "Root directory for files served via TFTP"
  4701. msgstr ""
  4702. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297
  4703. msgid "Root preparation"
  4704. msgstr ""
  4705. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202
  4706. msgid "Round-Robin policy (balance-rr, 0)"
  4707. msgstr ""
  4708. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:154
  4709. msgid "Route Allowed IPs"
  4710. msgstr ""
  4711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:73
  4712. msgid "Route table"
  4713. msgstr ""
  4714. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:60
  4715. msgid "Route type"
  4716. msgstr ""
  4717. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825
  4718. msgid ""
  4719. "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type "
  4720. "134\">RA</abbr> messages. Maximum is 9000 seconds."
  4721. msgstr ""
  4722. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46
  4723. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26
  4724. msgid "Router Password"
  4725. msgstr ""
  4726. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4727. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197
  4728. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:27
  4729. msgid "Routes"
  4730. msgstr "Route"
  4731. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:15
  4732. msgid ""
  4733. "Routes specify over which interface and gateway a certain host or network "
  4734. "can be reached."
  4735. msgstr ""
  4736. "Le route specificano attraverso quale interfaccia e gateway un certo host o "
  4737. "rete può essere raggiunto."
  4738. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:218
  4739. msgid "Rule"
  4740. msgstr ""
  4741. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4742. msgid "Run a filesystem check before mounting the device"
  4743. msgstr "Esegui un controllo del filesystem prima di montare il dispositivo"
  4744. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335
  4745. msgid "Run filesystem check"
  4746. msgstr "Esegui controllo del filesystem"
  4747. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2365
  4748. msgid "Runtime error"
  4749. msgstr ""
  4750. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:219
  4751. msgid "SHA256"
  4752. msgstr "SHA256"
  4753. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:59
  4754. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:276
  4755. msgid "SNR"
  4756. msgstr ""
  4757. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10
  4758. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38
  4759. msgid "SSH Access"
  4760. msgstr ""
  4761. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:70
  4762. msgid "SSH server address"
  4763. msgstr ""
  4764. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:74
  4765. msgid "SSH server port"
  4766. msgstr ""
  4767. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:58
  4768. msgid "SSH username"
  4769. msgstr ""
  4770. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283
  4771. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51
  4772. msgid "SSH-Keys"
  4773. msgstr ""
  4774. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:156
  4775. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:181
  4776. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1732
  4777. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:375
  4778. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:141
  4779. msgid "SSID"
  4780. msgstr "SSID"
  4781. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9
  4782. msgid "SSTP"
  4783. msgstr ""
  4784. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41
  4785. msgid "SSTP Server"
  4786. msgstr ""
  4787. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339
  4788. msgid "SWAP"
  4789. msgstr ""
  4790. #: modules/luci-base/htdocs/luci-static/resources/form.js:2891
  4791. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2199
  4792. #: modules/luci-compat/luasrc/view/cbi/error.htm:17
  4793. #: modules/luci-compat/luasrc/view/cbi/footer.htm:26
  4794. #: modules/luci-compat/luasrc/view/cbi/header.htm:20
  4795. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:433
  4796. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:123
  4797. msgid "Save"
  4798. msgstr "Salva"
  4799. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2181
  4800. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4072
  4801. #: modules/luci-compat/luasrc/view/cbi/footer.htm:22
  4802. msgid "Save & Apply"
  4803. msgstr "Salva & Applica"
  4804. #: modules/luci-base/htdocs/luci-static/resources/form.js:602
  4805. msgid "Save error"
  4806. msgstr ""
  4807. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:404
  4808. msgid "Save mtdblock"
  4809. msgstr ""
  4810. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:394
  4811. msgid "Save mtdblock contents"
  4812. msgstr ""
  4813. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:879
  4814. msgid "Scan"
  4815. msgstr "Scan"
  4816. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:26
  4817. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:76
  4818. msgid "Scheduled Tasks"
  4819. msgstr "Operazioni programmate"
  4820. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4056
  4821. msgid "Section added"
  4822. msgstr "Sezione aggiunta"
  4823. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4058
  4824. msgid "Section removed"
  4825. msgstr "Sezione rimossa"
  4826. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:331
  4827. msgid "See \"mount\" manpage for details"
  4828. msgstr "Vedi \"mount\" manpage per dettagli"
  4829. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2643
  4830. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2783
  4831. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2948
  4832. msgid "Select file…"
  4833. msgstr "Seleziona file…"
  4834. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318
  4835. msgid "Selects the transmit hash policy to use for slave selection"
  4836. msgstr ""
  4837. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:768
  4838. msgid ""
  4839. "Send <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> "
  4840. "messages advertising this device as IPv6 router."
  4841. msgstr ""
  4842. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:650
  4843. msgid "Send ICMP redirects"
  4844. msgstr ""
  4845. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131
  4846. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115
  4847. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:101
  4848. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:75
  4849. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:88
  4850. #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:111
  4851. msgid ""
  4852. "Send LCP echo requests at the given interval in seconds, only effective in "
  4853. "conjunction with failure threshold"
  4854. msgstr ""
  4855. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:24
  4856. msgid "Send the hostname of this device"
  4857. msgstr ""
  4858. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:157
  4859. msgid "Server Settings"
  4860. msgstr "Impostazioni del server"
  4861. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:50
  4862. msgid "Service Name"
  4863. msgstr ""
  4864. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:88
  4865. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72
  4866. msgid "Service Type"
  4867. msgstr ""
  4868. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:36
  4869. msgid "Services"
  4870. msgstr "Servizi"
  4871. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2669
  4872. msgid "Session expired"
  4873. msgstr "Sessione scaduta"
  4874. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:117
  4875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:166
  4876. msgid "Set Static"
  4877. msgstr ""
  4878. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:911
  4879. msgid "Set interface as NDP-Proxy external slave. Default is off."
  4880. msgstr ""
  4881. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1215
  4882. msgid ""
  4883. "Set interface properties regardless of the link carrier (If set, carrier "
  4884. "sense events do not invoke hotplug handlers)."
  4885. msgstr ""
  4886. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300
  4887. msgid "Set same MAC Address to all slaves"
  4888. msgstr ""
  4889. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:786
  4890. msgid ""
  4891. "Set the autonomous address-configuration flag in the prefix information "
  4892. "options of sent <abbr title=\"Router Advertisement\">RA</abbr> messages. "
  4893. "When enabled, clients will perform stateless IPv6 address autoconfiguration."
  4894. msgstr ""
  4895. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719
  4896. msgid ""
  4897. "Set this interface as master for RA and DHCPv6 relaying as well as NDP "
  4898. "proxying."
  4899. msgstr ""
  4900. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304
  4901. msgid "Set to currently active slave (active, 1)"
  4902. msgstr ""
  4903. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305
  4904. msgid "Set to first slave added to the bond (follow, 2)"
  4905. msgstr ""
  4906. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55
  4907. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55
  4908. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23
  4909. msgid "Setting PLMN failed"
  4910. msgstr ""
  4911. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:68
  4912. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:26
  4913. msgid "Setting operation mode failed"
  4914. msgstr ""
  4915. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646
  4916. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:662
  4917. msgid "Setup DHCP Server"
  4918. msgstr ""
  4919. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906
  4920. msgid "Setup routes for proxied IPv6 neighbours."
  4921. msgstr ""
  4922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30
  4923. msgid "Severely Errored Seconds (SES)"
  4924. msgstr ""
  4925. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210
  4926. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:37
  4927. msgid "Short GI"
  4928. msgstr ""
  4929. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1157
  4930. msgid "Short Preamble"
  4931. msgstr ""
  4932. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:440
  4933. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18
  4934. msgid "Show current backup file list"
  4935. msgstr ""
  4936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293
  4937. msgid "Show empty chains"
  4938. msgstr ""
  4939. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:276
  4940. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:338
  4941. msgid "Show raw counters"
  4942. msgstr ""
  4943. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:510
  4944. msgid "Shutdown this interface"
  4945. msgstr ""
  4946. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  4947. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  4948. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  4949. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1731
  4950. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  4951. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:374
  4952. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:140
  4953. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:231
  4954. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  4955. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  4956. msgid "Signal"
  4957. msgstr "Segnale"
  4958. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2151
  4959. msgid "Signal / Noise"
  4960. msgstr ""
  4961. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25
  4962. msgid "Signal Attenuation (SATN)"
  4963. msgstr ""
  4964. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:125
  4965. msgid "Signal Refresh Rate"
  4966. msgstr ""
  4967. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:262
  4968. msgid "Signal:"
  4969. msgstr ""
  4970. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3809
  4971. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:217
  4972. msgid "Size"
  4973. msgstr "Dimensione"
  4974. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361
  4975. msgid "Size of DNS query cache"
  4976. msgstr ""
  4977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  4978. msgid "Size of the ZRam device in megabytes"
  4979. msgstr ""
  4980. #: modules/luci-compat/luasrc/view/cbi/footer.htm:18
  4981. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:57
  4982. msgid "Skip"
  4983. msgstr "Salta"
  4984. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40
  4985. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46
  4986. msgid "Skip to content"
  4987. msgstr "Salta a contenuto"
  4988. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39
  4989. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45
  4990. msgid "Skip to navigation"
  4991. msgstr "Salta a navigazione"
  4992. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178
  4993. msgid "Slave Interfaces"
  4994. msgstr ""
  4995. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  4996. #: modules/luci-compat/luasrc/model/network.lua:1428
  4997. msgid "Software VLAN"
  4998. msgstr ""
  4999. #: modules/luci-compat/luasrc/view/cbi/header.htm:5
  5000. msgid "Some fields are invalid, cannot save values!"
  5001. msgstr "Alcuni campi non sono validi, non è possibile salvare i valori!"
  5002. #: modules/luci-base/luasrc/view/error404.htm:9
  5003. msgid "Sorry, the object you requested was not found."
  5004. msgstr "Siamo spiacenti, l'oggetto che hai richiesto non è stato trovato."
  5005. #: modules/luci-base/luasrc/view/error500.htm:9
  5006. msgid "Sorry, the server encountered an unexpected error."
  5007. msgstr "Spiacente, il server ha rilevato un errore imprevisto."
  5008. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:412
  5009. msgid ""
  5010. "Sorry, there is no sysupgrade support present; a new firmware image must be "
  5011. "flashed manually. Please refer to the wiki for device specific install "
  5012. "instructions."
  5013. msgstr ""
  5014. "Spiacenti, non è presente alcun supporto sysupgrade, una nuova immagine "
  5015. "firmware deve essere memorizzata (Flash) manualmente. Si prega di fare "
  5016. "riferimento al wiki per le istruzioni di installazione di dispositivi "
  5017. "specifici."
  5018. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385
  5019. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70
  5020. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:184
  5021. msgid "Source"
  5022. msgstr "Origine"
  5023. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:84
  5024. msgid "Source Address"
  5025. msgstr ""
  5026. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:57
  5027. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:57
  5028. msgid "Source interface"
  5029. msgstr ""
  5030. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:891
  5031. msgid ""
  5032. "Specifies a fixed list of DNS search domains to announce via DHCPv6. If left "
  5033. "unspecified, the local device DNS search domain will be announced."
  5034. msgstr ""
  5035. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879
  5036. msgid ""
  5037. "Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. "
  5038. "If left unspecified, the device will announce itself as IPv6 DNS server "
  5039. "unless the <em>Local IPv6 DNS server</em> option is disabled."
  5040. msgstr ""
  5041. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342
  5042. msgid ""
  5043. "Specifies that duplicate frames (received on inactive ports) should be "
  5044. "dropped or delivered"
  5045. msgstr ""
  5046. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358
  5047. msgid "Specifies the ARP link monitoring frequency in milliseconds"
  5048. msgstr ""
  5049. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366
  5050. msgid "Specifies the IP addresses to use for ARP monitoring"
  5051. msgstr ""
  5052. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395
  5053. msgid "Specifies the MII link monitoring frequency in milliseconds"
  5054. msgstr ""
  5055. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259
  5056. msgid "Specifies the aggregation selection logic to use"
  5057. msgstr ""
  5058. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292
  5059. msgid "Specifies the directory the device is attached to"
  5060. msgstr "Specifica la cartella a cui è collegato il dispositivo in"
  5061. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:792
  5062. msgid ""
  5063. "Specifies the flags sent in <abbr title=\"Router Advertisement\">RA</abbr> "
  5064. "messages, for example to instruct clients to request further information via "
  5065. "stateful DHCPv6."
  5066. msgstr ""
  5067. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:252
  5068. msgid ""
  5069. "Specifies the mac-address for the actor in protocol packet exchanges "
  5070. "(LACPDUs). If empty, masters' mac address defaults to system default"
  5071. msgstr ""
  5072. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175
  5073. msgid ""
  5074. "Specifies the maximum amount of failed ARP requests until hosts are presumed "
  5075. "to be dead"
  5076. msgstr ""
  5077. "Consente di specificare la quantità massima di richieste ARP fallite prima "
  5078. "di presumere che l'host sia morto"
  5079. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:171
  5080. msgid ""
  5081. "Specifies the maximum amount of seconds after which hosts are presumed to be "
  5082. "dead"
  5083. msgstr ""
  5084. "Specifica la quantità massima di secondi dopo di che si presume che gli host "
  5085. "siano morti."
  5086. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:946
  5087. msgid ""
  5088. "Specifies the maximum transmit power the wireless radio may use. Depending "
  5089. "on regulatory requirements and wireless usage, the actual transmit power may "
  5090. "be reduced by the driver."
  5091. msgstr ""
  5092. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:236
  5093. msgid ""
  5094. "Specifies the minimum number of links that must be active before asserting "
  5095. "carrier"
  5096. msgstr ""
  5097. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200
  5098. msgid "Specifies the mode to be used for this bonding interface"
  5099. msgstr ""
  5100. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333
  5101. msgid ""
  5102. "Specifies the number of IGMP membership reports to be issued after a "
  5103. "failover event in 200ms intervals"
  5104. msgstr ""
  5105. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276
  5106. msgid ""
  5107. "Specifies the number of packets to transmit through a slave before moving to "
  5108. "the next one"
  5109. msgstr ""
  5110. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310
  5111. msgid ""
  5112. "Specifies the number of peer notifications (gratuitous ARPs and unsolicited "
  5113. "IPv6 Neighbor Advertisements) to be issued after a failover event"
  5114. msgstr ""
  5115. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284
  5116. msgid ""
  5117. "Specifies the number of seconds between instances where the bonding driver "
  5118. "sends learning packets to each slaves peer switch"
  5119. msgstr ""
  5120. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374
  5121. msgid "Specifies the quantity of ARP IP targets that must be reachable"
  5122. msgstr ""
  5123. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268
  5124. msgid ""
  5125. "Specifies the rate in which the link partner will be asked to transmit "
  5126. "LACPDU packets"
  5127. msgstr ""
  5128. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225
  5129. msgid ""
  5130. "Specifies the reselection policy for the primary slave when failure of the "
  5131. "active slave or recovery of the primary slave occurs"
  5132. msgstr ""
  5133. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244
  5134. msgid "Specifies the system priority"
  5135. msgstr ""
  5136. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403
  5137. msgid ""
  5138. "Specifies the time in milliseconds to wait before disabling a slave after a "
  5139. "link failure detection"
  5140. msgstr ""
  5141. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411
  5142. msgid ""
  5143. "Specifies the time in milliseconds to wait before enabling a slave after a "
  5144. "link recovery detection"
  5145. msgstr ""
  5146. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:494
  5147. msgid ""
  5148. "Specifies the wired ports to attach to this bridge. In order to attach "
  5149. "wireless networks, choose the associated interface as network in the "
  5150. "wireless settings."
  5151. msgstr ""
  5152. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382
  5153. msgid ""
  5154. "Specifies whether ARP probes and replies should be validated or non-ARP "
  5155. "traffic should be filtered for link monitoring"
  5156. msgstr ""
  5157. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301
  5158. msgid ""
  5159. "Specifies whether active-backup mode should set all slaves to the same MAC "
  5160. "address at enslavement"
  5161. msgstr ""
  5162. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419
  5163. msgid ""
  5164. "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. "
  5165. "netif_carrier_ok()"
  5166. msgstr ""
  5167. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293
  5168. msgid ""
  5169. "Specifies whether to shuffle active flows across slaves based on the load"
  5170. msgstr ""
  5171. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179
  5172. msgid ""
  5173. "Specifies which slave interfaces should be attached to this bonding interface"
  5174. msgstr ""
  5175. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212
  5176. msgid ""
  5177. "Specifies which slave is the primary device. It will always be the active "
  5178. "slave while it is available"
  5179. msgstr ""
  5180. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63
  5181. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67
  5182. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:62
  5183. msgid "Specify a TOS (Type of Service)."
  5184. msgstr ""
  5185. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:74
  5186. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:79
  5187. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5188. msgid ""
  5189. "Specify a TOS (Type of Service). Can be <code>inherit</code> (the outer "
  5190. "header inherits the value of the inner header) or an hexadecimal value "
  5191. "<code>00..FF</code> (optional)."
  5192. msgstr ""
  5193. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:74
  5194. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:74
  5195. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:79
  5196. msgid ""
  5197. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5198. "default (64) (optional)."
  5199. msgstr ""
  5200. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:69
  5201. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58
  5202. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62
  5203. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:57
  5204. msgid ""
  5205. "Specify a TTL (Time to Live) for the encapsulating packet other than the "
  5206. "default (64)."
  5207. msgstr ""
  5208. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5209. msgid ""
  5210. "Specify a Traffic Class. Can be <code>inherit</code> (the outer header "
  5211. "inherits the value of the inner header) or an hexadecimal value <code>00.."
  5212. "FF</code> (optional)."
  5213. msgstr ""
  5214. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:64
  5215. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:69
  5216. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:69
  5217. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:74
  5218. msgid ""
  5219. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5220. "bytes) (optional)."
  5221. msgstr ""
  5222. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53
  5223. msgid ""
  5224. "Specify an MTU (Maximum Transmission Unit) other than the default (1280 "
  5225. "bytes)."
  5226. msgstr ""
  5227. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  5228. msgid "Specify the secret encryption key here."
  5229. msgstr "Specificare la chiave di cifratura qui."
  5230. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5231. msgid "Stale neighbour cache timeout"
  5232. msgstr ""
  5233. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:669
  5234. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:99
  5235. msgid "Start"
  5236. msgstr "Inizio"
  5237. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:134
  5238. msgid "Start WPS"
  5239. msgstr ""
  5240. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:76
  5241. msgid "Start priority"
  5242. msgstr "Priorità di avvio"
  5243. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1835
  5244. msgid "Start refresh"
  5245. msgstr ""
  5246. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4276
  5247. msgid "Starting configuration apply…"
  5248. msgstr "Inizializzazione configurazione"
  5249. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1748
  5250. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:398
  5251. msgid "Starting wireless scan..."
  5252. msgstr ""
  5253. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:109
  5254. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64
  5255. msgid "Startup"
  5256. msgstr "Avvio"
  5257. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5258. msgid "Static IPv4 Routes"
  5259. msgstr "Instradamento statico IPv4"
  5260. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:19
  5261. msgid "Static IPv6 Routes"
  5262. msgstr "Instradamento statico IPv6"
  5263. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:90
  5264. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:129
  5265. msgid "Static Lease"
  5266. msgstr "Contratto Statico"
  5267. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:165
  5268. msgid "Static Leases"
  5269. msgstr "Contratti Statici"
  5270. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76
  5271. msgid "Static Routes"
  5272. msgstr "Instradamenti Statici"
  5273. #: modules/luci-base/htdocs/luci-static/resources/network.js:2099
  5274. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:172
  5275. #: modules/luci-compat/luasrc/model/network.lua:967
  5276. msgid "Static address"
  5277. msgstr "Indirizzo Statico"
  5278. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:411
  5279. msgid ""
  5280. "Static leases are used to assign fixed IP addresses and symbolic hostnames "
  5281. "to DHCP clients. They are also required for non-dynamic interface "
  5282. "configurations where only hosts with a corresponding lease are served."
  5283. msgstr ""
  5284. "I contratti statici vengono utilizzati per assegnare indirizzi IP fissi e "
  5285. "nomi host simbolici ai client DHCP. Essi sono necessari anche per interfacce "
  5286. "di configurazione non dinamici, dove solo gli host col contratto "
  5287. "corrispondente vengono serviti."
  5288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  5289. msgid "Station inactivity limit"
  5290. msgstr ""
  5291. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16
  5292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541
  5293. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:928
  5294. #: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9
  5295. msgid "Status"
  5296. msgstr "Stato"
  5297. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:512
  5298. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:101
  5299. msgid "Stop"
  5300. msgstr "Arresta"
  5301. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:129
  5302. msgid "Stop WPS"
  5303. msgstr ""
  5304. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1746
  5305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1840
  5306. msgid "Stop refresh"
  5307. msgstr ""
  5308. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:629
  5309. msgid "Strict filtering"
  5310. msgstr ""
  5311. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259
  5312. msgid "Strict order"
  5313. msgstr "Ordine stretto"
  5314. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:33
  5315. msgid "Strong"
  5316. msgstr ""
  5317. #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61
  5318. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2036
  5319. msgid "Submit"
  5320. msgstr "Invia"
  5321. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203
  5322. msgid "Suppress logging"
  5323. msgstr ""
  5324. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:204
  5325. msgid "Suppress logging of the routine operation of these protocols"
  5326. msgstr ""
  5327. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:44
  5328. msgid "Swap free"
  5329. msgstr ""
  5330. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5331. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:3
  5332. msgid "Switch"
  5333. msgstr "Switch"
  5334. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:172
  5335. msgid "Switch %q"
  5336. msgstr "Switch %q"
  5337. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:150
  5338. msgid ""
  5339. "Switch %q has an unknown topology - the VLAN settings might not be accurate."
  5340. msgstr ""
  5341. #: modules/luci-base/htdocs/luci-static/resources/network.js:2998
  5342. #: modules/luci-compat/luasrc/model/network.lua:1426
  5343. msgid "Switch VLAN"
  5344. msgstr ""
  5345. #: modules/luci-base/htdocs/luci-static/resources/network.js:2995
  5346. msgid "Switch port"
  5347. msgstr ""
  5348. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:560
  5349. msgid "Switch protocol"
  5350. msgstr "Cambia protocollo"
  5351. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:103
  5352. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:104
  5353. #: modules/luci-compat/luasrc/view/cbi/ipaddr.htm:26
  5354. msgid "Switch to CIDR list notation"
  5355. msgstr ""
  5356. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2678
  5357. msgid "Symbolic link"
  5358. msgstr ""
  5359. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:75
  5360. msgid "Sync with NTP-Server"
  5361. msgstr ""
  5362. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:67
  5363. msgid "Sync with browser"
  5364. msgstr "Sincronizza con il browser"
  5365. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26
  5366. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17
  5367. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:99
  5368. #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:3
  5369. msgid "System"
  5370. msgstr "SIstema"
  5371. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:25
  5372. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:39
  5373. msgid "System Log"
  5374. msgstr "Registro di Sistema"
  5375. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243
  5376. msgid "System Priority"
  5377. msgstr ""
  5378. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104
  5379. msgid "System Properties"
  5380. msgstr "Proprietà di Sistema"
  5381. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:148
  5382. msgid "System log buffer size"
  5383. msgstr "Dimensione buffer log di sistema"
  5384. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338
  5385. msgid "TCP:"
  5386. msgstr "TCP:"
  5387. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:163
  5388. msgid "TFTP Settings"
  5389. msgstr "Impostazioni TFTP"
  5390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:371
  5391. msgid "TFTP server root"
  5392. msgstr "Server TFTP principale"
  5393. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:50
  5394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:85
  5395. msgid "TX"
  5396. msgstr "TX"
  5397. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:232
  5398. msgid "TX Rate"
  5399. msgstr "Velocità TX"
  5400. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:618
  5401. msgid "TX queue length"
  5402. msgstr ""
  5403. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18
  5404. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:167
  5405. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:186
  5406. msgid "Table"
  5407. msgstr "Tabella"
  5408. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:31
  5409. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66
  5410. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:164
  5411. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:183
  5412. msgid "Target"
  5413. msgstr "Destinazione"
  5414. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103
  5415. msgid "Target network"
  5416. msgstr ""
  5417. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:50
  5418. msgid "Terminate"
  5419. msgstr "Termina"
  5420. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:832
  5421. msgid ""
  5422. "The <abbr title=\"Maximum Transmission Unit\">MTU</abbr> to be published in "
  5423. "<abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages. "
  5424. "Minimum is 1280 bytes."
  5425. msgstr ""
  5426. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:794
  5427. msgid ""
  5428. "The <em>Managed address configuration</em> (M) flag indicates that IPv6 "
  5429. "addresses are available via DHCPv6."
  5430. msgstr ""
  5431. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:798
  5432. msgid ""
  5433. "The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is "
  5434. "also acting as Mobile IPv6 home agent on this link."
  5435. msgstr ""
  5436. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:796
  5437. msgid ""
  5438. "The <em>Other configuration</em> (O) flag indicates that other information, "
  5439. "such as DNS servers, is available via DHCPv6."
  5440. msgstr ""
  5441. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:84
  5442. msgid "The <em>block mount</em> command failed with code %d"
  5443. msgstr ""
  5444. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:937
  5445. msgid ""
  5446. "The DNS server entries in the local resolv.conf are primarily sorted by the "
  5447. "weight specified here"
  5448. msgstr ""
  5449. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:77
  5450. msgid ""
  5451. "The HE.net endpoint update configuration changed, you must now use the plain "
  5452. "username instead of the user ID!"
  5453. msgstr ""
  5454. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40
  5455. msgid "The IPv4 address or the fully-qualified domain name of the remote end."
  5456. msgstr ""
  5457. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42
  5458. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42
  5459. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:40
  5460. msgid ""
  5461. "The IPv4 address or the fully-qualified domain name of the remote tunnel end."
  5462. msgstr ""
  5463. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40
  5464. msgid "The IPv6 address or the fully-qualified domain name of the remote end."
  5465. msgstr ""
  5466. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42
  5467. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42
  5468. msgid ""
  5469. "The IPv6 address or the fully-qualified domain name of the remote tunnel end."
  5470. msgstr ""
  5471. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53
  5472. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59
  5473. msgid ""
  5474. "The IPv6 prefix assigned to the provider, usually ends with <code>::</code>"
  5475. msgstr ""
  5476. "Il prefisso IPv6 assegnati dal provider, si conclude di solito con <code>::</"
  5477. "code>"
  5478. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:586
  5479. msgid "The MTU must not exceed the parent device MTU of %d bytes"
  5480. msgstr ""
  5481. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:864
  5482. msgid "The VLAN ID must be unique"
  5483. msgstr ""
  5484. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1996
  5485. msgid ""
  5486. "The allowed characters are: <code>A-Z</code>, <code>a-z</code>, <code>0-9</"
  5487. "code> and <code>_</code>"
  5488. msgstr ""
  5489. #: modules/luci-compat/luasrc/view/cbi/error.htm:6
  5490. msgid "The configuration file could not be loaded due to the following error:"
  5491. msgstr ""
  5492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1990
  5493. msgid ""
  5494. "The correct SSID must be manually specified when joining a hidden wireless "
  5495. "network"
  5496. msgstr ""
  5497. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4152
  5498. msgid ""
  5499. "The device could not be reached within %d seconds after applying the pending "
  5500. "changes, which caused the configuration to be rolled back for safety "
  5501. "reasons. If you believe that the configuration changes are correct "
  5502. "nonetheless, perform an unchecked configuration apply. Alternatively, you "
  5503. "can dismiss this warning and edit changes before attempting to apply again, "
  5504. "or revert all pending changes to keep the currently working configuration "
  5505. "state."
  5506. msgstr ""
  5507. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:280
  5508. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:392
  5509. msgid ""
  5510. "The device file of the memory or partition (<abbr title=\"for example\">e.g."
  5511. "</abbr> <code>/dev/sda1</code>)"
  5512. msgstr ""
  5513. "Il file del dispositivo di memoria o della partizione (<abbr title=\"per "
  5514. "esempio\">e.s.</abbr> <code>/dev/sda1</code>)"
  5515. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450
  5516. msgid "The device name \"%s\" is already taken"
  5517. msgstr ""
  5518. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393
  5519. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427
  5520. msgid ""
  5521. "The existing network configuration needs to be changed for LuCI to function "
  5522. "properly."
  5523. msgstr ""
  5524. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:793
  5525. msgid ""
  5526. "The existing wireless configuration needs to be changed for LuCI to function "
  5527. "properly."
  5528. msgstr ""
  5529. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:215
  5530. msgid ""
  5531. "The flash image was uploaded. Below is the checksum and file size listed, "
  5532. "compare them with the original file to ensure data integrity. <br /> Click "
  5533. "'Continue' below to start the flash procedure."
  5534. msgstr ""
  5535. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:198
  5536. msgid "The following rules are currently active on this system."
  5537. msgstr "Le seguenti regole sono al momento attive su questo sistema."
  5538. #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:154
  5539. msgid "The gateway address must not be a local IP address"
  5540. msgstr ""
  5541. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166
  5542. msgid "The given SSH public key has already been added."
  5543. msgstr ""
  5544. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172
  5545. msgid ""
  5546. "The given SSH public key is invalid. Please supply proper public RSA or "
  5547. "ECDSA keys."
  5548. msgstr ""
  5549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1088
  5550. msgid "The interface name is already used"
  5551. msgstr ""
  5552. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1094
  5553. msgid "The interface name is too long"
  5554. msgstr ""
  5555. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:61
  5556. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:55
  5557. msgid ""
  5558. "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 "
  5559. "addresses."
  5560. msgstr ""
  5561. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:57
  5562. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:63
  5563. msgid "The length of the IPv6 prefix in bits"
  5564. msgstr ""
  5565. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163
  5566. msgid "The local IPv4 address"
  5567. msgstr ""
  5568. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46
  5569. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46
  5570. #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:44
  5571. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:44
  5572. msgid "The local IPv4 address over which the tunnel is created (optional)."
  5573. msgstr ""
  5574. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169
  5575. msgid "The local IPv4 netmask"
  5576. msgstr ""
  5577. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46
  5578. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:53
  5579. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44
  5580. msgid "The local IPv6 address over which the tunnel is created (optional)."
  5581. msgstr ""
  5582. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575
  5583. msgid ""
  5584. "The max response time in centiseconds inserted into group-specific queries "
  5585. "sent in response to leave group messages. It is also the amount of time "
  5586. "between group-specific query messages. This value may be tuned to modify the "
  5587. "\"leave latency\" of the network. A reduced value results in reduced time to "
  5588. "detect the loss of the last member of a group"
  5589. msgstr ""
  5590. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561
  5591. msgid ""
  5592. "The max response time in centiseconds inserted into the periodic general "
  5593. "queries. By varying the value, an administrator may tune the burstiness of "
  5594. "IGMP messages on the subnet; larger values make the traffic less bursty, as "
  5595. "host responses are spread out over a larger interval"
  5596. msgstr ""
  5597. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:849
  5598. msgid ""
  5599. "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</"
  5600. "abbr> messages. Maximum is 255 hops."
  5601. msgstr ""
  5602. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2002
  5603. msgid "The network name is already used"
  5604. msgstr ""
  5605. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139
  5606. msgid ""
  5607. "The network ports on this device can be combined to several <abbr title="
  5608. "\"Virtual Local Area Network\">VLAN</abbr>s in which computers can "
  5609. "communicate directly with each other. <abbr title=\"Virtual Local Area "
  5610. "Network\">VLAN</abbr>s are often used to separate different network "
  5611. "segments. Often there is by default one Uplink port for a connection to the "
  5612. "next greater network like the internet and other ports for a local network."
  5613. msgstr ""
  5614. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:569
  5615. msgid "The query response interval must be lower than the query interval value"
  5616. msgstr ""
  5617. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158
  5618. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:42
  5619. msgid "The reboot command failed with code %d"
  5620. msgstr ""
  5621. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:147
  5622. msgid "The restore command failed with code %d"
  5623. msgstr ""
  5624. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551
  5625. msgid ""
  5626. "The robustness value allows tuning for the expected packet loss on the "
  5627. "network. If a network is expected to be lossy, the robustness value may be "
  5628. "increased. IGMP is robust to (Robustness-1) packet losses"
  5629. msgstr ""
  5630. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1369
  5631. msgid "The selected %s mode is incompatible with %s encryption"
  5632. msgstr ""
  5633. #: modules/luci-base/luasrc/view/csrftoken.htm:11
  5634. msgid "The submitted security token is invalid or already expired!"
  5635. msgstr ""
  5636. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:98
  5637. msgid ""
  5638. "The system is erasing the configuration partition now and will reboot itself "
  5639. "when finished."
  5640. msgstr ""
  5641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:289
  5642. msgid ""
  5643. "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
  5644. "few minutes before you try to reconnect. It might be necessary to renew the "
  5645. "address of your computer to reach the device again, depending on your "
  5646. "settings."
  5647. msgstr ""
  5648. "Il sistema sta scrivendo sulla memoria flash.<br /> NON SPEGNERE IL "
  5649. "DISPOSITIVO!<br /> Attendere alcuni minuti prima di provare a ricollegarsi. "
  5650. "Potrebbe essere necessario rinnovare l'indirizzo del computer per "
  5651. "raggiungere nuovamente il dispositivo, a seconda delle impostazioni."
  5652. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:163
  5653. msgid ""
  5654. "The system is rebooting now. If the restored configuration changed the "
  5655. "current LAN IP address, you might need to reconnect manually."
  5656. msgstr ""
  5657. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:85
  5658. msgid "The system password has been successfully changed."
  5659. msgstr ""
  5660. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:315
  5661. msgid "The sysupgrade command failed with code %d"
  5662. msgstr ""
  5663. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:120
  5664. msgid ""
  5665. "The uploaded backup archive appears to be valid and contains the files "
  5666. "listed below. Press \"Continue\" to restore the backup and reboot, or "
  5667. "\"Cancel\" to abort the operation."
  5668. msgstr ""
  5669. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115
  5670. msgid "The uploaded backup archive is not readable"
  5671. msgstr ""
  5672. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:244
  5673. msgid "The uploaded firmware does not allow keeping current configuration."
  5674. msgstr ""
  5675. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:239
  5676. msgid ""
  5677. "The uploaded image file does not contain a supported format. Make sure that "
  5678. "you choose the generic image format for your platform."
  5679. msgstr ""
  5680. "The uploaded image file does not contain a supported format. Make sure that "
  5681. "you choose the generic image format for your platform."
  5682. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  5683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  5684. msgid "The value is overridden by configuration. Original: %s"
  5685. msgstr ""
  5686. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:562
  5687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:594
  5688. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:121
  5689. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:170
  5690. msgid "There are no active leases"
  5691. msgstr "Non ci sono lease attivi"
  5692. #: modules/luci-base/htdocs/luci-static/resources/ui.js:4291
  5693. msgid "There are no changes to apply"
  5694. msgstr "Non ci sono modifiche da applicare"
  5695. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:55
  5696. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:213
  5697. #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60
  5698. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80
  5699. msgid ""
  5700. "There is no password set on this router. Please configure a root password to "
  5701. "protect the web interface."
  5702. msgstr ""
  5703. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:49
  5704. msgid "This IPv4 address of the relay"
  5705. msgstr ""
  5706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1623
  5707. msgid "This authentication type is not applicable to the selected EAP method."
  5708. msgstr ""
  5709. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:57
  5710. msgid "This does not look like a valid PEM file"
  5711. msgstr ""
  5712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:256
  5713. msgid ""
  5714. "This file may contain lines like 'server=/domain/1.2.3.4' or "
  5715. "'server=1.2.3.4' for domain-specific or full upstream <abbr title=\"Domain "
  5716. "Name System\">DNS</abbr> servers."
  5717. msgstr ""
  5718. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:424
  5719. #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16
  5720. msgid ""
  5721. "This is a list of shell glob patterns for matching files and directories to "
  5722. "include during sysupgrade. Modified files in /etc/config/ and certain other "
  5723. "configurations are automatically preserved."
  5724. msgstr ""
  5725. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:81
  5726. msgid ""
  5727. "This is either the \"Update Key\" configured for the tunnel or the account "
  5728. "password if no update key has been configured"
  5729. msgstr ""
  5730. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:116
  5731. msgid ""
  5732. "This is the content of /etc/rc.local. Insert your own commands here (in "
  5733. "front of 'exit 0') to execute them at the end of the boot process."
  5734. msgstr ""
  5735. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54
  5736. msgid ""
  5737. "This is the local endpoint address assigned by the tunnel broker, it usually "
  5738. "ends with <code>...:2/64</code>"
  5739. msgstr ""
  5740. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:173
  5741. msgid ""
  5742. "This is the only <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  5743. "abbr> in the local network"
  5744. msgstr ""
  5745. "Questo è l’unico server <abbr title=\"Dynamic Host Configuration Protocol"
  5746. "\">DHCP</abbr> nella rete locale"
  5747. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73
  5748. msgid "This is the plain username for logging into the account"
  5749. msgstr ""
  5750. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:57
  5751. msgid ""
  5752. "This is the prefix routed to you by the tunnel broker for use by clients"
  5753. msgstr ""
  5754. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:28
  5755. msgid "This is the system crontab in which scheduled tasks can be defined."
  5756. msgstr ""
  5757. "Questa è la crontab del sistema nella quale possono essere definiti le "
  5758. "operazioni da programmare."
  5759. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:50
  5760. msgid ""
  5761. "This is usually the address of the nearest PoP operated by the tunnel broker"
  5762. msgstr ""
  5763. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:65
  5764. msgid ""
  5765. "This list gives an overview over currently running system processes and "
  5766. "their status."
  5767. msgstr ""
  5768. "Questa lista da un riassunto dei processi correntemente attivi e del loro "
  5769. "stato."
  5770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1577
  5771. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1635
  5772. msgid ""
  5773. "This option cannot be used because the ca-bundle package is not installed."
  5774. msgstr ""
  5775. #: modules/luci-base/htdocs/luci-static/resources/form.js:2230
  5776. #: modules/luci-base/htdocs/luci-static/resources/form.js:2536
  5777. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:172
  5778. #: modules/luci-compat/luasrc/view/cbi/tsection.htm:32
  5779. msgid "This section contains no values yet"
  5780. msgstr "Questa sezione non contiene ancora valori"
  5781. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:110
  5782. msgid "Time Synchronization"
  5783. msgstr "Sincronizzazione Orario"
  5784. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653
  5785. msgid "Time in milliseconds"
  5786. msgstr ""
  5787. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527
  5788. msgid "Time in seconds to spend in listening and learning states"
  5789. msgstr ""
  5790. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  5791. msgid "Time interval for rekeying GTK"
  5792. msgstr ""
  5793. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:15
  5794. msgid "Timed-out"
  5795. msgstr ""
  5796. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:657
  5797. msgid "Timeout in seconds"
  5798. msgstr ""
  5799. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:513
  5800. msgid "Timeout in seconds for learned MAC addresses in the forwarding database"
  5801. msgstr ""
  5802. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:532
  5803. msgid "Timeout in seconds until topology updates on link loss"
  5804. msgstr ""
  5805. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:131
  5806. msgid "Timezone"
  5807. msgstr "Fuso orario"
  5808. #: modules/luci-base/htdocs/luci-static/resources/luci.js:2679
  5809. msgid "To login…"
  5810. msgstr ""
  5811. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:370
  5812. msgid ""
  5813. "To restore configuration files, you can upload a previously generated backup "
  5814. "archive here. To reset the firmware to its initial state, click \"Perform "
  5815. "reset\" (only possible with squashfs images)."
  5816. msgstr ""
  5817. "Per ripristinare i file configurazione, puoi inviare un archivio di backup "
  5818. "generato precedentemente qui. Per ripristinare il firmware al suo stato "
  5819. "iniziale premi \"Esegui Ripristino\" (solo per firmware basati su squashfs)."
  5820. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1462
  5821. msgid "Tone"
  5822. msgstr ""
  5823. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:35
  5824. msgid "Total Available"
  5825. msgstr "Totale"
  5826. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:102
  5827. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103
  5828. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113
  5829. msgid "Traceroute"
  5830. msgstr ""
  5831. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:54
  5832. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:65
  5833. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:109
  5834. msgid "Traffic"
  5835. msgstr "Traffico"
  5836. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:79
  5837. #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:84
  5838. msgid "Traffic Class"
  5839. msgstr ""
  5840. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:387
  5841. msgid "Transfer"
  5842. msgstr ""
  5843. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:24
  5844. msgid "Transmit"
  5845. msgstr "Trasmissione"
  5846. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317
  5847. msgid "Transmit Hash Policy"
  5848. msgstr ""
  5849. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74
  5850. msgid "Trigger"
  5851. msgstr ""
  5852. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:19
  5853. msgid "Trigger Mode"
  5854. msgstr ""
  5855. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:69
  5856. msgid "Tunnel ID"
  5857. msgstr ""
  5858. #: modules/luci-base/htdocs/luci-static/resources/network.js:3001
  5859. #: modules/luci-compat/luasrc/model/network.lua:1431
  5860. msgid "Tunnel Interface"
  5861. msgstr ""
  5862. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:44
  5863. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:55
  5864. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:76
  5865. msgid "Tunnel Link"
  5866. msgstr ""
  5867. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1371
  5868. msgid "Tunnel device"
  5869. msgstr ""
  5870. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  5871. msgid "Tx-Power"
  5872. msgstr ""
  5873. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:45
  5874. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1402
  5875. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:163
  5876. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:43
  5877. msgid "Type"
  5878. msgstr "Tipo"
  5879. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328
  5880. msgid "UDP:"
  5881. msgstr ""
  5882. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:91
  5883. msgid "UMTS only"
  5884. msgstr ""
  5885. #: modules/luci-compat/luasrc/model/network/proto_3g.lua:10
  5886. #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:43
  5887. msgid "UMTS/GPRS/EV-DO"
  5888. msgstr ""
  5889. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254
  5890. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360
  5891. msgid "UUID"
  5892. msgstr ""
  5893. #: modules/luci-base/htdocs/luci-static/resources/network.js:16
  5894. #: modules/luci-base/htdocs/luci-static/resources/network.js:17
  5895. #: modules/luci-compat/luasrc/model/network.lua:34
  5896. #: modules/luci-compat/luasrc/model/network.lua:35
  5897. msgid "Unable to determine device name"
  5898. msgstr ""
  5899. #: modules/luci-base/htdocs/luci-static/resources/network.js:18
  5900. #: modules/luci-compat/luasrc/model/network.lua:36
  5901. msgid "Unable to determine external IP address"
  5902. msgstr ""
  5903. #: modules/luci-base/htdocs/luci-static/resources/network.js:19
  5904. #: modules/luci-compat/luasrc/model/network.lua:37
  5905. msgid "Unable to determine upstream interface"
  5906. msgstr ""
  5907. #: modules/luci-base/luasrc/view/error404.htm:11
  5908. msgid "Unable to dispatch"
  5909. msgstr ""
  5910. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:9
  5911. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js:15
  5912. msgid "Unable to load log data:"
  5913. msgstr ""
  5914. #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54
  5915. #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54
  5916. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22
  5917. msgid "Unable to obtain client ID"
  5918. msgstr ""
  5919. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:221
  5920. msgid "Unable to obtain mount information"
  5921. msgstr ""
  5922. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:307
  5923. msgid "Unable to reset ip6tables counters: %s"
  5924. msgstr ""
  5925. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:305
  5926. msgid "Unable to reset iptables counters: %s"
  5927. msgstr ""
  5928. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:61
  5929. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:7
  5930. msgid "Unable to resolve AFTR host name"
  5931. msgstr ""
  5932. #: modules/luci-base/htdocs/luci-static/resources/network.js:20
  5933. #: modules/luci-compat/luasrc/model/network.lua:38
  5934. msgid "Unable to resolve peer host name"
  5935. msgstr ""
  5936. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:313
  5937. msgid "Unable to restart firewall: %s"
  5938. msgstr ""
  5939. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:20
  5940. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340
  5941. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:57
  5942. msgid "Unable to save contents: %s"
  5943. msgstr ""
  5944. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32
  5945. msgid "Unavailable Seconds (UAS)"
  5946. msgstr ""
  5947. #: modules/luci-base/htdocs/luci-static/resources/fs.js:102
  5948. msgid "Unexpected reply data format"
  5949. msgstr ""
  5950. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1434
  5951. msgid ""
  5952. "Unique Local Address - in the range <code>fc00::/7</code>. Typically only "
  5953. "within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is "
  5954. "analogous to IPv4 private network addressing. This prefix is randomly "
  5955. "generated at first install."
  5956. msgstr ""
  5957. #: modules/luci-base/htdocs/luci-static/resources/network.js:2101
  5958. #: modules/luci-compat/luasrc/model/network.lua:971
  5959. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:17
  5960. msgid "Unknown"
  5961. msgstr "Sconosciuto"
  5962. #: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47
  5963. msgid "Unknown and unsupported connection method."
  5964. msgstr ""
  5965. #: modules/luci-base/htdocs/luci-static/resources/network.js:2410
  5966. #: modules/luci-compat/luasrc/model/network.lua:1138
  5967. msgid "Unknown error (%s)"
  5968. msgstr ""
  5969. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:412
  5970. msgid "Unknown error code"
  5971. msgstr ""
  5972. #: modules/luci-base/htdocs/luci-static/resources/network.js:2098
  5973. #: modules/luci-base/htdocs/luci-static/resources/protocol/none.js:6
  5974. #: modules/luci-compat/luasrc/model/network.lua:965
  5975. msgid "Unmanaged"
  5976. msgstr "Non gestito"
  5977. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:195
  5978. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:217
  5979. msgid "Unmount"
  5980. msgstr "Smonta"
  5981. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115
  5982. msgid "Unnamed key"
  5983. msgstr ""
  5984. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3996
  5985. msgid "Unsaved Changes"
  5986. msgstr "Modifiche non salvate"
  5987. #: modules/luci-base/htdocs/luci-static/resources/rpc.js:410
  5988. msgid "Unspecified error"
  5989. msgstr ""
  5990. #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:64
  5991. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:9
  5992. msgid "Unsupported MAP type"
  5993. msgstr ""
  5994. #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:69
  5995. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:27
  5996. msgid "Unsupported modem"
  5997. msgstr ""
  5998. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:299
  5999. msgid "Unsupported protocol type."
  6000. msgstr "Tipo protocollo non supportato."
  6001. #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:151
  6002. msgid "Up"
  6003. msgstr ""
  6004. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410
  6005. msgid "Up Delay"
  6006. msgstr ""
  6007. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3883
  6008. msgid "Upload"
  6009. msgstr "Upload"
  6010. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:411
  6011. msgid ""
  6012. "Upload a sysupgrade-compatible image here to replace the running firmware."
  6013. msgstr ""
  6014. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138
  6015. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169
  6016. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:382
  6017. msgid "Upload archive..."
  6018. msgstr "Carica archivio..."
  6019. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2837
  6020. msgid "Upload file"
  6021. msgstr ""
  6022. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2812
  6023. msgid "Upload file…"
  6024. msgstr ""
  6025. #: modules/luci-base/htdocs/luci-static/resources/ui.js:2759
  6026. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3871
  6027. msgid "Upload request failed: %s"
  6028. msgstr ""
  6029. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3790
  6030. #: modules/luci-base/htdocs/luci-static/resources/ui.js:3844
  6031. msgid "Uploading file…"
  6032. msgstr ""
  6033. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:794
  6034. msgid ""
  6035. "Upon pressing \"Continue\", anonymous \"wifi-iface\" sections will be "
  6036. "assigned with a name in the form <em>wifinet#</em> and the network will be "
  6037. "restarted to apply the updated configuration."
  6038. msgstr ""
  6039. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:394
  6040. msgid ""
  6041. "Upon pressing \"Continue\", bridges configuration will be updated and the "
  6042. "network will be restarted to apply the updated configuration."
  6043. msgstr ""
  6044. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:428
  6045. msgid ""
  6046. "Upon pressing \"Continue\", ifname options will get renamed and the network "
  6047. "will be restarted to apply the updated configuration."
  6048. msgstr ""
  6049. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82
  6050. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60
  6051. msgid "Uptime"
  6052. msgstr "Uptime"
  6053. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:177
  6054. msgid "Use <code>/etc/ethers</code>"
  6055. msgstr "Usa <code>/etc/ethers</code>"
  6056. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:271
  6057. msgid "Use DHCP advertised servers"
  6058. msgstr "Utilizza server suggeriti dal DHCP"
  6059. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167
  6060. msgid "Use DHCP gateway"
  6061. msgstr "Usa il DHCP del gateway"
  6062. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:923
  6063. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:68
  6064. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:121
  6065. msgid "Use DNS servers advertised by peer"
  6066. msgstr "Usa i server DNS annunciati dal peer"
  6067. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:622
  6068. msgid "Use ISO/IEC 3166 alpha2 country codes."
  6069. msgstr "Usa i codici delle nazioni ISO/IEC 3166 alpha2."
  6070. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/464xlat.js:48
  6071. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:89
  6072. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:69
  6073. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:53
  6074. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:67
  6075. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84
  6076. msgid "Use MTU on tunnel interface"
  6077. msgstr "Usa MTU nel tunnel dell'interfaccia"
  6078. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85
  6079. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65
  6080. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6to4.js:49
  6081. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:80
  6082. msgid "Use TTL on tunnel interface"
  6083. msgstr "Usa TTL nel tunnel dell'interfaccia"
  6084. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320
  6085. msgid "Use XOR of hardware MAC addresses (layer2)"
  6086. msgstr ""
  6087. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321
  6088. msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)"
  6089. msgstr ""
  6090. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323
  6091. msgid ""
  6092. "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect "
  6093. "(encap2+3)"
  6094. msgstr ""
  6095. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294
  6096. msgid "Use as external overlay (/overlay)"
  6097. msgstr ""
  6098. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:293
  6099. msgid "Use as root filesystem (/)"
  6100. msgstr ""
  6101. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:34
  6102. msgid "Use broadcast flag"
  6103. msgstr "Usa flag broadcast"
  6104. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1211
  6105. msgid "Use builtin IPv6-management"
  6106. msgstr ""
  6107. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:927
  6108. msgid "Use custom DNS servers"
  6109. msgstr "Usa server DNS personalizzati"
  6110. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919
  6111. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:64
  6112. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:110
  6113. msgid "Use default gateway"
  6114. msgstr "Usa il gateway predefinito"
  6115. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:941
  6116. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:72
  6117. #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:115
  6118. msgid "Use gateway metric"
  6119. msgstr "Usa la metrica del gateway"
  6120. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6121. msgid "Use legacy MAP"
  6122. msgstr ""
  6123. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:88
  6124. msgid ""
  6125. "Use legacy MAP interface identifier format (draft-ietf-softwire-map-00) "
  6126. "instead of RFC7597"
  6127. msgstr ""
  6128. #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:179
  6129. msgid "Use routing table"
  6130. msgstr "Utilizzare tabella di instradamento"
  6131. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6132. msgid "Use system certificates"
  6133. msgstr ""
  6134. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6135. msgid "Use system certificates for inner-tunnel"
  6136. msgstr ""
  6137. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:412
  6138. msgid ""
  6139. "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</"
  6140. "em> identifies the host, the <em>IPv4 address</em> specifies the fixed "
  6141. "address to use, and the <em>Hostname</em> is assigned as a symbolic name to "
  6142. "the requesting host. The optional <em>Lease time</em> can be used to set non-"
  6143. "standard host-specific lease time, e.g. 12h, 3d or infinite."
  6144. msgstr ""
  6145. "Utilizzare il pulsante <em>Aggiungi</em> per aggiungere una nuova voce di "
  6146. "contratto. L'<em>Indirizzo-MAC</em> identifica l'host, l'<em>Indirizzo-IPv4</"
  6147. "em> specifica l'indirizzo fisso da utilizzare e il <em>Nome Host</em> è "
  6148. "assegnato come nome simbolico alla richiesta dell'host. L'opzionale "
  6149. "<em>tempo di Contratto</em> può essere usato per impostare un tempo di "
  6150. "contratto non-standard a uno specifico host, p.e. 12h, 3d o infinito."
  6151. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322
  6152. msgid "Use upper layer protocol information (layer3+4)"
  6153. msgstr ""
  6154. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324
  6155. msgid ""
  6156. "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)"
  6157. msgstr ""
  6158. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36
  6159. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194
  6160. msgid "Used"
  6161. msgstr "Usato"
  6162. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1466
  6163. msgid "Used Key Slot"
  6164. msgstr "Slot Chiave Usata"
  6165. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1509
  6166. msgid ""
  6167. "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not "
  6168. "needed with normal WPA(2)-PSK."
  6169. msgstr ""
  6170. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111
  6171. msgid "User Group"
  6172. msgstr ""
  6173. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120
  6174. msgid "User certificate (PEM encoded)"
  6175. msgstr ""
  6176. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132
  6177. msgid "User key (PEM encoded)"
  6178. msgstr ""
  6179. #: modules/luci-base/luasrc/view/sysauth.htm:23
  6180. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112
  6181. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:50
  6182. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56
  6183. msgid "Username"
  6184. msgstr "Nome utente"
  6185. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1530
  6186. msgid "VC-Mux"
  6187. msgstr "VC-Mux"
  6188. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1478
  6189. msgid "VDSL"
  6190. msgstr "VDSL"
  6191. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:435
  6192. msgctxt "MACVLAN mode"
  6193. msgid "VEPA (Virtual Ethernet Port Aggregator)"
  6194. msgstr ""
  6195. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:346
  6196. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1365
  6197. msgid "VLAN (802.1ad)"
  6198. msgstr ""
  6199. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:345
  6200. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1362
  6201. msgid "VLAN (802.1q)"
  6202. msgstr ""
  6203. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:414
  6204. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:845
  6205. msgid "VLAN ID"
  6206. msgstr ""
  6207. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:173
  6208. msgid "VLANs on %q"
  6209. msgstr "VLANs su %q"
  6210. #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:54
  6211. msgid "VPN"
  6212. msgstr "VPN"
  6213. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:42
  6214. msgid "VPN Local address"
  6215. msgstr ""
  6216. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:46
  6217. msgid "VPN Local port"
  6218. msgstr ""
  6219. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96
  6220. msgid "VPN Protocol"
  6221. msgstr ""
  6222. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102
  6223. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42
  6224. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pptp.js:58
  6225. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:39
  6226. msgid "VPN Server"
  6227. msgstr "Server VPN"
  6228. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105
  6229. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:45
  6230. msgid "VPN Server port"
  6231. msgstr ""
  6232. #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:109
  6233. #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:60
  6234. msgid "VPN Server's certificate SHA1 hash"
  6235. msgstr ""
  6236. #: modules/luci-compat/luasrc/model/network/proto_vpnc.lua:9
  6237. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:9
  6238. msgid "VPNC (CISCO 3000 (and others) VPN)"
  6239. msgstr ""
  6240. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10
  6241. msgid "VXLAN (RFC7348)"
  6242. msgstr ""
  6243. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53
  6244. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48
  6245. msgid "VXLAN network identifier"
  6246. msgstr ""
  6247. #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10
  6248. msgid "VXLANv6 (RFC7348)"
  6249. msgstr ""
  6250. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1570
  6251. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1628
  6252. msgid ""
  6253. "Validate server certificate using built-in system CA bundle,<br />requires "
  6254. "the \"ca-bundle\" package"
  6255. msgstr ""
  6256. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387
  6257. msgid "Validation for all slaves"
  6258. msgstr ""
  6259. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385
  6260. msgid "Validation only for active slave"
  6261. msgstr ""
  6262. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386
  6263. msgid "Validation only for backup slaves"
  6264. msgstr ""
  6265. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:149
  6266. msgid "Value must not be empty"
  6267. msgstr ""
  6268. #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73
  6269. msgid "Vendor"
  6270. msgstr ""
  6271. #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:40
  6272. msgid "Vendor Class to send when requesting DHCP"
  6273. msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP"
  6274. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196
  6275. msgid "Verifying the uploaded image file."
  6276. msgstr ""
  6277. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956
  6278. msgid "Very High"
  6279. msgstr ""
  6280. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:348
  6281. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1377
  6282. msgid "Virtual Ethernet"
  6283. msgstr ""
  6284. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:60
  6285. msgid "Virtual dynamic interface"
  6286. msgstr ""
  6287. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1104
  6288. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1105
  6289. msgid "WDS"
  6290. msgstr "WDS"
  6291. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1289
  6292. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1378
  6293. msgid "WEP Open System"
  6294. msgstr "Sistema Aperto WEP"
  6295. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1290
  6296. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1379
  6297. msgid "WEP Shared Key"
  6298. msgstr "Chiave Condivisa WEP"
  6299. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6300. msgid "WEP passphrase"
  6301. msgstr "frase di accesso WEP"
  6302. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6303. msgid "WMM Mode"
  6304. msgstr "Modalità WMM"
  6305. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2011
  6306. msgid "WPA passphrase"
  6307. msgstr "frase di accesso WPA"
  6308. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1280
  6309. msgid ""
  6310. "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP "
  6311. "and ad-hoc mode) to be installed."
  6312. msgstr ""
  6313. "La crittografia WPA richiede wpa_supplicant (per la modalità client) o "
  6314. "hostapd (per AP e modalità ad hoc) per essere installato."
  6315. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:147
  6316. msgid "WPS status"
  6317. msgstr ""
  6318. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:47
  6319. msgid "Waiting for device..."
  6320. msgstr ""
  6321. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:175
  6322. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:185
  6323. msgid "Warning"
  6324. msgstr "Avviso"
  6325. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:26
  6326. msgid "Warning: There are unsaved changes that will get lost on reboot!"
  6327. msgstr ""
  6328. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:37
  6329. msgid "Weak"
  6330. msgstr ""
  6331. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1007
  6332. msgid ""
  6333. "When delegating prefixes to multiple downstreams, interfaces with a higher "
  6334. "preference value are considered first when allocating subnets."
  6335. msgstr ""
  6336. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1532
  6337. msgid ""
  6338. "When using a PSK, the PMK can be automatically generated. When enabled, the "
  6339. "R0/R1 key options below are not applied. Disable this to use the R0 and R1 "
  6340. "key options."
  6341. msgstr ""
  6342. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1142
  6343. msgid ""
  6344. "Where Wi-Fi Multimedia (WMM) Mode QoS is disabled, clients may be limited to "
  6345. "802.11a/802.11g rates."
  6346. msgstr ""
  6347. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1138
  6348. msgid ""
  6349. "Where the ESSID is hidden, clients may fail to roam and airtime efficiency "
  6350. "may be significantly reduced."
  6351. msgstr ""
  6352. #: modules/luci-compat/luasrc/view/cbi/wireless_modefreq.htm:166
  6353. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519
  6354. msgid "Width"
  6355. msgstr ""
  6356. #: modules/luci-compat/luasrc/model/network/proto_wireguard.lua:9
  6357. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:29
  6358. msgid "WireGuard VPN"
  6359. msgstr ""
  6360. #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:17
  6361. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:10
  6362. #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:118
  6363. msgid "Wireless"
  6364. msgstr "WIFI"
  6365. #: modules/luci-base/htdocs/luci-static/resources/network.js:2988
  6366. #: modules/luci-compat/luasrc/model/network.lua:1419
  6367. msgid "Wireless Adapter"
  6368. msgstr "Dispositivo Wireless"
  6369. #: modules/luci-base/htdocs/luci-static/resources/network.js:2967
  6370. #: modules/luci-base/htdocs/luci-static/resources/network.js:4274
  6371. #: modules/luci-compat/luasrc/model/network.lua:1405
  6372. #: modules/luci-compat/luasrc/model/network.lua:1868
  6373. msgid "Wireless Network"
  6374. msgstr "Rete Wireless"
  6375. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:810
  6376. msgid "Wireless Overview"
  6377. msgstr "Panoramica Wireless"
  6378. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:985
  6379. msgid "Wireless Security"
  6380. msgstr "Sicurezza Wireless"
  6381. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:792
  6382. msgid "Wireless configuration migration"
  6383. msgstr ""
  6384. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6385. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6386. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6387. msgid "Wireless is disabled"
  6388. msgstr "La rete Wireless è disattivata"
  6389. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:153
  6390. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:193
  6391. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146
  6392. msgid "Wireless is not associated"
  6393. msgstr "La rete Wireless è non associata"
  6394. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6395. msgid "Wireless network is disabled"
  6396. msgstr "La rete Wireless è disattivata"
  6397. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:934
  6398. msgid "Wireless network is enabled"
  6399. msgstr "La rete wireless è attivata"
  6400. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275
  6401. msgid "Write received DNS requests to syslog"
  6402. msgstr "Scrittura delle richieste DNS ricevute nel syslog"
  6403. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167
  6404. msgid "Write system log to file"
  6405. msgstr "Scrivi registro di sistema su file"
  6406. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204
  6407. msgid "XOR policy (balance-xor, 2)"
  6408. msgstr ""
  6409. #: modules/luci-base/htdocs/luci-static/resources/form.js:3702
  6410. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295
  6411. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:344
  6412. msgid "Yes"
  6413. msgstr "Sì"
  6414. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303
  6415. msgid "Yes (none, 0)"
  6416. msgstr ""
  6417. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:177
  6418. msgid ""
  6419. "You appear to be currently connected to the device via the \"%h\" interface. "
  6420. "Do you really want to shut down the interface?"
  6421. msgstr ""
  6422. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112
  6423. msgid ""
  6424. "You can enable or disable installed init scripts here. Changes will applied "
  6425. "after a device reboot.<br /><strong>Warning: If you disable essential init "
  6426. "scripts like \"network\", your device might become inaccessible!</strong>"
  6427. msgstr ""
  6428. "È possibile abilitare o disabilitare gli script di inizializzazione "
  6429. "installati qui. Le modifiche saranno applicate dopo il riavvio del "
  6430. "dispositivo <br/><strong>Attenzione: Se si disattiva gli script di "
  6431. "inizializzazione essenziali come ad esempio la \"rete\", il dispositivo "
  6432. "potrebbe diventare inaccessibile!</strong>"
  6433. #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:65
  6434. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:223
  6435. #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73
  6436. msgid ""
  6437. "You must enable JavaScript in your browser or LuCI will not work properly."
  6438. msgstr ""
  6439. "È necessario attivare JavaScript nel tuo browser o LuCI non funzionerà "
  6440. "correttamente."
  6441. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:115
  6442. msgid ""
  6443. "You must select a primary interface which is included in selected slave "
  6444. "interfaces!"
  6445. msgstr ""
  6446. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96
  6447. msgid ""
  6448. "You must select at least one ARP IP target if ARP monitoring is selected!"
  6449. msgstr ""
  6450. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:199
  6451. msgid "ZRam Compression Algorithm"
  6452. msgstr ""
  6453. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192
  6454. msgid "ZRam Settings"
  6455. msgstr ""
  6456. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:194
  6457. msgid "ZRam Size"
  6458. msgstr ""
  6459. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331
  6460. msgid "any"
  6461. msgstr "qualsiasi"
  6462. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463
  6463. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471
  6464. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476
  6465. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1229
  6466. #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79
  6467. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48
  6468. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:51
  6469. #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:89
  6470. msgid "auto"
  6471. msgstr "auto"
  6472. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:776
  6473. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85
  6474. msgid "automatic"
  6475. msgstr ""
  6476. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:82
  6477. msgid "baseT"
  6478. msgstr "baseT"
  6479. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1536
  6480. msgid "bridged"
  6481. msgstr "ponte"
  6482. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:146
  6483. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:402
  6484. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:35
  6485. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:99
  6486. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:31
  6487. msgid "create"
  6488. msgstr ""
  6489. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:69
  6490. msgid "create:"
  6491. msgstr "crea:"
  6492. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:55
  6493. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:57
  6494. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:58
  6495. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:62
  6496. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:63
  6497. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:83
  6498. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:84
  6499. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87
  6500. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:185
  6501. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:186
  6502. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:187
  6503. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:41
  6504. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:42
  6505. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:272
  6506. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:274
  6507. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:275
  6508. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:279
  6509. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:280
  6510. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:263
  6511. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:266
  6512. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:269
  6513. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:273
  6514. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:276
  6515. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:279
  6516. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:305
  6517. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:306
  6518. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:307
  6519. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:311
  6520. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:312
  6521. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:313
  6522. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:315
  6523. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:316
  6524. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/wireless.js:317
  6525. msgid "dBm"
  6526. msgstr "dBm"
  6527. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1086
  6528. msgid "disable"
  6529. msgstr "disabilita"
  6530. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627
  6531. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765
  6532. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:869
  6533. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:899
  6534. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:959
  6535. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:91
  6536. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:25
  6537. msgid "disabled"
  6538. msgstr "disabilitato"
  6539. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:576
  6540. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:610
  6541. msgid "driver default"
  6542. msgstr ""
  6543. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:66
  6544. msgid "e.g: --proxy 10.10.10.10"
  6545. msgstr ""
  6546. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:68
  6547. msgid "e.g: dump"
  6548. msgstr ""
  6549. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551
  6550. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:572
  6551. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:100
  6552. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:139
  6553. msgid "expired"
  6554. msgstr "scaduto"
  6555. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:182
  6556. msgid ""
  6557. "file where given <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</"
  6558. "abbr>-leases will be stored"
  6559. msgstr ""
  6560. "file dove vengono salvati i contratti <abbr title=\"Dynamic Host "
  6561. "Configuration Protocol\">DHCP</abbr> dati"
  6562. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:780
  6563. msgid "forced"
  6564. msgstr ""
  6565. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:85
  6566. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:195
  6567. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:61
  6568. msgid "forward"
  6569. msgstr "inoltro"
  6570. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6571. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6572. msgid "full-duplex"
  6573. msgstr "full-duplex"
  6574. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:97
  6575. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:84
  6576. msgid "half-duplex"
  6577. msgstr "half-duplex"
  6578. #: modules/luci-base/htdocs/luci-static/resources/validation.js:572
  6579. msgid "hexadecimal encoded value"
  6580. msgstr "valore in codifica esadecimale"
  6581. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1808
  6582. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/channel_analysis.js:297
  6583. msgid "hidden"
  6584. msgstr "nascosto"
  6585. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:771
  6586. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:875
  6587. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:903
  6588. msgid "hybrid mode"
  6589. msgstr "modo ibrido"
  6590. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:36
  6591. msgid "if target is a network"
  6592. msgstr "se la destinazione è una rete"
  6593. #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:63
  6594. msgid "ignore"
  6595. msgstr ""
  6596. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6597. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:191
  6598. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6599. msgid "input"
  6600. msgstr "ingresso"
  6601. #: modules/luci-base/htdocs/luci-static/resources/validation.js:398
  6602. msgid "key between 8 and 63 characters"
  6603. msgstr ""
  6604. #: modules/luci-base/htdocs/luci-static/resources/validation.js:410
  6605. msgid "key with either 5 or 13 characters"
  6606. msgstr ""
  6607. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:189
  6608. msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file"
  6609. msgstr "File <abbr title=\"Sistema Nome Dominio\">DNS</abbr> locale"
  6610. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:793
  6611. msgid "managed config (M)"
  6612. msgstr ""
  6613. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1388
  6614. msgid "medium security"
  6615. msgstr ""
  6616. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537
  6617. msgid "minutes"
  6618. msgstr ""
  6619. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:797
  6620. msgid "mobile home agent (H)"
  6621. msgstr ""
  6622. #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422
  6623. msgid "netif_carrier_ok()"
  6624. msgstr ""
  6625. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6626. msgid "no"
  6627. msgstr "no"
  6628. #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:103
  6629. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:76
  6630. msgid "no link"
  6631. msgstr "Nessun collegamento"
  6632. #: modules/luci-base/htdocs/luci-static/resources/validation.js:59
  6633. msgid "non-empty value"
  6634. msgstr ""
  6635. #: modules/luci-base/htdocs/luci-static/resources/form.js:3032
  6636. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:800
  6637. msgid "none"
  6638. msgstr "nessuna"
  6639. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:41
  6640. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:55
  6641. #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:69
  6642. msgid "not present"
  6643. msgstr ""
  6644. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:347
  6645. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:964
  6646. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:968
  6647. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:197
  6648. msgid "off"
  6649. msgstr "spento"
  6650. #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:196
  6651. msgid "on"
  6652. msgstr "acceso"
  6653. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:778
  6654. msgid "on available prefix"
  6655. msgstr ""
  6656. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6657. msgid "open network"
  6658. msgstr ""
  6659. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:795
  6660. msgid "other config (O)"
  6661. msgstr ""
  6662. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:69
  6663. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:46
  6664. msgid "output"
  6665. msgstr ""
  6666. #: modules/luci-base/htdocs/luci-static/resources/validation.js:241
  6667. msgid "positive decimal value"
  6668. msgstr ""
  6669. #: modules/luci-base/htdocs/luci-static/resources/validation.js:233
  6670. msgid "positive integer value"
  6671. msgstr ""
  6672. #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:80
  6673. msgid "random"
  6674. msgstr ""
  6675. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:769
  6676. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:873
  6677. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:901
  6678. msgid "relay mode"
  6679. msgstr ""
  6680. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1537
  6681. msgid "routed"
  6682. msgstr "instradato"
  6683. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1165
  6684. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1174
  6685. msgid "sec"
  6686. msgstr ""
  6687. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:767
  6688. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:871
  6689. msgid "server mode"
  6690. msgstr ""
  6691. #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54
  6692. msgid "sstpc Log-level"
  6693. msgstr ""
  6694. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1387
  6695. msgid "strong security"
  6696. msgstr ""
  6697. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:352
  6698. msgid "tagged"
  6699. msgstr "etichettato"
  6700. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1520
  6701. msgid "time units (TUs / 1.024 ms) [1000-65535]"
  6702. msgstr ""
  6703. #: modules/luci-base/htdocs/luci-static/resources/validation.js:562
  6704. msgid "unique value"
  6705. msgstr ""
  6706. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1414
  6707. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1426
  6708. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:591
  6709. msgid "unknown"
  6710. msgstr "sconosciuto"
  6711. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:340
  6712. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:549
  6713. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:570
  6714. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:98
  6715. #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:137
  6716. msgid "unlimited"
  6717. msgstr "illimitato"
  6718. #: modules/luci-base/htdocs/luci-static/resources/form.js:3397
  6719. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:76
  6720. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:138
  6721. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:369
  6722. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:393
  6723. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:429
  6724. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:466
  6725. #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:562
  6726. #: modules/luci-compat/luasrc/view/cbi/firewall_zonelist.htm:53
  6727. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:38
  6728. msgid "unspecified"
  6729. msgstr "non specificato"
  6730. #: modules/luci-compat/luasrc/view/cbi/network_netlist.htm:71
  6731. msgid "unspecified -or- create:"
  6732. msgstr "non specificato - o - creato:"
  6733. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:350
  6734. msgid "untagged"
  6735. msgstr "non etichettato"
  6736. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6737. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:121
  6738. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132
  6739. msgid "valid IP address"
  6740. msgstr "indirizzo IP valido"
  6741. #: modules/luci-base/htdocs/luci-static/resources/validation.js:246
  6742. msgid "valid IP address or prefix"
  6743. msgstr "indirizzo IP o prefisso valido"
  6744. #: modules/luci-base/htdocs/luci-static/resources/validation.js:283
  6745. msgid "valid IPv4 CIDR"
  6746. msgstr ""
  6747. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6748. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:125
  6749. msgid "valid IPv4 address"
  6750. msgstr "indirizzo IPv4 valido"
  6751. #: modules/luci-base/htdocs/luci-static/resources/validation.js:254
  6752. msgid "valid IPv4 address or network"
  6753. msgstr "indirizzo IPv4 o rete valido"
  6754. #: modules/luci-base/htdocs/luci-static/resources/validation.js:377
  6755. msgid "valid IPv4 address:port"
  6756. msgstr ""
  6757. #: modules/luci-base/htdocs/luci-static/resources/validation.js:317
  6758. msgid "valid IPv4 network"
  6759. msgstr ""
  6760. #: modules/luci-base/htdocs/luci-static/resources/validation.js:277
  6761. msgid "valid IPv4 or IPv6 CIDR"
  6762. msgstr ""
  6763. #: modules/luci-base/htdocs/luci-static/resources/validation.js:267
  6764. msgid "valid IPv4 prefix value (0-32)"
  6765. msgstr ""
  6766. #: modules/luci-base/htdocs/luci-static/resources/validation.js:289
  6767. msgid "valid IPv6 CIDR"
  6768. msgstr ""
  6769. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6770. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:129
  6771. msgid "valid IPv6 address"
  6772. msgstr ""
  6773. #: modules/luci-base/htdocs/luci-static/resources/validation.js:262
  6774. msgid "valid IPv6 address or prefix"
  6775. msgstr ""
  6776. #: modules/luci-base/htdocs/luci-static/resources/validation.js:307
  6777. msgid "valid IPv6 host id"
  6778. msgstr ""
  6779. #: modules/luci-base/htdocs/luci-static/resources/validation.js:322
  6780. msgid "valid IPv6 network"
  6781. msgstr ""
  6782. #: modules/luci-base/htdocs/luci-static/resources/validation.js:272
  6783. msgid "valid IPv6 prefix value (0-128)"
  6784. msgstr ""
  6785. #: modules/luci-base/htdocs/luci-static/resources/validation.js:343
  6786. msgid "valid MAC address"
  6787. msgstr ""
  6788. #: modules/luci-base/htdocs/luci-static/resources/validation.js:414
  6789. msgid "valid UCI identifier"
  6790. msgstr ""
  6791. #: modules/luci-base/htdocs/luci-static/resources/validation.js:365
  6792. msgid "valid UCI identifier, hostname or IP address range"
  6793. msgstr ""
  6794. #: modules/luci-base/htdocs/luci-static/resources/validation.js:386
  6795. #: modules/luci-base/htdocs/luci-static/resources/validation.js:389
  6796. msgid "valid address:port"
  6797. msgstr ""
  6798. #: modules/luci-base/htdocs/luci-static/resources/validation.js:536
  6799. #: modules/luci-base/htdocs/luci-static/resources/validation.js:540
  6800. msgid "valid date (YYYY-MM-DD)"
  6801. msgstr ""
  6802. #: modules/luci-base/htdocs/luci-static/resources/validation.js:237
  6803. msgid "valid decimal value"
  6804. msgstr ""
  6805. #: modules/luci-base/htdocs/luci-static/resources/validation.js:408
  6806. msgid "valid hexadecimal WEP key"
  6807. msgstr ""
  6808. #: modules/luci-base/htdocs/luci-static/resources/validation.js:396
  6809. msgid "valid hexadecimal WPA key"
  6810. msgstr ""
  6811. #: modules/luci-base/htdocs/luci-static/resources/validation.js:371
  6812. msgid "valid host:port"
  6813. msgstr ""
  6814. #: modules/luci-base/htdocs/luci-static/resources/validation.js:358
  6815. #: modules/luci-base/htdocs/luci-static/resources/validation.js:360
  6816. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:73
  6817. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:79
  6818. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:107
  6819. msgid "valid hostname"
  6820. msgstr "hostname valido"
  6821. #: modules/luci-base/htdocs/luci-static/resources/validation.js:348
  6822. msgid "valid hostname or IP address"
  6823. msgstr "hostname o indirizzo IP valido"
  6824. #: modules/luci-base/htdocs/luci-static/resources/validation.js:229
  6825. msgid "valid integer value"
  6826. msgstr ""
  6827. #: modules/luci-base/htdocs/luci-static/resources/validation.js:312
  6828. msgid "valid network in address/netmask notation"
  6829. msgstr ""
  6830. #: modules/luci-base/htdocs/luci-static/resources/validation.js:511
  6831. msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")"
  6832. msgstr ""
  6833. #: modules/luci-base/htdocs/luci-static/resources/validation.js:335
  6834. #: modules/luci-base/htdocs/luci-static/resources/validation.js:338
  6835. msgid "valid port or port range (port1-port2)"
  6836. msgstr ""
  6837. #: modules/luci-base/htdocs/luci-static/resources/validation.js:327
  6838. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136
  6839. msgid "valid port value"
  6840. msgstr ""
  6841. #: modules/luci-base/htdocs/luci-static/resources/validation.js:516
  6842. msgid "valid time (HH:MM:SS)"
  6843. msgstr ""
  6844. #: modules/luci-base/htdocs/luci-static/resources/validation.js:438
  6845. msgid "value between %d and %d characters"
  6846. msgstr ""
  6847. #: modules/luci-base/htdocs/luci-static/resources/validation.js:419
  6848. msgid "value between %f and %f"
  6849. msgstr "valore compreso tra %f e %f"
  6850. #: modules/luci-base/htdocs/luci-static/resources/validation.js:423
  6851. msgid "value greater or equal to %f"
  6852. msgstr "valore maggiore o uguale a %f"
  6853. #: modules/luci-base/htdocs/luci-static/resources/validation.js:427
  6854. msgid "value smaller or equal to %f"
  6855. msgstr "valore minore o uguale a %f"
  6856. #: modules/luci-base/htdocs/luci-static/resources/validation.js:432
  6857. msgid "value with %d characters"
  6858. msgstr "valore di %d caratteri"
  6859. #: modules/luci-base/htdocs/luci-static/resources/validation.js:443
  6860. msgid "value with at least %d characters"
  6861. msgstr "valore di almeno %d caratteri"
  6862. #: modules/luci-base/htdocs/luci-static/resources/validation.js:448
  6863. msgid "value with at most %d characters"
  6864. msgstr "valore di al più %d caratteri"
  6865. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1389
  6866. msgid "weak security"
  6867. msgstr "sicurezza debole"
  6868. #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47
  6869. msgid "yes"
  6870. msgstr "sì"
  6871. #: modules/luci-compat/luasrc/view/cbi/delegator.htm:20
  6872. msgid "« Back"
  6873. msgstr "« Indietro"
  6874. #~ msgid "Announced DNS servers"
  6875. #~ msgstr "Server DNS indicati"
  6876. #~ msgid "Override MAC address"
  6877. #~ msgstr "Sovrascrivi indirizzo MAC"
  6878. #~ msgid "Set this interface as master for the dhcpv6 relay."
  6879. #~ msgstr "Imposta questa interfaccia come master per il relay dhcpv6."
  6880. #~ msgid "Bridge interfaces"
  6881. #~ msgstr "Interfacce bridge"
  6882. #~ msgid "Creates a bridge over specified interface(s)"
  6883. #~ msgstr "Crea un bridge sulle interfacce selezionate"
  6884. #~ msgid "Default gateway"
  6885. #~ msgstr "Gateway predefinito"
  6886. #~ msgid "Profile"
  6887. #~ msgstr "Profilo"
  6888. #~ msgid "Enable/Disable"
  6889. #~ msgstr "Abilita/Disabilita"
  6890. #~ msgid "Free"
  6891. #~ msgstr "Disponibile"
  6892. #~ msgid "USB Device"
  6893. #~ msgstr "Periferica USB"
  6894. #~ msgid "USB Ports"
  6895. #~ msgstr "Porte USB"
  6896. #~ msgid "Define a name for this network."
  6897. #~ msgstr "Definisci un nome per questa rete."
  6898. #~ msgid "Bad address specified!"
  6899. #~ msgstr "E' stato specificato un indirizzo errato!"
  6900. #~ msgid "Loading"
  6901. #~ msgstr "Caricamento"
  6902. #~ msgid "Waiting for command to complete..."
  6903. #~ msgstr "In attesa del comando da completare..."
  6904. #~ msgid "Assign interfaces..."
  6905. #~ msgstr "Assegna Interfacce..."
  6906. #~ msgid "Network without interfaces."
  6907. #~ msgstr "Rete senza interfaccia"
  6908. #~ msgid "Realtime Connections"
  6909. #~ msgstr "Connessioni in Tempo Reale"
  6910. #~ msgid "Realtime Load"
  6911. #~ msgstr "Carico in Tempo Reale"
  6912. #~ msgid "Realtime Traffic"
  6913. #~ msgstr "Traffico in Tempo Reale"
  6914. #~ msgid "Realtime Wireless"
  6915. #~ msgstr "Wireless in Tempo Reale"
  6916. #~ msgid "There are no active leases."
  6917. #~ msgstr "Non ci sono contratti attivi."
  6918. #~ msgid ""
  6919. #~ "This page gives an overview over currently active network connections."
  6920. #~ msgstr ""
  6921. #~ "Questa pagina ti da una riassunto delle connessioni al momento attive."
  6922. #~ msgid "dB"
  6923. #~ msgstr "dB"
  6924. #~ msgid "kB/s"
  6925. #~ msgstr "kB/s"
  6926. #~ msgid "kbit/s"
  6927. #~ msgstr "kbit/s"
  6928. #~ msgid "Changes applied."
  6929. #~ msgstr "Modifiche applicate."
  6930. #~ msgid "Device is rebooting..."
  6931. #~ msgstr "Dispositivo in riavvio..."
  6932. #~ msgid "Keep settings"
  6933. #~ msgstr "Mantieni le Impostazioni"
  6934. #~ msgid "Rebooting..."
  6935. #~ msgstr "Riavviando..."
  6936. #~ msgid ""
  6937. #~ "Upload a sysupgrade-compatible image here to replace the running "
  6938. #~ "firmware. Check \"Keep settings\" to retain the current configuration "
  6939. #~ "(requires a compatible firmware image)."
  6940. #~ msgstr ""
  6941. #~ "Carica un'immagine sysupgrade compatibile quì per sostituire il firmware "
  6942. #~ "in esecuzione. Attivare la spunta \"Mantieni Impostazioni\" per mantenere "
  6943. #~ "la configurazione corrente (richiede un immagine del firmware "
  6944. #~ "compatibile)."
  6945. #~ msgid "Waiting for changes to be applied..."
  6946. #~ msgstr "In attesa delle modifiche da applicare ..."
  6947. #~ msgid "(%s available)"
  6948. #~ msgstr "(%s disponibile)"
  6949. #~ msgid "Check"
  6950. #~ msgstr "Verifica"
  6951. #~ msgid "Checksum"
  6952. #~ msgstr "Checksum"
  6953. #~ msgid "Enable this mount"
  6954. #~ msgstr "Abilita questo mount"
  6955. #~ msgid "Enable this swap"
  6956. #~ msgstr "Abilita questo swap"
  6957. #~ msgid "Flash Firmware"
  6958. #~ msgstr "Flash Firmware"
  6959. #~ msgid "Flashing..."
  6960. #~ msgstr "Flashing..."
  6961. #~ msgid "Mount Entry"
  6962. #~ msgstr "Voce di Mount"
  6963. #~ msgid "Proceed"
  6964. #~ msgstr "Continuare"
  6965. #~ msgid "Really reset all changes?"
  6966. #~ msgstr "Azzerare veramente tutte le modifiche?"
  6967. #~ msgid "Swap Entry"
  6968. #~ msgstr "Scambia ingresso"
  6969. #~ msgid ""
  6970. #~ "The filesystem that was used to format the memory (<abbr title=\"for "
  6971. #~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem"
  6972. #~ "\">ext3</abbr></samp>)"
  6973. #~ msgstr ""
  6974. #~ "Il filesystem usato per formattare la memoria (<abbr title=\"per esempio"
  6975. #~ "\">e.s.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</"
  6976. #~ "abbr></samp>)"
  6977. #~ msgid "Verify"
  6978. #~ msgstr "Verifica"
  6979. #~ msgid "Disabled (default)"
  6980. #~ msgstr "Disabilitato (default)"
  6981. #~ msgid "Specifies the listening port of this <em>Dropbear</em> instance"
  6982. #~ msgstr "Specifica la porta di ascolto di questa istanza <em>Dropbear</em>"
  6983. #~ msgid "Switch %q (%s)"
  6984. #~ msgstr "Switch %q (%s)"
  6985. #~ msgid "VLANs on %q (%s)"
  6986. #~ msgstr "VLANs su %q (%s)"
  6987. #~ msgid "Antenna 1"
  6988. #~ msgstr "Antenna 1"
  6989. #~ msgid "Antenna 2"
  6990. #~ msgstr "Antenna 2"
  6991. #~ msgid "Antenna Configuration"
  6992. #~ msgstr "Configurazione dell'Antenna"
  6993. #~ msgid "Back to overview"
  6994. #~ msgstr "Ritorna alla panoramica"
  6995. #~ msgid "Back to scan results"
  6996. #~ msgstr "Ritorno ai risultati della scansione"
  6997. #~ msgid "Broadcom 802.11%s Wireless Controller"
  6998. #~ msgstr "Dispositivo Wireless Broadcom 802.11%s"
  6999. #~ msgid "Broadcom BCM%04x 802.11 Wireless Controller"
  7000. #~ msgstr "Dispositivo Wireless Broadcom BCM%04x 802.11"
  7001. #~ msgid "Common Configuration"
  7002. #~ msgstr "Configurazioni Comuni"
  7003. #~ msgid "Connect"
  7004. #~ msgstr "Connetti"
  7005. #~ msgid "Connection Limit"
  7006. #~ msgstr "Limite connessioni"
  7007. #~ msgid "Cover the following interface"
  7008. #~ msgstr "Coprire la seguente interfaccia"
  7009. #~ msgid "Cover the following interfaces"
  7010. #~ msgstr "Coprire le seguenti interfacce"
  7011. #~ msgid "Create Interface"
  7012. #~ msgstr "Crea Interfaccia"
  7013. #~ msgid "Create a bridge over multiple interfaces"
  7014. #~ msgstr "Crea un ponte tra interfacce multiple"
  7015. #~ msgid "Diversity"
  7016. #~ msgstr "Diversità"
  7017. #~ msgid "Edit this interface"
  7018. #~ msgstr "Modifica questa interfaccia"
  7019. #~ msgid "Frame Bursting"
  7020. #~ msgstr "Frame Bursting"
  7021. #~ msgid "Generic 802.11%s Wireless Controller"
  7022. #~ msgstr "Dispositivo Wireless 802.11%s Generico"
  7023. #~ msgid "Install package %q"
  7024. #~ msgstr "Installa il pacchetto %q"
  7025. #~ msgid "Interface Overview"
  7026. #~ msgstr "Riassunto Interfaccia"
  7027. #~ msgid "Name of the new interface"
  7028. #~ msgstr "Nome della nuova interfaccia"
  7029. #~ msgid "No network configured on this device"
  7030. #~ msgstr "Nessuna rete è configurata su questo dispositivo"
  7031. #~ msgid "Note: interface name length"
  7032. #~ msgstr "Nota: lunghezza nome interfaccia"
  7033. #~ msgid ""
  7034. #~ "On this page you can configure the network interfaces. You can bridge "
  7035. #~ "several interfaces by ticking the \"bridge interfaces\" field and enter "
  7036. #~ "the names of several network interfaces separated by spaces. You can also "
  7037. #~ "use <abbr title=\"Virtual Local Area Network\">VLAN</abbr> notation "
  7038. #~ "<samp>INTERFACE.VLANNR</samp> (<abbr title=\"for example\">e.g.</abbr>: "
  7039. #~ "<samp>eth0.1</samp>)."
  7040. #~ msgstr ""
  7041. #~ "In questa pagina puoi configurare le interfacce di rete.Puoi unire più "
  7042. #~ "interfacce spuntando la voce \"unisci interfacce\" e inserendo i nomi di "
  7043. #~ "più interfacce di rete separate da spazi. Puoi anche usare la notazione "
  7044. #~ "<abbr title=\"Virtual Local Area Network\">VLAN</abbr> <samp>INTERFACCIA."
  7045. #~ "VLANNUM</samp> (<abbr title=\"per esempio\">e.s.</abbr>: <samp>eth0.1</"
  7046. #~ "samp>)."
  7047. #~ msgid "Package libiwinfo required!"
  7048. #~ msgstr "E' richiesto il pacchetto libiwinfo!"
  7049. #~ msgid "Protocol of the new interface"
  7050. #~ msgstr "Protocollo della nuova interfaccia"
  7051. #~ msgid "Protocol support is not installed"
  7052. #~ msgstr "Supporto protocollo non installato"
  7053. #~ msgid ""
  7054. #~ "Really delete this wireless network? The deletion cannot be undone! You "
  7055. #~ "might lose access to this device if you are connected via this network."
  7056. #~ msgstr ""
  7057. #~ "Vuoi davvero rimuovere questa interfaccia wireless? La rimozione non può "
  7058. #~ "essere ripristinata! Potresti perdere l'accesso a questo dispositivo se "
  7059. #~ "sei connesso con questa rete."
  7060. #~ msgid "Receiver Antenna"
  7061. #~ msgstr "Antenna Ricevente"
  7062. #~ msgid "Repeat scan"
  7063. #~ msgstr "Ripeti scan"
  7064. #~ msgid "Replace entry"
  7065. #~ msgstr "Sostituisci campo"
  7066. #~ msgid "Separate Clients"
  7067. #~ msgstr "Isola utenti"
  7068. #~ msgid "Slot time"
  7069. #~ msgstr "Slot time"
  7070. #, fuzzy
  7071. #~ msgid ""
  7072. #~ "The <em>Device Configuration</em> section covers physical settings of the "
  7073. #~ "radio hardware such as channel, transmit power or antenna selection which "
  7074. #~ "are shared among all defined wireless networks (if the radio hardware is "
  7075. #~ "multi-SSID capable). Per network settings like encryption or operation "
  7076. #~ "mode are grouped in the <em>Interface Configuration</em>."
  7077. #~ msgstr ""
  7078. #~ "La sezione <em>Configurazione del Dispositivo</em> illustra le "
  7079. #~ "impostazioni fisiche del hardware radio come canale, la potenza di "
  7080. #~ "trasmissione o la selezione dell'antenna che viene condiviso tra tutte le "
  7081. #~ "reti wireless definite (se l'hardware radio è multi-SSID compatibilie). "
  7082. #~ "Per le impostazioni di rete come la crittografia o la modalità di "
  7083. #~ "funzionamento sono raggruppati nella <em>configurazione dell'interfaccia</"
  7084. #~ "em>."
  7085. #~ msgid ""
  7086. #~ "The <em>libiwinfo-lua</em> package is not installed. You must install "
  7087. #~ "this component for working wireless configuration!"
  7088. #~ msgstr ""
  7089. #~ "Il pacchetto <em>libiwinfo-lua</em> non è installato. È necessario "
  7090. #~ "installare questo componente per il lavoro di configurazione wireless!"
  7091. #~ msgid "Transmission Rate"
  7092. #~ msgstr "Velocità di transmissione"
  7093. #~ msgid "Transmit Power"
  7094. #~ msgstr "Potenza di trasmissione"
  7095. #~ msgid "Transmitter Antenna"
  7096. #~ msgstr "Antenna trasmettente"
  7097. #~ msgid "Uploaded File"
  7098. #~ msgstr "File Inviato"
  7099. #~ msgid "Wireless is restarting..."
  7100. #~ msgstr "Riavvio della Wireless..."
  7101. #~ msgid "open"
  7102. #~ msgstr "apri"
  7103. #~ msgid "Back"
  7104. #~ msgstr "Indietro"
  7105. #~ msgid "Netmask"
  7106. #~ msgstr "Maschera di rete"
  7107. #~ msgid "Synchronizing..."
  7108. #~ msgstr "Sincronizzazione..."
  7109. #~ msgid "The following changes have been reverted"
  7110. #~ msgstr "Le seguenti modifiche sono state annullate"
  7111. #~ msgid "Theme"
  7112. #~ msgstr "Tema"
  7113. #~ msgid "There are no pending changes to revert!"
  7114. #~ msgstr "Non ci sono cambiamenti pendenti da regredire"
  7115. #~ msgid "There are no pending changes!"
  7116. #~ msgstr "Non ci sono cambiamenti pendenti!"
  7117. #~ msgid "Time Synchronization is not configured yet."
  7118. #~ msgstr "Sincronizzazione Orario non ancora configurata"
  7119. #~ msgid "kB"
  7120. #~ msgstr "kB"
  7121. #~ msgid ""
  7122. #~ "Here you can paste public SSH-Keys (one per line) for SSH public-key "
  7123. #~ "authentication."
  7124. #~ msgstr ""
  7125. #~ "Qui è possibile incollare le chiavi pubbliche SSH (uno per riga) per "
  7126. #~ "l'autenticazione con chiave pubblica SSH."
  7127. #~ msgid "Password successfully changed!"
  7128. #~ msgstr "Password cambiata con successo!"
  7129. #~ msgid "Unknown Error, password not changed!"
  7130. #~ msgstr "Errore sconosciuto, password non cambiata!"
  7131. #~ msgid "Available packages"
  7132. #~ msgstr "Pacchetti disponibili"
  7133. #~ msgid "Displaying only packages containing"
  7134. #~ msgstr "Visualizza solo i pacchetti contenenti"
  7135. #~ msgid "Download and install package"
  7136. #~ msgstr "Scarica e installa pacchetto"
  7137. #~ msgid "Filter"
  7138. #~ msgstr "Filtro"
  7139. #~ msgid "Find package"
  7140. #~ msgstr "Cerca pacchetto"
  7141. #~ msgid "Free space"
  7142. #~ msgstr "Spazio libero"
  7143. #~ msgid "General options for opkg"
  7144. #~ msgstr "Opzioni generali per opkg"
  7145. #~ msgid "Install"
  7146. #~ msgstr "Installa"
  7147. #~ msgid "Installed packages"
  7148. #~ msgstr "Pacchetti installati"
  7149. #~ msgid "No package lists available"
  7150. #~ msgstr "Nessuna lista pacchetti disponibile"
  7151. #~ msgid "OK"
  7152. #~ msgstr "OK"
  7153. #~ msgid "OPKG-Configuration"
  7154. #~ msgstr "Configurazione di OPKG"
  7155. #~ msgid "Package name"
  7156. #~ msgstr "Nome pacchetto"
  7157. #~ msgid "Software"
  7158. #~ msgstr "Software"
  7159. #~ msgid "Update lists"
  7160. #~ msgstr "Aggiorna liste"
  7161. #~ msgid "Version"
  7162. #~ msgstr "Versione"
  7163. #~ msgid "Disable DNS setup"
  7164. #~ msgstr "Disabilita il setup dei DNS"
  7165. #~ msgid "IPv4 and IPv6"
  7166. #~ msgstr "IPv4 e IPv6"
  7167. #~ msgid "Lease validity time"
  7168. #~ msgstr "Periodo di Validità del Contratto"
  7169. #~ msgid "Multicast address"
  7170. #~ msgstr "Indirizzo Multicast"
  7171. #~ msgid "Protocol family"
  7172. #~ msgstr "Famiglia protocollo"
  7173. #~ msgid "Configuration files will be kept."
  7174. #~ msgstr "I file di configurazione verranno mantenuti."
  7175. #~ msgid "Note: Configuration files will be erased."
  7176. #~ msgstr "Nota: i files di Configurazione saranno eliminati"
  7177. #~ msgid "<abbr title='Pairwise: %s / Group: %s'>%s - %s</abbr>"
  7178. #~ msgstr "<abbr title='Accoppiata: %s / Gruppo: %s'>%s - %s</abbr>"
  7179. #~ msgid "Activate this network"
  7180. #~ msgstr "Attiva questa rete"
  7181. #~ msgid "Hermes 802.11b Wireless Controller"
  7182. #~ msgstr "Dispositivo Wireless Hermes 802.11b"
  7183. #~ msgid "Interface reconnected"
  7184. #~ msgstr "Interfaccia ricollegata."
  7185. #~ msgid "Interface shut down"
  7186. #~ msgstr "Interfaccia spenta"
  7187. #~ msgid ""
  7188. #~ "Really shutdown interface \"%s\"? You might lose access to this device if "
  7189. #~ "you are connected via this interface."
  7190. #~ msgstr ""
  7191. #~ "Vuoi davvero spegnere questa interfaccia \"%s\"? Potresti perdere "
  7192. #~ "l'accesso a questo router se stai usando questa interfaccia."
  7193. #~ msgid "Reconnecting interface"
  7194. #~ msgstr "Sto ricollegando l'interfaccia"
  7195. #~ msgid "Wireless restarted"
  7196. #~ msgstr "Wireless riavviato"
  7197. #~ msgid "Wireless shut down"
  7198. #~ msgstr "Wireless spento"
  7199. #~ msgid "DHCP Leases"
  7200. #~ msgstr "Contratti DHCP"
  7201. #~ msgid "DHCPv6 Leases"
  7202. #~ msgstr "Contratti DHCPv6"
  7203. #~ msgid ""
  7204. #~ "Really delete this interface? The deletion cannot be undone! You might "
  7205. #~ "lose access to this device if you are connected via this interface."
  7206. #~ msgstr ""
  7207. #~ "Vuoi davvero rimuovere questa interfaccia? La rimozione non può essere "
  7208. #~ "ripristinata! Potresti perdere l'accesso a questo dispositivo se sei "
  7209. #~ "connesso con questa rete."
  7210. #~ msgid ""
  7211. #~ "Really shut down network? You might lose access to this device if you are "
  7212. #~ "connected via this interface."
  7213. #~ msgstr ""
  7214. #~ "Vuoi davvero spegnere questa interfaccia? Potresti perdere l'accesso a "
  7215. #~ "questo router se sei connesso usando questa interfaccia."
  7216. #~ msgid "Sort"
  7217. #~ msgstr "Ordina"
  7218. #~ msgid "help"
  7219. #~ msgstr "aiuto"
  7220. #~ msgid "IPv4 WAN Status"
  7221. #~ msgstr "Stato WAN IPv4"
  7222. #~ msgid "IPv6 WAN Status"
  7223. #~ msgstr "Stato WAN IPv6"