statusnet.pot 324 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2019-06-17 15:27+0100\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  20. #. TRANS: Database error message.
  21. #: index.php:124
  22. #, php-format
  23. msgid ""
  24. "The database for %1$s is not responding correctly, so the site will not work "
  25. "properly. The site admins probably know about the problem, but you can "
  26. "contact them at %2$s to make sure. Otherwise, wait a few minutes and try "
  27. "again."
  28. msgstr ""
  29. #. TRANS: Error message.
  30. #: index.php:147
  31. msgid "An error occurred."
  32. msgstr ""
  33. #. TRANS: Error message displayed when there is no StatusNet configuration file.
  34. #: index.php:240
  35. #, php-format
  36. msgid ""
  37. "No configuration file found. Try running the installation program first."
  38. msgstr ""
  39. #. TRANS: Error message displayed when trying to perform an undefined action.
  40. #. TRANS: Title for password recovery page when an unknown action has been specified.
  41. #: index.php:314 actions/recoverpassword.php:215
  42. msgid "Unknown action"
  43. msgstr ""
  44. #. TRANS: Page title for Access admin panel that allows configuring site access.
  45. #: actions/accessadminpanel.php:51
  46. msgid "Access"
  47. msgstr ""
  48. #. TRANS: Page notice.
  49. #: actions/accessadminpanel.php:62
  50. msgid "Site access settings"
  51. msgstr ""
  52. #. TRANS: Form legend for registration form.
  53. #: actions/accessadminpanel.php:150
  54. msgid "Registration"
  55. msgstr ""
  56. #. TRANS: Checkbox instructions for admin setting "Invite only".
  57. #: actions/accessadminpanel.php:155
  58. msgid "Make registration invitation only."
  59. msgstr ""
  60. #. TRANS: Checkbox label for configuring site as invite only.
  61. #: actions/accessadminpanel.php:157
  62. msgid "Invite only"
  63. msgstr ""
  64. #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
  65. #: actions/accessadminpanel.php:164
  66. msgid "Disable new registrations."
  67. msgstr ""
  68. #. TRANS: Checkbox label for disabling new user registrations.
  69. #: actions/accessadminpanel.php:166
  70. msgid "Closed"
  71. msgstr ""
  72. #. TRANS: Form legend for registration form.
  73. #: actions/accessadminpanel.php:178
  74. msgid "Feed access"
  75. msgstr ""
  76. #. TRANS: Checkbox instructions for admin setting "Private".
  77. #: actions/accessadminpanel.php:182
  78. msgid "Prohibit anonymous users (not logged in) from viewing site?"
  79. msgstr ""
  80. #. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
  81. #. TRANS: Checkbox label to show private tags.
  82. #. TRANS: Checkbox field label on group edit form to mark a group private.
  83. #: actions/accessadminpanel.php:184 actions/peopletagsbyuser.php:186
  84. #: lib/groupeditform.php:210
  85. msgctxt "LABEL"
  86. msgid "Private"
  87. msgstr ""
  88. #. TRANS: Description of the full network notice stream views..
  89. #: actions/accessadminpanel.php:191
  90. msgid ""
  91. "The full network view includes (public) remote notices which may be "
  92. "unrelated to local conversations."
  93. msgstr ""
  94. #. TRANS: Checkbox label for hiding remote network posts if they have not been interacted with locally.
  95. #: actions/accessadminpanel.php:193
  96. msgid "Restrict full network view to accounts"
  97. msgstr ""
  98. #. TRANS: Button title to save access settings in site admin panel.
  99. #: actions/accessadminpanel.php:210
  100. msgid "Save access settings."
  101. msgstr ""
  102. #. TRANS: Button text to save access settings in site admin panel.
  103. #. TRANS: Button label to save e-mail preferences.
  104. #. TRANS: Button label to save IM preferences.
  105. #. TRANS: Button text in the license admin panel.
  106. #. TRANS: Button text to store form data in the Paths admin panel.
  107. #. TRANS: Button to save input in profile settings.
  108. #. TRANS: Submit button text on the sessions administration panel.
  109. #. TRANS: Button text for saving site settings.
  110. #. TRANS: Button text for saving site notice in admin panel.
  111. #. TRANS: Button label to save SMS preferences.
  112. #. TRANS: Button text for saving "Other settings" in profile.
  113. #. TRANS: Button text to save user settings in user admin panel.
  114. #. TRANS: Button label in the "Edit application" form.
  115. #. TRANS: Text for save button on group edit form.
  116. #. TRANS: Button text to save tags for a profile.
  117. #. TRANS: Save button for settings for a profile in a subscriptions list.
  118. #. TRANS: Button text to save lists.
  119. #: actions/accessadminpanel.php:212 actions/emailsettings.php:234
  120. #: actions/imsettings.php:197 actions/licenseadminpanel.php:331
  121. #: actions/pathsadminpanel.php:452 actions/profilesettings.php:221
  122. #: actions/sessionsadminpanel.php:202 actions/siteadminpanel.php:372
  123. #: actions/sitenoticeadminpanel.php:187 actions/smssettings.php:203
  124. #: actions/urlsettings.php:150 actions/useradminpanel.php:300
  125. #: lib/applicationeditform.php:355 lib/groupeditform.php:229
  126. #: lib/peopletagswidget.php:142 lib/subscriptionslistitem.php:58
  127. #: lib/tagprofileform.php:143
  128. msgctxt "BUTTON"
  129. msgid "Save"
  130. msgstr ""
  131. #. TRANS: Client error displayed when the session token does not match or is not given.
  132. #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
  133. #. TRANS: Client error displayed when the session token does not match or is not given.
  134. #. TRANS: Form validation error message.
  135. #. TRANS: Client error displayed when the session token does not match or is not given.
  136. #. TRANS: Client error displayed when the session token is not okay.
  137. #. TRANS: Client error displayed when the session token does not match or is not given.
  138. #: actions/addpeopletag.php:78 actions/apioauthauthorize.php:144
  139. #: actions/geocode.php:56 actions/groupblock.php:65 actions/groupunblock.php:65
  140. #: actions/invite.php:67 actions/makeadmin.php:67 actions/nudge.php:80
  141. #: actions/peopletagautocomplete.php:66 actions/pluginenable.php:87
  142. #: actions/profilecompletion.php:81 actions/recoverpassword.php:293
  143. #: actions/register.php:164 actions/removepeopletag.php:79
  144. #: actions/subedit.php:40 actions/subscribe.php:85
  145. #: actions/subscribepeopletag.php:74 actions/unsubscribe.php:66
  146. #: actions/unsubscribepeopletag.php:75
  147. msgid "There was a problem with your session token. Try again, please."
  148. msgstr ""
  149. #. TRANS: Error message displayed when trying to perform an action that requires a logged in user.
  150. #: actions/addpeopletag.php:88 actions/editpeopletag.php:69
  151. #: actions/groupblock.php:60 actions/groupunblock.php:60
  152. #: actions/makeadmin.php:62 actions/nudge.php:64
  153. #: actions/peopletagautocomplete.php:57 actions/peopletagsbyuser.php:123
  154. #: actions/pluginenable.php:97 actions/profilecompletion.php:91
  155. #: actions/removepeopletag.php:89 actions/subedit.php:33
  156. #: actions/subscribe.php:95 actions/unsubscribe.php:52 lib/action.php:349
  157. #: lib/adminpanelaction.php:71 lib/profileformaction.php:63
  158. msgid "Not logged in."
  159. msgstr ""
  160. #. TRANS: Client error displayed trying to perform an action related to a non-existing profile.
  161. #. TRANS: Client exception.
  162. #. TRANS: Client error displayed when referring to a non-existing profile.
  163. #. TRANS: Client error displayed trying to subscribe to a non-existing profile.
  164. #. TRANS: Client error displayed trying to perform an action related to a non-existing profile.
  165. #: actions/addpeopletag.php:99 actions/atompubmembershipfeed.php:54
  166. #: actions/atompubshowmembership.php:55 actions/removepeopletag.php:100
  167. #: actions/subscribe.php:106 lib/command.php:386 lib/command.php:445
  168. msgid "No such profile."
  169. msgstr ""
  170. #. TRANS: Client error displayed trying to reference a non-existing list.
  171. #. TRANS: Client error displayed when referring to a non-existing list.
  172. #. TRANS: Client error displayed trying to reference a non-existing list.
  173. #: actions/addpeopletag.php:107 actions/editpeopletag.php:110
  174. #: actions/peopletagged.php:98 actions/peopletagsubscribers.php:98
  175. #: actions/profilecompletion.php:99 actions/profiletagbyid.php:66
  176. #: actions/removepeopletag.php:108 actions/subscribepeopletag.php:91
  177. #: actions/unsubscribepeopletag.php:92
  178. msgid "No such list."
  179. msgstr ""
  180. #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list.
  181. #. TRANS: %s is a username.
  182. #: actions/addpeopletag.php:134
  183. #, php-format
  184. msgid "There was an unexpected error while listing %s."
  185. msgstr ""
  186. #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list.
  187. #. TRANS: %s is a profile URL.
  188. #: actions/addpeopletag.php:139
  189. #, php-format
  190. msgid ""
  191. "There was a problem listing %s. The remote server is probably not responding "
  192. "correctly. Please try retrying later."
  193. msgstr ""
  194. #. TRANS: Title after adding a user to a list.
  195. #: actions/addpeopletag.php:148
  196. msgctxt "TITLE"
  197. msgid "Listed"
  198. msgstr ""
  199. #. TRANS: Title of a user's own start page.
  200. #: actions/all.php:57
  201. msgid "Home timeline"
  202. msgstr ""
  203. #. TRANS: Title of another user's start page.
  204. #. TRANS: %s is the other user's name.
  205. #: actions/all.php:61
  206. #, php-format
  207. msgid "%s's home timeline"
  208. msgstr ""
  209. #. TRANS: %s is user nickname.
  210. #. TRANS: Feed title.
  211. #. TRANS: %s is tagger's nickname.
  212. #: actions/all.php:76 actions/showprofiletag.php:115
  213. #, php-format
  214. msgid "Feed for friends of %s (Activity Streams JSON)"
  215. msgstr ""
  216. #. TRANS: %s is user nickname.
  217. #: actions/all.php:84
  218. #, php-format
  219. msgid "Feed for friends of %s (RSS 1.0)"
  220. msgstr ""
  221. #. TRANS: %s is user nickname.
  222. #. TRANS: Feed title.
  223. #. TRANS: %s is tagger's nickname.
  224. #: actions/all.php:93 actions/showprofiletag.php:126
  225. #, php-format
  226. msgid "Feed for friends of %s (RSS 2.0)"
  227. msgstr ""
  228. #. TRANS: %s is user nickname.
  229. #: actions/all.php:102
  230. #, php-format
  231. msgid "Feed for friends of %s (Atom)"
  232. msgstr ""
  233. #. TRANS: Empty list message. %s is a user nickname.
  234. #: actions/all.php:109
  235. #, php-format
  236. msgid ""
  237. "This is the timeline for %s and friends but no one has posted anything yet."
  238. msgstr ""
  239. #. TRANS: Encouragement displayed on logged in user's empty timeline.
  240. #. TRANS: This message contains Markdown links. Keep "](" together.
  241. #: actions/all.php:115
  242. #, php-format
  243. msgid ""
  244. "Try subscribing to more people, [join a group](%%action.groups%%) or post "
  245. "something yourself."
  246. msgstr ""
  247. #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
  248. #. TRANS: This message contains Markdown links. Keep "](" together.
  249. #: actions/all.php:119
  250. #, php-format
  251. msgid ""
  252. "You can try to [nudge %1$s](../%2$s) from their profile or [post something "
  253. "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
  254. msgstr ""
  255. #. TRANS: Encouragement displayed on empty timeline user pages for anonymous users.
  256. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
  257. #. TRANS: Empty list message for page with replies for a user for not logged in users.
  258. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link).
  259. #. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
  260. #. TRANS: This message contains a Markdown link. Keep "](" together.
  261. #: actions/all.php:124 actions/replies.php:147 actions/showstream.php:217
  262. #, php-format
  263. msgid ""
  264. "Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
  265. "post a notice to them."
  266. msgstr ""
  267. #. TRANS: Button text for inviting more users to the StatusNet instance.
  268. #. TRANS: Less business/enterprise-oriented language for public sites.
  269. #: actions/all.php:166 actions/networkpublic.php:41 actions/public.php:81
  270. msgctxt "BUTTON"
  271. msgid "Send invite"
  272. msgstr ""
  273. #. TRANS: Message is used as link title. %s is a user nickname.
  274. #. TRANS: Title of API timeline for a user and friends.
  275. #. TRANS: %s is a username.
  276. #. TRANS: Timeline title for user and friends. %s is a user nickname.
  277. #. TRANS: Menu item title in personal group navigation menu.
  278. #. TRANS: %s is a username.
  279. #: actions/allrss.php:64 actions/apitimelinefriends.php:202
  280. #: actions/apitimelinehome.php:106 lib/personalgroupnav.php:80
  281. #, php-format
  282. msgid "%s and friends"
  283. msgstr ""
  284. #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
  285. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
  286. #: actions/allrss.php:69 actions/apitimelinefriends.php:208
  287. #: actions/apitimelinehome.php:112
  288. #, php-format
  289. msgid "Updates from %1$s and friends on %2$s!"
  290. msgstr ""
  291. #. TRANS: Client error displayed when coming across a non-supported API method.
  292. #. TRANS: Client error displayed when trying to handle an unknown API method.
  293. #. TRANS: Client error displayed when coming across a non-supported API method.
  294. #: actions/apiaccountratelimitstatus.php:81
  295. #: actions/apiaccountupdatedeliverydevice.php:83
  296. #: actions/apiaccountupdateprofile.php:82
  297. #: actions/apiaccountverifycredentials.php:57 actions/apiconversation.php:145
  298. #: actions/apifriendshipscreate.php:83 actions/apifriendshipsdestroy.php:84
  299. #: actions/apifriendshipsshow.php:118 actions/apignusocialconfig.php:117
  300. #: actions/apignusocialversion.php:65 actions/apigroupadmins.php:104
  301. #: actions/apigroupcreate.php:122 actions/apigroupismember.php:108
  302. #: actions/apigroupjoin.php:121 actions/apigroupleave.php:120
  303. #: actions/apigrouplist.php:129 actions/apigrouplistall.php:118
  304. #: actions/apigroupmembership.php:99 actions/apigroupprofileupdate.php:85
  305. #: actions/apigroupprofileupdate.php:179 actions/apigroupshow.php:106
  306. #: actions/apihelptest.php:59 actions/apilist.php:113 actions/apilist.php:160
  307. #: actions/apilist.php:188 actions/apilistmember.php:108
  308. #: actions/apilistmembers.php:71 actions/apilistmembers.php:116
  309. #: actions/apilistmemberships.php:98 actions/apilists.php:118
  310. #: actions/apilists.php:169 actions/apilistsubscriber.php:80
  311. #: actions/apilistsubscribers.php:60 actions/apilistsubscribers.php:91
  312. #: actions/apilistsubscriptions.php:85 actions/apistatusesdestroy.php:69
  313. #: actions/apistatusesshow.php:113 actions/apisubscriptions.php:104
  314. #: actions/apitimelinefriends.php:264 actions/apitimelinegroup.php:140
  315. #: actions/apitimelinehome.php:168 actions/apitimelinelist.php:176
  316. #: actions/apitimelinementions.php:172 actions/apitimelinepublic.php:249
  317. #: actions/apitimelinetag.php:154 actions/apitimelineuser.php:406
  318. #: actions/apiusershow.php:96 lib/apilistusers.php:146
  319. msgid "API method not found."
  320. msgstr ""
  321. #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation.
  322. #: actions/apiaccountregister.php:100 actions/register.php:79
  323. #: actions/register.php:189 actions/register.php:380
  324. msgid "Sorry, only invited people can register."
  325. msgstr ""
  326. #. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation.
  327. #: actions/apiaccountregister.php:107 actions/register.php:86
  328. msgid "Sorry, invalid invitation code."
  329. msgstr ""
  330. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address.
  331. #. TRANS: Message given saving e-mail address that not valid.
  332. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address.
  333. #. TRANS: Client error displayed trying to save site settings without a valid contact address.
  334. #: actions/apiaccountregister.php:126 actions/emailsettings.php:346
  335. #: actions/register.php:207 actions/siteadminpanel.php:154
  336. msgid "Not a valid email address."
  337. msgstr ""
  338. #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address.
  339. #: actions/apiaccountregister.php:129 actions/register.php:210
  340. msgid "Email address already exists."
  341. msgstr ""
  342. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL.
  343. #. TRANS: Client error in form for group creation.
  344. #. TRANS: API validation exception thrown when homepage URL does not validate.
  345. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
  346. #. TRANS: Group edit form validation error.
  347. #. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
  348. #. TRANS: Group create form validation error.
  349. #. TRANS: Validation error in form for profile settings.
  350. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL.
  351. #: actions/apiaccountregister.php:133 actions/apigroupcreate.php:137
  352. #: actions/apigroupprofileupdate.php:190 actions/editapplication.php:229
  353. #: actions/editgroup.php:199 actions/newapplication.php:124
  354. #: actions/newgroup.php:91 actions/profilesettings.php:268
  355. #: actions/register.php:214
  356. msgid "Homepage is not a valid URL."
  357. msgstr ""
  358. #. TRANS: Form validation error on registration page when providing too long a bio text.
  359. #. TRANS: %d is the maximum number of characters for bio; used for plural.
  360. #. TRANS: Validation error in form for profile settings.
  361. #. TRANS: Plural form is used based on the maximum number of allowed
  362. #. TRANS: characters for the biography (%d).
  363. #. TRANS: Form validation error on registration page when providing too long a bio text.
  364. #. TRANS: %d is the maximum number of characters for bio; used for plural.
  365. #: actions/apiaccountregister.php:137 actions/profilesettings.php:276
  366. #: actions/register.php:218
  367. #, php-format
  368. msgid "Bio is too long (maximum %d character)."
  369. msgid_plural "Bio is too long (maximum %d characters)."
  370. msgstr[0] ""
  371. msgstr[1] ""
  372. #. TRANS: Form validation error displayed when trying to register with too short a password.
  373. #. TRANS: Form validation error on page where to change password.
  374. #. TRANS: Form validation error displayed when trying to register with too short a password.
  375. #: actions/apiaccountregister.php:143 actions/passwordsettings.php:129
  376. #: actions/register.php:224
  377. msgid "Password must be 6 or more characters."
  378. msgstr ""
  379. #. TRANS: Form validation error displayed when trying to register with non-matching passwords.
  380. #. TRANS: Form validation error on password change when password confirmation does not match.
  381. #. TRANS: Form validation error displayed when trying to register with non-matching passwords.
  382. #: actions/apiaccountregister.php:146 actions/passwordsettings.php:132
  383. #: actions/register.php:227
  384. msgid "Passwords do not match."
  385. msgstr ""
  386. #: actions/apiaccountupdatebackgroundcolor.php:72
  387. #: actions/apiaccountupdatelinkcolor.php:73
  388. msgid "Not a valid hex color."
  389. msgstr ""
  390. #: actions/apiaccountupdatebackgroundcolor.php:79
  391. #: actions/apiaccountupdatelinkcolor.php:80
  392. msgid "Error updating user."
  393. msgstr ""
  394. #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting.
  395. #: actions/apiaccountupdatedeliverydevice.php:93
  396. msgid ""
  397. "You must specify a parameter named 'device' with a value of one of: sms, im, "
  398. "none."
  399. msgstr ""
  400. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting.
  401. #. TRANS: Client error displayed if a user could not be found.
  402. #. TRANS: Client error displayed updating profile image without having a user object.
  403. #. TRANS: Client error displayed when making an Atom API request for an unknown user.
  404. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
  405. #. TRANS: Client error when user not found for an API action to remove a block for a user.
  406. #. TRANS: Client error given when a user was not found (404).
  407. #. TRANS: Client error displayed when checking group membership for a non-existing user.
  408. #. TRANS: Client error displayed when trying to have a non-existing user join a group.
  409. #. TRANS: Client error displayed when trying to have a non-existing user leave a group.
  410. #. TRANS: Client error displayed when user not found for an action.
  411. #. TRANS: Client error displayed when not providing a user or an invalid user.
  412. #. TRANS: Client error displayed when referring to a non-existing user.
  413. #. TRANS: Client error displayed trying to perform an action related to a non-existing user.
  414. #. TRANS: Client error displayed when updating a status for a non-existing user.
  415. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user.
  416. #. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist.
  417. #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
  418. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
  419. #. TRANS: Client error displayed requesting most recent notices for a non-existing user.
  420. #. TRANS: Client error displayed trying to get an avatar for a non-existing user.
  421. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
  422. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
  423. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
  424. #. TRANS: Client error displayed when referring to non-existing user.
  425. #. TRANS: Client error displayed trying to perform an action related to a non-existing user.
  426. #. TRANS: Client error.
  427. #: actions/apiaccountupdatedeliverydevice.php:99
  428. #: actions/apiaccountupdateprofile.php:87
  429. #: actions/apiaccountupdateprofileimage.php:76 actions/apiatomservice.php:61
  430. #: actions/apiblockcreate.php:85 actions/apiblockdestroy.php:81
  431. #: actions/apigroupcreate.php:97 actions/apigroupismember.php:85
  432. #: actions/apigroupjoin.php:85 actions/apigroupleave.php:85
  433. #: actions/apigrouplist.php:70 actions/apigroupprofileupdate.php:90
  434. #: actions/apilistmember.php:73 actions/apilistmemberships.php:69
  435. #: actions/apilists.php:76 actions/apilistsubscriber.php:50
  436. #: actions/apilistsubscriptions.php:57 actions/apistatusesupdate.php:225
  437. #: actions/apisubscriptions.php:83 actions/apitimelinefriends.php:171
  438. #: actions/apitimelinehome.php:76 actions/apitimelinementions.php:75
  439. #: actions/apitimelineuser.php:136 actions/avatarbynickname.php:66
  440. #: actions/foaf.php:40 actions/foaf.php:57 actions/otp.php:76
  441. #: actions/peopletagged.php:90 actions/peopletagsbyuser.php:101
  442. #: actions/peopletagsforuser.php:83 actions/peopletagsubscribers.php:90
  443. #: actions/peopletagsubscriptions.php:85 actions/rsd.php:111
  444. msgid "No such user."
  445. msgstr ""
  446. #. TRANS: Server error displayed when a user's delivery device cannot be updated.
  447. #. TRANS: Server error thrown on database error updating e-mail preferences.
  448. #. TRANS: Server error thrown on database error updating SMS preferences.
  449. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
  450. #: actions/apiaccountupdatedeliverydevice.php:124 actions/emailsettings.php:309
  451. #: actions/smssettings.php:274 actions/urlsettings.php:192
  452. msgid "Could not update user."
  453. msgstr ""
  454. #. TRANS: Error message displayed when referring to a user without a profile.
  455. #: actions/apiaccountupdateprofile.php:94 actions/avatarbynickname.php:71
  456. #: actions/foaf.php:64 actions/grouplogo.php:156
  457. #: actions/peopletagsbyuser.php:108 actions/peopletagsforuser.php:90
  458. #: actions/peopletagsubscriptions.php:92
  459. msgid "User has no profile."
  460. msgstr ""
  461. #. TRANS: Server error displayed if a user profile could not be saved.
  462. #. TRANS: Server error thrown when user profile settings could not be saved.
  463. #: actions/apiaccountupdateprofile.php:126 actions/profilesettings.php:421
  464. msgid "Could not save profile."
  465. msgstr ""
  466. #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
  467. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
  468. #: actions/apiaccountupdateprofileimage.php:68 actions/apimediaupload.php:72
  469. #: actions/apistatusesupdate.php:211 actions/editapplication.php:119
  470. #, php-format
  471. msgid ""
  472. "The server was unable to handle that much POST data (%s byte) due to its "
  473. "current configuration."
  474. msgid_plural ""
  475. "The server was unable to handle that much POST data (%s bytes) due to its "
  476. "current configuration."
  477. msgstr[0] ""
  478. msgstr[1] ""
  479. #. TRANS: Title for Atom feed.
  480. #: actions/apiatomservice.php:86
  481. msgctxt "ATOM"
  482. msgid "Main"
  483. msgstr ""
  484. #. TRANS: Title for Atom feed. %s is a user nickname.
  485. #. TRANS: Message is used as link title. %s is a user nickname.
  486. #. TRANS: Title in atom group notice feed. %s is a group name.
  487. #. TRANS: Title in atom user notice feed. %s is a user name.
  488. #: actions/apiatomservice.php:94 actions/grouprss.php:100
  489. #: actions/userrss.php:53 lib/atomgroupnoticefeed.php:63
  490. #: lib/atomusernoticefeed.php:73
  491. #, php-format
  492. msgid "%s timeline"
  493. msgstr ""
  494. #. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
  495. #. TRANS: Title for Atom subscription feed.
  496. #. TRANS: %s is a user nickname.
  497. #. TRANS: Header for subscriptions overview for a user (first page).
  498. #. TRANS: %s is a user nickname.
  499. #: actions/apiatomservice.php:105 actions/atompubsubscriptionfeed.php:115
  500. #: actions/subscriptions.php:49
  501. #, php-format
  502. msgid "%s subscriptions"
  503. msgstr ""
  504. #. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
  505. #: actions/apiatomservice.php:116
  506. #, php-format
  507. msgid "%s favorites"
  508. msgstr ""
  509. #. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
  510. #: actions/apiatomservice.php:127
  511. #, php-format
  512. msgid "%s memberships"
  513. msgstr ""
  514. #. TRANS: Client error displayed when users try to block themselves.
  515. #: actions/apiblockcreate.php:92
  516. msgid "You cannot block yourself!"
  517. msgstr ""
  518. #. TRANS: Server error displayed when blocking a user has failed.
  519. #: actions/apiblockcreate.php:110
  520. msgid "Block user failed."
  521. msgstr ""
  522. #. TRANS: Server error displayed when unblocking a user has failed.
  523. #: actions/apiblockdestroy.php:99
  524. msgid "Unblock user failed."
  525. msgstr ""
  526. #: actions/apicheckhub.php:57
  527. msgid "No URL."
  528. msgstr ""
  529. #: actions/apicheckhub.php:61 lib/invalidurlexception.php:50
  530. msgid "Invalid URL."
  531. msgstr ""
  532. #: actions/apicheckhub.php:86
  533. msgid "No feed found"
  534. msgstr ""
  535. #: actions/apicheckhub.php:88
  536. msgid "No hub found"
  537. msgstr ""
  538. #: actions/apichecknickname.php:42
  539. msgid "This site is private."
  540. msgstr ""
  541. #. TRANS: Client exception thrown when no conversation ID is given.
  542. #: actions/apiconversation.php:60
  543. msgid "No conversation ID."
  544. msgstr ""
  545. #. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d).
  546. #: actions/apiconversation.php:67
  547. #, php-format
  548. msgid "No conversation with ID %d."
  549. msgstr ""
  550. #. TRANS: Title for conversion timeline.
  551. #: actions/apiconversation.php:94
  552. msgctxt "TITLE"
  553. msgid "Conversation"
  554. msgstr ""
  555. #. TRANS: Client error displayed when requesting profile information for a non-existing profile.
  556. #: actions/apiexternalprofileshow.php:60
  557. msgid "Profile not found."
  558. msgstr ""
  559. #. TRANS: Client error displayed when trying follow who's profile could not be found.
  560. #: actions/apifriendshipscreate.php:88
  561. msgid "Could not follow user: profile not found."
  562. msgstr ""
  563. #. TRANS: Client error displayed when trying to follow a user that's already being followed.
  564. #. TRANS: %s is the nickname of the user that is already being followed.
  565. #: actions/apifriendshipscreate.php:95
  566. #, php-format
  567. msgid "Could not follow user: %s is already on your list."
  568. msgstr ""
  569. #. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
  570. #: actions/apifriendshipsdestroy.php:92
  571. msgid "Could not unfollow user: User not found."
  572. msgstr ""
  573. #. TRANS: Client error displayed when trying to unfollow self.
  574. #: actions/apifriendshipsdestroy.php:102
  575. msgid "You cannot unfollow yourself."
  576. msgstr ""
  577. #. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
  578. #: actions/apifriendshipsexists.php:82
  579. msgid "Two valid IDs or nick names must be supplied."
  580. msgstr ""
  581. #. TRANS: Client error displayed when a source user could not be determined showing friendship.
  582. #: actions/apifriendshipsshow.php:124
  583. msgid "Could not determine source user."
  584. msgstr ""
  585. #. TRANS: Client error displayed when a target user could not be determined showing friendship.
  586. #: actions/apifriendshipsshow.php:132
  587. msgid "Could not find target user."
  588. msgstr ""
  589. #. TRANS: Client error displayed trying to show group membership on a non-existing group.
  590. #. TRANS: Client error displayed when checking group membership for a non-existing group.
  591. #. TRANS: Client error displayed when trying to join a group that does not exist.
  592. #. TRANS: Client error displayed when trying to leave a group that does not exist.
  593. #. TRANS: Client error displayed trying to show group membership on a non-existing group.
  594. #. TRANS: Client error displayed when not providing a group or an invalid group.
  595. #. TRANS: Client error displayed when trying to show a group that could not be found.
  596. #. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
  597. #: actions/apigroupadmins.php:71 actions/apigroupismember.php:90
  598. #: actions/apigroupjoin.php:90 actions/apigroupleave.php:90
  599. #: actions/apigroupmembership.php:69 actions/apigroupprofileupdate.php:95
  600. #: actions/apigroupshow.php:78 actions/apitimelinegroup.php:85
  601. msgid "Group not found."
  602. msgstr ""
  603. #. TRANS: Client error in form for group creation.
  604. #. TRANS: API validation exception thrown when full name does not validate.
  605. #. TRANS: Group edit form validation error.
  606. #. TRANS: Group create form validation error.
  607. #: actions/apigroupcreate.php:142 actions/apigroupprofileupdate.php:200
  608. #: actions/editgroup.php:203 actions/newgroup.php:94
  609. msgid "Full name is too long (maximum 255 characters)."
  610. msgstr ""
  611. #. TRANS: Client error shown when providing too long a description during group creation.
  612. #. TRANS: %d is the maximum number of allowed characters.
  613. #. TRANS: API validation exception thrown when description does not validate.
  614. #. TRANS: %d is the maximum description length and used for plural.
  615. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
  616. #. TRANS: %d is the maximum number of allowed characters.
  617. #. TRANS: Client error shown when providing too long a description when editing a list.
  618. #. TRANS: %d is the maximum number of allowed characters.
  619. #. TRANS: Form validation error in New application form.
  620. #. TRANS: %d is the maximum number of characters for the description.
  621. #. TRANS: Group create form validation error.
  622. #. TRANS: %d is the maximum number of allowed characters.
  623. #: actions/apigroupcreate.php:147 actions/apigroupprofileupdate.php:210
  624. #: actions/editapplication.php:200 actions/editgroup.php:209
  625. #: actions/editpeopletag.php:263 actions/newapplication.php:103
  626. #: actions/newgroup.php:98
  627. #, php-format
  628. msgid "Description is too long (maximum %d character)."
  629. msgid_plural "Description is too long (maximum %d characters)."
  630. msgstr[0] ""
  631. msgstr[1] ""
  632. #. TRANS: Client error shown when providing too long a location during group creation.
  633. #. TRANS: API validation exception thrown when location does not validate.
  634. #. TRANS: Group edit form validation error.
  635. #. TRANS: Group create form validation error.
  636. #: actions/apigroupcreate.php:154 actions/apigroupprofileupdate.php:222
  637. #: actions/editgroup.php:218 actions/newgroup.php:104
  638. msgid "Location is too long (maximum 255 characters)."
  639. msgstr ""
  640. #. TRANS: Client error shown when providing too many aliases during group creation.
  641. #. TRANS: %d is the maximum number of allowed aliases.
  642. #. TRANS: API validation exception thrown when aliases do not validate.
  643. #. TRANS: %d is the maximum number of aliases and used for plural.
  644. #. TRANS: Group create form validation error.
  645. #. TRANS: %d is the maximum number of allowed aliases.
  646. #: actions/apigroupcreate.php:170 actions/apigroupprofileupdate.php:239
  647. #: actions/editgroup.php:236 actions/newgroup.php:116
  648. #, php-format
  649. msgid "Too many aliases! Maximum %d allowed."
  650. msgid_plural "Too many aliases! Maximum %d allowed."
  651. msgstr[0] ""
  652. msgstr[1] ""
  653. #. TRANS: Server error displayed when trying to join a group the user is already a member of.
  654. #. TRANS: Client error displayed when trying to join a group while already a member.
  655. #. TRANS: Error text shown a user tries to join a group they already are a member of.
  656. #: actions/apigroupjoin.php:95 actions/joingroup.php:94 lib/command.php:296
  657. msgid "You are already a member of that group."
  658. msgstr ""
  659. #. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
  660. #. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
  661. #. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
  662. #: actions/apigroupjoin.php:100 actions/joingroup.php:99 lib/command.php:301
  663. msgid "You have been blocked from that group by the admin."
  664. msgstr ""
  665. #. TRANS: Server error displayed when joining a group failed in the database.
  666. #. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
  667. #. TRANS: Message given having failed to add a user to a group.
  668. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
  669. #: actions/apigroupjoin.php:108 actions/joingroup.php:125 lib/command.php:310
  670. #, php-format
  671. msgid "Could not join user %1$s to group %2$s."
  672. msgstr ""
  673. #. TRANS: Server error displayed when trying to leave a group the user is not a member of.
  674. #: actions/apigroupleave.php:100
  675. msgid "You are not a member of this group."
  676. msgstr ""
  677. #. TRANS: Server error displayed when leaving a group failed in the database.
  678. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
  679. #. TRANS: Message given having failed to remove a user from a group.
  680. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
  681. #: actions/apigroupleave.php:108 actions/leavegroup.php:117 lib/command.php:355
  682. #, php-format
  683. msgid "Could not remove user %1$s from group %2$s."
  684. msgstr ""
  685. #. TRANS: Used as title in check for group membership. %s is a user name.
  686. #: actions/apigrouplist.php:91
  687. #, php-format
  688. msgid "%s's groups"
  689. msgstr ""
  690. #. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name.
  691. #: actions/apigrouplist.php:101
  692. #, php-format
  693. msgid "%1$s groups %2$s is a member of."
  694. msgstr ""
  695. #. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
  696. #. TRANS: Page title for first page of groups for a user.
  697. #. TRANS: %s is a nickname.
  698. #: actions/apigrouplistall.php:86 actions/usergroups.php:55
  699. #, php-format
  700. msgid "%s groups"
  701. msgstr ""
  702. #. TRANS: Message is used as a subtitle when listing the latest 20 groups. %s is a site name.
  703. #: actions/apigrouplistall.php:91
  704. #, php-format
  705. msgid "groups on %s"
  706. msgstr ""
  707. #. TRANS: Client error displayed when trying to edit a group without being an admin.
  708. #. TRANS: Client error displayed trying to edit a group while not being a group admin.
  709. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
  710. #: actions/apigroupprofileupdate.php:100 actions/editgroup.php:145
  711. #: actions/editgroup.php:158 actions/grouplogo.php:339
  712. msgid "You must be an admin to edit the group."
  713. msgstr ""
  714. #. TRANS: Server error displayed when group update fails.
  715. #. TRANS: Server error displayed when editing a group fails.
  716. #: actions/apigroupprofileupdate.php:148 actions/editgroup.php:267
  717. msgid "Could not update group."
  718. msgstr ""
  719. #. TRANS: Server error displayed when adding group aliases fails.
  720. #. TRANS: Server error displayed when group aliases could not be added.
  721. #. TRANS: Server exception thrown when creating group aliases failed.
  722. #: actions/apigroupprofileupdate.php:165 actions/editgroup.php:274
  723. #: classes/User_group.php:672
  724. msgid "Could not create aliases."
  725. msgstr ""
  726. #. TRANS: Client error displayed when referring to a non-existing list.
  727. #. TRANS: Client error displayed trying to perform an action related to a non-existing list.
  728. #. TRANS: Client error displayed when referring to a non-existing list.
  729. #: actions/apilist.php:79 actions/apilistmember.php:68
  730. #: actions/apilistsubscriber.php:45 actions/apitimelinelist.php:92
  731. #: lib/apilistusers.php:65
  732. msgid "List not found."
  733. msgstr ""
  734. #. TRANS: Client error displayed when trying to update another user's list.
  735. #: actions/apilist.php:136
  736. msgid "You cannot update lists that do not belong to you."
  737. msgstr ""
  738. #. TRANS: Client error displayed when an unknown error occurs updating a list.
  739. #. TRANS: Client error displayed when an unknown error occurs viewing list members.
  740. #. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
  741. #. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
  742. #: actions/apilist.php:148 actions/apilistmembers.php:59
  743. #: actions/apilistmembers.php:104 actions/apilistsubscribers.php:48
  744. #: actions/apilistsubscribers.php:79
  745. msgid "An error occured."
  746. msgstr ""
  747. #. TRANS: Client error displayed when trying to delete another user's list.
  748. #: actions/apilist.php:173
  749. msgid "You cannot delete lists that do not belong to you."
  750. msgstr ""
  751. #. TRANS: Client error displayed when referring to a non-list member.
  752. #: actions/apilistmember.php:94
  753. msgid "The specified user is not a member of this list."
  754. msgstr ""
  755. #. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
  756. #: actions/apilistmembers.php:46
  757. msgid "You are not allowed to add members to this list."
  758. msgstr ""
  759. #. TRANS: Client error displayed when trying to modify list members without specifying them.
  760. #: actions/apilistmembers.php:51 actions/apilistmembers.php:89
  761. msgid "You must specify a member."
  762. msgstr ""
  763. #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
  764. #: actions/apilistmembers.php:84
  765. msgid "You are not allowed to remove members from this list."
  766. msgstr ""
  767. #. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
  768. #: actions/apilistmembers.php:99
  769. msgid "The user you are trying to remove from the list is not a member."
  770. msgstr ""
  771. #. TRANS: Client error displayed when trying to create a list without a name.
  772. #: actions/apilists.php:137
  773. msgid "A list must have a name."
  774. msgstr ""
  775. #. TRANS: Client error displayed when a membership check for a user is nagative.
  776. #: actions/apilistsubscriber.php:65
  777. msgid "The specified user is not a subscriber of this list."
  778. msgstr ""
  779. #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
  780. #: actions/apilistsubscribers.php:72
  781. msgid "You are not subscribed to this list."
  782. msgstr ""
  783. #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
  784. #: actions/apioauthaccesstoken.php:97
  785. msgid "Invalid request token or verifier."
  786. msgstr ""
  787. #. TRANS: Client error given when no oauth_token was passed to the OAuth API.
  788. #: actions/apioauthauthorize.php:104
  789. msgid "No oauth_token parameter provided."
  790. msgstr ""
  791. #. TRANS: Client error given when an invalid request token was passed to the OAuth API.
  792. #: actions/apioauthauthorize.php:112 actions/apioauthauthorize.php:126
  793. msgid "Invalid request token."
  794. msgstr ""
  795. #. TRANS: Client error given when an invalid request token was passed to the OAuth API.
  796. #: actions/apioauthauthorize.php:118
  797. msgid "Request token already authorized."
  798. msgstr ""
  799. #. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
  800. #: actions/apioauthauthorize.php:165
  801. msgid "Invalid nickname / password!"
  802. msgstr ""
  803. #. TRANS: Server error displayed when a database action fails.
  804. #: actions/apioauthauthorize.php:208
  805. msgid "Database error inserting oauth_token_association."
  806. msgstr ""
  807. #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
  808. #. TRANS: Unexpected validation error on avatar upload form.
  809. #. TRANS: Client error displayed submitting invalid form data for edit application.
  810. #. TRANS: Message given submitting a form with an unknown action in e-mail settings.
  811. #. TRANS: Form validation error message when an unsupported argument is used.
  812. #. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
  813. #. TRANS: Client error displayed when encountering an unexpected action on form submission.
  814. #. TRANS: Client error when submitting a form with unexpected information.
  815. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
  816. #. TRANS: Message given submitting a form with an unknown action in SMS settings.
  817. #: actions/apioauthauthorize.php:285 actions/avatarsettings.php:251
  818. #: actions/editapplication.php:142 actions/emailsettings.php:276
  819. #: actions/grouplogo.php:368 actions/imsettings.php:234
  820. #: actions/newapplication.php:62 actions/oauthconnectionssettings.php:127
  821. #: actions/recoverpassword.php:45 actions/smssettings.php:249
  822. msgid "Unexpected form submission."
  823. msgstr ""
  824. #. TRANS: Title for a page where a user can confirm/deny account access by an external application.
  825. #: actions/apioauthauthorize.php:354
  826. msgid "An application would like to connect to your account"
  827. msgstr ""
  828. #. TRANS: Fieldset legend.
  829. #: actions/apioauthauthorize.php:371
  830. msgid "Allow or deny access"
  831. msgstr ""
  832. #. TRANS: User notification of external application requesting account access.
  833. #. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
  834. #: actions/apioauthauthorize.php:392
  835. #, php-format
  836. msgid ""
  837. "An application would like the ability to <strong>%3$s</strong> your %4$s "
  838. "account data. You should only give access to your %4$s account to third "
  839. "parties you trust."
  840. msgstr ""
  841. #. TRANS: User notification of external application requesting account access.
  842. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
  843. #. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename.
  844. #: actions/apioauthauthorize.php:400
  845. #, php-format
  846. msgid ""
  847. "The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
  848. "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
  849. "give access to your %4$s account to third parties you trust."
  850. msgstr ""
  851. #. TRANS: Fieldset legend.
  852. #: actions/apioauthauthorize.php:422
  853. msgctxt "LEGEND"
  854. msgid "Account"
  855. msgstr ""
  856. #. TRANS: Field label on OAuth API authorisation form.
  857. #. TRANS: Field label in form for profile settings.
  858. #. TRANS: Field label on account registration page.
  859. #. TRANS: Field label on group edit form.
  860. #. TRANS: Dropdown option for searching in profiles.
  861. #: actions/apioauthauthorize.php:426 actions/profilesettings.php:101
  862. #: actions/register.php:400 lib/groupeditform.php:147
  863. #: lib/togglepeopletag.php:107
  864. msgid "Nickname"
  865. msgstr ""
  866. #. TRANS: Field label on OAuth API authorisation form.
  867. #. TRANS: Field label on login page.
  868. #. TRANS: Field label on account registration page.
  869. #: actions/apioauthauthorize.php:430 actions/login.php:145
  870. #: actions/register.php:406
  871. msgid "Password"
  872. msgstr ""
  873. #. TRANS: Button text that when clicked will cancel the process of allowing access to an account
  874. #. TRANS: by an external application.
  875. #. TRANS: Button label to cancel an e-mail address confirmation procedure.
  876. #. TRANS: Button label to cancel an IM address confirmation procedure.
  877. #. TRANS: Button label to cancel a SMS address confirmation procedure.
  878. #. TRANS: Button label in the "Edit application" form.
  879. #: actions/apioauthauthorize.php:445 actions/emailsettings.php:121
  880. #: actions/imsettings.php:134 actions/smssettings.php:131
  881. #: lib/applicationeditform.php:351
  882. msgctxt "BUTTON"
  883. msgid "Cancel"
  884. msgstr ""
  885. #. TRANS: Button text that when clicked will allow access to an account by an external application.
  886. #: actions/apioauthauthorize.php:452
  887. msgctxt "BUTTON"
  888. msgid "Allow"
  889. msgstr ""
  890. #. TRANS: Form instructions.
  891. #: actions/apioauthauthorize.php:469
  892. msgid "Authorize access to your account information."
  893. msgstr ""
  894. #. TRANS: Header for user notification after revoking OAuth access to an application.
  895. #: actions/apioauthauthorize.php:561
  896. msgid "Authorization canceled."
  897. msgstr ""
  898. #. TRANS: User notification after revoking OAuth access to an application.
  899. #. TRANS: %s is an OAuth token.
  900. #: actions/apioauthauthorize.php:565
  901. #, php-format
  902. msgid "The request token %s has been revoked."
  903. msgstr ""
  904. #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
  905. #: actions/apioauthauthorize.php:588
  906. msgid "You have successfully authorized the application"
  907. msgstr ""
  908. #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
  909. #: actions/apioauthauthorize.php:592
  910. msgid ""
  911. "Please return to the application and enter the following security code to "
  912. "complete the process."
  913. msgstr ""
  914. #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
  915. #. TRANS: %s is the authorised application name.
  916. #: actions/apioauthauthorize.php:599
  917. #, php-format
  918. msgid "You have successfully authorized %s"
  919. msgstr ""
  920. #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
  921. #. TRANS: %s is the authorised application name.
  922. #: actions/apioauthauthorize.php:606
  923. #, php-format
  924. msgid ""
  925. "Please return to %s and enter the following security code to complete the "
  926. "process."
  927. msgstr ""
  928. #. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
  929. #. TRANS: POST and DELETE should not be translated.
  930. #: actions/apistatusesdestroy.php:63
  931. msgid "This method requires a POST or DELETE."
  932. msgstr ""
  933. #. TRANS: Client error displayed trying to delete a status with an invalid ID.
  934. #: actions/apistatusesdestroy.php:76
  935. msgid "No status found with that ID."
  936. msgstr ""
  937. #. TRANS: Client error displayed trying to delete a status of another user.
  938. #: actions/apistatusesdestroy.php:88
  939. msgid "You may not delete another user's status."
  940. msgstr ""
  941. #. TRANS: Client error displayed trying to show a deleted notice.
  942. #: actions/apistatusesshow.php:86 actions/shownotice.php:132
  943. msgid "Notice deleted."
  944. msgstr ""
  945. #. TRANS: Client error displayed trying to show a non-existing notice.
  946. #: actions/apistatusesshow.php:89 actions/shownotice.php:136
  947. msgid "No such notice."
  948. msgstr ""
  949. #. TRANS: Client exception thrown when trying a view a notice the user has no access to.
  950. #: actions/apistatusesshow.php:94 actions/shownotice.php:85
  951. msgid "Access restricted."
  952. msgstr ""
  953. #. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
  954. #. TRANS: Client exception thrown when using an unsupported HTTP method.
  955. #: actions/apistatusesshow.php:125 lib/atompubaction.php:55
  956. #: lib/atompubaction.php:68 lib/atompubaction.php:73 lib/atompubaction.php:78
  957. msgid "HTTP method not supported."
  958. msgstr ""
  959. #. TRANS: Exception thrown requesting an unsupported notice output format.
  960. #. TRANS: %s is the requested output format.
  961. #: actions/apistatusesshow.php:149
  962. #, php-format
  963. msgid "Unsupported format: %s."
  964. msgstr ""
  965. #. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
  966. #: actions/apistatusesshow.php:201
  967. msgid "Can only delete using the Atom format."
  968. msgstr ""
  969. #. TRANS: Client error displayed when a user has no rights to delete notices of other users.
  970. #. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
  971. #: actions/apistatusesshow.php:208 actions/deletenotice.php:45
  972. msgid "Cannot delete this notice."
  973. msgstr ""
  974. #. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
  975. #: actions/apistatusesshow.php:221
  976. #, php-format
  977. msgid "Deleted notice %d"
  978. msgstr ""
  979. #. TRANS: Client error displayed when the parameter "status" is missing.
  980. #: actions/apistatusesupdate.php:220
  981. msgid "Client must provide a 'status' parameter with a value."
  982. msgstr ""
  983. #. TRANS: Client error displayed when replying to a non-existing notice.
  984. #: actions/apistatusesupdate.php:257
  985. msgid "Parent notice not found."
  986. msgstr ""
  987. #. TRANS: Client error displayed exceeding the maximum notice length.
  988. #. TRANS: %d is the maximum lenth for a notice.
  989. #: actions/apistatusesupdate.php:286
  990. #, php-format
  991. msgid "Maximum notice size is %d character, including attachment URL."
  992. msgid_plural "Maximum notice size is %d characters, including attachment URL."
  993. msgstr[0] ""
  994. msgstr[1] ""
  995. #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format.
  996. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format.
  997. #: actions/apisubscriptions.php:220 actions/apisubscriptions.php:250
  998. msgid "Unsupported format."
  999. msgstr ""
  1000. #. TRANS: Server error displayed whe trying to get a timeline fails.
  1001. #. TRANS: %s is the error message.
  1002. #: actions/apitimelinelist.php:151
  1003. #, php-format
  1004. msgid "Could not generate feed for list - %s"
  1005. msgstr ""
  1006. #. TRANS: Title for timeline of most recent mentions of a user.
  1007. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
  1008. #: actions/apitimelinementions.php:107
  1009. #, php-format
  1010. msgid "%1$s / Updates mentioning %2$s"
  1011. msgstr ""
  1012. #. TRANS: Subtitle for timeline of most recent mentions of a user.
  1013. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname,
  1014. #. TRANS: %3$s is a user's full name.
  1015. #: actions/apitimelinementions.php:122
  1016. #, php-format
  1017. msgid "%1$s updates that reply to updates from %3$s / %2$s."
  1018. msgstr ""
  1019. #: actions/apitimelinenetworkpublic.php:9
  1020. #, php-format
  1021. msgid "%s network public timeline"
  1022. msgstr ""
  1023. #: actions/apitimelinenetworkpublic.php:15 actions/networkpublic.php:10
  1024. msgid "Network wide public feed is not permitted without authorization"
  1025. msgstr ""
  1026. #. TRANS: Title for site timeline. %s is the GNU social sitename.
  1027. #. TRANS: Public RSS feed title. %s is the StatusNet site name.
  1028. #: actions/apitimelinepublic.php:182 actions/publicrss.php:71
  1029. #, php-format
  1030. msgid "%s public timeline"
  1031. msgstr ""
  1032. #. TRANS: Subtitle for site timeline. %s is the GNU social sitename.
  1033. #: actions/apitimelinepublic.php:201
  1034. #, php-format
  1035. msgid "%s updates from everyone!"
  1036. msgstr ""
  1037. #. TRANS: Title for timeline with lastest notices with a given tag.
  1038. #. TRANS: %s is the tag.
  1039. #. TRANS: Title for first page of notices with tags.
  1040. #. TRANS: %s is the tag.
  1041. #: actions/apitimelinetag.php:90 actions/tag.php:65
  1042. #, php-format
  1043. msgid "Notices tagged with %s"
  1044. msgstr ""
  1045. #. TRANS: Subtitle for timeline with lastest notices with a given tag.
  1046. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
  1047. #. TRANS: Tag feed description.
  1048. #. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename.
  1049. #: actions/apitimelinetag.php:94 actions/tagrss.php:52
  1050. #, php-format
  1051. msgid "Updates tagged with %1$s on %2$s!"
  1052. msgstr ""
  1053. #: actions/apitimelineuser.php:140
  1054. msgid "Remote user timelines are not available here yet."
  1055. msgstr ""
  1056. #. TRANS: Client error displayed trying to add a notice to another user's timeline.
  1057. #: actions/apitimelineuser.php:202
  1058. msgid "Only the user can add to their own timeline."
  1059. msgstr ""
  1060. #. TRANS: Client error displayed when using another format than AtomPub.
  1061. #: actions/apitimelineuser.php:208
  1062. msgid "Only accept AtomPub for Atom feeds."
  1063. msgstr ""
  1064. #. TRANS: Client error displayed attempting to post an empty API notice.
  1065. #: actions/apitimelineuser.php:214
  1066. msgid "Atom post must not be empty."
  1067. msgstr ""
  1068. #. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
  1069. #: actions/apitimelineuser.php:223
  1070. msgid "Atom post must be well-formed XML."
  1071. msgstr ""
  1072. #. TRANS: Client error displayed when not using an Atom entry.
  1073. #: actions/apitimelineuser.php:229 actions/atompubmembershipfeed.php:191
  1074. #: actions/atompubsubscriptionfeed.php:203
  1075. msgid "Atom post must be an Atom entry."
  1076. msgstr ""
  1077. #. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
  1078. #: actions/apitimelineuser.php:246
  1079. msgid "Could not handle this Atom Activity."
  1080. msgstr ""
  1081. #. TRANS: Server error for unfinished API method showTrends.
  1082. #: actions/apitrends.php:83
  1083. msgid "API method under construction."
  1084. msgstr ""
  1085. #. TRANS: Client error displayed when requesting user information for a non-existing user.
  1086. #: actions/apiuserprofileimage.php:60 actions/apiusershow.php:76
  1087. msgid "User not found."
  1088. msgstr ""
  1089. #. TRANS: Client error displayed when trying to leave a group while not logged in.
  1090. #: actions/approvegroup.php:59 actions/cancelgroup.php:59
  1091. #: actions/leavegroup.php:57
  1092. msgid "You must be logged in to leave a group."
  1093. msgstr ""
  1094. #. TRANS: Client error displayed when trying to leave a non-local group.
  1095. #. TRANS: Client error displayed when trying to leave a non-existing group.
  1096. #. TRANS: Client exception thrown when referencing a non-existing group.
  1097. #. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
  1098. #. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
  1099. #. TRANS: Client error displayed when trying to leave a non-local group.
  1100. #. TRANS: Client error displayed when trying to leave a non-existing group.
  1101. #. TRANS: Client error when trying to delete a non-local group.
  1102. #. TRANS: Client error when trying to delete a non-existing group.
  1103. #. TRANS: Client error displayed trying to edit a non-existing group.
  1104. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
  1105. #. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
  1106. #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
  1107. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
  1108. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
  1109. #. TRANS: Client error displayed when trying to view group members for a non-existing group.
  1110. #. TRANS: Client error displayed when trying to view group members for an object that is not a group.
  1111. #. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
  1112. #. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
  1113. #. TRANS: Client error displayed when trying to join a non-local group.
  1114. #. TRANS: Client error displayed when trying to join a non-existing group.
  1115. #. TRANS: Client error displayed when trying to leave a non-local group.
  1116. #. TRANS: Client error displayed when trying to leave a non-existing group.
  1117. #. TRANS: Client error displayed when providing an invalid group ID on the Make Admin page.
  1118. #. TRANS: Command exception text shown when a group is requested that does not exist.
  1119. #. TRANS: Error text shown when trying to leave a group that does not exist.
  1120. #. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
  1121. #. TRANS: Client error displayed if no local group with a given name was found requesting group page.
  1122. #: actions/approvegroup.php:80 actions/approvegroup.php:91
  1123. #: actions/atompubshowmembership.php:62 actions/blockedfromgroup.php:79
  1124. #: actions/blockedfromgroup.php:86 actions/cancelgroup.php:79
  1125. #: actions/cancelgroup.php:90 actions/deletegroup.php:85
  1126. #: actions/deletegroup.php:96 actions/editgroup.php:138
  1127. #: actions/foafgroup.php:46 actions/foafgroup.php:64 actions/foafgroup.php:71
  1128. #: actions/groupblock.php:85 actions/grouplogo.php:332
  1129. #: actions/groupqueue.php:83 actions/groupqueue.php:90 actions/grouprss.php:81
  1130. #: actions/groupunblock.php:85 actions/joingroup.php:78
  1131. #: actions/joingroup.php:89 actions/leavegroup.php:78 actions/leavegroup.php:89
  1132. #: actions/makeadmin.php:87 lib/command.php:170 lib/command.php:340
  1133. #: lib/groupaction.php:80 lib/groupaction.php:89
  1134. msgid "No such group."
  1135. msgstr ""
  1136. #. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
  1137. #. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
  1138. #. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
  1139. #. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
  1140. #: actions/approvegroup.php:86 actions/cancelgroup.php:85
  1141. #: actions/deletegroup.php:91 actions/joingroup.php:84
  1142. #: actions/leavegroup.php:84
  1143. msgid "No nickname or ID."
  1144. msgstr ""
  1145. #. TRANS: Client error displayed trying to approve group membership while not logged in.
  1146. #. TRANS: Client error displayed when trying to leave a group while not logged in.
  1147. #: actions/approvegroup.php:97 actions/approvesub.php:60
  1148. #: actions/cancelgroup.php:96
  1149. msgid "Must be logged in."
  1150. msgstr ""
  1151. #. TRANS: Client error displayed trying to approve group membership while not a group administrator.
  1152. #. TRANS: Client error displayed when trying to approve or cancel a group join request without
  1153. #. TRANS: being a group administrator.
  1154. #: actions/approvegroup.php:104 actions/cancelgroup.php:104
  1155. msgid "Only group admin can approve or cancel join requests."
  1156. msgstr ""
  1157. #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve.
  1158. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve.
  1159. #: actions/approvegroup.php:108 actions/approvesub.php:66
  1160. msgid "Must specify a profile."
  1161. msgstr ""
  1162. #. TRANS: Client error displayed trying to approve group membership for a non-existing request.
  1163. #. TRANS: %s is a nickname.
  1164. #. TRANS: Client error displayed when trying to approve a non-existing group join request.
  1165. #. TRANS: %s is a user nickname.
  1166. #: actions/approvegroup.php:117 actions/cancelgroup.php:116
  1167. #, php-format
  1168. msgid "%s is not in the moderation queue for this group."
  1169. msgstr ""
  1170. #. TRANS: Client error displayed trying to approve/deny group membership.
  1171. #. TRANS: Client error displayed trying to approve/deny subscription.
  1172. #: actions/approvegroup.php:124 actions/approvesub.php:82
  1173. msgid "Internal error: received neither cancel nor abort."
  1174. msgstr ""
  1175. #. TRANS: Client error displayed trying to approve/deny group membership.
  1176. #. TRANS: Client error displayed trying to approve/deny subscription
  1177. #: actions/approvegroup.php:128 actions/approvesub.php:86
  1178. msgid "Internal error: received both cancel and abort."
  1179. msgstr ""
  1180. #. TRANS: Server error displayed when cancelling a queued group join request fails.
  1181. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
  1182. #: actions/approvegroup.php:156 actions/cancelgroup.php:140
  1183. #, php-format
  1184. msgid "Could not cancel request for user %1$s to join group %2$s."
  1185. msgstr ""
  1186. #. TRANS: Title for leave group page after group join request is approved/disapproved.
  1187. #. TRANS: %1$s is the user nickname, %2$s is the group nickname.
  1188. #: actions/approvegroup.php:166
  1189. #, php-format
  1190. msgctxt "TITLE"
  1191. msgid "%1$s's request for %2$s"
  1192. msgstr ""
  1193. #. TRANS: Message on page for group admin after approving a join request.
  1194. #: actions/approvegroup.php:173
  1195. msgid "Join request approved."
  1196. msgstr ""
  1197. #. TRANS: Message on page for group admin after rejecting a join request.
  1198. #: actions/approvegroup.php:176
  1199. msgid "Join request canceled."
  1200. msgstr ""
  1201. #. TRANS: Client error displayed trying to approve subscription for a non-existing request.
  1202. #. TRANS: %s is a user nickname.
  1203. #: actions/approvesub.php:75
  1204. #, php-format
  1205. msgid "%s is not in the moderation queue for your subscriptions."
  1206. msgstr ""
  1207. #. TRANS: Server error displayed when cancelling a queued subscription request fails.
  1208. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed.
  1209. #: actions/approvesub.php:115
  1210. #, php-format
  1211. msgid "Could not cancel or approve request for user %1$s to join group %2$s."
  1212. msgstr ""
  1213. #. TRANS: Title for subscription approval ajax return
  1214. #. TRANS: %1$s is the approved user's nickname
  1215. #: actions/approvesub.php:125
  1216. #, php-format
  1217. msgctxt "TITLE"
  1218. msgid "%1$s's request"
  1219. msgstr ""
  1220. #. TRANS: Message on page for user after approving a subscription request.
  1221. #: actions/approvesub.php:131
  1222. msgid "Subscription approved."
  1223. msgstr ""
  1224. #. TRANS: Message on page for user after rejecting a subscription request.
  1225. #: actions/approvesub.php:134
  1226. msgid "Subscription canceled."
  1227. msgstr ""
  1228. #. TRANS: Title for group membership feed.
  1229. #. TRANS: %s is a username.
  1230. #: actions/atompubmembershipfeed.php:105
  1231. #, php-format
  1232. msgid "Group memberships of %s"
  1233. msgstr ""
  1234. #. TRANS: Subtitle for group membership feed.
  1235. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
  1236. #: actions/atompubmembershipfeed.php:110
  1237. #, php-format
  1238. msgid "Groups %1$s is a member of on %2$s"
  1239. msgstr ""
  1240. #. TRANS: Client exception thrown when trying subscribe someone else to a group.
  1241. #: actions/atompubmembershipfeed.php:180
  1242. msgid "Cannot add someone else's membership."
  1243. msgstr ""
  1244. #. TRANS: Client error displayed when not using the join verb.
  1245. #: actions/atompubmembershipfeed.php:202
  1246. msgid "Can only handle join activities."
  1247. msgstr ""
  1248. #. TRANS: Client exception thrown when trying to join something which is not a group
  1249. #: actions/atompubmembershipfeed.php:209
  1250. msgid "Can only join groups."
  1251. msgstr ""
  1252. #. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
  1253. #: actions/atompubmembershipfeed.php:217
  1254. msgid "Unknown group."
  1255. msgstr ""
  1256. #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
  1257. #: actions/atompubmembershipfeed.php:225
  1258. msgid "Already a member."
  1259. msgstr ""
  1260. #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
  1261. #: actions/atompubmembershipfeed.php:233
  1262. msgid "Blocked by admin."
  1263. msgstr ""
  1264. #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
  1265. #: actions/atompubshowmembership.php:72
  1266. msgid "Not a member."
  1267. msgstr ""
  1268. #. TRANS: Client exception thrown when deleting someone else's membership.
  1269. #: actions/atompubshowmembership.php:114
  1270. msgid "Cannot delete someone else's membership."
  1271. msgstr ""
  1272. #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
  1273. #. TRANS: %d is the non-existing profile ID number.
  1274. #: actions/atompubshowsubscription.php:58
  1275. #: actions/atompubshowsubscription.php:69
  1276. #: actions/atompubsubscriptionfeed.php:59
  1277. #, php-format
  1278. msgid "No such profile id: %d."
  1279. msgstr ""
  1280. #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
  1281. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
  1282. #: actions/atompubshowsubscription.php:78
  1283. #, php-format
  1284. msgid "Profile %1$d not subscribed to profile %2$d."
  1285. msgstr ""
  1286. #. TRANS: Client exception thrown when trying to delete a subscription of another user.
  1287. #: actions/atompubshowsubscription.php:122
  1288. msgid "Cannot delete someone else's subscription."
  1289. msgstr ""
  1290. #. TRANS: Subtitle for Atom subscription feed.
  1291. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
  1292. #: actions/atompubsubscriptionfeed.php:120
  1293. #, php-format
  1294. msgid "People %1$s has subscribed to on %2$s"
  1295. msgstr ""
  1296. #. TRANS: Client exception thrown when trying to subscribe another user.
  1297. #: actions/atompubsubscriptionfeed.php:192
  1298. msgid "Cannot add someone else's subscription."
  1299. msgstr ""
  1300. #. TRANS: Client error displayed when not using the follow verb.
  1301. #: actions/atompubsubscriptionfeed.php:214
  1302. msgid "Can only handle Follow activities."
  1303. msgstr ""
  1304. #. TRANS: Client exception thrown when subscribing to an object that is not a person.
  1305. #: actions/atompubsubscriptionfeed.php:221
  1306. msgid "Can only follow people."
  1307. msgstr ""
  1308. #. TRANS: Client exception thrown when subscribing to a non-existing profile.
  1309. #. TRANS: %s is the unknown profile ID.
  1310. #: actions/atompubsubscriptionfeed.php:230
  1311. #, php-format
  1312. msgid "Unknown profile %s."
  1313. msgstr ""
  1314. #. TRANS: Client error displayed trying to get a non-existing attachment.
  1315. #: actions/attachment.php:69
  1316. msgid "No such attachment."
  1317. msgstr ""
  1318. #. TRANS: Client error displayed trying to get an avatar without providing a nickname.
  1319. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
  1320. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
  1321. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
  1322. #. TRANS: Client error displayed when trying to view group members without providing a group nickname.
  1323. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
  1324. #. TRANS: Client error displayed if no nickname argument was given requesting a group page.
  1325. #: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:72
  1326. #: actions/editgroup.php:122 actions/grouplogo.php:316
  1327. #: actions/groupqueue.php:76 actions/grouprss.php:74 lib/groupaction.php:64
  1328. msgid "No nickname."
  1329. msgstr ""
  1330. #: actions/avatarsettings.php:57
  1331. msgid ""
  1332. "The administrator of your site needs to\n"
  1333. " add write permissions on the avatar upload folder before\n"
  1334. " you're able to set one."
  1335. msgstr ""
  1336. #. TRANS: Title for avatar upload page.
  1337. #: actions/avatarsettings.php:74
  1338. msgid "Avatar"
  1339. msgstr ""
  1340. #. TRANS: Instruction for avatar upload page.
  1341. #. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
  1342. #: actions/avatarsettings.php:86
  1343. #, php-format
  1344. msgid "You can upload your personal avatar. The maximum file size is %s."
  1345. msgstr ""
  1346. #. TRANS: Avatar upload page form legend.
  1347. #. TRANS: Avatar upload page crop form legend.
  1348. #. TRANS: Legend for group logo settings fieldset.
  1349. #: actions/avatarsettings.php:117 actions/avatarsettings.php:194
  1350. #: actions/grouplogo.php:97
  1351. msgid "Avatar settings"
  1352. msgstr ""
  1353. #. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
  1354. #. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
  1355. #. TRANS: Header for originally uploaded file before a crop on the group logo page.
  1356. #. TRANS: Uploaded original file in group logo form.
  1357. #: actions/avatarsettings.php:128 actions/avatarsettings.php:203
  1358. #: actions/grouplogo.php:108 actions/grouplogo.php:180
  1359. msgid "Original"
  1360. msgstr ""
  1361. #. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
  1362. #. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
  1363. #. TRANS: Header for the cropped group logo on the group logo page.
  1364. #. TRANS: Header for preview of to be displayed group logo.
  1365. #: actions/avatarsettings.php:145 actions/avatarsettings.php:216
  1366. #: actions/grouplogo.php:123 actions/grouplogo.php:192
  1367. msgid "Preview"
  1368. msgstr ""
  1369. #. TRANS: Button on avatar upload page to delete current avatar.
  1370. #. TRANS: Button text for user account deletion.
  1371. #. TRANS: Submit button text the OAuth application page to delete an application.
  1372. #. TRANS: Button text for deleting a group.
  1373. #. TRANS: Button text to delete a list.
  1374. #: actions/avatarsettings.php:154 actions/deleteaccount.php:318
  1375. #: actions/showapplication.php:239 lib/deletegroupform.php:112
  1376. #: lib/peopletageditform.php:171
  1377. msgctxt "BUTTON"
  1378. msgid "Delete"
  1379. msgstr ""
  1380. #. TRANS: Button on avatar upload page to upload an avatar.
  1381. #. TRANS: Submit button to confirm upload of a user backup file for account restore.
  1382. #: actions/avatarsettings.php:175 actions/restoreaccount.php:363
  1383. msgctxt "BUTTON"
  1384. msgid "Upload"
  1385. msgstr ""
  1386. #. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
  1387. #: actions/avatarsettings.php:232
  1388. msgctxt "BUTTON"
  1389. msgid "Crop"
  1390. msgstr ""
  1391. #. TRANS: Avatar upload form instruction after uploading a file.
  1392. #: actions/avatarsettings.php:293
  1393. msgid "Pick a square area of the image to be your avatar."
  1394. msgstr ""
  1395. #. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
  1396. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
  1397. #: actions/avatarsettings.php:307 actions/grouplogo.php:437
  1398. msgid "Lost our file data."
  1399. msgstr ""
  1400. #. TRANS: Success message for having updated a user avatar.
  1401. #: actions/avatarsettings.php:340
  1402. msgid "Avatar updated."
  1403. msgstr ""
  1404. #. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
  1405. #: actions/avatarsettings.php:344
  1406. msgid "Failed updating avatar."
  1407. msgstr ""
  1408. #. TRANS: Success message for deleting a user avatar.
  1409. #: actions/avatarsettings.php:357
  1410. msgid "Avatar deleted."
  1411. msgstr ""
  1412. #. TRANS: Title for backup account page.
  1413. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
  1414. #: actions/backupaccount.php:54 actions/profilesettings.php:449
  1415. msgid "Backup account"
  1416. msgstr ""
  1417. #. TRANS: Client exception thrown when trying to backup an account without having backup rights.
  1418. #: actions/backupaccount.php:61
  1419. msgid "You may not backup your account."
  1420. msgstr ""
  1421. #. TRANS: Client error displayed when blocking a user that has already been blocked.
  1422. #: actions/block.php:68
  1423. msgid "You already blocked that user."
  1424. msgstr ""
  1425. #. TRANS: Title for block user page.
  1426. #. TRANS: Legend for block user form.
  1427. #. TRANS: Fieldset legend for block user from group form.
  1428. #: actions/block.php:103 actions/block.php:133 actions/groupblock.php:157
  1429. msgid "Block user"
  1430. msgstr ""
  1431. #. TRANS: Explanation of consequences when blocking a user on the block user page.
  1432. #: actions/block.php:136
  1433. msgid ""
  1434. "Are you sure you want to block this user? Afterwards, they will be "
  1435. "unsubscribed from you, unable to subscribe to you in the future, and you "
  1436. "will not be notified of any @-replies from them."
  1437. msgstr ""
  1438. #. TRANS: Button label on the user block form.
  1439. #. TRANS: Button label on the delete application form.
  1440. #. TRANS: Button label on the delete group form.
  1441. #. TRANS: Button label on the delete user form.
  1442. #. TRANS: Button label on the form to block a user from a group.
  1443. #: actions/block.php:151 actions/deleteapplication.php:154
  1444. #: actions/deletegroup.php:215 actions/deleteuser.php:149
  1445. #: actions/editpeopletag.php:172 actions/groupblock.php:179
  1446. msgctxt "BUTTON"
  1447. msgid "No"
  1448. msgstr ""
  1449. #. TRANS: Submit button title for 'No' when blocking a user.
  1450. #: actions/block.php:155
  1451. msgid "Do not block this user."
  1452. msgstr ""
  1453. #. TRANS: Button label on the user block form.
  1454. #. TRANS: Button label on the delete application form.
  1455. #. TRANS: Button label on the delete group form.
  1456. #. TRANS: Button label on the delete user form.
  1457. #. TRANS: Button label on the form to block a user from a group.
  1458. #: actions/block.php:158 actions/deleteapplication.php:161
  1459. #: actions/deletegroup.php:222 actions/deleteuser.php:156
  1460. #: actions/editpeopletag.php:176 actions/groupblock.php:186
  1461. msgctxt "BUTTON"
  1462. msgid "Yes"
  1463. msgstr ""
  1464. #. TRANS: Submit button title for 'Yes' when blocking a user.
  1465. #: actions/block.php:162
  1466. msgid "Block this user."
  1467. msgstr ""
  1468. #. TRANS: Server error displayed when blocking a user fails.
  1469. #: actions/block.php:186
  1470. msgid "Failed to save block information."
  1471. msgstr ""
  1472. #. TRANS: Title for first page with list of users blocked from a group.
  1473. #. TRANS: %s is a group nickname.
  1474. #: actions/blockedfromgroup.php:97
  1475. #, php-format
  1476. msgid "%s blocked profiles"
  1477. msgstr ""
  1478. #. TRANS: Title for any but the first page with list of users blocked from a group.
  1479. #. TRANS: %1$s is a group nickname, %2$d is a page number.
  1480. #: actions/blockedfromgroup.php:102
  1481. #, php-format
  1482. msgid "%1$s blocked profiles, page %2$d"
  1483. msgstr ""
  1484. #. TRANS: Instructions for list of users blocked from a group.
  1485. #: actions/blockedfromgroup.php:118
  1486. msgid "A list of the users blocked from joining this group."
  1487. msgstr ""
  1488. #. TRANS: Form legend for unblocking a user from a group.
  1489. #: actions/blockedfromgroup.php:281
  1490. msgid "Unblock user from group"
  1491. msgstr ""
  1492. #. TRANS: Button text for unblocking a user from a group.
  1493. #: actions/blockedfromgroup.php:313
  1494. msgctxt "BUTTON"
  1495. msgid "Unblock"
  1496. msgstr ""
  1497. #. TRANS: Tooltip for button for unblocking a user from a group.
  1498. #. TRANS: Description of the form to unblock a user.
  1499. #: actions/blockedfromgroup.php:317 lib/unblockform.php:78
  1500. msgid "Unblock this user"
  1501. msgstr ""
  1502. #. TRANS: Title for leave group page after leaving.
  1503. #. TRANS: %s$s is the leaving user's name, %2$s is the group name.
  1504. #. TRANS: Title for leave group page after leaving.
  1505. #: actions/cancelgroup.php:150 actions/leavegroup.php:126
  1506. #, php-format
  1507. msgctxt "TITLE"
  1508. msgid "%1$s left group %2$s"
  1509. msgstr ""
  1510. #. TRANS: Title after unsubscribing from a group.
  1511. #: actions/cancelsubscription.php:71
  1512. msgctxt "TITLE"
  1513. msgid "Unsubscribed"
  1514. msgstr ""
  1515. #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
  1516. #: actions/confirmaddress.php:60
  1517. msgid "No confirmation code."
  1518. msgstr ""
  1519. #. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
  1520. #: actions/confirmaddress.php:65
  1521. msgid "Confirmation code not found."
  1522. msgstr ""
  1523. #. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
  1524. #: actions/confirmaddress.php:77
  1525. msgid "That confirmation code is not for you!"
  1526. msgstr ""
  1527. #. TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim')
  1528. #: actions/confirmaddress.php:85
  1529. #, php-format
  1530. msgid "Unrecognized address type %s"
  1531. msgstr ""
  1532. #. TRANS: Client error for an already confirmed email/jabber/sms address.
  1533. #. TRANS: Client error for an already confirmed IM address.
  1534. #: actions/confirmaddress.php:98 actions/confirmaddress.php:128
  1535. msgid "That address has already been confirmed."
  1536. msgstr ""
  1537. #. TRANS: Server error displayed when updating IM preferences fails.
  1538. #. TRANS: Server error thrown on database error removing a registered IM address.
  1539. #: actions/confirmaddress.php:136 actions/imsettings.php:396
  1540. msgid "Could not update user IM preferences."
  1541. msgstr ""
  1542. #. TRANS: Server error displayed when adding IM preferences fails.
  1543. #: actions/confirmaddress.php:148
  1544. msgid "Could not insert user IM preferences."
  1545. msgstr ""
  1546. #. TRANS: Title for the contact address confirmation action.
  1547. #: actions/confirmaddress.php:167
  1548. msgid "Confirm address"
  1549. msgstr ""
  1550. #. TRANS: Success message for the contact address confirmation action.
  1551. #. TRANS: %s can be 'email', 'jabber', or 'sms'.
  1552. #: actions/confirmaddress.php:180
  1553. #, php-format
  1554. msgid "The address \"%s\" has been confirmed for your account."
  1555. msgstr ""
  1556. #. TRANS: Title for page with a conversion (multiple notices in context).
  1557. #: actions/conversation.php:69
  1558. msgid "Conversation"
  1559. msgstr ""
  1560. #. TRANS: Title for link to notice feed.
  1561. #. TRANS: %s is a user nickname.
  1562. #: actions/conversation.php:103
  1563. msgid "Conversation feed (Activity Streams JSON)"
  1564. msgstr ""
  1565. #. TRANS: Title for link to notice feed.
  1566. #. TRANS: %s is a user nickname.
  1567. #: actions/conversation.php:111
  1568. msgid "Conversation feed (RSS 2.0)"
  1569. msgstr ""
  1570. #. TRANS: Title for link to notice feed.
  1571. #. TRANS: %s is a user nickname.
  1572. #: actions/conversation.php:119
  1573. msgid "Conversation feed (Atom)"
  1574. msgstr ""
  1575. #. TRANS: Client exception displayed trying to delete a user account while not logged in.
  1576. #: actions/deleteaccount.php:72
  1577. msgid "Only logged-in users can delete their account."
  1578. msgstr ""
  1579. #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
  1580. #: actions/deleteaccount.php:77
  1581. msgid "You cannot delete your account."
  1582. msgstr ""
  1583. #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
  1584. #: actions/deleteaccount.php:122 actions/deleteaccount.php:296
  1585. msgid "I am sure."
  1586. msgstr ""
  1587. #. TRANS: Notification for user about the text that must be input to be able to delete a user account.
  1588. #. TRANS: %s is the text that needs to be input.
  1589. #: actions/deleteaccount.php:126
  1590. #, php-format
  1591. msgid "You must write \"%s\" exactly in the box."
  1592. msgstr ""
  1593. #. TRANS: Confirmation that a user account has been deleted.
  1594. #: actions/deleteaccount.php:208
  1595. msgid "Account deleted."
  1596. msgstr ""
  1597. #. TRANS: Page title for page on which a user account can be deleted.
  1598. #. TRANS: Option in profile settings to delete the account of the currently logged in user.
  1599. #: actions/deleteaccount.php:230 actions/profilesettings.php:457
  1600. msgid "Delete account"
  1601. msgstr ""
  1602. #. TRANS: Form text for user deletion form.
  1603. #: actions/deleteaccount.php:281
  1604. msgid ""
  1605. "This will <strong>permanently delete</strong> your account data from this "
  1606. "server."
  1607. msgstr ""
  1608. #. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
  1609. #. TRANS: %s is a URL to the backup page.
  1610. #: actions/deleteaccount.php:286
  1611. #, php-format
  1612. msgid ""
  1613. "You are strongly advised to <a href=\"%s\">back up your data</a> before "
  1614. "deletion."
  1615. msgstr ""
  1616. #. TRANS: Field label for delete account confirmation entry.
  1617. #. TRANS: Field label for password reset form where the password has to be typed again.
  1618. #: actions/deleteaccount.php:299 actions/recoverpassword.php:245
  1619. msgid "Confirm"
  1620. msgstr ""
  1621. #. TRANS: Input title for the delete account field.
  1622. #. TRANS: %s is the text that needs to be input.
  1623. #: actions/deleteaccount.php:303
  1624. #, php-format
  1625. msgid "Enter \"%s\" to confirm that you want to delete your account."
  1626. msgstr ""
  1627. #. TRANS: Button title for user account deletion.
  1628. #: actions/deleteaccount.php:322
  1629. msgid "Permanently delete your account."
  1630. msgstr ""
  1631. #. TRANS: Client error displayed trying to delete an application while not logged in.
  1632. #: actions/deleteapplication.php:62
  1633. msgid "You must be logged in to delete an application."
  1634. msgstr ""
  1635. #. TRANS: Client error displayed trying to delete an application that does not exist.
  1636. #: actions/deleteapplication.php:70
  1637. msgid "Application not found."
  1638. msgstr ""
  1639. #. TRANS: Client error displayed trying to delete an application the current user does not own.
  1640. #. TRANS: Client error displayed trying to edit an application while not being its owner.
  1641. #. TRANS: Client error displayed trying to display an OAuth application for which the logged in user is not the owner.
  1642. #: actions/deleteapplication.php:77 actions/editapplication.php:77
  1643. #: actions/showapplication.php:91
  1644. msgid "You are not the owner of this application."
  1645. msgstr ""
  1646. #. TRANS: Client error displayed when the session token does not match or is not given.
  1647. #. TRANS: Client error text when there is a problem with the session token.
  1648. #: actions/deleteapplication.php:100 actions/editapplication.php:130
  1649. #: actions/showapplication.php:114 lib/action.php:1755
  1650. msgid "There was a problem with your session token."
  1651. msgstr ""
  1652. #. TRANS: Title for delete application page.
  1653. #. TRANS: Fieldset legend on delete application page.
  1654. #: actions/deleteapplication.php:121 actions/deleteapplication.php:146
  1655. msgid "Delete application"
  1656. msgstr ""
  1657. #. TRANS: Confirmation text on delete application page.
  1658. #: actions/deleteapplication.php:149
  1659. msgid ""
  1660. "Are you sure you want to delete this application? This will clear all data "
  1661. "about the application from the database, including all existing user "
  1662. "connections."
  1663. msgstr ""
  1664. #. TRANS: Submit button title for 'No' when deleting an application.
  1665. #: actions/deleteapplication.php:158
  1666. msgid "Do not delete this application."
  1667. msgstr ""
  1668. #. TRANS: Submit button title for 'Yes' when deleting an application.
  1669. #: actions/deleteapplication.php:164
  1670. msgid "Delete this application."
  1671. msgstr ""
  1672. #. TRANS: Client error when trying to delete group while not logged in.
  1673. #: actions/deletegroup.php:64
  1674. msgid "You must be logged in to delete a group."
  1675. msgstr ""
  1676. #. TRANS: Client error when trying to delete a group without having the rights to delete it.
  1677. #: actions/deletegroup.php:102
  1678. msgid "You are not allowed to delete this group."
  1679. msgstr ""
  1680. #. TRANS: Server error displayed if a group could not be deleted.
  1681. #. TRANS: %s is the name of the group that could not be deleted.
  1682. #: actions/deletegroup.php:144
  1683. #, php-format
  1684. msgid "Could not delete group %s."
  1685. msgstr ""
  1686. #. TRANS: Message given after deleting a group.
  1687. #. TRANS: %s is the deleted group's name.
  1688. #: actions/deletegroup.php:153
  1689. #, php-format
  1690. msgid "Deleted group %s"
  1691. msgstr ""
  1692. #. TRANS: Title of delete group page.
  1693. #. TRANS: Form legend for deleting a group.
  1694. #: actions/deletegroup.php:169 actions/deletegroup.php:197
  1695. msgid "Delete group"
  1696. msgstr ""
  1697. #. TRANS: Warning in form for deleleting a group.
  1698. #: actions/deletegroup.php:201
  1699. msgid ""
  1700. "Are you sure you want to delete this group? This will clear all data about "
  1701. "the group from the database, without a backup. Public posts to this group "
  1702. "will still appear in individual timelines."
  1703. msgstr ""
  1704. #. TRANS: Submit button title for 'No' when deleting a group.
  1705. #: actions/deletegroup.php:219
  1706. msgid "Do not delete this group."
  1707. msgstr ""
  1708. #. TRANS: Submit button title for 'Yes' when deleting a group.
  1709. #: actions/deletegroup.php:226
  1710. msgid "Delete this group."
  1711. msgstr ""
  1712. #. TRANS: Instructions for deleting a notice.
  1713. #: actions/deletenotice.php:54
  1714. msgid ""
  1715. "You are about to permanently delete a notice. Once this is done, it cannot "
  1716. "be undone."
  1717. msgstr ""
  1718. #. TRANS: Page title when deleting a notice.
  1719. #: actions/deletenotice.php:61
  1720. msgid "Delete notice"
  1721. msgstr ""
  1722. #. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
  1723. #: actions/deleteuser.php:55
  1724. msgid "You cannot delete users."
  1725. msgstr ""
  1726. #. TRANS: Client error displayed when trying to delete a non-local user.
  1727. #: actions/deleteuser.php:62
  1728. msgid "You can only delete local users."
  1729. msgstr ""
  1730. #. TRANS: Client error displayed when trying to delete a user that has been granted moderation privileges
  1731. #: actions/deleteuser.php:68
  1732. msgid "You cannot delete other privileged users."
  1733. msgstr ""
  1734. #. TRANS: Title of delete user page.
  1735. #: actions/deleteuser.php:105
  1736. msgctxt "TITLE"
  1737. msgid "Delete user"
  1738. msgstr ""
  1739. #. TRANS: Fieldset legend on delete user page.
  1740. #: actions/deleteuser.php:129
  1741. msgid "Delete user"
  1742. msgstr ""
  1743. #. TRANS: Information text to request if a user is certain that the described action has to be performed.
  1744. #: actions/deleteuser.php:133
  1745. msgid ""
  1746. "Are you sure you want to delete this user? This will clear all data about "
  1747. "the user from the database, without a backup."
  1748. msgstr ""
  1749. #. TRANS: Submit button title for 'No' when deleting a user.
  1750. #: actions/deleteuser.php:153
  1751. msgid "Do not delete this user."
  1752. msgstr ""
  1753. #. TRANS: Submit button title for 'Yes' when deleting a user.
  1754. #: actions/deleteuser.php:160
  1755. msgid "Delete this user."
  1756. msgstr ""
  1757. #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
  1758. #. TRANS: %s is the non-existing document.
  1759. #: actions/doc.php:105
  1760. #, php-format
  1761. msgid "No such document \"%s\"."
  1762. msgstr ""
  1763. #. TRANS: Menu item in default local navigation panel.
  1764. #. TRANS: Menu item in personal group navigation menu.
  1765. #: actions/doc.php:127 lib/adminpanelnav.php:63 lib/defaultlocalnav.php:60
  1766. #: lib/homestubnav.php:57 lib/personalgroupnav.php:77 lib/settingsnav.php:63
  1767. msgctxt "MENU"
  1768. msgid "Home"
  1769. msgstr ""
  1770. #: actions/doc.php:130
  1771. msgctxt "MENU"
  1772. msgid "Docs"
  1773. msgstr ""
  1774. #. TRANS: Secondary navigation menu item leading to help on StatusNet.
  1775. #: actions/doc.php:147 lib/secondarynav.php:56
  1776. msgctxt "MENU"
  1777. msgid "Help"
  1778. msgstr ""
  1779. #: actions/doc.php:148
  1780. msgid "Getting started"
  1781. msgstr ""
  1782. #. TRANS: Secondary navigation menu item leading to text about StatusNet site.
  1783. #: actions/doc.php:152 lib/secondarynav.php:59
  1784. msgctxt "MENU"
  1785. msgid "About"
  1786. msgstr ""
  1787. #: actions/doc.php:153
  1788. msgid "About this site"
  1789. msgstr ""
  1790. #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions.
  1791. #: actions/doc.php:157 lib/secondarynav.php:62
  1792. msgctxt "MENU"
  1793. msgid "FAQ"
  1794. msgstr ""
  1795. #: actions/doc.php:158
  1796. msgid "Frequently asked questions"
  1797. msgstr ""
  1798. #. TRANS: Secondary navigation menu item leading to e-mail contact information on the
  1799. #. TRANS: StatusNet site, where to report bugs, ...
  1800. #: actions/doc.php:162 lib/secondarynav.php:81
  1801. msgctxt "MENU"
  1802. msgid "Contact"
  1803. msgstr ""
  1804. #: actions/doc.php:163
  1805. msgid "Contact info"
  1806. msgstr ""
  1807. #: actions/doc.php:167
  1808. msgctxt "MENU"
  1809. msgid "Tags"
  1810. msgstr ""
  1811. #: actions/doc.php:168
  1812. msgid "Using tags"
  1813. msgstr ""
  1814. #. TRANS: Menu item in default local navigation panel.
  1815. #. TRANS: Menu item in search group navigation panel.
  1816. #. TRANS: Menu item in local navigation menu.
  1817. #: actions/doc.php:172 lib/defaultlocalnav.php:71 lib/publicgroupnav.php:76
  1818. #: lib/searchgroupnav.php:82 lib/subgroupnav.php:125
  1819. msgctxt "MENU"
  1820. msgid "Groups"
  1821. msgstr ""
  1822. #: actions/doc.php:173
  1823. msgid "Using groups"
  1824. msgstr ""
  1825. #: actions/doc.php:177
  1826. msgctxt "MENU"
  1827. msgid "API"
  1828. msgstr ""
  1829. #: actions/doc.php:178
  1830. msgid "RESTful API"
  1831. msgstr ""
  1832. #. TRANS: Title for "Edit application" form.
  1833. #. TRANS: Form legend.
  1834. #: actions/editapplication.php:54 lib/applicationeditform.php:129
  1835. msgid "Edit application"
  1836. msgstr ""
  1837. #. TRANS: Client error displayed trying to edit an application while not logged in.
  1838. #: actions/editapplication.php:66
  1839. msgid "You must be logged in to edit an application."
  1840. msgstr ""
  1841. #. TRANS: Client error displayed trying to edit an application that does not exist.
  1842. #. TRANS: Client error displayed trying to display a non-existing OAuth application.
  1843. #: actions/editapplication.php:82 actions/showapplication.php:84
  1844. msgid "No such application."
  1845. msgstr ""
  1846. #. TRANS: Instructions for "Edit application" form.
  1847. #: actions/editapplication.php:165
  1848. msgid "Use this form to edit your application."
  1849. msgstr ""
  1850. #. TRANS: Validation error shown when not providing a name in the "Edit application" form.
  1851. #. TRANS: Validation error shown when not providing a name in the "New application" form.
  1852. #: actions/editapplication.php:182 actions/newapplication.php:89
  1853. msgid "Name is required."
  1854. msgstr ""
  1855. #. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
  1856. #. TRANS: Validation error shown when providing too long a name in the "New application" form.
  1857. #: actions/editapplication.php:186 actions/newapplication.php:95
  1858. msgid "Name is too long (maximum 255 characters)."
  1859. msgstr ""
  1860. #. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
  1861. #. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
  1862. #: actions/editapplication.php:190 actions/newapplication.php:92
  1863. msgid "Name already in use. Try another one."
  1864. msgstr ""
  1865. #. TRANS: Validation error shown when not providing a description in the "Edit application" form.
  1866. #. TRANS: Validation error shown when not providing a description in the "New application" form.
  1867. #: actions/editapplication.php:194 actions/newapplication.php:98
  1868. msgid "Description is required."
  1869. msgstr ""
  1870. #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
  1871. #: actions/editapplication.php:207
  1872. msgid "Source URL is too long."
  1873. msgstr ""
  1874. #. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
  1875. #. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
  1876. #: actions/editapplication.php:212 actions/newapplication.php:112
  1877. msgid "Source URL is not valid."
  1878. msgstr ""
  1879. #. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
  1880. #. TRANS: Validation error shown when not providing an organisation in the "New application" form.
  1881. #: actions/editapplication.php:216 actions/newapplication.php:115
  1882. msgid "Organization is required."
  1883. msgstr ""
  1884. #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
  1885. #: actions/editapplication.php:220 actions/newapplication.php:118
  1886. msgid "Organization is too long (maximum 255 characters)."
  1887. msgstr ""
  1888. #. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
  1889. #. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
  1890. #: actions/editapplication.php:224 actions/newapplication.php:121
  1891. msgid "Organization homepage is required."
  1892. msgstr ""
  1893. #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
  1894. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
  1895. #: actions/editapplication.php:233 actions/newapplication.php:127
  1896. msgid "Callback is too long."
  1897. msgstr ""
  1898. #. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
  1899. #. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
  1900. #: actions/editapplication.php:238 actions/newapplication.php:130
  1901. msgid "Callback URL is not valid."
  1902. msgstr ""
  1903. #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
  1904. #: actions/editapplication.php:275
  1905. msgid "Could not update application."
  1906. msgstr ""
  1907. #. TRANS: Title for form to edit a group. %s is a group nickname.
  1908. #: actions/editgroup.php:58
  1909. #, php-format
  1910. msgid "Edit %s group"
  1911. msgstr ""
  1912. #. TRANS: Form instructions for group edit form.
  1913. #: actions/editgroup.php:82
  1914. msgid "Use this form to edit the group."
  1915. msgstr ""
  1916. #. TRANS: Client error displayed trying to edit a group while not logged in.
  1917. #. TRANS: Client error displayed when trying to create a group while not logged in.
  1918. #: actions/editgroup.php:107 actions/grouplogo.php:301
  1919. msgid "You must be logged in to create a group."
  1920. msgstr ""
  1921. #. TRANS: Group edit form success message.
  1922. #. TRANS: Edit list form success message.
  1923. #: actions/editgroup.php:287 actions/editpeopletag.php:319
  1924. msgid "Options saved."
  1925. msgstr ""
  1926. #. TRANS: Title for edit list page after deleting a tag.
  1927. #. TRANS: %s is a list.
  1928. #: actions/editpeopletag.php:52
  1929. #, php-format
  1930. msgid "Delete %s list"
  1931. msgstr ""
  1932. #. TRANS: Title for edit list page.
  1933. #. TRANS: %s is a list.
  1934. #. TRANS: Form legend for list edit form.
  1935. #. TRANS: %s is a list.
  1936. #: actions/editpeopletag.php:56 lib/peopletageditform.php:110
  1937. #, php-format
  1938. msgid "Edit list %s"
  1939. msgstr ""
  1940. #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID.
  1941. #: actions/editpeopletag.php:101
  1942. msgid "No tagger or ID."
  1943. msgstr ""
  1944. #. TRANS: Client error displayed when referring to non-local user.
  1945. #: actions/editpeopletag.php:116
  1946. msgid "Not a local user."
  1947. msgstr ""
  1948. #. TRANS: Client error displayed when reting to edit a tag that was not self-created.
  1949. #: actions/editpeopletag.php:121
  1950. msgid "You must be the creator of the tag to edit it."
  1951. msgstr ""
  1952. #. TRANS: Form instruction for edit list form.
  1953. #: actions/editpeopletag.php:217
  1954. msgid "Use this form to edit the list."
  1955. msgstr ""
  1956. #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
  1957. #: actions/editpeopletag.php:238
  1958. msgid "Delete aborted."
  1959. msgstr ""
  1960. #. TRANS: Text in confirmation dialog for deleting a tag.
  1961. #: actions/editpeopletag.php:246
  1962. msgid ""
  1963. "Deleting this tag will permanantly remove all its subscription and "
  1964. "membership records. Do you still want to continue?"
  1965. msgstr ""
  1966. #. TRANS: Form validation error displayed if a given tag is invalid.
  1967. #: actions/editpeopletag.php:252
  1968. msgid "Invalid tag."
  1969. msgstr ""
  1970. #. TRANS: Form validation error displayed if a given tag is already present.
  1971. #. TRANS: %s is the already present tag.
  1972. #: actions/editpeopletag.php:257
  1973. #, php-format
  1974. msgid "You already have a tag named %s."
  1975. msgstr ""
  1976. #. TRANS: Text in confirmation dialog for setting a tag from public to private.
  1977. #: actions/editpeopletag.php:274
  1978. msgid ""
  1979. "Setting a public tag as private will permanently remove all the existing "
  1980. "subscriptions to it. Do you still want to continue?"
  1981. msgstr ""
  1982. #. TRANS: Server error displayed when updating a list fails.
  1983. #: actions/editpeopletag.php:303
  1984. msgid "Could not update list."
  1985. msgstr ""
  1986. #. TRANS: Title for e-mail settings.
  1987. #: actions/emailsettings.php:56
  1988. msgid "Email settings"
  1989. msgstr ""
  1990. #. TRANS: E-mail settings page instructions.
  1991. #. TRANS: %%site.name%% is the name of the site.
  1992. #: actions/emailsettings.php:70
  1993. #, php-format
  1994. msgid "Manage how you get email from %%site.name%%."
  1995. msgstr ""
  1996. #. TRANS: Form legend for e-mail settings form.
  1997. #. TRANS: Field label for e-mail address input in e-mail settings form.
  1998. #: actions/emailsettings.php:100 actions/emailsettings.php:126
  1999. msgid "Email address"
  2000. msgstr ""
  2001. #. TRANS: Form note in e-mail settings form.
  2002. #: actions/emailsettings.php:106
  2003. msgid "Current confirmed email address."
  2004. msgstr ""
  2005. #. TRANS: Button label to remove a confirmed e-mail address.
  2006. #. TRANS: Button label for removing a set sender e-mail address to post notices from.
  2007. #. TRANS: Button label to remove a confirmed IM address.
  2008. #. TRANS: Button label to remove a confirmed SMS address.
  2009. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
  2010. #. TRANS: Button text to untag a profile.
  2011. #: actions/emailsettings.php:109 actions/emailsettings.php:176
  2012. #: actions/imsettings.php:117 actions/smssettings.php:118
  2013. #: actions/smssettings.php:174 lib/togglepeopletag.php:213
  2014. msgctxt "BUTTON"
  2015. msgid "Remove"
  2016. msgstr ""
  2017. #. TRANS: Form note in e-mail settings form.
  2018. #: actions/emailsettings.php:116
  2019. msgid ""
  2020. "Awaiting confirmation on this address. Check your inbox (and spam box!) for "
  2021. "a message with further instructions."
  2022. msgstr ""
  2023. #. TRANS: Instructions for e-mail address input form. Do not translate
  2024. #. TRANS: "example.org". It is one of the domain names reserved for
  2025. #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
  2026. #. TRANS: Any other domain may be owned by a legitimate person or
  2027. #. TRANS: organization.
  2028. #: actions/emailsettings.php:133
  2029. msgid "Email address, like \"UserName@example.org\""
  2030. msgstr ""
  2031. #. TRANS: Button label for adding an e-mail address in e-mail settings form.
  2032. #. TRANS: Button label for adding an IM address in IM settings form.
  2033. #. TRANS: Button label for adding a SMS phone number in SMS settings form.
  2034. #. TRANS: Button text to tag a profile.
  2035. #: actions/emailsettings.php:137 actions/imsettings.php:147
  2036. #: actions/smssettings.php:156 lib/togglepeopletag.php:290
  2037. msgctxt "BUTTON"
  2038. msgid "Add"
  2039. msgstr ""
  2040. #. TRANS: Form legend for incoming e-mail settings form.
  2041. #. TRANS: Form legend for incoming SMS settings form.
  2042. #: actions/emailsettings.php:145 actions/smssettings.php:165
  2043. msgid "Incoming email"
  2044. msgstr ""
  2045. #. TRANS: Checkbox label in e-mail preferences form.
  2046. #: actions/emailsettings.php:151
  2047. msgid "I want to post notices by email."
  2048. msgstr ""
  2049. #. TRANS: Form instructions for incoming e-mail form in e-mail settings.
  2050. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
  2051. #: actions/emailsettings.php:173 actions/smssettings.php:172
  2052. msgid "Send email to this address to post new notices."
  2053. msgstr ""
  2054. #. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
  2055. #. TRANS: Instructions for incoming SMS e-mail address input form.
  2056. #: actions/emailsettings.php:182 actions/smssettings.php:180
  2057. msgid "Make a new email address for posting to; cancels the old one."
  2058. msgstr ""
  2059. #. TRANS: Instructions for incoming e-mail address input form.
  2060. #: actions/emailsettings.php:186
  2061. msgid ""
  2062. "To send notices via email, we need to create a unique email address for you "
  2063. "on this server:"
  2064. msgstr ""
  2065. #. TRANS: Button label for adding an e-mail address to send notices from.
  2066. #. TRANS: Button label for adding an SMS e-mail address to send notices from.
  2067. #: actions/emailsettings.php:192 actions/smssettings.php:183
  2068. msgctxt "BUTTON"
  2069. msgid "New"
  2070. msgstr ""
  2071. #. TRANS: Form legend for e-mail preferences form.
  2072. #: actions/emailsettings.php:201
  2073. msgid "Email preferences"
  2074. msgstr ""
  2075. #. TRANS: Checkbox label in e-mail preferences form.
  2076. #: actions/emailsettings.php:209
  2077. msgid "Send me notices of new subscriptions through email."
  2078. msgstr ""
  2079. #. TRANS: Checkbox label in e-mail preferences form.
  2080. #: actions/emailsettings.php:215
  2081. msgid "Send me email when someone sends me a private message."
  2082. msgstr ""
  2083. #. TRANS: Checkbox label in e-mail preferences form.
  2084. #: actions/emailsettings.php:221
  2085. msgid "Send me email when someone sends me an \"@-reply\"."
  2086. msgstr ""
  2087. #. TRANS: Checkbox label in e-mail preferences form.
  2088. #: actions/emailsettings.php:227
  2089. msgid "Allow friends to nudge me and send me an email."
  2090. msgstr ""
  2091. #. TRANS: Confirmation message for successful e-mail preferences save.
  2092. #: actions/emailsettings.php:317
  2093. msgid "Email preferences saved."
  2094. msgstr ""
  2095. #. TRANS: Message given saving e-mail address without having provided one.
  2096. #: actions/emailsettings.php:335
  2097. msgid "No email address."
  2098. msgstr ""
  2099. #. TRANS: Message given saving e-mail address that cannot be normalised.
  2100. #: actions/emailsettings.php:342
  2101. msgid "Cannot normalize that email address."
  2102. msgstr ""
  2103. #. TRANS: Message given saving e-mail address that is already set.
  2104. #: actions/emailsettings.php:349
  2105. msgid "That is already your email address."
  2106. msgstr ""
  2107. #. TRANS: Message given saving e-mail address that is already set for another user.
  2108. #: actions/emailsettings.php:352
  2109. msgid "That email address already belongs to another user."
  2110. msgstr ""
  2111. #. TRANS: Server error thrown on database error adding e-mail confirmation code.
  2112. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
  2113. #. TRANS: Server error thrown on database error adding SMS confirmation code.
  2114. #: actions/emailsettings.php:369 actions/imsettings.php:330
  2115. #: actions/smssettings.php:333
  2116. msgid "Could not insert confirmation code."
  2117. msgstr ""
  2118. #. TRANS: Message given saving valid e-mail address that is to be confirmed.
  2119. #: actions/emailsettings.php:378
  2120. msgid ""
  2121. "A confirmation code was sent to the email address you added. Check your "
  2122. "inbox (and spam box!) for the code and instructions on how to use it."
  2123. msgstr ""
  2124. #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
  2125. #: actions/emailsettings.php:396
  2126. msgid "That is the wrong email address."
  2127. msgstr ""
  2128. #. TRANS: Message given canceling e-mail address confirmation that is not pending.
  2129. #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
  2130. #. TRANS: Message given canceling SMS phone number confirmation that is not pending.
  2131. #: actions/emailsettings.php:400 actions/imsettings.php:359
  2132. #: actions/smssettings.php:368
  2133. msgid "No pending confirmation to cancel."
  2134. msgstr ""
  2135. #. TRANS: Message given after successfully canceling e-mail address confirmation.
  2136. #: actions/emailsettings.php:406
  2137. msgid "Email confirmation cancelled."
  2138. msgstr ""
  2139. #. TRANS: Message given trying to remove an e-mail address that is not
  2140. #. TRANS: registered for the active user.
  2141. #: actions/emailsettings.php:424
  2142. msgid "That is not your email address."
  2143. msgstr ""
  2144. #. TRANS: Message given after successfully removing a registered e-mail address.
  2145. #: actions/emailsettings.php:433
  2146. msgid "The email address was removed."
  2147. msgstr ""
  2148. #. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
  2149. #: actions/emailsettings.php:447 actions/smssettings.php:497
  2150. msgid "No incoming email address."
  2151. msgstr ""
  2152. #. TRANS: Message given after successfully removing an incoming e-mail address.
  2153. #. TRANS: Confirmation text after updating SMS settings.
  2154. #: actions/emailsettings.php:457 actions/smssettings.php:508
  2155. msgid "Incoming email address removed."
  2156. msgstr ""
  2157. #. TRANS: Message given after successfully adding an incoming e-mail address.
  2158. #. TRANS: Confirmation text after updating SMS settings.
  2159. #: actions/emailsettings.php:475 actions/smssettings.php:530
  2160. msgid "New incoming email address added."
  2161. msgstr ""
  2162. #. TRANS: Page title for first page of featured users.
  2163. #. TRANS: Title for featured users section.
  2164. #. TRANS: Menu item title in search group navigation panel.
  2165. #: actions/featured.php:69 lib/featureduserssection.php:96
  2166. #: lib/publicgroupnav.php:84
  2167. msgid "Featured users"
  2168. msgstr ""
  2169. #. TRANS: Page title for all but first page of featured users.
  2170. #. TRANS: %d is the page number being displayed.
  2171. #: actions/featured.php:73
  2172. #, php-format
  2173. msgid "Featured users, page %d"
  2174. msgstr ""
  2175. #. TRANS: Description on page displaying featured users.
  2176. #: actions/featured.php:96
  2177. #, php-format
  2178. msgid "A selection of some great users on %s."
  2179. msgstr ""
  2180. #. TRANS: Client error displayed when requesting a non-existent file.
  2181. #: actions/getfile.php:73
  2182. msgid "No such file."
  2183. msgstr ""
  2184. #. TRANS: Client error displayed when requesting a file without having read access to it.
  2185. #: actions/getfile.php:77
  2186. msgid "Cannot read file."
  2187. msgstr ""
  2188. #. TRANS: Client error displayed when trying to assign an invalid role to a user.
  2189. #. TRANS: Client error displayed when trying to revoke an invalid role.
  2190. #: actions/grantrole.php:61 actions/revokerole.php:61
  2191. msgid "Invalid role."
  2192. msgstr ""
  2193. #. TRANS: Client error displayed when trying to assign an reserved role to a user.
  2194. #. TRANS: Client error displayed when trying to revoke a reserved role.
  2195. #: actions/grantrole.php:65 actions/revokerole.php:65
  2196. msgid "This role is reserved and cannot be set."
  2197. msgstr ""
  2198. #. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
  2199. #: actions/grantrole.php:74
  2200. msgid "You cannot grant user roles on this site."
  2201. msgstr ""
  2202. #. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
  2203. #: actions/grantrole.php:81
  2204. msgid "User already has this role."
  2205. msgstr ""
  2206. #. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
  2207. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
  2208. #. TRANS: Client error displayed when not providing a profile ID on the Make Admin page.
  2209. #. TRANS: Client error displayed trying a change a subscription without providing a profile.
  2210. #. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
  2211. #: actions/groupblock.php:70 actions/groupunblock.php:70
  2212. #: actions/makeadmin.php:72 actions/subedit.php:48 lib/profileformaction.php:79
  2213. msgid "No profile specified."
  2214. msgstr ""
  2215. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
  2216. #. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
  2217. #. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page.
  2218. #. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
  2219. #. TRANS: Client error displayed when referring to non-existing profile ID.
  2220. #. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID.
  2221. #. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
  2222. #: actions/groupblock.php:75 actions/groupunblock.php:75
  2223. #: actions/makeadmin.php:77 actions/subedit.php:55 actions/tagprofile.php:38
  2224. #: actions/unsubscribe.php:81 lib/profileformaction.php:86
  2225. msgid "No profile with that ID."
  2226. msgstr ""
  2227. #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
  2228. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
  2229. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page.
  2230. #: actions/groupblock.php:80 actions/groupunblock.php:80
  2231. #: actions/makeadmin.php:82
  2232. msgid "No group specified."
  2233. msgstr ""
  2234. #. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
  2235. #: actions/groupblock.php:90
  2236. msgid "Only an admin can block group members."
  2237. msgstr ""
  2238. #. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
  2239. #: actions/groupblock.php:94
  2240. msgid "User is already blocked from group."
  2241. msgstr ""
  2242. #. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
  2243. #: actions/groupblock.php:99
  2244. msgid "User is not a member of group."
  2245. msgstr ""
  2246. #. TRANS: Title for block user from group page.
  2247. #. TRANS: Form legend for form to block user from a group.
  2248. #: actions/groupblock.php:133 lib/groupblockform.php:91
  2249. msgid "Block user from group"
  2250. msgstr ""
  2251. #. TRANS: Explanatory text for block user from group form before setting the block.
  2252. #. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
  2253. #: actions/groupblock.php:161
  2254. #, php-format
  2255. msgid ""
  2256. "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
  2257. "will be removed from the group, unable to post, and unable to subscribe to "
  2258. "the group in the future."
  2259. msgstr ""
  2260. #. TRANS: Submit button title for 'No' when blocking a user from a group.
  2261. #: actions/groupblock.php:183
  2262. msgid "Do not block this user from this group."
  2263. msgstr ""
  2264. #. TRANS: Submit button title for 'Yes' when blocking a user from a group.
  2265. #: actions/groupblock.php:190
  2266. msgid "Block this user from this group."
  2267. msgstr ""
  2268. #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
  2269. #: actions/groupblock.php:207
  2270. msgid "Database error blocking user from group."
  2271. msgstr ""
  2272. #. TRANS: Title for group logo settings page.
  2273. #. TRANS: Group logo form legend.
  2274. #: actions/grouplogo.php:66 actions/grouplogo.php:172
  2275. msgid "Group logo"
  2276. msgstr ""
  2277. #. TRANS: Button text for cropping an uploaded group logo.
  2278. #: actions/grouplogo.php:139
  2279. msgid "Crop"
  2280. msgstr ""
  2281. #. TRANS: Button on group logo upload page to delete current group logo.
  2282. #. TRANS: Title of form for deleting a user.
  2283. #. TRANS: Link text in notice list item to delete a notice.
  2284. #: actions/grouplogo.php:201 lib/deleteuserform.php:64
  2285. #: lib/noticelistitem.php:630
  2286. msgid "Delete"
  2287. msgstr ""
  2288. #. TRANS: Submit button for uploading a group logo.
  2289. #: actions/grouplogo.php:220
  2290. msgid "Upload"
  2291. msgstr ""
  2292. #. TRANS: Instructions for group logo page.
  2293. #. TRANS: %s is the maximum file size for that site.
  2294. #: actions/grouplogo.php:257
  2295. #, php-format
  2296. msgid ""
  2297. "You can upload a logo image for your group. The maximum file size is %s."
  2298. msgstr ""
  2299. #. TRANS: Form instructions on the group logo page.
  2300. #: actions/grouplogo.php:414
  2301. msgid "Pick a square area of the image to be the logo."
  2302. msgstr ""
  2303. #. TRANS: Form success message after updating a group logo.
  2304. #: actions/grouplogo.php:467
  2305. msgid "Logo updated."
  2306. msgstr ""
  2307. #. TRANS: Form failure message after failing to update a group logo.
  2308. #: actions/grouplogo.php:470
  2309. msgid "Failed updating logo."
  2310. msgstr ""
  2311. #. TRANS: Success message for deleting the group logo.
  2312. #: actions/grouplogo.php:494
  2313. msgid "Logo deleted."
  2314. msgstr ""
  2315. #. TRANS: Title of the page showing group members.
  2316. #. TRANS: %s is the name of the group.
  2317. #: actions/groupmembers.php:55
  2318. #, php-format
  2319. msgid "%s group members"
  2320. msgstr ""
  2321. #. TRANS: Title of the page showing group members.
  2322. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
  2323. #: actions/groupmembers.php:60
  2324. #, php-format
  2325. msgid "%1$s group members, page %2$d"
  2326. msgstr ""
  2327. #. TRANS: Page notice for group members page.
  2328. #: actions/groupmembers.php:76
  2329. msgid "A list of the users in this group."
  2330. msgstr ""
  2331. #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator.
  2332. #: actions/groupqueue.php:96
  2333. msgid "Only the group admin may approve users."
  2334. msgstr ""
  2335. #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group.
  2336. #. TRANS: %s is the name of the group.
  2337. #: actions/groupqueue.php:106
  2338. #, php-format
  2339. msgid "%s group members awaiting approval"
  2340. msgstr ""
  2341. #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group.
  2342. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
  2343. #: actions/groupqueue.php:111
  2344. #, php-format
  2345. msgid "%1$s group members awaiting approval, page %2$d"
  2346. msgstr ""
  2347. #. TRANS: Page notice for group members page.
  2348. #: actions/groupqueue.php:127
  2349. msgid "A list of users awaiting approval to join this group."
  2350. msgstr ""
  2351. #. TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name.
  2352. #: actions/grouprss.php:103
  2353. #, php-format
  2354. msgid "Updates from members of %1$s on %2$s!"
  2355. msgstr ""
  2356. #. TRANS: Title for first page of the groups list.
  2357. #: actions/groups.php:62
  2358. msgctxt "TITLE"
  2359. msgid "Groups"
  2360. msgstr ""
  2361. #. TRANS: Title for all but the first page of the groups list.
  2362. #. TRANS: %d is the page number.
  2363. #: actions/groups.php:66
  2364. #, php-format
  2365. msgctxt "TITLE"
  2366. msgid "Groups, page %d"
  2367. msgstr ""
  2368. #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
  2369. #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
  2370. #. TRANS: This message contains Markdown links in the form [link text](link).
  2371. #: actions/groups.php:89
  2372. #, php-format
  2373. msgid ""
  2374. "%%%%site.name%%%% groups let you find and talk with people of similar "
  2375. "interests. After you join a group you can send messages to all other members "
  2376. "using the syntax \"!groupname\". Don't see a group you like? Try [searching "
  2377. "for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup"
  2378. "%%%%)!"
  2379. msgstr ""
  2380. #. TRANS: Link to create a new group on the group list page.
  2381. #. TRANS: Form legend for group edit form.
  2382. #: actions/groups.php:107 lib/groupeditform.php:116
  2383. msgid "Create a new group"
  2384. msgstr ""
  2385. #. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
  2386. #: actions/groupsearch.php:53
  2387. #, php-format
  2388. msgid ""
  2389. "Search for groups on %%site.name%% by their name, location, or description. "
  2390. "Separate the terms by spaces; they must be 3 characters or more."
  2391. msgstr ""
  2392. #. TRANS: Title for page where groups can be searched.
  2393. #: actions/groupsearch.php:60
  2394. msgid "Group search"
  2395. msgstr ""
  2396. #. TRANS: Text on page where groups can be searched if no results were found for a query.
  2397. #. TRANS: Text for notice search results is the query had no results.
  2398. #. TRANS: Message on the "People search" page where a query has no results.
  2399. #. TRANS: Output when there are no results for a search.
  2400. #: actions/groupsearch.php:82 actions/noticesearch.php:154
  2401. #: actions/peoplesearch.php:87 actions/profilecompletion.php:146
  2402. msgid "No results."
  2403. msgstr ""
  2404. #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
  2405. #. TRANS: This message contains Markdown links in the form [link text](link).
  2406. #: actions/groupsearch.php:87
  2407. #, php-format
  2408. msgid ""
  2409. "If you cannot find the group you're looking for, you can [create it]"
  2410. "(%%action.newgroup%%) yourself."
  2411. msgstr ""
  2412. #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
  2413. #. TRANS: This message contains Markdown links in the form [link text](link).
  2414. #: actions/groupsearch.php:92
  2415. #, php-format
  2416. msgid ""
  2417. "Why not [register an account](%%action.register%%) and [create the group]"
  2418. "(%%action.newgroup%%) yourself!"
  2419. msgstr ""
  2420. #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
  2421. #: actions/groupunblock.php:90
  2422. msgid "Only an admin can unblock group members."
  2423. msgstr ""
  2424. #. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
  2425. #: actions/groupunblock.php:94
  2426. msgid "User is not blocked from group."
  2427. msgstr ""
  2428. #. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
  2429. #. TRANS: Server error displayed when removing a user block.
  2430. #: actions/groupunblock.php:125 actions/unblock.php:85
  2431. msgid "Error removing the block."
  2432. msgstr ""
  2433. #. TRANS: Title for Instant Messaging settings.
  2434. #: actions/imsettings.php:54
  2435. msgid "IM settings"
  2436. msgstr ""
  2437. #. TRANS: Instant messaging settings page instructions.
  2438. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
  2439. #. TRANS: the order and formatting of link text and link should remain unchanged.
  2440. #: actions/imsettings.php:67
  2441. #, php-format
  2442. msgid ""
  2443. "You can send and receive notices through [instant messaging](%%doc.im%%). "
  2444. "Configure your addresses and settings below."
  2445. msgstr ""
  2446. #. TRANS: Message given in the IM settings if IM is not enabled on the site.
  2447. #: actions/imsettings.php:88
  2448. msgid "IM is not available."
  2449. msgstr ""
  2450. #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed.
  2451. #: actions/imsettings.php:114
  2452. #, php-format
  2453. msgid "Current confirmed %s address."
  2454. msgstr ""
  2455. #. TRANS: Form note in IM settings form.
  2456. #. TRANS: %s is the IM service name, %2$s is the IM address set.
  2457. #: actions/imsettings.php:126
  2458. #, php-format
  2459. msgid ""
  2460. "Awaiting confirmation on this address. Check your %1$s account for a message "
  2461. "with further instructions. (Did you add %2$s to your buddy list?)"
  2462. msgstr ""
  2463. #. TRANS: Field label for IM address.
  2464. #: actions/imsettings.php:139
  2465. msgid "IM address"
  2466. msgstr ""
  2467. #. TRANS: Field title for IM address. %s is the IM service name.
  2468. #: actions/imsettings.php:142
  2469. #, php-format
  2470. msgid "%s screenname."
  2471. msgstr ""
  2472. #. TRANS: Header for IM preferences form.
  2473. #: actions/imsettings.php:163
  2474. msgid "IM Preferences"
  2475. msgstr ""
  2476. #. TRANS: Checkbox label in IM preferences form.
  2477. #: actions/imsettings.php:174
  2478. msgid "Send me notices"
  2479. msgstr ""
  2480. #. TRANS: Checkbox label in IM preferences form.
  2481. #: actions/imsettings.php:176
  2482. msgid "Post a notice when my status changes."
  2483. msgstr ""
  2484. #. TRANS: Checkbox label in IM preferences form.
  2485. #: actions/imsettings.php:178
  2486. msgid "Send me replies from people I'm not subscribed to."
  2487. msgstr ""
  2488. #. TRANS: Server error thrown on database error updating IM preferences.
  2489. #: actions/imsettings.php:266
  2490. msgid "Could not update IM preferences."
  2491. msgstr ""
  2492. #. TRANS: Confirmation message for successful IM preferences save.
  2493. #. TRANS: Confirmation message after saving preferences.
  2494. #: actions/imsettings.php:272 actions/urlsettings.php:226
  2495. msgid "Preferences saved."
  2496. msgstr ""
  2497. #. TRANS: Message given saving IM address without having provided one.
  2498. #: actions/imsettings.php:292
  2499. msgid "No screenname."
  2500. msgstr ""
  2501. #. TRANS: Form validation error when no transport is available setting an IM address.
  2502. #: actions/imsettings.php:297
  2503. msgid "No transport."
  2504. msgstr ""
  2505. #. TRANS: Message given saving IM address that cannot be normalised.
  2506. #: actions/imsettings.php:304
  2507. msgid "Cannot normalize that screenname."
  2508. msgstr ""
  2509. #. TRANS: Message given saving IM address that not valid.
  2510. #: actions/imsettings.php:310
  2511. msgid "Not a valid screenname."
  2512. msgstr ""
  2513. #. TRANS: Message given saving IM address that is already set for another user.
  2514. #: actions/imsettings.php:313
  2515. msgid "Screenname already belongs to another user."
  2516. msgstr ""
  2517. #. TRANS: Message given saving valid IM address that is to be confirmed.
  2518. #: actions/imsettings.php:336
  2519. msgid "A confirmation code was sent to the IM address you added."
  2520. msgstr ""
  2521. #. TRANS: Message given canceling IM address confirmation for the wrong IM address.
  2522. #: actions/imsettings.php:355
  2523. msgid "That is the wrong IM address."
  2524. msgstr ""
  2525. #. TRANS: Message given after successfully canceling IM address confirmation.
  2526. #: actions/imsettings.php:365
  2527. msgid "IM confirmation cancelled."
  2528. msgstr ""
  2529. #. TRANS: Message given trying to remove an IM address that is not
  2530. #. TRANS: registered for the active user.
  2531. #: actions/imsettings.php:388
  2532. msgid "There were no preferences stored for this transport."
  2533. msgstr ""
  2534. #. TRANS: Message given after successfully removing a registered Instant Messaging address.
  2535. #: actions/imsettings.php:402
  2536. msgid "The IM address was removed."
  2537. msgstr ""
  2538. #. TRANS: Client error displayed when trying to sent invites while they have been disabled.
  2539. #: actions/invite.php:46
  2540. msgid "Invites have been disabled."
  2541. msgstr ""
  2542. #. TRANS: Client error displayed when trying to sent invites while not logged in.
  2543. #. TRANS: %s is the StatusNet site name.
  2544. #: actions/invite.php:50
  2545. #, php-format
  2546. msgid "You must be logged in to invite other users to use %s."
  2547. msgstr ""
  2548. #. TRANS: Form validation message when providing an e-mail address that does not validate.
  2549. #. TRANS: %s is an invalid e-mail address.
  2550. #: actions/invite.php:100
  2551. #, php-format
  2552. msgid "Invalid email address: %s."
  2553. msgstr ""
  2554. #. TRANS: Page title when invitations have been sent.
  2555. #: actions/invite.php:152
  2556. msgid "Invitations sent"
  2557. msgstr ""
  2558. #. TRANS: Page title when inviting potential users.
  2559. #: actions/invite.php:155
  2560. msgid "Invite new users"
  2561. msgstr ""
  2562. #. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user
  2563. #. TRANS: is already subscribed to one or more users with the given e-mail address(es).
  2564. #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
  2565. #. TRANS: Followed by a bullet list.
  2566. #: actions/invite.php:176
  2567. msgid "You are already subscribed to this user:"
  2568. msgid_plural "You are already subscribed to these users:"
  2569. msgstr[0] ""
  2570. msgstr[1] ""
  2571. #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
  2572. #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
  2573. #: actions/invite.php:182 actions/invite.php:196
  2574. #, php-format
  2575. msgctxt "INVITE"
  2576. msgid "%1$s (%2$s)"
  2577. msgstr ""
  2578. #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
  2579. #. TRANS: already uses a this StatusNet site. Plural form is based on the number of
  2580. #. TRANS: reported already present people. Followed by a bullet list.
  2581. #: actions/invite.php:190
  2582. msgid "This person is already a user and you were automatically subscribed:"
  2583. msgid_plural ""
  2584. "These people are already users and you were automatically subscribed to them:"
  2585. msgstr[0] ""
  2586. msgstr[1] ""
  2587. #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
  2588. #. TRANS: based on the number of invitations sent. Followed by a bullet list of
  2589. #. TRANS: e-mail addresses to which invitations were sent.
  2590. #: actions/invite.php:204
  2591. msgid "Invitation sent to the following person:"
  2592. msgid_plural "Invitations sent to the following people:"
  2593. msgstr[0] ""
  2594. msgstr[1] ""
  2595. #. TRANS: Generic message displayed after sending out one or more invitations to
  2596. #. TRANS: people to join a StatusNet site.
  2597. #: actions/invite.php:214
  2598. msgid ""
  2599. "You will be notified when your invitees accept the invitation and register "
  2600. "on the site. Thanks for growing the community!"
  2601. msgstr ""
  2602. #. TRANS: Form instructions.
  2603. #: actions/invite.php:229
  2604. msgid ""
  2605. "Use this form to invite your friends and colleagues to use this service."
  2606. msgstr ""
  2607. #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
  2608. #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
  2609. #. TRANS: the StatusNet sitename.
  2610. #: actions/invite.php:282
  2611. #, php-format
  2612. msgid "%1$s has invited you to join them on %2$s"
  2613. msgstr ""
  2614. #. TRANS: Client error displayed when trying to join a group while not logged in.
  2615. #: actions/joingroup.php:57
  2616. msgid "You must be logged in to join a group."
  2617. msgstr ""
  2618. #. TRANS: Title for join group page after joining.
  2619. #: actions/joingroup.php:134
  2620. #, php-format
  2621. msgctxt "TITLE"
  2622. msgid "%1$s joined group %2$s"
  2623. msgstr ""
  2624. #. TRANS: Exception thrown when there is an unknown error joining a group.
  2625. #: actions/joingroup.php:147
  2626. msgid "Unknown error joining group."
  2627. msgstr ""
  2628. #. TRANS: Client error displayed when trying to join a group while already a member.
  2629. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
  2630. #: actions/leavegroup.php:94 lib/command.php:346
  2631. msgid "You are not a member of that group."
  2632. msgstr ""
  2633. #. TRANS: User admin panel title
  2634. #: actions/licenseadminpanel.php:54
  2635. msgctxt "TITLE"
  2636. msgid "License"
  2637. msgstr ""
  2638. #. TRANS: Form instructions for the site license admin panel.
  2639. #: actions/licenseadminpanel.php:65
  2640. msgid "License for this StatusNet site"
  2641. msgstr ""
  2642. #. TRANS: Client error displayed selecting an invalid license in the license admin panel.
  2643. #: actions/licenseadminpanel.php:135
  2644. msgid "Invalid license selection."
  2645. msgstr ""
  2646. #. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel.
  2647. #: actions/licenseadminpanel.php:146
  2648. msgid ""
  2649. "You must specify the owner of the content when using the All Rights Reserved "
  2650. "license."
  2651. msgstr ""
  2652. #. TRANS: Client error displayed selecting a too long license title in the license admin panel.
  2653. #: actions/licenseadminpanel.php:154
  2654. msgid "Invalid license title. Maximum length is 255 characters."
  2655. msgstr ""
  2656. #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel.
  2657. #: actions/licenseadminpanel.php:163
  2658. msgid "Invalid license URL."
  2659. msgstr ""
  2660. #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel.
  2661. #: actions/licenseadminpanel.php:167
  2662. msgid "Invalid license image URL."
  2663. msgstr ""
  2664. #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel.
  2665. #: actions/licenseadminpanel.php:176
  2666. msgid "License URL must be blank or a valid URL."
  2667. msgstr ""
  2668. #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel.
  2669. #: actions/licenseadminpanel.php:185
  2670. msgid "License image must be blank or valid URL."
  2671. msgstr ""
  2672. #. TRANS: Form legend in the license admin panel.
  2673. #: actions/licenseadminpanel.php:236
  2674. msgid "License selection"
  2675. msgstr ""
  2676. #. TRANS: License option in the license admin panel.
  2677. #. TRANS: Checkbox label to mark a list private.
  2678. #: actions/licenseadminpanel.php:243 lib/peopletageditform.php:155
  2679. msgid "Private"
  2680. msgstr ""
  2681. #. TRANS: License option in the license admin panel.
  2682. #: actions/licenseadminpanel.php:245
  2683. msgid "All Rights Reserved"
  2684. msgstr ""
  2685. #. TRANS: License option in the license admin panel.
  2686. #: actions/licenseadminpanel.php:247
  2687. msgid "Creative Commons"
  2688. msgstr ""
  2689. #. TRANS: Dropdown field label in the license admin panel.
  2690. #: actions/licenseadminpanel.php:253
  2691. msgid "Type"
  2692. msgstr ""
  2693. #. TRANS: Dropdown field instructions in the license admin panel.
  2694. #: actions/licenseadminpanel.php:256
  2695. msgid "Select a license."
  2696. msgstr ""
  2697. #. TRANS: Form legend in the license admin panel.
  2698. #: actions/licenseadminpanel.php:271
  2699. msgid "License details"
  2700. msgstr ""
  2701. #. TRANS: Field label in the license admin panel.
  2702. #: actions/licenseadminpanel.php:278
  2703. msgid "Owner"
  2704. msgstr ""
  2705. #. TRANS: Field title in the license admin panel.
  2706. #: actions/licenseadminpanel.php:280
  2707. msgid "Name of the owner of the site's content (if applicable)."
  2708. msgstr ""
  2709. #. TRANS: Field label in the license admin panel.
  2710. #: actions/licenseadminpanel.php:289
  2711. msgid "License Title"
  2712. msgstr ""
  2713. #. TRANS: Field title in the license admin panel.
  2714. #: actions/licenseadminpanel.php:291
  2715. msgid "The title of the license."
  2716. msgstr ""
  2717. #. TRANS: Field label in the license admin panel.
  2718. #: actions/licenseadminpanel.php:300
  2719. msgid "License URL"
  2720. msgstr ""
  2721. #. TRANS: Field title in the license admin panel.
  2722. #: actions/licenseadminpanel.php:302
  2723. msgid "URL for more information about the license."
  2724. msgstr ""
  2725. #. TRANS: Field label in the license admin panel.
  2726. #: actions/licenseadminpanel.php:310
  2727. msgid "License Image URL"
  2728. msgstr ""
  2729. #. TRANS: Field title in the license admin panel.
  2730. #: actions/licenseadminpanel.php:312
  2731. msgid "URL for an image to display with the license."
  2732. msgstr ""
  2733. #. TRANS: Button title in the license admin panel.
  2734. #: actions/licenseadminpanel.php:335
  2735. msgid "Save license settings."
  2736. msgstr ""
  2737. #. TRANS: Form validation error displayed when trying to log in with incorrect credentials.
  2738. #: actions/login.php:75
  2739. msgid "Incorrect username or password."
  2740. msgstr ""
  2741. #. TRANS: Server error displayed when during login a server error occurs.
  2742. #. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
  2743. #: actions/login.php:81 actions/otp.php:120
  2744. msgid "Error setting user. You are probably not authorized."
  2745. msgstr ""
  2746. #. TRANS: Page title for login page.
  2747. #: actions/login.php:119
  2748. msgid "Login"
  2749. msgstr ""
  2750. #. TRANS: Form legend on login page.
  2751. #: actions/login.php:137
  2752. msgid "Login to site"
  2753. msgstr ""
  2754. #. TRANS: Field label on login page.
  2755. #: actions/login.php:141
  2756. msgid "Username or email address"
  2757. msgstr ""
  2758. #. TRANS: Checkbox label label on login page.
  2759. #. TRANS: Checkbox label on account registration page.
  2760. #: actions/login.php:149 actions/register.php:476
  2761. msgid "Remember me"
  2762. msgstr ""
  2763. #. TRANS: Checkbox title on login page.
  2764. #. TRANS: Checkbox title on account registration page.
  2765. #: actions/login.php:151 actions/register.php:479
  2766. msgid "Automatically login in the future; not for shared computers!"
  2767. msgstr ""
  2768. #. TRANS: Button text for log in on login page.
  2769. #: actions/login.php:156
  2770. msgctxt "BUTTON"
  2771. msgid "Login"
  2772. msgstr ""
  2773. #. TRANS: Link text for link to "reset password" on login page.
  2774. #: actions/login.php:163
  2775. msgid "Lost or forgotten password?"
  2776. msgstr ""
  2777. #. TRANS: Form instructions on login page before being able to change user settings.
  2778. #: actions/login.php:182
  2779. msgid ""
  2780. "For security reasons, please re-enter your user name and password before "
  2781. "changing your settings."
  2782. msgstr ""
  2783. #. TRANS: Form instructions on login page.
  2784. #: actions/login.php:187
  2785. msgid "Login with your username and password."
  2786. msgstr ""
  2787. #. TRANS: Form instructions on login page. This message contains Markdown links in the form [Link text](Link).
  2788. #. TRANS: %%action.register%% is a link to the registration page.
  2789. #: actions/login.php:192
  2790. #, php-format
  2791. msgid ""
  2792. "Don't have a username yet? [Register](%%action.register%%) a new account."
  2793. msgstr ""
  2794. #. TRANS: Error message displayed when trying to logout even though you are not logged in.
  2795. #: actions/logout.php:59
  2796. msgid "Cannot log you out if you are not logged in."
  2797. msgstr ""
  2798. #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin.
  2799. #: actions/makeadmin.php:93
  2800. msgid "Only an admin can make another user an admin."
  2801. msgstr ""
  2802. #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page who already is admin.
  2803. #. TRANS: %1$s is the user that is already admin, %2$s is the group user is already admin for.
  2804. #: actions/makeadmin.php:98
  2805. #, php-format
  2806. msgid "%1$s is already an admin for group \"%2$s\"."
  2807. msgstr ""
  2808. #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails
  2809. #. TRANS: because the group membership record could not be gotten.
  2810. #. TRANS: %1$s is the to be admin user, %2$s is the group user should be admin for.
  2811. #: actions/makeadmin.php:137
  2812. #, php-format
  2813. msgid "Can't get membership record for %1$s in group %2$s."
  2814. msgstr ""
  2815. #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails
  2816. #. TRANS: because the group adminship record coud not be saved properly.
  2817. #. TRANS: %1$s is the to be admin user, %2$s is the group user is already admin for.
  2818. #: actions/makeadmin.php:153
  2819. #, php-format
  2820. msgid "Can't make %1$s an admin for group %2$s."
  2821. msgstr ""
  2822. #. TRANS: Title for all public timeline pages but the first.
  2823. #. TRANS: %d is the page number.
  2824. #: actions/networkpublic.php:24
  2825. #, php-format
  2826. msgid "Network public timeline, page %d"
  2827. msgstr ""
  2828. #. TRANS: Title for the first public timeline page.
  2829. #. TRANS: Menu item title in search group navigation panel.
  2830. #: actions/networkpublic.php:27 lib/publicgroupnav.php:72
  2831. msgid "Network public timeline"
  2832. msgstr ""
  2833. #. TRANS: Link description for public timeline feed.
  2834. #: actions/networkpublic.php:64 actions/public.php:105
  2835. #: lib/sitestreamaction.php:113
  2836. msgid "Public Timeline Feed (Atom)"
  2837. msgstr ""
  2838. #. TRANS: Link description for public timeline feed.
  2839. #: actions/networkpublic.php:70 actions/public.php:111
  2840. #: lib/sitestreamaction.php:100
  2841. msgid "Public Timeline Feed (Activity Streams JSON)"
  2842. msgstr ""
  2843. #. TRANS: Link description for public timeline feed.
  2844. #: actions/networkpublic.php:74 actions/public.php:115
  2845. #: lib/sitestreamaction.php:103
  2846. msgid "Public Timeline Feed (RSS 1.0)"
  2847. msgstr ""
  2848. #. TRANS: Link description for public timeline feed.
  2849. #: actions/networkpublic.php:80 actions/public.php:121
  2850. #: lib/sitestreamaction.php:108
  2851. msgid "Public Timeline Feed (RSS 2.0)"
  2852. msgstr ""
  2853. #. TRANS: This is the title of the form for adding a new application.
  2854. #: actions/newapplication.php:49
  2855. msgid "New application"
  2856. msgstr ""
  2857. #. TRANS: Form instructions for registering a new application.
  2858. #: actions/newapplication.php:73
  2859. msgid "Use this form to register a new application."
  2860. msgstr ""
  2861. #. TRANS: Validation error shown when not providing a source URL in the "New application" form.
  2862. #: actions/newapplication.php:109
  2863. msgid "Source URL is required."
  2864. msgstr ""
  2865. #. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
  2866. #: actions/newapplication.php:171 actions/newapplication.php:182
  2867. msgid "Could not create application."
  2868. msgstr ""
  2869. #. TRANS: Form validation error messages displayed when uploading an invalid application logo.
  2870. #: actions/newapplication.php:190
  2871. msgid "Invalid image."
  2872. msgstr ""
  2873. #. TRANS: Title for form to create a group.
  2874. #: actions/newgroup.php:58
  2875. msgid "New group"
  2876. msgstr ""
  2877. #. TRANS: Client exception thrown when a user tries to create a group while banned.
  2878. #: actions/newgroup.php:66 classes/User_group.php:574
  2879. msgid "You are not allowed to create groups on this site."
  2880. msgstr ""
  2881. #. TRANS: Form instructions for group create form.
  2882. #: actions/newgroup.php:73
  2883. msgid "Use this form to create a new group."
  2884. msgstr ""
  2885. #. TRANS: Page title after sending a notice.
  2886. #: actions/newnotice.php:63
  2887. msgid "Notice posted"
  2888. msgstr ""
  2889. #: actions/newnotice.php:66
  2890. msgctxt "TITLE"
  2891. msgid "New reply"
  2892. msgstr ""
  2893. #. TRANS: Page title for sending a new notice.
  2894. #: actions/newnotice.php:69
  2895. msgctxt "TITLE"
  2896. msgid "New notice"
  2897. msgstr ""
  2898. #. TRANS: Client error displayed trying to send a notice without content.
  2899. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
  2900. #: actions/newnotice.php:125 lib/command.php:546
  2901. msgid "No content!"
  2902. msgstr ""
  2903. #. TRANS: Client error displayed when the parameter "status" is missing.
  2904. #. TRANS: %d is the maximum number of character for a notice.
  2905. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters.
  2906. #: actions/newnotice.php:152 lib/mailhandler.php:64
  2907. #, php-format
  2908. msgid "That's too long. Maximum notice size is %d character."
  2909. msgid_plural "That's too long. Maximum notice size is %d characters."
  2910. msgstr[0] ""
  2911. msgstr[1] ""
  2912. #: actions/newnotice.php:219
  2913. msgid "Saved the notice!"
  2914. msgstr ""
  2915. #. TRANS: Instructions for Notice search page.
  2916. #. TRANS: %%site.name%% is the name of the StatusNet site.
  2917. #: actions/noticesearch.php:94
  2918. #, php-format
  2919. msgid ""
  2920. "Search for notices on %%site.name%% by their contents. Separate search terms "
  2921. "by spaces; they must be 3 characters or more."
  2922. msgstr ""
  2923. #. TRANS: Title of the page where users can search for notices.
  2924. #: actions/noticesearch.php:105
  2925. msgid "Text search"
  2926. msgstr ""
  2927. #. TRANS: Test in RSS notice search.
  2928. #. TRANS: %1$s is the query, %2$s is the StatusNet site name.
  2929. #: actions/noticesearch.php:120
  2930. #, php-format
  2931. msgid "Search results for \"%1$s\" on %2$s"
  2932. msgstr ""
  2933. #. TRANS: Text for logged in users making a query for notices without results.
  2934. #. TRANS: This message contains a Markdown link.
  2935. #: actions/noticesearch.php:160
  2936. #, php-format
  2937. msgid ""
  2938. "Be the first to [post on this topic](%%%%action.newnotice%%%%?"
  2939. "status_textarea=%s)!"
  2940. msgstr ""
  2941. #. TRANS: Text for not logged in users making a query for notices without results.
  2942. #. TRANS: This message contains Markdown links.
  2943. #: actions/noticesearch.php:165
  2944. #, php-format
  2945. msgid ""
  2946. "Why not [register an account](%%%%action.register%%%%) and be the first to "
  2947. "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
  2948. msgstr ""
  2949. #. TRANS: RSS notice search feed title. %s is the query.
  2950. #: actions/noticesearchrss.php:78
  2951. #, php-format
  2952. msgid "Updates with \"%s\""
  2953. msgstr ""
  2954. #. TRANS: RSS notice search feed description.
  2955. #. TRANS: %1$s is the query, %2$s is the StatusNet site name.
  2956. #: actions/noticesearchrss.php:82
  2957. #, php-format
  2958. msgid "Updates matching search term \"%1$s\" on %2$s."
  2959. msgstr ""
  2960. #. TRANS: Client error displayed trying to nudge a user that cannot be nudged.
  2961. #: actions/nudge.php:85
  2962. msgid ""
  2963. "This user doesn't allow nudges or hasn't confirmed or set their email "
  2964. "address yet."
  2965. msgstr ""
  2966. #. TRANS: Page title after sending a nudge.
  2967. #: actions/nudge.php:94
  2968. msgid "Nudge sent"
  2969. msgstr ""
  2970. #. TRANS: Confirmation text after sending a nudge.
  2971. #: actions/nudge.php:98
  2972. msgid "Nudge sent!"
  2973. msgstr ""
  2974. #. TRANS: Page title for OAuth applications
  2975. #: actions/oauthappssettings.php:62
  2976. msgid "OAuth applications"
  2977. msgstr ""
  2978. #. TRANS: Page instructions for OAuth applications
  2979. #: actions/oauthappssettings.php:74
  2980. msgid "Applications you have registered"
  2981. msgstr ""
  2982. #. TRANS: Empty list message on page with OAuth applications. Markup allowed
  2983. #: actions/oauthappssettings.php:119
  2984. #, php-format
  2985. msgid "You have not registered any applications yet."
  2986. msgstr ""
  2987. #. TRANS: Title for OAuth connection settings.
  2988. #: actions/oauthconnectionssettings.php:63
  2989. msgid "Connected applications"
  2990. msgstr ""
  2991. #. TRANS: Instructions for OAuth connection settings.
  2992. #: actions/oauthconnectionssettings.php:74
  2993. msgid "The following connections exist for your account."
  2994. msgstr ""
  2995. #. TRANS: Client error when trying to revoke access for an application while not being a user of it.
  2996. #: actions/oauthconnectionssettings.php:146
  2997. msgid "You are not a user of that application."
  2998. msgstr ""
  2999. #. TRANS: Client error when revoking access has failed for some reason.
  3000. #. TRANS: %s is the application ID revoking access failed for.
  3001. #: actions/oauthconnectionssettings.php:160
  3002. #, php-format
  3003. msgid "Unable to revoke access for application: %s."
  3004. msgstr ""
  3005. #. TRANS: Success message after revoking access for an application.
  3006. #. TRANS: %1$s is the application name, %2$s is the first part of the user token.
  3007. #: actions/oauthconnectionssettings.php:178
  3008. #, php-format
  3009. msgid ""
  3010. "You have successfully revoked access for %1$s and the access token starting "
  3011. "with %2$s."
  3012. msgstr ""
  3013. #. TRANS: Empty list message when no applications have been authorised yet.
  3014. #: actions/oauthconnectionssettings.php:189
  3015. msgid "You have not authorized any applications to use your account."
  3016. msgstr ""
  3017. #. TRANS: Note for developers in the OAuth connection settings form.
  3018. #. TRANS: This message contains a Markdown link. Do not separate "](".
  3019. #. TRANS: %s is the URL to the OAuth settings.
  3020. #: actions/oauthconnectionssettings.php:209
  3021. #, php-format
  3022. msgid ""
  3023. "Are you a developer? [Register an OAuth client application](%s) to use with "
  3024. "this instance of StatusNet."
  3025. msgstr ""
  3026. #. TRANS: Page title for profile settings.
  3027. #: actions/oldschoolsettings.php:54
  3028. msgid "Old school UI settings"
  3029. msgstr ""
  3030. #. TRANS: Usage instructions for profile settings.
  3031. #: actions/oldschoolsettings.php:65
  3032. msgid "If you like it \"the old way\", you can set that here."
  3033. msgstr ""
  3034. #. TRANS: Confirmation shown when user profile settings are saved.
  3035. #. TRANS: Message after successful saving of administrative settings.
  3036. #: actions/oldschoolsettings.php:107 actions/profilesettings.php:431
  3037. #: lib/adminpanelaction.php:135
  3038. msgid "Settings saved."
  3039. msgstr ""
  3040. #: actions/oldschoolsettings.php:135
  3041. msgid "Only stream mode (no conversations) in timelines"
  3042. msgstr ""
  3043. #: actions/oldschoolsettings.php:139
  3044. msgid "Show nicknames (not full names) in timelines"
  3045. msgstr ""
  3046. #. TRANS: Button text to save a list.
  3047. #: actions/oldschoolsettings.php:157 lib/peopletageditform.php:168
  3048. msgid "Save"
  3049. msgstr ""
  3050. #. TRANS: ShortName in the OpenSearch interface when trying to find users.
  3051. #: actions/opensearch.php:64
  3052. msgid "People Search"
  3053. msgstr ""
  3054. #. TRANS: ShortName in the OpenSearch interface when trying to find notices.
  3055. #: actions/opensearch.php:68
  3056. msgid "Notice Search"
  3057. msgstr ""
  3058. #. TRANS: Client error displayed trying to use "one time password login" when already logged in.
  3059. #. TRANS: Client error displayed when trying to register while already logged in.
  3060. #: actions/otp.php:62 actions/register.php:132
  3061. msgid "Already logged in."
  3062. msgstr ""
  3063. #. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
  3064. #: actions/otp.php:69
  3065. msgid "No user ID specified."
  3066. msgstr ""
  3067. #. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
  3068. #: actions/otp.php:83
  3069. msgid "No login token specified."
  3070. msgstr ""
  3071. #. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
  3072. #: actions/otp.php:90
  3073. msgid "No login token requested."
  3074. msgstr ""
  3075. #. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
  3076. #: actions/otp.php:95
  3077. msgid "Invalid login token specified."
  3078. msgstr ""
  3079. #. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
  3080. #: actions/otp.php:104
  3081. msgid "Login token expired."
  3082. msgstr ""
  3083. #. TRANS: Title for page where to change password.
  3084. #: actions/passwordsettings.php:56
  3085. msgctxt "TITLE"
  3086. msgid "Change password"
  3087. msgstr ""
  3088. #. TRANS: Instructions for page where to change password.
  3089. #: actions/passwordsettings.php:68
  3090. msgid "Change your password."
  3091. msgstr ""
  3092. #. TRANS: Fieldset legend on page where to change password.
  3093. #. TRANS: Fieldset legend for password reset form.
  3094. #: actions/passwordsettings.php:85 actions/recoverpassword.php:234
  3095. msgid "Password change"
  3096. msgstr ""
  3097. #. TRANS: Field label on page where to change password.
  3098. #: actions/passwordsettings.php:94
  3099. msgid "Old password"
  3100. msgstr ""
  3101. #. TRANS: Field label on page where to change password.
  3102. #. TRANS: Field label for password reset form.
  3103. #: actions/passwordsettings.php:99 actions/recoverpassword.php:239
  3104. msgid "New password"
  3105. msgstr ""
  3106. #. TRANS: Field title on page where to change password.
  3107. #. TRANS: Field title on account registration page.
  3108. #: actions/passwordsettings.php:101 actions/register.php:408
  3109. msgid "6 or more characters."
  3110. msgstr ""
  3111. #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time.
  3112. #: actions/passwordsettings.php:105
  3113. msgctxt "LABEL"
  3114. msgid "Confirm"
  3115. msgstr ""
  3116. #. TRANS: Field title on page where to change password.
  3117. #. TRANS: Title for field label for password reset form where the password has to be typed again.
  3118. #. TRANS: Field title on account registration page.
  3119. #: actions/passwordsettings.php:107 actions/recoverpassword.php:247
  3120. #: actions/register.php:414
  3121. msgid "Same as password above."
  3122. msgstr ""
  3123. #. TRANS: Button text on page where to change password.
  3124. #: actions/passwordsettings.php:112
  3125. msgctxt "BUTTON"
  3126. msgid "Change"
  3127. msgstr ""
  3128. #. TRANS: Form validation error on page where to change password.
  3129. #: actions/passwordsettings.php:141
  3130. msgid "Incorrect old password."
  3131. msgstr ""
  3132. #. TRANS: Form validation notice on page where to change password.
  3133. #: actions/passwordsettings.php:154
  3134. msgid "Password saved."
  3135. msgstr ""
  3136. #. TRANS: Title for Paths admin panel.
  3137. #: actions/pathsadminpanel.php:58
  3138. msgid "Paths"
  3139. msgstr ""
  3140. #. TRANS: Form instructions for Path admin panel.
  3141. #: actions/pathsadminpanel.php:69
  3142. msgid "Path and server settings for this StatusNet site"
  3143. msgstr ""
  3144. #. TRANS: Client error in Paths admin panel.
  3145. #. TRANS: %s is the directory that could not be read from.
  3146. #: actions/pathsadminpanel.php:154
  3147. #, php-format
  3148. msgid "Theme directory not readable: %s."
  3149. msgstr ""
  3150. #. TRANS: Client error in Paths admin panel.
  3151. #. TRANS: %s is the avatar directory that could not be written to.
  3152. #: actions/pathsadminpanel.php:162
  3153. #, php-format
  3154. msgid "Avatar directory not writable: %s."
  3155. msgstr ""
  3156. #. TRANS: Client error in Paths admin panel.
  3157. #. TRANS: %s is the locales directory that could not be read from.
  3158. #: actions/pathsadminpanel.php:172
  3159. #, php-format
  3160. msgid "Locales directory not readable: %s."
  3161. msgstr ""
  3162. #. TRANS: Client error in Paths admin panel.
  3163. #. TRANS: %s is the SSL server URL that is too long.
  3164. #: actions/pathsadminpanel.php:180
  3165. msgid "Invalid SSL server. The maximum length is 255 characters."
  3166. msgstr ""
  3167. #. TRANS: Fieldset legend in Paths admin panel.
  3168. #: actions/pathsadminpanel.php:226
  3169. msgid "Site"
  3170. msgstr ""
  3171. #. TRANS: Field label in Paths admin panel.
  3172. #: actions/pathsadminpanel.php:232 actions/pathsadminpanel.php:275
  3173. #: actions/pathsadminpanel.php:367
  3174. msgid "Server"
  3175. msgstr ""
  3176. #. TRANS: Field title in Paths admin panel.
  3177. #: actions/pathsadminpanel.php:234
  3178. msgid "Site's server hostname."
  3179. msgstr ""
  3180. #. TRANS: Field label in Paths admin panel.
  3181. #: actions/pathsadminpanel.php:240 actions/pathsadminpanel.php:284
  3182. #: actions/pathsadminpanel.php:376
  3183. msgid "Path"
  3184. msgstr ""
  3185. #. TRANS: Field title in Paths admin panel.
  3186. #: actions/pathsadminpanel.php:242
  3187. msgid "Site path."
  3188. msgstr ""
  3189. #. TRANS: Field label in Paths admin panel.
  3190. #: actions/pathsadminpanel.php:248
  3191. msgid "Locale directory"
  3192. msgstr ""
  3193. #. TRANS: Field title in Paths admin panel.
  3194. #: actions/pathsadminpanel.php:250
  3195. msgid "Directory path to locales."
  3196. msgstr ""
  3197. #. TRANS: Checkbox label in Paths admin panel.
  3198. #: actions/pathsadminpanel.php:257
  3199. msgid "Fancy URLs"
  3200. msgstr ""
  3201. #. TRANS: Field title in Paths admin panel.
  3202. #: actions/pathsadminpanel.php:260
  3203. msgid "Use fancy URLs (more readable and memorable)?"
  3204. msgstr ""
  3205. #. TRANS: Fieldset legend in Paths admin panel.
  3206. #: actions/pathsadminpanel.php:268
  3207. msgctxt "LEGEND"
  3208. msgid "Theme"
  3209. msgstr ""
  3210. #. TRANS: Tooltip for field label in Paths admin panel.
  3211. #: actions/pathsadminpanel.php:277
  3212. msgid "Server for themes."
  3213. msgstr ""
  3214. #. TRANS: Tooltip for field label in Paths admin panel.
  3215. #: actions/pathsadminpanel.php:286
  3216. msgid "Web path to themes."
  3217. msgstr ""
  3218. #. TRANS: Field label in Paths admin panel.
  3219. #: actions/pathsadminpanel.php:293 actions/pathsadminpanel.php:385
  3220. #: actions/pathsadminpanel.php:435
  3221. msgid "SSL server"
  3222. msgstr ""
  3223. #. TRANS: Tooltip for field label in Paths admin panel.
  3224. #: actions/pathsadminpanel.php:295
  3225. msgid "SSL server for themes (default: SSL server)."
  3226. msgstr ""
  3227. #. TRANS: Field label in Paths admin panel.
  3228. #: actions/pathsadminpanel.php:302 actions/pathsadminpanel.php:394
  3229. msgid "SSL path"
  3230. msgstr ""
  3231. #. TRANS: Tooltip for field label in Paths admin panel.
  3232. #: actions/pathsadminpanel.php:304
  3233. msgid "SSL path to themes (default: /theme/)."
  3234. msgstr ""
  3235. #. TRANS: Field label in Paths admin panel.
  3236. #: actions/pathsadminpanel.php:311 actions/pathsadminpanel.php:403
  3237. msgid "Directory"
  3238. msgstr ""
  3239. #. TRANS: Tooltip for field label in Paths admin panel.
  3240. #: actions/pathsadminpanel.php:313
  3241. msgid "Directory where themes are located."
  3242. msgstr ""
  3243. #. TRANS: Fieldset legend in Paths admin panel.
  3244. #: actions/pathsadminpanel.php:322
  3245. msgid "Avatars"
  3246. msgstr ""
  3247. #. TRANS: Field label in Paths admin panel.
  3248. #: actions/pathsadminpanel.php:329
  3249. msgid "Avatar server"
  3250. msgstr ""
  3251. #. TRANS: Tooltip for field label in Paths admin panel.
  3252. #: actions/pathsadminpanel.php:331
  3253. msgid "Server for avatars."
  3254. msgstr ""
  3255. #. TRANS: Field label in Paths admin panel.
  3256. #: actions/pathsadminpanel.php:338
  3257. msgid "Avatar path"
  3258. msgstr ""
  3259. #. TRANS: Tooltip for field label in Paths admin panel.
  3260. #: actions/pathsadminpanel.php:340
  3261. msgid "Web path to avatars."
  3262. msgstr ""
  3263. #. TRANS: Field label in Paths admin panel.
  3264. #: actions/pathsadminpanel.php:347
  3265. msgid "Avatar directory"
  3266. msgstr ""
  3267. #. TRANS: Tooltip for field label in Paths admin panel.
  3268. #: actions/pathsadminpanel.php:349
  3269. msgid "Directory where avatars are located."
  3270. msgstr ""
  3271. #. TRANS: Fieldset legens in Paths admin panel.
  3272. #: actions/pathsadminpanel.php:361 lib/inlineattachmentlist.php:36
  3273. msgid "Attachments"
  3274. msgstr ""
  3275. #. TRANS: Tooltip for field label in Paths admin panel.
  3276. #: actions/pathsadminpanel.php:369
  3277. msgid "Server for attachments."
  3278. msgstr ""
  3279. #. TRANS: Tooltip for field label in Paths admin panel.
  3280. #: actions/pathsadminpanel.php:378
  3281. msgid "Web path to attachments."
  3282. msgstr ""
  3283. #. TRANS: Tooltip for field label in Paths admin panel.
  3284. #: actions/pathsadminpanel.php:387
  3285. msgid "Server for attachments on SSL pages."
  3286. msgstr ""
  3287. #. TRANS: Tooltip for field label in Paths admin panel.
  3288. #: actions/pathsadminpanel.php:396
  3289. msgid "Web path to attachments on SSL pages."
  3290. msgstr ""
  3291. #. TRANS: Tooltip for field label in Paths admin panel.
  3292. #: actions/pathsadminpanel.php:405
  3293. msgid "Directory where attachments are located."
  3294. msgstr ""
  3295. #. TRANS: Fieldset legend in Paths admin panel.
  3296. #: actions/pathsadminpanel.php:414
  3297. msgctxt "LEGEND"
  3298. msgid "SSL"
  3299. msgstr ""
  3300. #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
  3301. #: actions/pathsadminpanel.php:419
  3302. msgid "Never"
  3303. msgstr ""
  3304. #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
  3305. #: actions/pathsadminpanel.php:421
  3306. msgid "Always"
  3307. msgstr ""
  3308. #. TRANS: Drop down label in Paths admin panel.
  3309. #: actions/pathsadminpanel.php:425
  3310. msgid "Use SSL"
  3311. msgstr ""
  3312. #. TRANS: Tooltip for field label in Paths admin panel.
  3313. #: actions/pathsadminpanel.php:427
  3314. msgid "When to use SSL."
  3315. msgstr ""
  3316. #. TRANS: Tooltip for field label in Paths admin panel.
  3317. #: actions/pathsadminpanel.php:437
  3318. msgid "Server to direct SSL requests to."
  3319. msgstr ""
  3320. #. TRANS: Button title text to store form data in the Paths admin panel.
  3321. #: actions/pathsadminpanel.php:454
  3322. msgid "Save path settings."
  3323. msgstr ""
  3324. #. TRANS: Instructions for the "People search" page.
  3325. #. TRANS: %%site.name%% is the name of the StatusNet site.
  3326. #: actions/peoplesearch.php:54
  3327. #, php-format
  3328. msgid ""
  3329. "Search for people on %%site.name%% by their name, location, or interests. "
  3330. "Separate the terms by spaces; they must be 3 characters or more."
  3331. msgstr ""
  3332. #. TRANS: Title of a page where users can search for other users.
  3333. #: actions/peoplesearch.php:61
  3334. msgid "People search"
  3335. msgstr ""
  3336. #. TRANS: Title for list page.
  3337. #. TRANS: %s is a list.
  3338. #: actions/peopletag.php:57
  3339. #, php-format
  3340. msgid "Public list %s"
  3341. msgstr ""
  3342. #. TRANS: Title for list page.
  3343. #. TRANS: %1$s is a list, %2$d is a page number.
  3344. #: actions/peopletag.php:61
  3345. #, php-format
  3346. msgid "Public list %1$s, page %2$d"
  3347. msgstr ""
  3348. #. TRANS: Message for anonymous users on list page.
  3349. #. TRANS: This message contains Markdown links in the form [description](link).
  3350. #: actions/peopletag.php:104
  3351. #, php-format
  3352. msgid ""
  3353. "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]"
  3354. "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free "
  3355. "Software [StatusNet](http://status.net/) tool. You can then easily keep "
  3356. "track of what they are doing by subscribing to the list's timeline."
  3357. msgstr ""
  3358. #. TRANS: Client error displayed when a tagger is expected but not provided.
  3359. #: actions/peopletagged.php:83 actions/peopletagsubscribers.php:83
  3360. msgid "No tagger."
  3361. msgstr ""
  3362. #. TRANS: Title for list of people listed by the user.
  3363. #. TRANS: %1$s is a list, %2$s is a username.
  3364. #: actions/peopletagged.php:109
  3365. #, php-format
  3366. msgid "People listed in %1$s by %2$s"
  3367. msgstr ""
  3368. #. TRANS: Title for list of people listed by the user.
  3369. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number.
  3370. #: actions/peopletagged.php:114
  3371. #, php-format
  3372. msgid "People listed in %1$s by %2$s, page %3$d"
  3373. msgstr ""
  3374. #. TRANS: Addition in tag membership list for creator of a tag.
  3375. #. TRANS: Addition in tag subscribers list for creator of a tag.
  3376. #: actions/peopletagged.php:193 actions/peopletagsubscribers.php:193
  3377. msgid "Creator"
  3378. msgstr ""
  3379. #. TRANS: Title for lists by a user page for a private tag.
  3380. #: actions/peopletagsbyuser.php:53
  3381. msgid "Private lists by you"
  3382. msgstr ""
  3383. #. TRANS: Title for lists by a user page for a public tag.
  3384. #: actions/peopletagsbyuser.php:56
  3385. msgid "Public lists by you"
  3386. msgstr ""
  3387. #. TRANS: Title for lists by a user page.
  3388. #: actions/peopletagsbyuser.php:59
  3389. msgid "Lists by you"
  3390. msgstr ""
  3391. #. TRANS: Title for lists by a user page.
  3392. #. TRANS: %s is a user nickname.
  3393. #: actions/peopletagsbyuser.php:63
  3394. #, php-format
  3395. msgid "Lists by %s"
  3396. msgstr ""
  3397. #. TRANS: Title for lists by a user page.
  3398. #. TRANS: %1$s is a user nickname, %2$d is a page number.
  3399. #: actions/peopletagsbyuser.php:67
  3400. #, php-format
  3401. msgid "Lists by %1$s, page %2$d"
  3402. msgstr ""
  3403. #. TRANS: Client error displayed when trying view another user's private lists.
  3404. #: actions/peopletagsbyuser.php:130
  3405. msgid "You cannot view others' private lists"
  3406. msgstr ""
  3407. #. TRANS: Mode selector label.
  3408. #: actions/peopletagsbyuser.php:155
  3409. msgid "Mode"
  3410. msgstr ""
  3411. #. TRANS: Link text to show lists for user %s.
  3412. #: actions/peopletagsbyuser.php:165
  3413. #, php-format
  3414. msgid "Lists for %s"
  3415. msgstr ""
  3416. #. TRANS: Fieldset legend.
  3417. #. TRANS: Fieldset legend on gallery action page.
  3418. #: actions/peopletagsbyuser.php:177 lib/galleryaction.php:77
  3419. msgid "Select tag to filter"
  3420. msgstr ""
  3421. #. TRANS: Checkbox title.
  3422. #: actions/peopletagsbyuser.php:188
  3423. msgid "Show private tags."
  3424. msgstr ""
  3425. #. TRANS: Checkbox label to show public tags.
  3426. #: actions/peopletagsbyuser.php:190
  3427. msgctxt "LABEL"
  3428. msgid "Public"
  3429. msgstr ""
  3430. #. TRANS: Checkbox title.
  3431. #: actions/peopletagsbyuser.php:192
  3432. msgid "Show public tags."
  3433. msgstr ""
  3434. #. TRANS: Submit button text for tag filter form.
  3435. #. TRANS: Submit button text on gallery action page.
  3436. #: actions/peopletagsbyuser.php:195 lib/galleryaction.php:84
  3437. msgctxt "BUTTON"
  3438. msgid "Go"
  3439. msgstr ""
  3440. #. TRANS: Message displayed for anonymous users on page that displays lists by a user.
  3441. #. TRANS: This message contains Markdown links in the form [description](links).
  3442. #. TRANS: %s is a tagger nickname.
  3443. #: actions/peopletagsbyuser.php:211
  3444. #, php-format
  3445. msgid ""
  3446. "These are lists created by **%s**. Lists are how you sort similar people on "
  3447. "%%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
  3448. "blogging) service based on the Free Software [StatusNet](http://status.net/) "
  3449. "tool. You can easily keep track of what they are doing by subscribing to the "
  3450. "list's timeline."
  3451. msgstr ""
  3452. #. TRANS: Message displayed on page that displays lists by a user when there are none.
  3453. #. TRANS: This message contains Markdown links in the form [description](links).
  3454. #. TRANS: %s is a tagger nickname.
  3455. #: actions/peopletagsbyuser.php:274
  3456. #, php-format
  3457. msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet."
  3458. msgstr ""
  3459. #. TRANS: Page title. %s is a tagged user's nickname.
  3460. #: actions/peopletagsforuser.php:50
  3461. #, php-format
  3462. msgid "Lists with %s in them"
  3463. msgstr ""
  3464. #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number.
  3465. #: actions/peopletagsforuser.php:53
  3466. #, php-format
  3467. msgid "Lists with %1$s, page %2$d"
  3468. msgstr ""
  3469. #. TRANS: Message displayed for anonymous users on page that displays lists for a user.
  3470. #. TRANS: This message contains Markdown links in the form [description](links).
  3471. #. TRANS: %s is a tagger nickname.
  3472. #: actions/peopletagsforuser.php:110
  3473. #, php-format
  3474. msgid ""
  3475. "These are lists for **%s**. lists are how you sort similar people on %%"
  3476. "%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
  3477. "blogging) service based on the Free Software [StatusNet](http://status.net/) "
  3478. "tool. You can easily keep track of what they are doing by subscribing to the "
  3479. "list's timeline."
  3480. msgstr ""
  3481. #. TRANS: Message displayed on page that displays lists a user was added to when there are none.
  3482. #. TRANS: This message contains Markdown links in the form [description](links).
  3483. #. TRANS: %s is a user nickname.
  3484. #: actions/peopletagsforuser.php:146
  3485. #, php-format
  3486. msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet."
  3487. msgstr ""
  3488. #. TRANS: Page title for list of list subscribers.
  3489. #. TRANS: %1$s is a list, %2$s is a user nickname.
  3490. #: actions/peopletagsubscribers.php:109
  3491. #, php-format
  3492. msgid "Subscribers to list %1$s by %2$s"
  3493. msgstr ""
  3494. #. TRANS: Page title for list of list subscribers.
  3495. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number.
  3496. #: actions/peopletagsubscribers.php:114
  3497. #, php-format
  3498. msgid "Subscribers to list %1$s by %2$s, page %3$d"
  3499. msgstr ""
  3500. #. TRANS: Title for page that displays lists subscribed to by a user.
  3501. #. TRANS: %s is a profile nickname.
  3502. #: actions/peopletagsubscriptions.php:51
  3503. #, php-format
  3504. msgid "Lists subscribed to by %s"
  3505. msgstr ""
  3506. #. TRANS: Title for page that displays lists subscribed to by a user.
  3507. #. TRANS: %1$s is a profile nickname, %2$d is a page number.
  3508. #: actions/peopletagsubscriptions.php:55
  3509. #, php-format
  3510. msgid "Lists subscribed to by %1$s, page %2$d"
  3511. msgstr ""
  3512. #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user.
  3513. #. TRANS: This message contains Markdown links in the form [description](links).
  3514. #. TRANS: %s is a profile nickname.
  3515. #: actions/peopletagsubscriptions.php:112
  3516. #, php-format
  3517. msgid ""
  3518. "These are lists subscribed to by **%s**. Lists are how you sort similar "
  3519. "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/"
  3520. "Micro-blogging) service based on the Free Software [StatusNet](http://status."
  3521. "net/) tool. You can easily keep track of what they are doing by subscribing "
  3522. "to the list's timeline."
  3523. msgstr ""
  3524. #. TRANS: Page title for AJAX form return when a disabling a plugin.
  3525. #: actions/plugindisable.php:68
  3526. msgctxt "plugin"
  3527. msgid "Disabled"
  3528. msgstr ""
  3529. #. TRANS: Client error displayed when trying to use another method than POST.
  3530. #. TRANS: Do not translate POST.
  3531. #. TRANS: Client error displayed trying to perform any request method other than POST.
  3532. #. TRANS: Do not translate POST.
  3533. #. TRANS: Client error displayed when trying to use another method than POST.
  3534. #: actions/pluginenable.php:78 actions/subscribe.php:76
  3535. #: actions/subscribepeopletag.php:65 actions/unsubscribepeopletag.php:66
  3536. msgid "This action only accepts POST requests."
  3537. msgstr ""
  3538. #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights.
  3539. #: actions/pluginenable.php:102
  3540. msgid "You cannot administer plugins."
  3541. msgstr ""
  3542. #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin.
  3543. #: actions/pluginenable.php:109
  3544. msgid "No such plugin."
  3545. msgstr ""
  3546. #. TRANS: Page title for AJAX form return when enabling a plugin.
  3547. #: actions/pluginenable.php:157
  3548. msgctxt "plugin"
  3549. msgid "Enabled"
  3550. msgstr ""
  3551. #. TRANS: Tab and title for plugins admin panel.
  3552. #: actions/pluginsadminpanel.php:53
  3553. msgctxt "TITLE"
  3554. msgid "Plugins"
  3555. msgstr ""
  3556. #. TRANS: Instructions at top of plugin admin page.
  3557. #: actions/pluginsadminpanel.php:64
  3558. msgid ""
  3559. "Additional plugins can be enabled and configured manually. See the <a href="
  3560. "\"https://git.gnu.io/gnu/gnu-social/blob/master/plugins/README.md\">online "
  3561. "plugin documentation</a> for more details."
  3562. msgstr ""
  3563. #. TRANS: Admin form section header
  3564. #: actions/pluginsadminpanel.php:79
  3565. msgid "Default plugins"
  3566. msgstr ""
  3567. #. TRANS: Text displayed on plugin admin page when no plugin are enabled.
  3568. #: actions/pluginsadminpanel.php:102
  3569. msgid ""
  3570. "All default plugins have been disabled from the site's configuration file."
  3571. msgstr ""
  3572. #. TRANS: Client error displayed when trying to add an unindentified field to profile.
  3573. #. TRANS: %s is a field name.
  3574. #: actions/profilecompletion.php:106
  3575. #, php-format
  3576. msgid "Unidentified field %s."
  3577. msgstr ""
  3578. #. TRANS: Page title.
  3579. #: actions/profilecompletion.php:130
  3580. msgctxt "TITLE"
  3581. msgid "Search results"
  3582. msgstr ""
  3583. #. TRANS: Error message in case a search is shorter than three characters.
  3584. #: actions/profilecompletion.php:160
  3585. msgid "The search string must be at least 3 characters long."
  3586. msgstr ""
  3587. #. TRANS: Page title for profile settings.
  3588. #: actions/profilesettings.php:55
  3589. msgid "Profile settings"
  3590. msgstr ""
  3591. #. TRANS: Usage instructions for profile settings.
  3592. #: actions/profilesettings.php:66
  3593. msgid ""
  3594. "You can update your personal profile info here so people know more about you."
  3595. msgstr ""
  3596. #. TRANS: Profile settings form legend.
  3597. #: actions/profilesettings.php:93
  3598. msgid "Profile information"
  3599. msgstr ""
  3600. #. TRANS: Tooltip for field label in form for profile settings.
  3601. #. TRANS: Field title on account registration page.
  3602. #. TRANS: Field title on group edit form.
  3603. #: actions/profilesettings.php:104 actions/register.php:402
  3604. #: lib/groupeditform.php:150
  3605. msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
  3606. msgstr ""
  3607. #. TRANS: Field label in form for profile settings.
  3608. #. TRANS: Field label on account registration page.
  3609. #. TRANS: Field label on group edit form.
  3610. #: actions/profilesettings.php:112 actions/register.php:433
  3611. #: lib/groupeditform.php:158
  3612. msgid "Full name"
  3613. msgstr ""
  3614. #. TRANS: Instructions for full name text field on profile settings
  3615. #: actions/profilesettings.php:115
  3616. msgid "A full name is required, if empty it will be set to your nickname."
  3617. msgstr ""
  3618. #. TRANS: Field label in form for profile settings.
  3619. #. TRANS: Field label on account registration page.
  3620. #. TRANS: Form input field label.
  3621. #. TRANS: Field label on group edit form; points to "more info" for a group.
  3622. #: actions/profilesettings.php:120 actions/register.php:440
  3623. #: classes/Profile.php:943 lib/applicationeditform.php:236
  3624. #: lib/groupeditform.php:163
  3625. msgid "Homepage"
  3626. msgstr ""
  3627. #. TRANS: Tooltip for field label in form for profile settings.
  3628. #. TRANS: Field title on account registration page.
  3629. #: actions/profilesettings.php:123 actions/register.php:443
  3630. msgid "URL of your homepage, blog, or profile on another site."
  3631. msgstr ""
  3632. #. TRANS: Tooltip for field label in form for profile settings. Plural
  3633. #. TRANS: is decided by the number of characters available for the
  3634. #. TRANS: biography (%d).
  3635. #. TRANS: Text area title in form for account registration. Plural
  3636. #. TRANS: is decided by the number of characters available for the
  3637. #. TRANS: biography (%d).
  3638. #: actions/profilesettings.php:131 actions/register.php:452
  3639. #, php-format
  3640. msgid "Describe yourself and your interests in %d character."
  3641. msgid_plural "Describe yourself and your interests in %d characters."
  3642. msgstr[0] ""
  3643. msgstr[1] ""
  3644. #. TRANS: Tooltip for field label in form for profile settings.
  3645. #. TRANS: Text area title on account registration page.
  3646. #: actions/profilesettings.php:137 actions/register.php:458
  3647. msgid "Describe yourself and your interests."
  3648. msgstr ""
  3649. #. TRANS: Text area label in form for profile settings where users can provide
  3650. #. TRANS: their biography.
  3651. #. TRANS: Text area label on account registration page.
  3652. #: actions/profilesettings.php:141 actions/register.php:461
  3653. msgid "Bio"
  3654. msgstr ""
  3655. #. TRANS: Field label in form for profile settings.
  3656. #. TRANS: Field label on account registration page.
  3657. #. TRANS: Field label on group edit form.
  3658. #. TRANS: Dropdown option for searching in profiles.
  3659. #: actions/profilesettings.php:147 actions/register.php:467
  3660. #: lib/groupeditform.php:188 lib/togglepeopletag.php:113
  3661. msgid "Location"
  3662. msgstr ""
  3663. #. TRANS: Tooltip for field label in form for profile settings.
  3664. #. TRANS: Field title on account registration page.
  3665. #: actions/profilesettings.php:150 actions/register.php:470
  3666. msgid "Where you are, like \"City, State (or Region), Country\"."
  3667. msgstr ""
  3668. #. TRANS: Checkbox label in form for profile settings.
  3669. #: actions/profilesettings.php:155
  3670. msgid "Share my current location when posting notices"
  3671. msgstr ""
  3672. #. TRANS: Field label in form for profile settings.
  3673. #: actions/profilesettings.php:163 lib/galleryaction.php:57
  3674. msgid "Tags"
  3675. msgstr ""
  3676. #. TRANS: Tooltip for field label in form for profile settings.
  3677. #: actions/profilesettings.php:166
  3678. msgid ""
  3679. "Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
  3680. "separated."
  3681. msgstr ""
  3682. #. TRANS: Dropdownlist label in form for profile settings.
  3683. #: actions/profilesettings.php:171
  3684. msgid "Language"
  3685. msgstr ""
  3686. #. TRANS: Tooltip for dropdown list label in form for profile settings.
  3687. #: actions/profilesettings.php:173
  3688. msgid "Preferred language."
  3689. msgstr ""
  3690. #. TRANS: Dropdownlist label in form for profile settings.
  3691. #: actions/profilesettings.php:183
  3692. msgid "Timezone"
  3693. msgstr ""
  3694. #. TRANS: Tooltip for dropdown list label in form for profile settings.
  3695. #: actions/profilesettings.php:185
  3696. msgid "What timezone are you normally in?"
  3697. msgstr ""
  3698. #. TRANS: Checkbox label in form for profile settings.
  3699. #: actions/profilesettings.php:191
  3700. msgid ""
  3701. "Automatically subscribe to whoever subscribes to me (best for non-humans)"
  3702. msgstr ""
  3703. #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates.
  3704. #: actions/profilesettings.php:199
  3705. msgid "Subscription policy"
  3706. msgstr ""
  3707. #. TRANS: Dropdown field option for following policy.
  3708. #: actions/profilesettings.php:201
  3709. msgid "Let anyone follow me"
  3710. msgstr ""
  3711. #. TRANS: Dropdown field option for following policy.
  3712. #: actions/profilesettings.php:203
  3713. msgid "Ask me first"
  3714. msgstr ""
  3715. #. TRANS: Dropdown field title on group edit form.
  3716. #: actions/profilesettings.php:205
  3717. msgid "Whether other users need your permission to follow your updates."
  3718. msgstr ""
  3719. #. TRANS: Checkbox label in profile settings.
  3720. #: actions/profilesettings.php:214
  3721. msgid "Make updates visible only to my followers"
  3722. msgstr ""
  3723. #. TRANS: Validation error in form for profile settings.
  3724. #: actions/profilesettings.php:271
  3725. msgid "Full name is too long (maximum 191 characters)."
  3726. msgstr ""
  3727. #. TRANS: Validation error in form for profile settings.
  3728. #: actions/profilesettings.php:282
  3729. msgid "Location is too long (maximum 191 characters)."
  3730. msgstr ""
  3731. #. TRANS: Validation error in form for profile settings.
  3732. #. TRANS: Client error displayed trying to save site settings without a timezone.
  3733. #: actions/profilesettings.php:285 actions/siteadminpanel.php:175
  3734. msgid "Timezone not selected."
  3735. msgstr ""
  3736. #. TRANS: Validation error in form for profile settings.
  3737. #: actions/profilesettings.php:288
  3738. msgid "Language is too long (maximum 50 characters)."
  3739. msgstr ""
  3740. #. TRANS: Validation error in form for profile settings.
  3741. #. TRANS: %s is an invalid tag.
  3742. #. TRANS: Form validation error displayed if a given tag is invalid.
  3743. #. TRANS: %s is the invalid tag.
  3744. #. TRANS: Error displayed if a given tag is invalid.
  3745. #. TRANS: %s is the invalid tag.
  3746. #: actions/profilesettings.php:304 actions/tagprofile.php:140
  3747. #: lib/command.php:406
  3748. #, php-format
  3749. msgid "Invalid tag: \"%s\"."
  3750. msgstr ""
  3751. #. TRANS: Server error thrown when user profile settings could not be updated to
  3752. #. TRANS: automatically subscribe to any subscriber.
  3753. #: actions/profilesettings.php:346
  3754. msgid "Could not update user for autosubscribe or subscribe_policy."
  3755. msgstr ""
  3756. #. TRANS: Server error thrown when user profile location preference settings could not be updated.
  3757. #: actions/profilesettings.php:408
  3758. msgid "Could not save location prefs."
  3759. msgstr ""
  3760. #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
  3761. #. TRANS: Page title for page where a user account can be restored from backup.
  3762. #: actions/profilesettings.php:465 actions/restoreaccount.php:60
  3763. msgid "Restore account"
  3764. msgstr ""
  3765. #. TRANS: Client error displayed trying to perform an action without providing an ID.
  3766. #: actions/profiletagbyid.php:57
  3767. msgid "No ID."
  3768. msgstr ""
  3769. #. TRANS: Title for all public timeline pages but the first.
  3770. #. TRANS: %d is the page number.
  3771. #: actions/public.php:64 lib/sitestreamaction.php:65
  3772. #, php-format
  3773. msgid "Public timeline, page %d"
  3774. msgstr ""
  3775. #. TRANS: Title for the first public timeline page.
  3776. #. TRANS: Menu item title in search group navigation panel.
  3777. #. TRANS: Title for the first public timeline page.
  3778. #: actions/public.php:67 lib/publicgroupnav.php:65 lib/sitestreamaction.php:68
  3779. msgid "Public timeline"
  3780. msgstr ""
  3781. #. TRANS: Public RSS feed description. %s is the StatusNet site name.
  3782. #: actions/publicrss.php:74
  3783. #, php-format
  3784. msgid "%s updates from everyone."
  3785. msgstr ""
  3786. #. TRANS: Client error displayed trying to recover password while already logged in.
  3787. #: actions/recoverpassword.php:37
  3788. msgid "You are already logged in!"
  3789. msgstr ""
  3790. #. TRANS: Client error displayed when password recovery code is not correct.
  3791. #: actions/recoverpassword.php:63
  3792. msgid "No such recovery code."
  3793. msgstr ""
  3794. #. TRANS: Client error displayed when no proper password recovery code was submitted.
  3795. #: actions/recoverpassword.php:67
  3796. msgid "Not a recovery code."
  3797. msgstr ""
  3798. #. TRANS: Server error displayed trying to recover password without providing a user.
  3799. #: actions/recoverpassword.php:74
  3800. msgid "Recovery code for unknown user."
  3801. msgstr ""
  3802. #. TRANS: Client error displayed trying to recover password with too old a recovery code.
  3803. #: actions/recoverpassword.php:92
  3804. msgid "This confirmation code is too old. Please start again."
  3805. msgstr ""
  3806. #. TRANS: Page notice for password recovery page.
  3807. #: actions/recoverpassword.php:143
  3808. msgid ""
  3809. "If you have forgotten or lost your password, you can get a new one sent to "
  3810. "the email address you have stored in your account."
  3811. msgstr ""
  3812. #. TRANS: Page notice for password change page.
  3813. #: actions/recoverpassword.php:150
  3814. msgid "You have been identified. Enter a new password below."
  3815. msgstr ""
  3816. #. TRANS: Fieldset legend for password recovery page.
  3817. #: actions/recoverpassword.php:181
  3818. msgid "Password recovery"
  3819. msgstr ""
  3820. #. TRANS: Field label on password recovery page.
  3821. #: actions/recoverpassword.php:185
  3822. msgid "Nickname or email address"
  3823. msgstr ""
  3824. #. TRANS: Title for field label on password recovery page.
  3825. #: actions/recoverpassword.php:188
  3826. msgid "Your nickname on this server, or your registered email address."
  3827. msgstr ""
  3828. #. TRANS: Field label on password recovery page.
  3829. #: actions/recoverpassword.php:195
  3830. msgid "Recover"
  3831. msgstr ""
  3832. #. TRANS: Button text on password recovery page.
  3833. #: actions/recoverpassword.php:197
  3834. msgctxt "BUTTON"
  3835. msgid "Recover"
  3836. msgstr ""
  3837. #. TRANS: Title for password recovery page in password reset mode.
  3838. #: actions/recoverpassword.php:206
  3839. msgid "Reset password"
  3840. msgstr ""
  3841. #. TRANS: Title for password recovery page in password recover mode.
  3842. #: actions/recoverpassword.php:208
  3843. msgid "Recover password"
  3844. msgstr ""
  3845. #. TRANS: Title for password recovery page in email sent mode.
  3846. #. TRANS: Subject for password recovery e-mail.
  3847. #: actions/recoverpassword.php:210 classes/User.php:967
  3848. msgid "Password recovery requested"
  3849. msgstr ""
  3850. #. TRANS: Title for password recovery page in password saved mode.
  3851. #: actions/recoverpassword.php:212
  3852. msgid "Password saved"
  3853. msgstr ""
  3854. #. TRANS: Title for field label for password reset form.
  3855. #: actions/recoverpassword.php:241
  3856. msgid "6 or more characters, and do not forget it!"
  3857. msgstr ""
  3858. #. TRANS: Button text for password reset form.
  3859. #: actions/recoverpassword.php:251
  3860. msgctxt "BUTTON"
  3861. msgid "Reset"
  3862. msgstr ""
  3863. #. TRANS: Form instructions for password recovery form.
  3864. #: actions/recoverpassword.php:262
  3865. msgid "Enter a nickname or email address."
  3866. msgstr ""
  3867. #. TRANS: User notification when recovering password by giving email address,
  3868. #. regardless if the mail was sent or not (to hide registered email status).
  3869. #: actions/recoverpassword.php:272
  3870. msgid ""
  3871. "If the email address you provided was found in the database, a recovery mail "
  3872. "with instructions has been sent there."
  3873. msgstr ""
  3874. #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
  3875. #: actions/recoverpassword.php:275
  3876. msgid ""
  3877. "Instructions for recovering your password have been sent to the email "
  3878. "address registered to your account."
  3879. msgstr ""
  3880. #. TRANS: Client error displayed when trying to reset as password without providing a user.
  3881. #: actions/recoverpassword.php:301
  3882. msgid "Unexpected password reset."
  3883. msgstr ""
  3884. #. TRANS: Reset password form validation error message.
  3885. #: actions/recoverpassword.php:309
  3886. msgid "Password must be 6 characters or more."
  3887. msgstr ""
  3888. #. TRANS: Reset password form validation error message.
  3889. #: actions/recoverpassword.php:314
  3890. msgid "Password and confirmation do not match."
  3891. msgstr ""
  3892. #. TRANS: Server error displayed when something does wrong with the user object during password reset.
  3893. #. TRANS: Server error displayed when saving fails during user registration.
  3894. #: actions/recoverpassword.php:325 actions/register.php:241
  3895. msgid "Error setting user."
  3896. msgstr ""
  3897. #. TRANS: Success message for user after password reset.
  3898. #: actions/recoverpassword.php:332
  3899. msgid "New password successfully saved. You are now logged in."
  3900. msgstr ""
  3901. #. TRANS: Title for registration page after a succesful registration.
  3902. #: actions/register.php:105
  3903. msgid "Registration successful"
  3904. msgstr ""
  3905. #. TRANS: Title for registration page.
  3906. #: actions/register.php:108
  3907. msgctxt "TITLE"
  3908. msgid "Register"
  3909. msgstr ""
  3910. #. TRANS: Client error displayed when trying to register to a closed site.
  3911. #: actions/register.php:129
  3912. msgid "Registration not allowed."
  3913. msgstr ""
  3914. #. TRANS: Form validation error displayed when trying to register without agreeing to the site license.
  3915. #: actions/register.php:203
  3916. msgid "You cannot register if you do not agree to the license."
  3917. msgstr ""
  3918. #. TRANS: Page notice on registration page.
  3919. #: actions/register.php:320
  3920. msgid ""
  3921. "With this form you can create a new account. You can then post notices and "
  3922. "link up to friends and colleagues."
  3923. msgstr ""
  3924. #. TRANS: Field label on account registration page. In this field the password has to be entered a second time.
  3925. #: actions/register.php:412
  3926. msgctxt "PASSWORD"
  3927. msgid "Confirm"
  3928. msgstr ""
  3929. #. TRANS: Field label on account registration page.
  3930. #: actions/register.php:419 actions/register.php:425
  3931. msgctxt "LABEL"
  3932. msgid "Email"
  3933. msgstr ""
  3934. #. TRANS: Field title on account registration page.
  3935. #: actions/register.php:421 actions/register.php:427
  3936. msgid "Used only for updates, announcements, and password recovery."
  3937. msgstr ""
  3938. #. TRANS: Field title on account registration page.
  3939. #: actions/register.php:436
  3940. msgid "Longer name, preferably your \"real\" name."
  3941. msgstr ""
  3942. #. TRANS: Button text to register a user on account registration page.
  3943. #: actions/register.php:500
  3944. msgctxt "BUTTON"
  3945. msgid "Register"
  3946. msgstr ""
  3947. #. TRANS: Copyright checkbox label in registration dialog, for private sites.
  3948. #. TRANS: %1$s is the StatusNet sitename.
  3949. #: actions/register.php:513
  3950. #, php-format
  3951. msgid ""
  3952. "I understand that content and data of %1$s are private and confidential."
  3953. msgstr ""
  3954. #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner.
  3955. #. TRANS: %1$s is the license owner.
  3956. #: actions/register.php:524
  3957. #, php-format
  3958. msgid "My text and files are copyright by %1$s."
  3959. msgstr ""
  3960. #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
  3961. #: actions/register.php:528
  3962. msgid "My text and files remain under my own copyright."
  3963. msgstr ""
  3964. #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
  3965. #: actions/register.php:531
  3966. msgid "All rights reserved."
  3967. msgstr ""
  3968. #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
  3969. #: actions/register.php:536
  3970. #, php-format
  3971. msgid ""
  3972. "My text and files are available under %s except this private data: password, "
  3973. "email address, IM address, and phone number."
  3974. msgstr ""
  3975. #. TRANS: Text displayed after successful account registration.
  3976. #. TRANS: %1$s is the registered nickname, %2$s is the profile URL.
  3977. #. TRANS: This message contains Markdown links in the form [link text](link)
  3978. #. TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax.
  3979. #: actions/register.php:582
  3980. #, php-format
  3981. msgid ""
  3982. "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
  3983. "want to...\n"
  3984. "\n"
  3985. "* Go to [your profile](%2$s) and post your first message.\n"
  3986. "* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send "
  3987. "notices through instant messages.\n"
  3988. "* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that "
  3989. "share your interests. \n"
  3990. "* Update your [profile settings](%%%%action.profilesettings%%%%) to tell "
  3991. "others more about you. \n"
  3992. "* Read over the [online docs](%%%%doc.help%%%%) for features you may have "
  3993. "missed. \n"
  3994. "\n"
  3995. "Thanks for signing up and we hope you enjoy using this service."
  3996. msgstr ""
  3997. #. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail.
  3998. #: actions/register.php:607
  3999. msgid ""
  4000. "(You should receive a message by email momentarily, with instructions on how "
  4001. "to confirm your email address.)"
  4002. msgstr ""
  4003. #. TRANS: Client error displayed when an unknown error occurs while delisting a user.
  4004. #. TRANS: %s is a username.
  4005. #: actions/removepeopletag.php:136
  4006. #, php-format
  4007. msgid "There was an unexpected error while delisting %s."
  4008. msgstr ""
  4009. #. TRANS: Client error displayed when an unknown error occurs while listing a user.
  4010. #. TRANS: %s is a profile URL.
  4011. #: actions/removepeopletag.php:141
  4012. #, php-format
  4013. msgid ""
  4014. "There was a problem listing %s. The remote server is probably not responding "
  4015. "correctly, please try retrying later."
  4016. msgstr ""
  4017. #. TRANS: Title after removing a user from a list.
  4018. #: actions/removepeopletag.php:150
  4019. msgid "Unlisted"
  4020. msgstr ""
  4021. #. TRANS: Title for first page of replies for a user.
  4022. #. TRANS: %s is a user nickname.
  4023. #. TRANS: RSS reply feed title. %s is a user nickname.
  4024. #. TRANS: Menu item title in personal group navigation menu.
  4025. #. TRANS: %s is a username.
  4026. #: actions/replies.php:60 actions/repliesrss.php:38 lib/personalgroupnav.php:96
  4027. #, php-format
  4028. msgid "Replies to %s"
  4029. msgstr ""
  4030. #. TRANS: Title for all but the first page of replies for a user.
  4031. #. TRANS: %1$s is a user nickname, %2$d is a page number.
  4032. #: actions/replies.php:64
  4033. #, php-format
  4034. msgid "Replies to %1$s, page %2$d"
  4035. msgstr ""
  4036. #. TRANS: Link for feed with replies for a user.
  4037. #. TRANS: %s is a user nickname.
  4038. #: actions/replies.php:84
  4039. #, php-format
  4040. msgid "Replies feed for %s (Activity Streams JSON)"
  4041. msgstr ""
  4042. #. TRANS: Link for feed with replies for a user.
  4043. #. TRANS: %s is a user nickname.
  4044. #: actions/replies.php:91
  4045. #, php-format
  4046. msgid "Replies feed for %s (RSS 1.0)"
  4047. msgstr ""
  4048. #. TRANS: Link for feed with replies for a user.
  4049. #. TRANS: %s is a user nickname.
  4050. #: actions/replies.php:100
  4051. #, php-format
  4052. msgid "Replies feed for %s (RSS 2.0)"
  4053. msgstr ""
  4054. #. TRANS: Link for feed with replies for a user.
  4055. #. TRANS: %s is a user nickname.
  4056. #: actions/replies.php:109
  4057. #, php-format
  4058. msgid "Replies feed for %s (Atom)"
  4059. msgstr ""
  4060. #. TRANS: Empty list message for page with replies for a user.
  4061. #. TRANS: %1$s is the user nickname.
  4062. #: actions/replies.php:131
  4063. #, php-format
  4064. msgid ""
  4065. "This is the timeline showing replies to %1$s but no notices have arrived yet."
  4066. msgstr ""
  4067. #. TRANS: Empty list message for page with replies for a user for the logged in user.
  4068. #. TRANS: This message contains a Markdown link in the form [link text](link).
  4069. #: actions/replies.php:138
  4070. #, php-format
  4071. msgid ""
  4072. "You can engage other users in a conversation, subscribe to more people or "
  4073. "[join groups](%%action.groups%%)."
  4074. msgstr ""
  4075. #. TRANS: Empty list message for page with replies for a user for all logged in users but the user themselves.
  4076. #. TRANS: %1$s is a user nickname and %2$s is the same but with a prepended '@' character. This message contains a Markdown link in the form [link text](link).
  4077. #: actions/replies.php:142
  4078. #, php-format
  4079. msgid ""
  4080. "You can try to [nudge %1$s](../%1$s) or [post something to them](%%%%action."
  4081. "newnotice%%%%?content=%2$s)."
  4082. msgstr ""
  4083. #. TRANS: RSS reply feed description.
  4084. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
  4085. #: actions/repliesrss.php:43
  4086. #, php-format
  4087. msgid "Replies to %1$s on %2$s."
  4088. msgstr ""
  4089. #. TRANS: Client exception displayed when trying to restore an account while not logged in.
  4090. #: actions/restoreaccount.php:79
  4091. msgid "Only logged-in users can restore their account."
  4092. msgstr ""
  4093. #. TRANS: Client exception displayed when trying to restore an account without having restore rights.
  4094. #: actions/restoreaccount.php:84
  4095. msgid "You may not restore your account."
  4096. msgstr ""
  4097. #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
  4098. #. TRANS: Client exception. No file; probably just a non-AJAX submission.
  4099. #: actions/restoreaccount.php:123 actions/restoreaccount.php:145
  4100. msgid "No uploaded file."
  4101. msgstr ""
  4102. #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
  4103. #: actions/restoreaccount.php:131
  4104. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
  4105. msgstr ""
  4106. #. TRANS: Client exception.
  4107. #: actions/restoreaccount.php:136
  4108. msgid ""
  4109. "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
  4110. "the HTML form."
  4111. msgstr ""
  4112. #. TRANS: Client exception.
  4113. #: actions/restoreaccount.php:141 lib/mediafile.php:341
  4114. msgid "The uploaded file was only partially uploaded."
  4115. msgstr ""
  4116. #. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
  4117. #: actions/restoreaccount.php:148 lib/mediafile.php:347
  4118. msgid "Missing a temporary folder."
  4119. msgstr ""
  4120. #. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
  4121. #: actions/restoreaccount.php:151 lib/mediafile.php:350
  4122. msgid "Failed to write file to disk."
  4123. msgstr ""
  4124. #. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
  4125. #: actions/restoreaccount.php:154 lib/mediafile.php:353
  4126. msgid "File upload stopped by extension."
  4127. msgstr ""
  4128. #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
  4129. #: actions/restoreaccount.php:159 lib/mediafile.php:357
  4130. msgid "System error uploading file."
  4131. msgstr ""
  4132. #. TRANS: Client exception thrown when a feed is not an Atom feed.
  4133. #. TRANS: Client exception thrown when an imported feed is not an Atom feed.
  4134. #: actions/restoreaccount.php:201 lib/feedimporter.php:74
  4135. msgid "Not an Atom feed."
  4136. msgstr ""
  4137. #. TRANS: Success message when a feed has been restored.
  4138. #: actions/restoreaccount.php:235
  4139. msgid ""
  4140. "Feed has been restored. Your old posts should now appear in search and your "
  4141. "profile page."
  4142. msgstr ""
  4143. #. TRANS: Message when a feed restore is in progress.
  4144. #: actions/restoreaccount.php:239
  4145. msgid "Feed will be restored. Please wait a few minutes for results."
  4146. msgstr ""
  4147. #. TRANS: Form instructions for feed restore.
  4148. #: actions/restoreaccount.php:336
  4149. msgid ""
  4150. "You can upload a backed-up timeline in <a href=\"http://activitystrea.ms/"
  4151. "\">Activity Streams</a> format."
  4152. msgstr ""
  4153. #. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
  4154. #: actions/restoreaccount.php:367
  4155. msgid "Upload the file"
  4156. msgstr ""
  4157. #. TRANS: Client error displayed when trying to revoke a role without having the right to do that.
  4158. #: actions/revokerole.php:74
  4159. msgid "You cannot revoke user roles on this site."
  4160. msgstr ""
  4161. #. TRANS: Client error displayed when trying to revoke a role that is not set.
  4162. #: actions/revokerole.php:81
  4163. msgid "User does not have this role."
  4164. msgstr ""
  4165. #. TRANS: Engine name for RSD.
  4166. #: actions/rsd.php:140
  4167. msgid "StatusNet"
  4168. msgstr ""
  4169. #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled.
  4170. #. TRANS: Client error on page to unsandbox a user when the feature is not enabled.
  4171. #: actions/sandbox.php:64 actions/unsandbox.php:64
  4172. msgid "You cannot sandbox users on this site."
  4173. msgstr ""
  4174. #. TRANS: Client error displayed trying to sandbox an already sandboxed user.
  4175. #: actions/sandbox.php:71
  4176. msgid "User is already sandboxed."
  4177. msgstr ""
  4178. #. TRANS: Client error displayed when trying to list a profile with an invalid list.
  4179. #. TRANS: %s is the invalid list name.
  4180. #: actions/selftag.php:69
  4181. #, php-format
  4182. msgid "Not a valid list: %s."
  4183. msgstr ""
  4184. #. TRANS: Page title for page showing self tags.
  4185. #. TRANS: %1$s is a tag, %2$d is a page number.
  4186. #: actions/selftag.php:151
  4187. #, php-format
  4188. msgid "Users self-tagged with %1$s, page %2$d"
  4189. msgstr ""
  4190. #. TRANS: Title for the sessions administration panel.
  4191. #: actions/sessionsadminpanel.php:53
  4192. msgctxt "TITLE"
  4193. msgid "Sessions"
  4194. msgstr ""
  4195. #. TRANS: Instructions for the sessions administration panel.
  4196. #: actions/sessionsadminpanel.php:64
  4197. msgid "Session settings for this StatusNet site"
  4198. msgstr ""
  4199. #. TRANS: Fieldset legend on the sessions administration panel.
  4200. #: actions/sessionsadminpanel.php:165
  4201. msgctxt "LEGEND"
  4202. msgid "Sessions"
  4203. msgstr ""
  4204. #. TRANS: Checkbox title on the sessions administration panel.
  4205. #. TRANS: Indicates if StatusNet should handle session administration.
  4206. #: actions/sessionsadminpanel.php:172
  4207. msgid "Handle sessions"
  4208. msgstr ""
  4209. #. TRANS: Checkbox title on the sessions administration panel.
  4210. #. TRANS: Indicates if StatusNet should handle session administration.
  4211. #: actions/sessionsadminpanel.php:176
  4212. msgid "Handle sessions ourselves."
  4213. msgstr ""
  4214. #. TRANS: Checkbox label on the sessions administration panel.
  4215. #. TRANS: Indicates if StatusNet should write session debugging output.
  4216. #: actions/sessionsadminpanel.php:182
  4217. msgid "Session debugging"
  4218. msgstr ""
  4219. #. TRANS: Checkbox title on the sessions administration panel.
  4220. #: actions/sessionsadminpanel.php:185
  4221. msgid "Enable debugging output for sessions."
  4222. msgstr ""
  4223. #. TRANS: Title for submit button on the sessions administration panel.
  4224. #: actions/sessionsadminpanel.php:206
  4225. msgid "Save session settings"
  4226. msgstr ""
  4227. #. TRANS: Client error displayed trying to display an OAuth application while not logged in.
  4228. #: actions/showapplication.php:79
  4229. msgid "You must be logged in to view an application."
  4230. msgstr ""
  4231. #. TRANS: Header on the OAuth application page.
  4232. #: actions/showapplication.php:152
  4233. msgid "Application profile"
  4234. msgstr ""
  4235. #. TRANS: Information output on an OAuth application page.
  4236. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write",
  4237. #. TRANS: %3$d is the number of users using the OAuth application.
  4238. #: actions/showapplication.php:183
  4239. #, php-format
  4240. msgid "Created by %1$s - %2$s access by default - %3$d user"
  4241. msgid_plural "Created by %1$s - %2$s access by default - %3$d users"
  4242. msgstr[0] ""
  4243. msgstr[1] ""
  4244. #. TRANS: Header on the OAuth application page.
  4245. #: actions/showapplication.php:196
  4246. msgid "Application actions"
  4247. msgstr ""
  4248. #. TRANS: Link text to edit application on the OAuth application page.
  4249. #: actions/showapplication.php:203
  4250. msgctxt "EDITAPP"
  4251. msgid "Edit"
  4252. msgstr ""
  4253. #. TRANS: Button text on the OAuth application page.
  4254. #. TRANS: Resets the OAuth consumer key and secret.
  4255. #: actions/showapplication.php:222
  4256. msgid "Reset key & secret"
  4257. msgstr ""
  4258. #. TRANS: Header on the OAuth application page.
  4259. #: actions/showapplication.php:249
  4260. msgid "Application info"
  4261. msgstr ""
  4262. #. TRANS: Field label on application page.
  4263. #: actions/showapplication.php:253
  4264. msgid "Consumer key"
  4265. msgstr ""
  4266. #. TRANS: Field label on application page.
  4267. #: actions/showapplication.php:256
  4268. msgid "Consumer secret"
  4269. msgstr ""
  4270. #. TRANS: Field label on application page.
  4271. #: actions/showapplication.php:259
  4272. msgid "Request token URL"
  4273. msgstr ""
  4274. #. TRANS: Field label on application page.
  4275. #: actions/showapplication.php:262
  4276. msgid "Access token URL"
  4277. msgstr ""
  4278. #. TRANS: Field label on application page.
  4279. #: actions/showapplication.php:265
  4280. msgid "Authorize URL"
  4281. msgstr ""
  4282. #. TRANS: Note on the OAuth application page about signature support.
  4283. #: actions/showapplication.php:271
  4284. msgid ""
  4285. "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is "
  4286. "not supported."
  4287. msgstr ""
  4288. #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application.
  4289. #: actions/showapplication.php:292
  4290. msgid "Are you sure you want to reset your consumer key and secret?"
  4291. msgstr ""
  4292. #. TRANS: Page title for first group page. %s is a group name.
  4293. #: actions/showgroup.php:69
  4294. #, php-format
  4295. msgid "%s group"
  4296. msgstr ""
  4297. #. TRANS: Page title for any but first group page.
  4298. #. TRANS: %1$s is a group name, $2$s is a page number.
  4299. #: actions/showgroup.php:73
  4300. #, php-format
  4301. msgid "%1$s group, page %2$d"
  4302. msgstr ""
  4303. #. TRANS: Tooltip for feed link. %s is a group nickname.
  4304. #: actions/showgroup.php:106
  4305. #, php-format
  4306. msgid "Notice feed for %s group (Activity Streams JSON)"
  4307. msgstr ""
  4308. #. TRANS: Tooltip for feed link. %s is a group nickname.
  4309. #: actions/showgroup.php:112
  4310. #, php-format
  4311. msgid "Notice feed for %s group (RSS 1.0)"
  4312. msgstr ""
  4313. #. TRANS: Tooltip for feed link. %s is a group nickname.
  4314. #: actions/showgroup.php:119
  4315. #, php-format
  4316. msgid "Notice feed for %s group (RSS 2.0)"
  4317. msgstr ""
  4318. #. TRANS: Tooltip for feed link. %s is a group nickname.
  4319. #: actions/showgroup.php:126
  4320. #, php-format
  4321. msgid "Notice feed for %s group (Atom)"
  4322. msgstr ""
  4323. #. TRANS: Tooltip for feed link. %s is a group nickname.
  4324. #: actions/showgroup.php:132
  4325. #, php-format
  4326. msgid "FOAF for %s group"
  4327. msgstr ""
  4328. #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
  4329. #. TRANS: %s is the group name, %%%%site.name%%%% is the site name,
  4330. #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
  4331. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
  4332. #: actions/showgroup.php:143
  4333. #, php-format
  4334. msgid ""
  4335. "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
  4336. "wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
  4337. "[StatusNet](http://status.net/) tool. Its members share short messages about "
  4338. "their life and interests. [Join now](%%%%action.register%%%%) to become part "
  4339. "of this group and many more! ([Read more](%%%%doc.help%%%%))"
  4340. msgstr ""
  4341. #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
  4342. #. TRANS: %s is the group name, %%%%site.name%%%% is the site name,
  4343. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
  4344. #: actions/showgroup.php:152
  4345. #, php-format
  4346. msgid ""
  4347. "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
  4348. "wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
  4349. "[StatusNet](http://status.net/) tool. Its members share short messages about "
  4350. "their life and interests."
  4351. msgstr ""
  4352. #. TRANS: Server error displayed trying to show a notice without a connected profile.
  4353. #: actions/shownotice.php:92
  4354. msgid "Notice has no profile."
  4355. msgstr ""
  4356. #. TRANS: Title for link to single notice representation.
  4357. #. TRANS: %s is a user nickname.
  4358. #: actions/shownotice.php:230
  4359. #, php-format
  4360. msgid "Single notice (JSON)"
  4361. msgstr ""
  4362. #. TRANS: Title for link to notice feed.
  4363. #. TRANS: %s is a user nickname.
  4364. #: actions/shownotice.php:238
  4365. #, php-format
  4366. msgid "Single notice (Atom)"
  4367. msgstr ""
  4368. #. TRANS: Title for private list timeline.
  4369. #. TRANS: %1$s is a list, %2$s is a page number.
  4370. #: actions/showprofiletag.php:58
  4371. #, php-format
  4372. msgid "Private timeline for %1$s list by you, page %2$d"
  4373. msgstr ""
  4374. #. TRANS: Title for public list timeline where the viewer is the tagger.
  4375. #. TRANS: %1$s is a list, %2$s is a page number.
  4376. #: actions/showprofiletag.php:66
  4377. #, php-format
  4378. msgid "Timeline for %1$s list by you, page %2$d"
  4379. msgstr ""
  4380. #. TRANS: Title for private list timeline.
  4381. #. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number.
  4382. #: actions/showprofiletag.php:72
  4383. #, php-format
  4384. msgid "Timeline for %1$s list by %2$s, page %3$d"
  4385. msgstr ""
  4386. #. TRANS: Title for private list timeline.
  4387. #. TRANS: %s is a list.
  4388. #: actions/showprofiletag.php:81
  4389. #, php-format
  4390. msgid "Private timeline of %s list by you"
  4391. msgstr ""
  4392. #. TRANS: Title for public list timeline where the viewer is the tagger.
  4393. #. TRANS: %s is a list.
  4394. #: actions/showprofiletag.php:89
  4395. #, php-format
  4396. msgid "Timeline for %s list by you"
  4397. msgstr ""
  4398. #. TRANS: Title for private list timeline.
  4399. #. TRANS: %1$s is a list, %2$s is the tagger's nickname.
  4400. #: actions/showprofiletag.php:95
  4401. #, php-format
  4402. msgid "Timeline for %1$s list by %2$s"
  4403. msgstr ""
  4404. #. TRANS: Feed title.
  4405. #. TRANS: %1$s is a list, %2$s is tagger's nickname.
  4406. #: actions/showprofiletag.php:137
  4407. #, php-format
  4408. msgid "Feed for %1$s list by %2$s (Atom)"
  4409. msgstr ""
  4410. #. TRANS: Empty list message for list timeline.
  4411. #. TRANS: %1$s is a list, %2$s is a tagger's nickname.
  4412. #: actions/showprofiletag.php:154
  4413. #, php-format
  4414. msgid ""
  4415. "This is the timeline for %1$s list by %2$s but no one has posted anything "
  4416. "yet."
  4417. msgstr ""
  4418. #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags.
  4419. #: actions/showprofiletag.php:161
  4420. msgid "Try tagging more people."
  4421. msgstr ""
  4422. #. TRANS: Additional empty list message for list timeline.
  4423. #. TRANS: This message contains Markdown links in the form [description](link).
  4424. #: actions/showprofiletag.php:166
  4425. #, php-format
  4426. msgid ""
  4427. "Why not [register an account](%%%%action.register%%%%) and start following "
  4428. "this timeline!"
  4429. msgstr ""
  4430. #. TRANS: Header on show list page.
  4431. #. TRANS: Link description for link to list of users tagged with a tag (so part of a list).
  4432. #: actions/showprofiletag.php:228 lib/peopletaglistitem.php:113
  4433. msgid "Listed"
  4434. msgstr ""
  4435. #. TRANS: Content of "Listed" page if there are no listed users.
  4436. #. TRANS: Content of "People following tag x" if there are no subscribed users.
  4437. #. TRANS: Description for mini list of group members on a group page when the group has no members.
  4438. #. TRANS: Empty list message for tags.
  4439. #. TRANS: Text for user subscription statistics if the user has no subscription
  4440. #. TRANS: Text for user subscriber statistics if user has no subscribers.
  4441. #. TRANS: Text for user user group membership statistics if user is not a member of any group.
  4442. #. TRANS: Default content for section/sidebar widget.
  4443. #: actions/showprofiletag.php:237 actions/showprofiletag.php:275
  4444. #: lib/groupaction.php:149 lib/groupaction.php:238 lib/peopletagswidget.php:162
  4445. #: lib/profileaction.php:153 lib/profileaction.php:181
  4446. #: lib/profileaction.php:278 lib/section.php:110
  4447. msgid "(None)"
  4448. msgstr ""
  4449. #. TRANS: Link for more "People in list x by a user"
  4450. #. TRANS: if there are more than the mini list's maximum.
  4451. #: actions/showprofiletag.php:249
  4452. msgid "Show all"
  4453. msgstr ""
  4454. #. TRANS: Header for tag subscribers.
  4455. #. TRANS: Link description for link to list of users subscribed to a tag.
  4456. #: actions/showprofiletag.php:266 lib/peopletaglistitem.php:123
  4457. msgid "Subscribers"
  4458. msgstr ""
  4459. #. TRANS: Page title showing tagged notices in one user's timeline.
  4460. #. TRANS: %1$s is the username, %2$s is the hash tag.
  4461. #: actions/showstream.php:68
  4462. #, php-format
  4463. msgid "Notices by %1$s tagged %2$s"
  4464. msgstr ""
  4465. #. TRANS: Page title showing tagged notices in one user's timeline.
  4466. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
  4467. #: actions/showstream.php:72
  4468. #, php-format
  4469. msgid "Notices by %1$s tagged %2$s, page %3$d"
  4470. msgstr ""
  4471. #: actions/showstream.php:76
  4472. #, php-format
  4473. msgid "Notices by %s"
  4474. msgstr ""
  4475. #. TRANS: Extended page title showing tagged notices in one user's timeline.
  4476. #. TRANS: %1$s is the username, %2$d is the page number.
  4477. #: actions/showstream.php:80
  4478. #, php-format
  4479. msgid "Notices by %1$s, page %2$d"
  4480. msgstr ""
  4481. #. TRANS: Title for link to notice feed.
  4482. #. TRANS: %1$s is a user nickname, %2$s is a hashtag.
  4483. #: actions/showstream.php:112
  4484. #, php-format
  4485. msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)"
  4486. msgstr ""
  4487. #. TRANS: Title for link to notice feed.
  4488. #. TRANS: %s is a user nickname.
  4489. #: actions/showstream.php:123 actions/showstream.php:157
  4490. #, php-format
  4491. msgid "Notice feed for %s (Atom)"
  4492. msgstr ""
  4493. #. TRANS: Title for link to notice feed.
  4494. #. TRANS: %s is a user nickname.
  4495. #: actions/showstream.php:135
  4496. #, php-format
  4497. msgid "Notice feed for %s (Activity Streams JSON)"
  4498. msgstr ""
  4499. #. TRANS: Title for link to notice feed.
  4500. #. TRANS: %s is a user nickname.
  4501. #: actions/showstream.php:142
  4502. #, php-format
  4503. msgid "Notice feed for %s (RSS 1.0)"
  4504. msgstr ""
  4505. #. TRANS: Title for link to notice feed.
  4506. #. TRANS: %s is a user nickname.
  4507. #: actions/showstream.php:151
  4508. #, php-format
  4509. msgid "Notice feed for %s (RSS 2.0)"
  4510. msgstr ""
  4511. #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
  4512. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
  4513. #: actions/showstream.php:164
  4514. #, php-format
  4515. msgid "FOAF for %s"
  4516. msgstr ""
  4517. #. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname.
  4518. #: actions/showstream.php:202
  4519. #, php-format
  4520. msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
  4521. msgstr ""
  4522. #. TRANS: Second sentence of empty list message for a stream for the user themselves.
  4523. #: actions/showstream.php:207
  4524. msgid ""
  4525. "Seen anything interesting recently? You haven't posted any notices yet, now "
  4526. "would be a good time to start :)"
  4527. msgstr ""
  4528. #. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL.
  4529. #. TRANS: This message contains a Markdown link. Keep "](" together.
  4530. #: actions/showstream.php:211
  4531. #, php-format
  4532. msgid ""
  4533. "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%"
  4534. "%%?status_textarea=%2$s)."
  4535. msgstr ""
  4536. #. TRANS: Announcement for anonymous users showing a timeline if site registrations are open.
  4537. #. TRANS: This message contains a Markdown link. Keep "](" together.
  4538. #: actions/showstream.php:248
  4539. #, php-format
  4540. msgid ""
  4541. "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
  4542. "wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
  4543. "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
  4544. "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
  4545. msgstr ""
  4546. #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only.
  4547. #. TRANS: This message contains a Markdown link. Keep "](" together.
  4548. #: actions/showstream.php:255
  4549. #, php-format
  4550. msgid ""
  4551. "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
  4552. "wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
  4553. "[StatusNet](http://status.net/) tool."
  4554. msgstr ""
  4555. #. TRANS: Title for site administration panel.
  4556. #: actions/siteadminpanel.php:57
  4557. msgctxt "TITLE"
  4558. msgid "Site"
  4559. msgstr ""
  4560. #. TRANS: Instructions for site administration panel.
  4561. #: actions/siteadminpanel.php:68
  4562. msgid "Basic settings for this StatusNet site"
  4563. msgstr ""
  4564. #. TRANS: Client error displayed trying to save an empty site name.
  4565. #: actions/siteadminpanel.php:141
  4566. msgid "Site name must have non-zero length."
  4567. msgstr ""
  4568. #. TRANS: Client error displayed trying to save site settings without a contact address.
  4569. #: actions/siteadminpanel.php:150
  4570. msgid "You must have a valid contact email address."
  4571. msgstr ""
  4572. #. TRANS: Client error displayed when a logo URL is not valid.
  4573. #: actions/siteadminpanel.php:161
  4574. msgid "Invalid logo URL."
  4575. msgstr ""
  4576. #. TRANS: Client error displayed when a SSL logo URL is invalid.
  4577. #: actions/siteadminpanel.php:167
  4578. msgid "Invalid SSL logo URL."
  4579. msgstr ""
  4580. #. TRANS: Client error displayed trying to save site settings with an invalid language code.
  4581. #. TRANS: %s is the invalid language code.
  4582. #: actions/siteadminpanel.php:184
  4583. #, php-format
  4584. msgid "Unknown language \"%s\"."
  4585. msgstr ""
  4586. #. TRANS: Client error displayed trying to save site settings with a text limit below 0.
  4587. #: actions/siteadminpanel.php:191
  4588. msgid "Minimum text limit is 0 (unlimited)."
  4589. msgstr ""
  4590. #. TRANS: Client error displayed trying to save site settings with a text limit below 1.
  4591. #: actions/siteadminpanel.php:198
  4592. msgid "Dupe limit must be one or more seconds."
  4593. msgstr ""
  4594. #. TRANS: Fieldset legend on site settings panel.
  4595. #: actions/siteadminpanel.php:245
  4596. msgctxt "LEGEND"
  4597. msgid "General"
  4598. msgstr ""
  4599. #. TRANS: Field label on site settings panel.
  4600. #: actions/siteadminpanel.php:249
  4601. msgctxt "LABEL"
  4602. msgid "Site name"
  4603. msgstr ""
  4604. #. TRANS: Field title on site settings panel.
  4605. #: actions/siteadminpanel.php:251
  4606. msgid "The name of your site, like \"Yourcompany Microblog\"."
  4607. msgstr ""
  4608. #. TRANS: Field label on site settings panel.
  4609. #: actions/siteadminpanel.php:256
  4610. msgid "Brought by"
  4611. msgstr ""
  4612. #. TRANS: Field title on site settings panel.
  4613. #: actions/siteadminpanel.php:258
  4614. msgid "Text used for credits link in footer of each page."
  4615. msgstr ""
  4616. #. TRANS: Field label on site settings panel.
  4617. #: actions/siteadminpanel.php:263
  4618. msgid "Brought by URL"
  4619. msgstr ""
  4620. #. TRANS: Field title on site settings panel.
  4621. #: actions/siteadminpanel.php:265
  4622. msgid "URL used for credits link in footer of each page."
  4623. msgstr ""
  4624. #. TRANS: Field label on site settings panel.
  4625. #: actions/siteadminpanel.php:269
  4626. msgid "Email"
  4627. msgstr ""
  4628. #. TRANS: Field title on site settings panel.
  4629. #: actions/siteadminpanel.php:271
  4630. msgid "Contact email address for your site."
  4631. msgstr ""
  4632. #. TRANS: Fieldset legend on site settings panel.
  4633. #: actions/siteadminpanel.php:280
  4634. msgctxt "LEGEND"
  4635. msgid "Local"
  4636. msgstr ""
  4637. #. TRANS: Dropdown label on site settings panel.
  4638. #: actions/siteadminpanel.php:292
  4639. msgid "Default timezone"
  4640. msgstr ""
  4641. #. TRANS: Dropdown title on site settings panel.
  4642. #: actions/siteadminpanel.php:294
  4643. msgid "Default timezone for the site; usually UTC."
  4644. msgstr ""
  4645. #. TRANS: Dropdown label on site settings panel.
  4646. #: actions/siteadminpanel.php:301
  4647. msgid "Default language"
  4648. msgstr ""
  4649. #. TRANS: Dropdown title on site settings panel.
  4650. #: actions/siteadminpanel.php:304
  4651. msgid ""
  4652. "The site language when autodetection from browser settings is not available."
  4653. msgstr ""
  4654. #. TRANS: Fieldset legend on site settings panel.
  4655. #: actions/siteadminpanel.php:313
  4656. msgctxt "LEGEND"
  4657. msgid "Limits"
  4658. msgstr ""
  4659. #. TRANS: Field label on site settings panel.
  4660. #: actions/siteadminpanel.php:318
  4661. msgid "Text limit"
  4662. msgstr ""
  4663. #. TRANS: Field title on site settings panel.
  4664. #: actions/siteadminpanel.php:320
  4665. msgid "Maximum number of characters for notices."
  4666. msgstr ""
  4667. #. TRANS: Field label on site settings panel.
  4668. #: actions/siteadminpanel.php:326
  4669. msgid "Dupe limit"
  4670. msgstr ""
  4671. #. TRANS: Field title on site settings panel.
  4672. #: actions/siteadminpanel.php:328
  4673. msgid "How long users must wait (in seconds) to post the same thing again."
  4674. msgstr ""
  4675. #. TRANS: Fieldset legend for form to change logo.
  4676. #: actions/siteadminpanel.php:338
  4677. msgid "Logo"
  4678. msgstr ""
  4679. #. TRANS: Field label for StatusNet site logo.
  4680. #: actions/siteadminpanel.php:345
  4681. msgid "Site logo"
  4682. msgstr ""
  4683. #. TRANS: Field label for SSL StatusNet site logo.
  4684. #: actions/siteadminpanel.php:353
  4685. msgid "SSL logo"
  4686. msgstr ""
  4687. #. TRANS: Button title for saving site settings.
  4688. #: actions/siteadminpanel.php:376
  4689. msgid "Save the site settings."
  4690. msgstr ""
  4691. #. TRANS: Page title for site-wide notice tab in admin panel.
  4692. #: actions/sitenoticeadminpanel.php:51
  4693. msgid "Site Notice"
  4694. msgstr ""
  4695. #. TRANS: Instructions for site-wide notice tab in admin panel.
  4696. #: actions/sitenoticeadminpanel.php:62
  4697. msgid "Edit site-wide message"
  4698. msgstr ""
  4699. #. TRANS: Server error displayed when saving a site-wide notice was impossible.
  4700. #: actions/sitenoticeadminpanel.php:97
  4701. msgid "Unable to save site notice."
  4702. msgstr ""
  4703. #. TRANS: Client error displayed when a site-wide notice was longer than allowed.
  4704. #: actions/sitenoticeadminpanel.php:108
  4705. msgid "Maximum length for the site-wide notice is 255 characters."
  4706. msgstr ""
  4707. #. TRANS: Label for site-wide notice text field in admin panel.
  4708. #: actions/sitenoticeadminpanel.php:166
  4709. msgid "Site notice text"
  4710. msgstr ""
  4711. #. TRANS: Tooltip for site-wide notice text field in admin panel.
  4712. #: actions/sitenoticeadminpanel.php:169
  4713. msgid "Site-wide notice text (255 characters maximum; HTML allowed)"
  4714. msgstr ""
  4715. #. TRANS: Button title to save site notice in admin panel.
  4716. #: actions/sitenoticeadminpanel.php:191
  4717. msgid "Save site notice."
  4718. msgstr ""
  4719. #. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
  4720. #: actions/smssettings.php:50
  4721. msgid "SMS is not available."
  4722. msgstr ""
  4723. #. TRANS: Title for SMS settings.
  4724. #: actions/smssettings.php:62
  4725. msgid "SMS settings"
  4726. msgstr ""
  4727. #. TRANS: SMS settings page instructions.
  4728. #. TRANS: %%site.name%% is the name of the site.
  4729. #: actions/smssettings.php:76
  4730. #, php-format
  4731. msgid "You can receive SMS messages through email from %%site.name%%."
  4732. msgstr ""
  4733. #. TRANS: Form legend for SMS settings form.
  4734. #: actions/smssettings.php:105
  4735. msgid "SMS address"
  4736. msgstr ""
  4737. #. TRANS: Form guide in SMS settings form.
  4738. #: actions/smssettings.php:114
  4739. msgid "Current confirmed SMS-enabled phone number."
  4740. msgstr ""
  4741. #. TRANS: Form guide in IM settings form.
  4742. #: actions/smssettings.php:127
  4743. msgid "Awaiting confirmation on this phone number."
  4744. msgstr ""
  4745. #. TRANS: Field label for SMS address input in SMS settings form.
  4746. #: actions/smssettings.php:136
  4747. msgid "Confirmation code"
  4748. msgstr ""
  4749. #. TRANS: Form field instructions in SMS settings form.
  4750. #: actions/smssettings.php:138
  4751. msgid "Enter the code you received on your phone."
  4752. msgstr ""
  4753. #. TRANS: Button label to confirm SMS confirmation code in SMS settings.
  4754. #: actions/smssettings.php:142
  4755. msgctxt "BUTTON"
  4756. msgid "Confirm"
  4757. msgstr ""
  4758. #. TRANS: Field label for SMS phone number input in SMS settings form.
  4759. #: actions/smssettings.php:147
  4760. msgid "SMS phone number"
  4761. msgstr ""
  4762. #. TRANS: SMS phone number input field instructions in SMS settings form.
  4763. #: actions/smssettings.php:150
  4764. msgid "Phone number, no punctuation or spaces, with area code."
  4765. msgstr ""
  4766. #. TRANS: Form legend for SMS preferences form.
  4767. #: actions/smssettings.php:189
  4768. msgid "SMS preferences"
  4769. msgstr ""
  4770. #. TRANS: Checkbox label in SMS preferences form.
  4771. #: actions/smssettings.php:195
  4772. msgid ""
  4773. "Send me notices through SMS; I understand I may incur exorbitant charges "
  4774. "from my carrier."
  4775. msgstr ""
  4776. #. TRANS: Confirmation message for successful SMS preferences save.
  4777. #: actions/smssettings.php:280
  4778. msgid "SMS preferences saved."
  4779. msgstr ""
  4780. #. TRANS: Message given saving SMS phone number without having provided one.
  4781. #: actions/smssettings.php:302
  4782. msgid "No phone number."
  4783. msgstr ""
  4784. #. TRANS: Message given saving SMS phone number without having selected a carrier.
  4785. #: actions/smssettings.php:307
  4786. msgid "No carrier selected."
  4787. msgstr ""
  4788. #. TRANS: Message given saving SMS phone number that is already set.
  4789. #: actions/smssettings.php:314
  4790. msgid "That is already your phone number."
  4791. msgstr ""
  4792. #. TRANS: Message given saving SMS phone number that is already set for another user.
  4793. #: actions/smssettings.php:317
  4794. msgid "That phone number already belongs to another user."
  4795. msgstr ""
  4796. #. TRANS: Message given saving valid SMS phone number that is to be confirmed.
  4797. #: actions/smssettings.php:343
  4798. msgid ""
  4799. "A confirmation code was sent to the phone number you added. Check your phone "
  4800. "for the code and instructions on how to use it."
  4801. msgstr ""
  4802. #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
  4803. #: actions/smssettings.php:364
  4804. msgid "That is the wrong confirmation number."
  4805. msgstr ""
  4806. #. TRANS: Message given after successfully canceling SMS phone number confirmation.
  4807. #: actions/smssettings.php:374
  4808. msgid "SMS confirmation cancelled."
  4809. msgstr ""
  4810. #. TRANS: Message given trying to remove an SMS phone number that is not
  4811. #. TRANS: registered for the active user.
  4812. #: actions/smssettings.php:394
  4813. msgid "That is not your phone number."
  4814. msgstr ""
  4815. #. TRANS: Message given after successfully removing a registered SMS phone number.
  4816. #: actions/smssettings.php:407
  4817. msgid "The SMS phone number was removed."
  4818. msgstr ""
  4819. #. TRANS: Label for mobile carrier dropdown menu in SMS settings.
  4820. #: actions/smssettings.php:444
  4821. msgid "Mobile carrier"
  4822. msgstr ""
  4823. #. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
  4824. #: actions/smssettings.php:449
  4825. msgid "Select a carrier"
  4826. msgstr ""
  4827. #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
  4828. #. TRANS: %s is an administrative contact's e-mail address.
  4829. #: actions/smssettings.php:458
  4830. #, php-format
  4831. msgid ""
  4832. "Mobile carrier for your phone. If you know a carrier that accepts SMS over "
  4833. "email but isn't listed here, send email to let us know at %s."
  4834. msgstr ""
  4835. #. TRANS: Message given saving SMS phone number confirmation code without having provided one.
  4836. #: actions/smssettings.php:480
  4837. msgid "No code entered."
  4838. msgstr ""
  4839. #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
  4840. #: actions/subedit.php:72
  4841. msgid "You are not subscribed to that profile."
  4842. msgstr ""
  4843. #. TRANS: Server error displayed when updating a subscription fails with a database error.
  4844. #. TRANS: Exception thrown when a subscription could not be stored on the server.
  4845. #: actions/subedit.php:85 classes/Subscription.php:172
  4846. msgid "Could not save subscription."
  4847. msgstr ""
  4848. #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator.
  4849. #: actions/subqueue.php:51
  4850. msgid "You may only approve your own pending subscriptions."
  4851. msgstr ""
  4852. #. TRANS: Title of the first page showing pending subscribers still awaiting approval.
  4853. #. TRANS: %s is the name of the user.
  4854. #: actions/subqueue.php:61
  4855. #, php-format
  4856. msgid "%s subscribers awaiting approval"
  4857. msgstr ""
  4858. #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval.
  4859. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list.
  4860. #: actions/subqueue.php:66
  4861. #, php-format
  4862. msgid "%1$s subscribers awaiting approval, page %2$d"
  4863. msgstr ""
  4864. #. TRANS: Page notice for group members page.
  4865. #: actions/subqueue.php:76
  4866. msgid "A list of users awaiting approval to subscribe to you."
  4867. msgstr ""
  4868. #. TRANS: If no pending subscription requests are found
  4869. #: actions/subqueue.php:91
  4870. msgid "You have no pending subscription requests."
  4871. msgstr ""
  4872. #. TRANS: Page title when subscription succeeded.
  4873. #: actions/subscribe.php:132
  4874. msgid "Subscribed"
  4875. msgstr ""
  4876. #. TRANS: Client error displayed when trying to perform an action while not logged in.
  4877. #: actions/subscribepeopletag.php:59 actions/unsubscribepeopletag.php:60
  4878. msgid "You must be logged in to unsubscribe from a list."
  4879. msgstr ""
  4880. #. TRANS: Client error displayed when trying to perform an action without providing an ID.
  4881. #: actions/subscribepeopletag.php:86 actions/unsubscribepeopletag.php:87
  4882. msgid "No ID given."
  4883. msgstr ""
  4884. #. TRANS: Server error displayed subscribing to a list fails.
  4885. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period).
  4886. #: actions/subscribepeopletag.php:120
  4887. #, php-format
  4888. msgid "Could not subscribe user %1$s to list %2$s: %3$s"
  4889. msgstr ""
  4890. #. TRANS: Title of form to subscribe to a list.
  4891. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname.
  4892. #: actions/subscribepeopletag.php:129
  4893. #, php-format
  4894. msgid "%1$s subscribed to list %2$s by %3$s"
  4895. msgstr ""
  4896. #. TRANS: Header for list of subscribers for a user (first page).
  4897. #. TRANS: %s is the user's nickname.
  4898. #: actions/subscribers.php:51
  4899. #, php-format
  4900. msgid "%s subscribers"
  4901. msgstr ""
  4902. #. TRANS: Header for list of subscribers for a user (not first page).
  4903. #. TRANS: %1$s is the user's nickname, $2$d is the page number.
  4904. #: actions/subscribers.php:55
  4905. #, php-format
  4906. msgid "%1$s subscribers, page %2$d"
  4907. msgstr ""
  4908. #. TRANS: Page notice for page with an overview of all subscribers
  4909. #. TRANS: of the logged in user's own profile.
  4910. #: actions/subscribers.php:67
  4911. msgid "These are the people who listen to your notices."
  4912. msgstr ""
  4913. #. TRANS: Page notice for page with an overview of all subscribers of a user other
  4914. #. TRANS: than the logged in user. %s is the user nickname.
  4915. #: actions/subscribers.php:73
  4916. #, php-format
  4917. msgid "These are the people who listen to %s's notices."
  4918. msgstr ""
  4919. #. TRANS: Subscriber list text when the logged in user has no subscribers.
  4920. #: actions/subscribers.php:111
  4921. msgid ""
  4922. "You have no subscribers. Try subscribing to people you know and they might "
  4923. "return the favor."
  4924. msgstr ""
  4925. #. TRANS: Subscriber list text when looking at the subscribers for a of a user other
  4926. #. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
  4927. #: actions/subscribers.php:115
  4928. #, php-format
  4929. msgid "%s has no subscribers. Want to be the first?"
  4930. msgstr ""
  4931. #. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none
  4932. #. TRANS: as an anonymous user. %s is the user nickname.
  4933. #. TRANS: This message contains a Markdown URL. The link description is between
  4934. #. TRANS: square brackets, and the link between parentheses. Do not separate "]("
  4935. #. TRANS: and do not change the URL part.
  4936. #: actions/subscribers.php:122
  4937. #, php-format
  4938. msgid ""
  4939. "%s has no subscribers. Why not [register an account](%%%%action.register%%"
  4940. "%%) and be the first?"
  4941. msgstr ""
  4942. #. TRANS: Header for subscriptions overview for a user (not first page).
  4943. #. TRANS: %1$s is a user nickname, %2$d is the page number.
  4944. #: actions/subscriptions.php:53
  4945. #, php-format
  4946. msgid "%1$s subscriptions, page %2$d"
  4947. msgstr ""
  4948. #. TRANS: Page notice for page with an overview of all subscriptions
  4949. #. TRANS: of the logged in user's own profile.
  4950. #: actions/subscriptions.php:65
  4951. msgid "These are the people whose notices you listen to."
  4952. msgstr ""
  4953. #. TRANS: Page notice for page with an overview of all subscriptions of a user other
  4954. #. TRANS: than the logged in user. %s is the user nickname.
  4955. #: actions/subscriptions.php:71
  4956. #, php-format
  4957. msgid "These are the people whose notices %s listens to."
  4958. msgstr ""
  4959. #. TRANS: Subscription list text when the logged in user has no subscriptions.
  4960. #. TRANS: This message contains Markdown URLs. The link description is between
  4961. #. TRANS: square brackets, and the link between parentheses. Do not separate "]("
  4962. #. TRANS: and do not change the URL part.
  4963. #: actions/subscriptions.php:128
  4964. #, php-format
  4965. msgid ""
  4966. "You're not listening to anyone's notices right now, try subscribing to "
  4967. "people you know. Try [people search](%%action.peoplesearch%%), look for "
  4968. "members in groups you're interested in and in our [featured users](%%action."
  4969. "featured%%)."
  4970. msgstr ""
  4971. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
  4972. #. TRANS: as an anonymous user. %s is the user nickname.
  4973. #: actions/subscriptions.php:134
  4974. #, php-format
  4975. msgid "%s is not listening to anyone."
  4976. msgstr ""
  4977. #. TRANS: Atom feed title. %s is a profile nickname.
  4978. #: actions/subscriptions.php:153
  4979. #, php-format
  4980. msgid "Subscription feed for %s (Atom)"
  4981. msgstr ""
  4982. #: actions/tag.php:37
  4983. msgid "No valid tag data."
  4984. msgstr ""
  4985. #. TRANS: Client error when page not found (404).
  4986. #: actions/tag.php:54 lib/noticestreamaction.php:26 lib/sitestreamaction.php:49
  4987. msgid "No such page."
  4988. msgstr ""
  4989. #. TRANS: Title for all but the first page of notices with tags.
  4990. #. TRANS: %1$s is the tag, %2$d is the page number.
  4991. #: actions/tag.php:69
  4992. #, php-format
  4993. msgid "Notices tagged with %1$s, page %2$d"
  4994. msgstr ""
  4995. #. TRANS: Link label for feed on "notices with tag" page.
  4996. #. TRANS: %s is the tag the feed is for.
  4997. #: actions/tag.php:83
  4998. #, php-format
  4999. msgid "Notice feed for tag %s (Activity Streams JSON)"
  5000. msgstr ""
  5001. #. TRANS: Link label for feed on "notices with tag" page.
  5002. #. TRANS: %s is the tag the feed is for.
  5003. #: actions/tag.php:90
  5004. #, php-format
  5005. msgid "Notice feed for tag %s (RSS 1.0)"
  5006. msgstr ""
  5007. #. TRANS: Link label for feed on "notices with tag" page.
  5008. #. TRANS: %s is the tag the feed is for.
  5009. #: actions/tag.php:98
  5010. #, php-format
  5011. msgid "Notice feed for tag %s (RSS 2.0)"
  5012. msgstr ""
  5013. #. TRANS: Link label for feed on "notices with tag" page.
  5014. #. TRANS: %s is the tag the feed is for.
  5015. #: actions/tag.php:106
  5016. #, php-format
  5017. msgid "Notice feed for tag %s (Atom)"
  5018. msgstr ""
  5019. #. TRANS: Client error displayed when trying to tag a user but no ID or profile is provided.
  5020. #: actions/tagprofile.php:44
  5021. msgid "No profile identifier provided."
  5022. msgstr ""
  5023. #. TRANS: Client error displayed when trying to tag a user that cannot be tagged.
  5024. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
  5025. #. TRANS: Error displayed when trying to tag a user that cannot be tagged.
  5026. #: actions/tagprofile.php:49 classes/Profile_tag.php:166 lib/command.php:391
  5027. #: lib/command.php:450
  5028. msgid "You cannot tag this user."
  5029. msgstr ""
  5030. #. TRANS: Title for list form when not on a profile page.
  5031. #: actions/tagprofile.php:61
  5032. msgid "List a profile"
  5033. msgstr ""
  5034. #. TRANS: Title for list form when on a profile page.
  5035. #. TRANS: %s is a profile nickname.
  5036. #. TRANS: Form legend for notice form.
  5037. #: actions/tagprofile.php:65 lib/tagprofileform.php:110
  5038. #, php-format
  5039. msgctxt "ADDTOLIST"
  5040. msgid "List %s"
  5041. msgstr ""
  5042. #. TRANS: Header in list form.
  5043. #: actions/tagprofile.php:81
  5044. msgid "User profile"
  5045. msgstr ""
  5046. #: actions/tagprofile.php:155
  5047. msgctxt "TITLE"
  5048. msgid "Tags"
  5049. msgstr ""
  5050. #. TRANS: Success message if lists are saved.
  5051. #: actions/tagprofile.php:171
  5052. msgid "Lists saved."
  5053. msgstr ""
  5054. #. TRANS: Client error when requesting a tag feed for a non-existing tag.
  5055. #: actions/tagrss.php:34
  5056. msgid "No such tag."
  5057. msgstr ""
  5058. #. TRANS: Client error displayed when trying to unblock a non-blocked user.
  5059. #: actions/unblock.php:59
  5060. msgid "You haven't blocked that user."
  5061. msgstr ""
  5062. #. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed.
  5063. #: actions/unsandbox.php:71
  5064. msgid "User is not sandboxed."
  5065. msgstr ""
  5066. #. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID.
  5067. #: actions/unsubscribe.php:74
  5068. msgid "No profile ID in request."
  5069. msgstr ""
  5070. #. TRANS: Page title for page to unsubscribe.
  5071. #: actions/unsubscribe.php:94
  5072. msgid "Unsubscribed"
  5073. msgstr ""
  5074. #. TRANS: Page title for form that allows unsubscribing from a list.
  5075. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname.
  5076. #: actions/unsubscribepeopletag.php:122
  5077. #, php-format
  5078. msgid "%1$s unsubscribed from list %2$s by %3$s"
  5079. msgstr ""
  5080. #. TRANS: Title of URL settings tab in profile settings.
  5081. #: actions/urlsettings.php:55
  5082. msgid "URL settings"
  5083. msgstr ""
  5084. #. TRANS: Instructions for tab "Other" in user profile settings.
  5085. #: actions/urlsettings.php:66
  5086. msgid "Manage various other options."
  5087. msgstr ""
  5088. #. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
  5089. #. TRANS: user's profile settings. This message has one space at the beginning. Use your
  5090. #. TRANS: language's word separator here if it has one (most likely a single space).
  5091. #: actions/urlsettings.php:108
  5092. msgid " (free service)"
  5093. msgstr ""
  5094. #. TRANS: Default value for URL shortening settings.
  5095. #: actions/urlsettings.php:115
  5096. msgid "[none]"
  5097. msgstr ""
  5098. #. TRANS: Default value for URL shortening settings.
  5099. #: actions/urlsettings.php:117
  5100. msgid "[internal]"
  5101. msgstr ""
  5102. #. TRANS: Label for dropdown with URL shortener services.
  5103. #: actions/urlsettings.php:124
  5104. msgid "Shorten URLs with"
  5105. msgstr ""
  5106. #. TRANS: Tooltip for for dropdown with URL shortener services.
  5107. #: actions/urlsettings.php:126
  5108. msgid "Automatic shortening service to use."
  5109. msgstr ""
  5110. #. TRANS: Field label in URL settings in profile.
  5111. #: actions/urlsettings.php:133
  5112. msgid "URL longer than"
  5113. msgstr ""
  5114. #. TRANS: Field title in URL settings in profile.
  5115. #: actions/urlsettings.php:137
  5116. msgid ""
  5117. "URLs longer than this will be shortened, -1 means never shorten because a "
  5118. "URL is long."
  5119. msgstr ""
  5120. #. TRANS: Field label in URL settings in profile.
  5121. #: actions/urlsettings.php:142
  5122. msgid "Text longer than"
  5123. msgstr ""
  5124. #. TRANS: Field title in URL settings in profile.
  5125. #: actions/urlsettings.php:146
  5126. msgid ""
  5127. "URLs in notices longer than this will always be shortened, -1 means only "
  5128. "shorten if the full post exceeds maximum length."
  5129. msgstr ""
  5130. #. TRANS: Form validation error for form "Other settings" in user profile.
  5131. #: actions/urlsettings.php:161
  5132. msgid "URL shortening service is too long (maximum 50 characters)."
  5133. msgstr ""
  5134. #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings.
  5135. #: actions/urlsettings.php:168
  5136. msgid "Invalid number for maximum URL length."
  5137. msgstr ""
  5138. #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings.
  5139. #: actions/urlsettings.php:175
  5140. msgid "Invalid number for maximum notice length."
  5141. msgstr ""
  5142. #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved.
  5143. #: actions/urlsettings.php:220
  5144. msgid "Error saving user URL shortening preferences."
  5145. msgstr ""
  5146. #. TRANS: User admin panel title.
  5147. #: actions/useradminpanel.php:58
  5148. msgctxt "TITLE"
  5149. msgid "User"
  5150. msgstr ""
  5151. #. TRANS: Instruction for user admin panel.
  5152. #: actions/useradminpanel.php:69
  5153. msgid "User settings for this StatusNet site"
  5154. msgstr ""
  5155. #. TRANS: Form validation error in user admin panel when a non-numeric character limit was set.
  5156. #: actions/useradminpanel.php:147
  5157. msgid "Invalid bio limit. Must be numeric."
  5158. msgstr ""
  5159. #. TRANS: Form validation error in user admin panel when welcome text is too long.
  5160. #: actions/useradminpanel.php:154
  5161. msgid "Invalid welcome text. Maximum length is 255 characters."
  5162. msgstr ""
  5163. #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
  5164. #. TRANS: users in user admin panel. %1$s is the invalid nickname.
  5165. #: actions/useradminpanel.php:166
  5166. #, php-format
  5167. msgid "Invalid default subscripton: \"%1$s\" is not a user."
  5168. msgstr ""
  5169. #. TRANS: Fieldset legend in user administration panel.
  5170. #: actions/useradminpanel.php:217
  5171. msgctxt "LEGEND"
  5172. msgid "Profile"
  5173. msgstr ""
  5174. #. TRANS: Field label in user admin panel for setting the character limit for the bio field.
  5175. #: actions/useradminpanel.php:222
  5176. msgid "Bio Limit"
  5177. msgstr ""
  5178. #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
  5179. #: actions/useradminpanel.php:224
  5180. msgid "Maximum length of a profile bio in characters."
  5181. msgstr ""
  5182. #. TRANS: Form legend in user admin panel.
  5183. #: actions/useradminpanel.php:233
  5184. msgid "New users"
  5185. msgstr ""
  5186. #. TRANS: Field label in user admin panel for setting new user welcome text.
  5187. #: actions/useradminpanel.php:238
  5188. msgid "New user welcome"
  5189. msgstr ""
  5190. #. TRANS: Tooltip in user admin panel for setting new user welcome text.
  5191. #: actions/useradminpanel.php:240
  5192. msgid "Welcome text for new users (maximum 255 characters)."
  5193. msgstr ""
  5194. #. TRANS: Field label in user admin panel for setting default subscription for new users.
  5195. #: actions/useradminpanel.php:246
  5196. msgid "Default subscription"
  5197. msgstr ""
  5198. #. TRANS: Tooltip in user admin panel for setting default subscription for new users.
  5199. #: actions/useradminpanel.php:248
  5200. msgid "Automatically subscribe new users to this user."
  5201. msgstr ""
  5202. #. TRANS: Form legend in user admin panel.
  5203. #: actions/useradminpanel.php:258
  5204. msgid "Invitations"
  5205. msgstr ""
  5206. #. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
  5207. #: actions/useradminpanel.php:264
  5208. msgid "Invitations enabled"
  5209. msgstr ""
  5210. #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
  5211. #: actions/useradminpanel.php:267
  5212. msgid "Whether to allow users to invite new users."
  5213. msgstr ""
  5214. #. TRANS: Button title to save user settings in user admin panel.
  5215. #: actions/useradminpanel.php:304
  5216. msgid "Save user settings."
  5217. msgstr ""
  5218. #. TRANS: Page title for all but the first page of groups for a user.
  5219. #. TRANS: %1$s is a nickname, %2$d is a page number.
  5220. #: actions/usergroups.php:59
  5221. #, php-format
  5222. msgid "%1$s groups, page %2$d"
  5223. msgstr ""
  5224. #. TRANS: Page notice for page with an overview of all subscribed groups
  5225. #. TRANS: of the logged in user's own profile.
  5226. #: actions/usergroups.php:71
  5227. msgid "These are the groups whose notices you listen to."
  5228. msgstr ""
  5229. #. TRANS: Page notice for page with an overview of all groups a user other
  5230. #. TRANS: than the logged in user. %s is the user nickname.
  5231. #: actions/usergroups.php:77
  5232. #, php-format
  5233. msgid "These are the groups whose notices %s listens to."
  5234. msgstr ""
  5235. #. TRANS: Page notice of user's groups page.
  5236. #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
  5237. #. TRANS: This message contains Markdown links in the form [link text](link).
  5238. #: actions/usergroups.php:90
  5239. #, php-format
  5240. msgid ""
  5241. "Groups let you find and talk with people of similar interests. You can "
  5242. "[search for groups](%%%%action.groups%%%%) in your instance or [create a new "
  5243. "group](%%%%action.newgroup%%%%). You can also follow groups from other GNU "
  5244. "social instances: click on the remote button below and copy the group's "
  5245. "link. You can find a list of GNU social groups [here](http://skilledtests."
  5246. "com/wiki/List_of_federated_GNU_social_groups)"
  5247. msgstr ""
  5248. #. TRANS: Text on group page for a user that is not a member of any group.
  5249. #. TRANS: %s is a user nickname.
  5250. #: actions/usergroups.php:130
  5251. #, php-format
  5252. msgid "%s is not a member of any group."
  5253. msgstr ""
  5254. #. TRANS: Text on group page for a user that is not a member of any group. This message contains
  5255. #. TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed.
  5256. #: actions/usergroups.php:135
  5257. msgid ""
  5258. "You are not member of any group yet. After you join a group you can send "
  5259. "messages to its members using the syntax \"!groupname\"."
  5260. msgstr ""
  5261. #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
  5262. #. TRANS: Message is used as a subtitle in atom group notice feed.
  5263. #. TRANS: %1$s is a group name, %2$s is a site name.
  5264. #. TRANS: Message is used as a subtitle in atom user notice feed.
  5265. #. TRANS: %1$s is a user name, %2$s is a site name.
  5266. #: actions/userrss.php:56 lib/atomgroupnoticefeed.php:70
  5267. #: lib/atomusernoticefeed.php:80
  5268. #, php-format
  5269. msgid "Updates from %1$s on %2$s!"
  5270. msgstr ""
  5271. #. TRANS: Title for version page. %1$s is the engine name, %2$s is the engine version.
  5272. #: actions/version.php:71
  5273. #, php-format
  5274. msgid "%1$s %2$s"
  5275. msgstr ""
  5276. #. TRANS: Content part of engine version page.
  5277. #. TRANS: %1$s is the engine name (GNU social) and %2$s is the GNU social version.
  5278. #: actions/version.php:149
  5279. #, php-format
  5280. msgid ""
  5281. "This site is powered by %1$s version %2$s, Copyright 2010 Free Software "
  5282. "Foundation, Inc."
  5283. msgstr ""
  5284. #. TRANS: Header for engine software contributors section on the version page.
  5285. #: actions/version.php:158
  5286. msgid "Contributors"
  5287. msgstr ""
  5288. #. TRANS: Header for engine software license section on the version page.
  5289. #: actions/version.php:167
  5290. msgid "License"
  5291. msgstr ""
  5292. #. TRANS: Content part of engine software version page. %1s is engine name
  5293. #: actions/version.php:171
  5294. #, php-format
  5295. msgid ""
  5296. "%1$s is free software: you can redistribute it and/or modify it under the "
  5297. "terms of the GNU Affero General Public License as published by the Free "
  5298. "Software Foundation, either version 3 of the License, or (at your option) "
  5299. "any later version."
  5300. msgstr ""
  5301. #. TRANS: Content part of engine software version page.
  5302. #: actions/version.php:178
  5303. msgid ""
  5304. "This program is distributed in the hope that it will be useful, but WITHOUT "
  5305. "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
  5306. "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License "
  5307. "for more details."
  5308. msgstr ""
  5309. #. TRANS: Content part of engine version page.
  5310. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html".
  5311. #: actions/version.php:186
  5312. #, php-format
  5313. msgid ""
  5314. "You should have received a copy of the GNU Affero General Public License "
  5315. "along with this program. If not, see %s."
  5316. msgstr ""
  5317. #. TRANS: Header for engine plugins section on the version page.
  5318. #: actions/version.php:196
  5319. msgid "Plugins"
  5320. msgstr ""
  5321. #. TRANS: Column header for plugins table on version page.
  5322. #: actions/version.php:203
  5323. msgctxt "HEADER"
  5324. msgid "Name"
  5325. msgstr ""
  5326. #. TRANS: Column header for plugins table on version page.
  5327. #: actions/version.php:205
  5328. msgctxt "HEADER"
  5329. msgid "Version"
  5330. msgstr ""
  5331. #. TRANS: Column header for plugins table on version page.
  5332. #: actions/version.php:207
  5333. msgctxt "HEADER"
  5334. msgid "Author(s)"
  5335. msgstr ""
  5336. #. TRANS: Column header for plugins table on version page.
  5337. #: actions/version.php:209
  5338. msgctxt "HEADER"
  5339. msgid "Description"
  5340. msgstr ""
  5341. #. TRANS: An error message when avatar size is unreasonable
  5342. #: classes/Avatar.php:225
  5343. msgid "Avatar size too large"
  5344. msgstr ""
  5345. #. TRANS: An error message when unable to insert avatar data into the db
  5346. #: classes/Avatar.php:247
  5347. msgid "Could not insert new avatar data to database"
  5348. msgstr ""
  5349. #. TRANS: Subject for address confirmation email.
  5350. #: classes/Confirm_address.php:130
  5351. msgid "Email address confirmation"
  5352. msgstr ""
  5353. #. TRANS: Body for address confirmation email.
  5354. #. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
  5355. #. TRANS: %3$s is the URL to confirm at.
  5356. #: classes/Confirm_address.php:135
  5357. #, php-format
  5358. msgid ""
  5359. "Hey, %1$s.\n"
  5360. "\n"
  5361. "Someone just entered this email address on %2$s.\n"
  5362. "\n"
  5363. "If it was you, and you want to confirm your entry, use the URL below:\n"
  5364. "\n"
  5365. "\t%3$s\n"
  5366. "\n"
  5367. "If not, just ignore this message.\n"
  5368. "\n"
  5369. "Thanks for your time, \n"
  5370. "%2$s\n"
  5371. msgstr ""
  5372. #. TRANS: Server error displayed when an address confirmation code deletion from the
  5373. #. TRANS: database fails in the contact address confirmation action.
  5374. #: classes/Confirm_address.php:157
  5375. msgid "Could not delete address confirmation."
  5376. msgstr ""
  5377. #: classes/Conversation.php:166
  5378. msgid "Failed to insert Conversation into database"
  5379. msgstr ""
  5380. #. TRANS: Message used to be inserted as %2$s in the text "No file may
  5381. #. TRANS: be larger than %1$d byte and the file you sent was %2$s.".
  5382. #. TRANS: %1$d is the number of bytes of an uploaded file.
  5383. #: classes/File.php:243
  5384. #, php-format
  5385. msgid "%1$d byte"
  5386. msgid_plural "%1$d bytes"
  5387. msgstr[0] ""
  5388. msgstr[1] ""
  5389. #: classes/File.php:253
  5390. #, php-format
  5391. msgid ""
  5392. "No file may be larger than %1$d byte and the file you sent was %2$s. Try to "
  5393. "upload a smaller version."
  5394. msgid_plural ""
  5395. "No file may be larger than %1$d bytes and the file you sent was %2$s. Try to "
  5396. "upload a smaller version."
  5397. msgstr[0] ""
  5398. msgstr[1] ""
  5399. #: classes/File.php:275
  5400. #, php-format
  5401. msgid "A file this large would exceed your user quota of %d byte."
  5402. msgid_plural "A file this large would exceed your user quota of %d bytes."
  5403. msgstr[0] ""
  5404. msgstr[1] ""
  5405. #: classes/File.php:293
  5406. #, php-format
  5407. msgid "A file this large would exceed your monthly quota of %d byte."
  5408. msgid_plural "A file this large would exceed your monthly quota of %d bytes."
  5409. msgstr[0] ""
  5410. msgstr[1] ""
  5411. #: classes/File.php:367
  5412. msgid "Blacklisted file extension."
  5413. msgstr ""
  5414. #. TRANS: Exception thrown providing an invalid profile ID.
  5415. #. TRANS: %s is the invalid profile ID.
  5416. #: classes/Group_join_queue.php:58 classes/Group_member.php:111
  5417. #, php-format
  5418. msgid "Profile ID %s is invalid."
  5419. msgstr ""
  5420. #. TRANS: Exception thrown providing an invalid group ID.
  5421. #. TRANS: %s is the invalid group ID.
  5422. #: classes/Group_join_queue.php:71 classes/Group_member.php:124
  5423. #, php-format
  5424. msgid "Group ID %s is invalid."
  5425. msgstr ""
  5426. #. TRANS: Exception thrown when joining a group fails.
  5427. #: classes/Group_member.php:77
  5428. msgid "Group join failed."
  5429. msgstr ""
  5430. #. TRANS: Exception thrown when trying to leave a group the user is not a member of.
  5431. #: classes/Group_member.php:90
  5432. msgid "Not part of group."
  5433. msgstr ""
  5434. #. TRANS: Exception thrown when trying to leave a group fails.
  5435. #: classes/Group_member.php:98
  5436. msgid "Group leave failed."
  5437. msgstr ""
  5438. #. TRANS: Activity title.
  5439. #: classes/Group_member.php:179
  5440. msgid "Join"
  5441. msgstr ""
  5442. #. TRANS: Success message for subscribe to group attempt through OStatus.
  5443. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
  5444. #: classes/Group_member.php:183
  5445. #, php-format
  5446. msgid "%1$s has joined group %2$s."
  5447. msgstr ""
  5448. #. TRANS: Server exception thrown when updating a local group fails.
  5449. #: classes/Local_group.php:72
  5450. msgid "Could not update local group."
  5451. msgstr ""
  5452. #. TRANS: Exception thrown when trying creating a login token failed.
  5453. #. TRANS: %s is the user nickname for which token creation failed.
  5454. #: classes/Login_token.php:78
  5455. #, php-format
  5456. msgid "Could not create login token for %s"
  5457. msgstr ""
  5458. #. TRANS: Exception thrown when database name or Data Source Name could not be found.
  5459. #: classes/Memcached_DataObject.php:860
  5460. msgid "No database name or DSN found anywhere."
  5461. msgstr ""
  5462. #: classes/Notice.php:168
  5463. msgid "You are not allowed to delete another user's notice."
  5464. msgstr ""
  5465. #. TRANS: Title of a notice posted without a title value.
  5466. #. TRANS: %1$s is a user name, %2$s is the notice creation date/time.
  5467. #: classes/Notice.php:257
  5468. #, php-format
  5469. msgid "%1$s's status on %2$s"
  5470. msgstr ""
  5471. #. TRANS: Server exception. %s are the error details.
  5472. #: classes/Notice.php:403
  5473. #, php-format
  5474. msgid "Database error inserting hashtag: %s."
  5475. msgstr ""
  5476. #. TRANS: Client exception thrown when trying to save a notice for an unknown user.
  5477. #: classes/Notice.php:483
  5478. msgid "Problem saving notice. Unknown user."
  5479. msgstr ""
  5480. #. TRANS: Client exception thrown if a notice contains too many characters.
  5481. #: classes/Notice.php:496
  5482. msgid "Problem saving notice. Too long."
  5483. msgstr ""
  5484. #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
  5485. #: classes/Notice.php:502 classes/Notice.php:783
  5486. msgid ""
  5487. "Too many notices too fast; take a breather and post again in a few minutes."
  5488. msgstr ""
  5489. #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
  5490. #: classes/Notice.php:509
  5491. msgid ""
  5492. "Too many duplicate messages too quickly; take a breather and post again in a "
  5493. "few minutes."
  5494. msgstr ""
  5495. #. TRANS: Client exception thrown when a user tries to post while being banned.
  5496. #: classes/Notice.php:517 classes/Notice.php:778
  5497. msgid "You are banned from posting notices on this site."
  5498. msgstr ""
  5499. #. TRANS: Client error displayed when trying to repeat an own notice.
  5500. #: classes/Notice.php:565
  5501. msgid "You cannot repeat your own notice."
  5502. msgstr ""
  5503. #. TRANS: Client error displayed when trying to repeat a non-public notice.
  5504. #: classes/Notice.php:571
  5505. msgid "Cannot repeat a private notice."
  5506. msgstr ""
  5507. #. TRANS: Client error displayed when trying to repeat a notice you cannot access.
  5508. #: classes/Notice.php:577
  5509. msgid "Cannot repeat a notice you cannot read."
  5510. msgstr ""
  5511. #. TRANS: Client error displayed when trying to repeat an already repeated notice.
  5512. #: classes/Notice.php:582
  5513. msgid "You already repeated that notice."
  5514. msgstr ""
  5515. #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
  5516. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
  5517. #: classes/Notice.php:604
  5518. #, php-format
  5519. msgid "%1$s has no access to notice %2$d."
  5520. msgstr ""
  5521. #. TRANS: Error message when the plain text content of a notice has zero length.
  5522. #: classes/Notice.php:883
  5523. msgid "Empty notice content, will not save this."
  5524. msgstr ""
  5525. #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
  5526. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
  5527. #: classes/Notice.php:924
  5528. #, php-format
  5529. msgid "%1$s has no right to reply to notice %2$d."
  5530. msgstr ""
  5531. #. TRANS: Server exception thrown when an update for a group inbox fails.
  5532. #: classes/Notice.php:1657
  5533. msgid "Problem saving group inbox."
  5534. msgstr ""
  5535. #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
  5536. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
  5537. #: classes/Notice.php:2309
  5538. #, php-format
  5539. msgid "RT @%1$s %2$s"
  5540. msgstr ""
  5541. #. TRANS: Server exception thrown when a notice cannot be updated.
  5542. #: classes/Notice.php:2608
  5543. msgid "Problem saving notice."
  5544. msgstr ""
  5545. #. TRANS: The "fancy name": Full name of a profile or group (%1$s) followed by some URI (%2$s) in parentheses.
  5546. #. TRANS: Full name of a profile or group followed by nickname in parens
  5547. #: classes/Profile.php:247 classes/User_group.php:347
  5548. #, php-format
  5549. msgctxt "FANCYNAME"
  5550. msgid "%1$s (%2$s)"
  5551. msgstr ""
  5552. #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
  5553. #. TRANS: %1$s is the role name, %2$s is the user ID (number).
  5554. #: classes/Profile.php:1172
  5555. #, php-format
  5556. msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
  5557. msgstr ""
  5558. #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
  5559. #. TRANS: %1$s is the role name, %2$s is the user ID (number).
  5560. #: classes/Profile.php:1181
  5561. #, php-format
  5562. msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
  5563. msgstr ""
  5564. #: classes/Profile.php:1225
  5565. msgid "You cannot silence users on this site."
  5566. msgstr ""
  5567. #: classes/Profile.php:1229
  5568. msgid "You cannot silence other privileged users."
  5569. msgstr ""
  5570. #. TRANS: Client error displayed trying to silence an already silenced user.
  5571. #: classes/Profile.php:1233
  5572. msgid "User is already silenced."
  5573. msgstr ""
  5574. #. TRANS: Client error displayed trying to unsilence a user when the user does not have the right.
  5575. #: classes/Profile.php:1250
  5576. msgid "You cannot unsilence users on this site."
  5577. msgstr ""
  5578. #. TRANS: Client error displayed trying to unsilence a user when the target user has not been silenced.
  5579. #: classes/Profile.php:1254
  5580. msgid "User is not silenced."
  5581. msgstr ""
  5582. #. TRANS: Exception thrown when trying view "repeated to me".
  5583. #: classes/Profile.php:1647
  5584. msgid "Not implemented since inbox change."
  5585. msgstr ""
  5586. #. TRANS: Server exception.
  5587. #: classes/Profile_list.php:368
  5588. msgid "The tag you are trying to rename to already exists."
  5589. msgstr ""
  5590. #. TRANS: Server exception saving new tag without having a tagger specified.
  5591. #: classes/Profile_list.php:590
  5592. msgid "No tagger specified."
  5593. msgstr ""
  5594. #. TRANS: Server exception saving new tag without having a tag specified.
  5595. #: classes/Profile_list.php:595
  5596. msgid "No tag specified."
  5597. msgstr ""
  5598. #. TRANS: Server exception saving new tag.
  5599. #: classes/Profile_list.php:633
  5600. msgid "Could not create profile tag."
  5601. msgstr ""
  5602. #. TRANS: Server exception saving new tag.
  5603. #: classes/Profile_list.php:643
  5604. msgid "Could not set profile tag URI."
  5605. msgstr ""
  5606. #. TRANS: Server exception saving new tag.
  5607. #: classes/Profile_list.php:660
  5608. msgid "Could not set profile tag mainpage."
  5609. msgstr ""
  5610. #. TRANS: Client exception thrown trying to set more tags than allowed.
  5611. #: classes/Profile_tag.php:175
  5612. #, php-format
  5613. msgid ""
  5614. "You already have created %d or more tags which is the maximum allowed number "
  5615. "of tags. Try using or deleting some existing tags."
  5616. msgstr ""
  5617. #. TRANS: Client exception thrown when trying to add more people than allowed to a list.
  5618. #: classes/Profile_tag.php:188
  5619. #, php-format
  5620. msgid ""
  5621. "You already have %1$d or more people in list %2$s, which is the maximum "
  5622. "allowed number. Try unlisting others first."
  5623. msgstr ""
  5624. #. TRANS: Exception thrown when inserting a list subscription in the database fails.
  5625. #: classes/Profile_tag_subscription.php:68
  5626. msgid "Adding list subscription failed."
  5627. msgstr ""
  5628. #. TRANS: Exception thrown when deleting a list subscription from the database fails.
  5629. #: classes/Profile_tag_subscription.php:95
  5630. msgid "Removing list subscription failed."
  5631. msgstr ""
  5632. #. TRANS: Exception thrown when a tag cannot be saved.
  5633. #: classes/Status_network.php:342
  5634. msgid "Unable to save tag."
  5635. msgstr ""
  5636. #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
  5637. #: classes/Subscription.php:81
  5638. msgid "You have been banned from subscribing."
  5639. msgstr ""
  5640. #. TRANS: Exception thrown when trying to subscribe while already subscribed.
  5641. #: classes/Subscription.php:86
  5642. msgid "Already subscribed!"
  5643. msgstr ""
  5644. #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
  5645. #: classes/Subscription.php:91
  5646. msgid "User has blocked you."
  5647. msgstr ""
  5648. #. TRANS: Exception thrown when trying to unsibscribe without a subscription.
  5649. #: classes/Subscription.php:207
  5650. msgid "Not subscribed!"
  5651. msgstr ""
  5652. #. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
  5653. #: classes/Subscription.php:214
  5654. msgid "Could not delete self-subscription."
  5655. msgstr ""
  5656. #. TRANS: Exception thrown when a subscription could not be deleted on the server.
  5657. #: classes/Subscription.php:231
  5658. msgid "Could not delete subscription."
  5659. msgstr ""
  5660. #. TRANS: Activity title when subscribing to another person.
  5661. #: classes/Subscription.php:296
  5662. msgctxt "TITLE"
  5663. msgid "Follow"
  5664. msgstr ""
  5665. #. TRANS: Notification given when one person starts following another.
  5666. #. TRANS: %1$s is the subscriber, %2$s is the subscribed.
  5667. #: classes/Subscription.php:299
  5668. #, php-format
  5669. msgid "%1$s is now following %2$s."
  5670. msgstr ""
  5671. #: classes/Subscription_queue.php:40
  5672. msgid "This subscription request is already in progress."
  5673. msgstr ""
  5674. #. TRANS: Profile data could not be inserted for some reason.
  5675. #: classes/User.php:290
  5676. msgid "Could not insert profile data for new user."
  5677. msgstr ""
  5678. #. TRANS: User data could not be inserted for some reason.
  5679. #: classes/User.php:316
  5680. msgid "Could not insert user data for new user."
  5681. msgstr ""
  5682. #. TRANS: Subscription data could not be inserted for some reason.
  5683. #: classes/User.php:332
  5684. msgid "Could not insert subscription data for new user."
  5685. msgstr ""
  5686. #. TRANS: Email confirmation data could not be inserted for some reason.
  5687. #: classes/User.php:356
  5688. msgid "Could not insert email confirmation data for new user."
  5689. msgstr ""
  5690. #. TRANS: Notice given on user registration.
  5691. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
  5692. #: classes/User.php:404
  5693. #, php-format
  5694. msgid "Welcome to %1$s, @%2$s!"
  5695. msgstr ""
  5696. #: classes/User.php:745
  5697. msgid "No site owner configured."
  5698. msgstr ""
  5699. #. TRANS: Server exception.
  5700. #: classes/User.php:762
  5701. msgid "Single-user mode code called when not enabled."
  5702. msgstr ""
  5703. #. TRANS: Information on password recovery form if no known e-mail address was specified.
  5704. #: classes/User.php:905
  5705. msgid "No user with that email address exists here."
  5706. msgstr ""
  5707. #. TRANS: Information on password recovery form if no known username was specified.
  5708. #: classes/User.php:912
  5709. msgid "No user with that nickname exists here."
  5710. msgstr ""
  5711. #. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
  5712. #: classes/User.php:930
  5713. msgid "No registered email address for that user."
  5714. msgstr ""
  5715. #. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
  5716. #: classes/User.php:944
  5717. msgid "Error saving address confirmation."
  5718. msgstr ""
  5719. #: classes/User.php:1016
  5720. msgid "Register"
  5721. msgstr ""
  5722. #: classes/User.php:1018
  5723. #, php-format
  5724. msgid "%1$s joined %2$s."
  5725. msgstr ""
  5726. #. TRANS: Form validation error on page where to change password.
  5727. #: classes/User.php:1041
  5728. msgid "Error saving user; invalid."
  5729. msgstr ""
  5730. #. TRANS: Server error displayed on page where to change password when password change
  5731. #. TRANS: could not be made because of a server error.
  5732. #: classes/User.php:1048
  5733. msgid "Cannot save new password."
  5734. msgstr ""
  5735. #: classes/User_group.php:629
  5736. msgid "Profile insertion failed"
  5737. msgstr ""
  5738. #. TRANS: Server exception thrown when creating a group failed.
  5739. #: classes/User_group.php:654
  5740. msgid "Could not create group."
  5741. msgstr ""
  5742. #. TRANS: Server exception thrown when updating a group URI failed.
  5743. #: classes/User_group.php:664
  5744. msgid "Could not set group URI."
  5745. msgstr ""
  5746. #. TRANS: Server exception thrown when setting group membership failed.
  5747. #: classes/User_group.php:687
  5748. msgid "Could not set group membership."
  5749. msgstr ""
  5750. #. TRANS: Server exception thrown when saving local group information failed.
  5751. #: classes/User_group.php:704
  5752. msgid "Could not save local group info."
  5753. msgstr ""
  5754. #: classes/User_group.php:810
  5755. msgid "Unable to update profile"
  5756. msgstr ""
  5757. #. TRANS: Exception thrown when an account could not be located when it should be moved.
  5758. #. TRANS: %s is the remote site.
  5759. #: lib/accountmover.php:65
  5760. #, php-format
  5761. msgid "Cannot locate account %s."
  5762. msgstr ""
  5763. #. TRANS: Exception thrown when a service document could not be located account move.
  5764. #. TRANS: %s is the remote site.
  5765. #: lib/accountmover.php:106
  5766. #, php-format
  5767. msgid "Cannot find XRD for %s."
  5768. msgstr ""
  5769. #. TRANS: Exception thrown when an account could not be located when it should be moved.
  5770. #. TRANS: %s is the remote site.
  5771. #: lib/accountmover.php:123
  5772. #, php-format
  5773. msgid "No AtomPub API service for %s."
  5774. msgstr ""
  5775. #. TRANS: H2 for user actions in a profile.
  5776. #. TRANS: H2 for entity actions in a profile.
  5777. #: lib/accountprofileblock.php:117 lib/accountprofileblock.php:132
  5778. msgid "User actions"
  5779. msgstr ""
  5780. #. TRANS: Text shown in user profile of not yet compeltely deleted users.
  5781. #: lib/accountprofileblock.php:121
  5782. msgid "User deletion in progress..."
  5783. msgstr ""
  5784. #. TRANS: Link title for link on user profile.
  5785. #: lib/accountprofileblock.php:145
  5786. msgid "Edit profile settings."
  5787. msgstr ""
  5788. #. TRANS: Link text for link on user profile.
  5789. #: lib/accountprofileblock.php:147 lib/groupprofileblock.php:132
  5790. msgctxt "BUTTON"
  5791. msgid "Edit"
  5792. msgstr ""
  5793. #. TRANS: Label text on user profile to select a user role.
  5794. #: lib/accountprofileblock.php:207
  5795. msgid "Moderate"
  5796. msgstr ""
  5797. #. TRANS: Label text on user profile to select a user role.
  5798. #: lib/accountprofileblock.php:246
  5799. msgid "User role"
  5800. msgstr ""
  5801. #. TRANS: Role that can be set for a user profile.
  5802. #: lib/accountprofileblock.php:249
  5803. msgctxt "role"
  5804. msgid "Administrator"
  5805. msgstr ""
  5806. #. TRANS: Role that can be set for a user profile.
  5807. #: lib/accountprofileblock.php:251
  5808. msgctxt "role"
  5809. msgid "Moderator"
  5810. msgstr ""
  5811. #. TRANS: Client error. POST is a HTTP command. It should not be translated.
  5812. #: lib/action.php:230
  5813. msgid "This method requires a POST."
  5814. msgstr ""
  5815. #. TRANS: Page title for a page without a title set.
  5816. #: lib/action.php:590
  5817. msgid "Untitled page"
  5818. msgstr ""
  5819. #: lib/action.php:659
  5820. #, php-format
  5821. msgid "%1$s - %2$s"
  5822. msgstr ""
  5823. #. TRANS: Tab on the notice form.
  5824. #: lib/action.php:1087
  5825. msgctxt "TAB"
  5826. msgid "Status"
  5827. msgstr ""
  5828. #: lib/action.php:1092
  5829. msgctxt "TAB"
  5830. msgid "Share your:"
  5831. msgstr ""
  5832. #. TRANS: First sentence of the GNU social site license. Used if 'broughtby' is set.
  5833. #. TRANS: Text between [] is a link description, text between () is the link itself.
  5834. #. TRANS: Make sure there is no whitespace between "]" and "(".
  5835. #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
  5836. #: lib/action.php:1355
  5837. #, php-format
  5838. msgid ""
  5839. "**%%site.name%%** is a social network, courtesy of [%%site.broughtby%%]"
  5840. "(%%site.broughtbyurl%%)."
  5841. msgstr ""
  5842. #. TRANS: First sentence of the GNU social site license. Used if 'broughtby' is not set.
  5843. #: lib/action.php:1358
  5844. #, php-format
  5845. msgid "**%%site.name%%** is a social network."
  5846. msgstr ""
  5847. #. TRANS: Second sentence of the GNU social site license. Mentions the GNU social source code license.
  5848. #. TRANS: Make sure there is no whitespace between "]" and "(".
  5849. #. TRANS: [%1$s](%2$s) is a link description followed by the link itself
  5850. #. TRANS: %3$s is the version of GNU social that is being used.
  5851. #: lib/action.php:1365
  5852. #, php-format
  5853. msgid ""
  5854. "It runs on [%1$s](%2$s), version %3$s, available under the [GNU Affero "
  5855. "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
  5856. msgstr ""
  5857. #: lib/action.php:1384
  5858. #, php-format
  5859. msgid "Content and data of %1$s are private and confidential."
  5860. msgstr ""
  5861. #: lib/action.php:1394
  5862. #, php-format
  5863. msgid "Content and data copyright by %1$s. All rights reserved."
  5864. msgstr ""
  5865. #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
  5866. #: lib/action.php:1399
  5867. msgid "Content and data copyright by contributors. All rights reserved."
  5868. msgstr ""
  5869. #. TRANS: license message in footer.
  5870. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
  5871. #: lib/action.php:1431
  5872. #, php-format
  5873. msgid "All %1$s content and data are available under the %2$s license."
  5874. msgstr ""
  5875. #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
  5876. #: lib/action.php:1504
  5877. msgctxt "TOOLTIP"
  5878. msgid "Show more"
  5879. msgstr ""
  5880. #: lib/action.php:1505
  5881. msgctxt "TOOLTIP"
  5882. msgid "Close popup"
  5883. msgstr ""
  5884. #. TRANS: Pagination message to go to a page displaying information more in the
  5885. #. TRANS: present than the currently displayed information.
  5886. #: lib/action.php:1726
  5887. msgid "After"
  5888. msgstr ""
  5889. #. TRANS: Pagination message to go to a page displaying information more in the
  5890. #. TRANS: past than the currently displayed information.
  5891. #: lib/action.php:1739
  5892. msgid "Before"
  5893. msgstr ""
  5894. #. TRANS: Client exception thrown when a feed instance is a DOMDocument.
  5895. #: lib/activity.php:126
  5896. msgid "Expecting a root feed element but got a whole XML document."
  5897. msgstr ""
  5898. #. TRANS: Client exception thrown when ...
  5899. #: lib/activityhandlerplugin.php:387
  5900. msgid "Object not posted to this group."
  5901. msgstr ""
  5902. #. TRANS: Client exception when ...
  5903. #: lib/activityhandlerplugin.php:405
  5904. msgid "Object not posted to this user."
  5905. msgstr ""
  5906. #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled.
  5907. #: lib/activityhandlerplugin.php:409
  5908. msgid "Do not know how to handle this kind of target."
  5909. msgstr ""
  5910. #: lib/activityhandlerplugin.php:588
  5911. #, php-format
  5912. msgid "Error showing notice: %s"
  5913. msgstr ""
  5914. #. TRANS: Client exception thrown when using an unknown verb for the activity importer.
  5915. #: lib/activityimporter.php:77
  5916. #, php-format
  5917. msgid "Unknown verb: \"%s\"."
  5918. msgstr ""
  5919. #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
  5920. #: lib/activityimporter.php:97
  5921. msgid "Cannot force subscription for untrusted user."
  5922. msgstr ""
  5923. #. TRANS: Client exception thrown when trying to force a remote user to subscribe.
  5924. #: lib/activityimporter.php:105
  5925. msgid "Cannot force remote user to subscribe."
  5926. msgstr ""
  5927. #: lib/activityimporter.php:123
  5928. msgid "Unknown profile."
  5929. msgstr ""
  5930. #. TRANS: Client exception thrown when trying to import an event not related to the importing user.
  5931. #: lib/activityimporter.php:129
  5932. msgid "This activity seems unrelated to our user."
  5933. msgstr ""
  5934. #. TRANS: Client exception thrown when trying to join a remote group that is not a group.
  5935. #: lib/activityimporter.php:145
  5936. msgid "Remote profile is not a group!"
  5937. msgstr ""
  5938. #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
  5939. #: lib/activityimporter.php:154
  5940. msgid "User is already a member of this group."
  5941. msgstr ""
  5942. #. TRANS: Client exception thrown when trying to import a notice by another user.
  5943. #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
  5944. #: lib/activityimporter.php:189
  5945. #, php-format
  5946. msgid "Already know about notice %1$s and it has a different author %2$s."
  5947. msgstr ""
  5948. #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
  5949. #: lib/activityimporter.php:195
  5950. msgid "Not overwriting author info for non-trusted user."
  5951. msgstr ""
  5952. #. TRANS: Client exception thrown when trying to import a notice without content.
  5953. #. TRANS: %s is the notice URI.
  5954. #: lib/activityimporter.php:211
  5955. #, php-format
  5956. msgid "No content for notice %s."
  5957. msgstr ""
  5958. #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID.
  5959. #: lib/activitymover.php:92
  5960. #, php-format
  5961. msgid "No such user \"%s\"."
  5962. msgstr ""
  5963. #. TRANS: Client exception thrown when post to collection fails with a 400 status.
  5964. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
  5965. #. TRANS: Server exception thrown when post to collection fails with a 500 status.
  5966. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
  5967. #. TRANS: Exception thrown when post to collection fails with a status that is not handled.
  5968. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
  5969. #: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
  5970. #, php-format
  5971. msgctxt "URLSTATUSREASON"
  5972. msgid "%1$s %2$s %3$s"
  5973. msgstr ""
  5974. #. TRANS: Client exception thrown when there is no source attribute.
  5975. #: lib/activityutils.php:235
  5976. msgid "Can't handle remote content yet."
  5977. msgstr ""
  5978. #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet.
  5979. #: lib/activityutils.php:272
  5980. msgid "Can't handle embedded XML content yet."
  5981. msgstr ""
  5982. #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet.
  5983. #: lib/activityutils.php:277
  5984. msgid "Can't handle embedded Base64 content yet."
  5985. msgstr ""
  5986. #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights.
  5987. #: lib/adminpanelaction.php:95
  5988. msgid "You cannot make changes to this site."
  5989. msgstr ""
  5990. #. TRANS: Client error message throw when a certain panel's settings cannot be changed.
  5991. #: lib/adminpanelaction.php:106
  5992. msgid "Changes to that panel are not allowed."
  5993. msgstr ""
  5994. #. TRANS: Client error message.
  5995. #: lib/adminpanelaction.php:219
  5996. msgid "showForm() not implemented."
  5997. msgstr ""
  5998. #. TRANS: Client error message
  5999. #: lib/adminpanelaction.php:246
  6000. msgid "saveSettings() not implemented."
  6001. msgstr ""
  6002. #. TRANS: Header in administrator navigation panel.
  6003. #: lib/adminpanelnav.php:68
  6004. msgctxt "HEADER"
  6005. msgid "Admin"
  6006. msgstr ""
  6007. #. TRANS: Menu item title in administrator navigation panel.
  6008. #: lib/adminpanelnav.php:75
  6009. msgid "Basic site configuration"
  6010. msgstr ""
  6011. #. TRANS: Menu item in administrator navigation panel.
  6012. #: lib/adminpanelnav.php:77
  6013. msgctxt "MENU"
  6014. msgid "Site"
  6015. msgstr ""
  6016. #. TRANS: Menu item title in administrator navigation panel.
  6017. #: lib/adminpanelnav.php:83
  6018. msgid "User configuration"
  6019. msgstr ""
  6020. #. TRANS: Menu item in administrator navigation panel.
  6021. #: lib/adminpanelnav.php:85
  6022. msgctxt "MENU"
  6023. msgid "User"
  6024. msgstr ""
  6025. #. TRANS: Menu item title in administrator navigation panel.
  6026. #: lib/adminpanelnav.php:91
  6027. msgid "Access configuration"
  6028. msgstr ""
  6029. #. TRANS: Menu item in administrator navigation panel.
  6030. #: lib/adminpanelnav.php:93
  6031. msgctxt "MENU"
  6032. msgid "Access"
  6033. msgstr ""
  6034. #. TRANS: Menu item title in administrator navigation panel.
  6035. #: lib/adminpanelnav.php:99
  6036. msgid "Paths configuration"
  6037. msgstr ""
  6038. #. TRANS: Menu item in administrator navigation panel.
  6039. #: lib/adminpanelnav.php:101
  6040. msgctxt "MENU"
  6041. msgid "Paths"
  6042. msgstr ""
  6043. #. TRANS: Menu item title in administrator navigation panel.
  6044. #: lib/adminpanelnav.php:107
  6045. msgid "Sessions configuration"
  6046. msgstr ""
  6047. #. TRANS: Menu item in administrator navigation panel.
  6048. #: lib/adminpanelnav.php:109
  6049. msgctxt "MENU"
  6050. msgid "Sessions"
  6051. msgstr ""
  6052. #. TRANS: Menu item title in administrator navigation panel.
  6053. #: lib/adminpanelnav.php:115
  6054. msgid "Edit site notice"
  6055. msgstr ""
  6056. #. TRANS: Menu item in administrator navigation panel.
  6057. #: lib/adminpanelnav.php:117
  6058. msgctxt "MENU"
  6059. msgid "Site notice"
  6060. msgstr ""
  6061. #. TRANS: Menu item title in administrator navigation panel.
  6062. #: lib/adminpanelnav.php:123
  6063. msgid "Set site license"
  6064. msgstr ""
  6065. #. TRANS: Menu item in administrator navigation panel.
  6066. #: lib/adminpanelnav.php:125
  6067. msgctxt "MENU"
  6068. msgid "License"
  6069. msgstr ""
  6070. #. TRANS: Menu item title in administrator navigation panel.
  6071. #: lib/adminpanelnav.php:131
  6072. msgid "Plugins configuration"
  6073. msgstr ""
  6074. #. TRANS: Menu item in administrator navigation panel.
  6075. #: lib/adminpanelnav.php:133
  6076. msgctxt "MENU"
  6077. msgid "Plugins"
  6078. msgstr ""
  6079. #. TRANS: Exception text when attempting to perform something which seems already done.
  6080. #: lib/alreadyfulfilledexception.php:46
  6081. msgid "Trying to do something that was already done."
  6082. msgstr ""
  6083. #. TRANS: Client error on an API request with an unsupported data format.
  6084. #: lib/apiaction.php:245 lib/apiaction.php:603 lib/apiaction.php:1293
  6085. msgid "Not a supported data format."
  6086. msgstr ""
  6087. #: lib/apiaction.php:634
  6088. msgid "JSON encoding failed. Error: "
  6089. msgstr ""
  6090. #. TRANS: Authorization exception thrown when a user without API access tries to access the API.
  6091. #: lib/apiauthaction.php:96 lib/apiauthaction.php:221 lib/apiauthaction.php:310
  6092. msgid "Not allowed to use API."
  6093. msgstr ""
  6094. #. TRANS: Client error 401.
  6095. #: lib/apiauthaction.php:129
  6096. msgid "API resource requires read-write access, but you only have read access."
  6097. msgstr ""
  6098. #. TRANS: OAuth exception thrown when no application is found for a given consumer key.
  6099. #: lib/apiauthaction.php:194
  6100. msgid "No application for that consumer key."
  6101. msgstr ""
  6102. #. TRANS: OAuth exception given when an incorrect access token was given for a user.
  6103. #: lib/apiauthaction.php:252
  6104. msgid "Bad access token."
  6105. msgstr ""
  6106. #. TRANS: OAuth exception given when no user was found for a given token (no token was found).
  6107. #: lib/apiauthaction.php:257
  6108. msgid "No user for that token."
  6109. msgstr ""
  6110. #. TRANS: Client error thrown when authentication fails because a user clicked "Cancel".
  6111. #. TRANS: Client error thrown when authentication fails.
  6112. #: lib/apiauthaction.php:298 lib/apiauthaction.php:332
  6113. msgid "Could not authenticate you."
  6114. msgstr ""
  6115. #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
  6116. #: lib/apignusocialoauthdatastore.php:48
  6117. msgid "Could not create anonymous consumer."
  6118. msgstr ""
  6119. #. TRANS: Server error displayed when trying to create an anynymous OAuth application.
  6120. #: lib/apignusocialoauthdatastore.php:72
  6121. msgid "Could not create anonymous OAuth application."
  6122. msgstr ""
  6123. #. TRANS: Exception thrown when no token association could be found.
  6124. #: lib/apignusocialoauthdatastore.php:154
  6125. msgid ""
  6126. "Could not find a profile and application associated with the request token."
  6127. msgstr ""
  6128. #. TRANS: Exception thrown when no access token can be issued.
  6129. #: lib/apignusocialoauthdatastore.php:212
  6130. msgid "Could not issue access token."
  6131. msgstr ""
  6132. #. TRANS: Exception thrown when a database error occurs.
  6133. #: lib/apignusocialoauthdatastore.php:320
  6134. msgid "Database error inserting OAuth application user."
  6135. msgstr ""
  6136. #. TRANS: Exception thrown when a database error occurs.
  6137. #: lib/apignusocialoauthdatastore.php:348
  6138. msgid "Database error updating OAuth application user."
  6139. msgstr ""
  6140. #. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
  6141. #: lib/apignusocialoauthdatastore.php:374
  6142. msgid "Tried to revoke unknown token."
  6143. msgstr ""
  6144. #. TRANS: Exception thrown when an attempt is made to remove a revoked token.
  6145. #: lib/apignusocialoauthdatastore.php:379
  6146. msgid "Failed to delete revoked token."
  6147. msgstr ""
  6148. #. TRANS: Form input field label for application icon.
  6149. #: lib/applicationeditform.php:177
  6150. msgid "Icon"
  6151. msgstr ""
  6152. #. TRANS: Form guide.
  6153. #: lib/applicationeditform.php:182
  6154. msgid "Icon for this application"
  6155. msgstr ""
  6156. #. TRANS: Form input field label for application name.
  6157. #: lib/applicationeditform.php:190
  6158. msgid "Name"
  6159. msgstr ""
  6160. #. TRANS: Form input field instructions.
  6161. #. TRANS: %d is the number of available characters for the description.
  6162. #: lib/applicationeditform.php:201
  6163. #, php-format
  6164. msgid "Describe your application in %d character"
  6165. msgid_plural "Describe your application in %d characters"
  6166. msgstr[0] ""
  6167. msgstr[1] ""
  6168. #. TRANS: Form input field instructions.
  6169. #: lib/applicationeditform.php:205
  6170. msgid "Describe your application"
  6171. msgstr ""
  6172. #. TRANS: Form input field label.
  6173. #. TRANS: Text area label on group edit form; contains description of group.
  6174. #. TRANS: Field label for description of list.
  6175. #. TRANS: Dropdown option for searching in profiles.
  6176. #: lib/applicationeditform.php:208 lib/groupeditform.php:182
  6177. #: lib/peopletageditform.php:151 lib/togglepeopletag.php:111
  6178. msgid "Description"
  6179. msgstr ""
  6180. #. TRANS: Form input field instructions.
  6181. #: lib/applicationeditform.php:216
  6182. msgid "URL of the homepage of this application"
  6183. msgstr ""
  6184. #. TRANS: Form input field label.
  6185. #: lib/applicationeditform.php:218
  6186. msgid "Source URL"
  6187. msgstr ""
  6188. #. TRANS: Form input field instructions.
  6189. #: lib/applicationeditform.php:225
  6190. msgid "Organization responsible for this application"
  6191. msgstr ""
  6192. #. TRANS: Form input field label.
  6193. #: lib/applicationeditform.php:227
  6194. msgid "Organization"
  6195. msgstr ""
  6196. #. TRANS: Form input field instructions.
  6197. #: lib/applicationeditform.php:234
  6198. msgid "URL for the homepage of the organization"
  6199. msgstr ""
  6200. #. TRANS: Form input field instructions.
  6201. #: lib/applicationeditform.php:243
  6202. msgid "URL to redirect to after authentication"
  6203. msgstr ""
  6204. #. TRANS: Radio button label for application type
  6205. #: lib/applicationeditform.php:271
  6206. msgid "Browser"
  6207. msgstr ""
  6208. #. TRANS: Radio button label for application type
  6209. #: lib/applicationeditform.php:288
  6210. msgid "Desktop"
  6211. msgstr ""
  6212. #. TRANS: Form guide.
  6213. #: lib/applicationeditform.php:290
  6214. msgid "Type of application, browser or desktop"
  6215. msgstr ""
  6216. #. TRANS: Radio button label for access type.
  6217. #: lib/applicationeditform.php:314
  6218. msgid "Read-only"
  6219. msgstr ""
  6220. #. TRANS: Radio button label for access type.
  6221. #: lib/applicationeditform.php:334
  6222. msgid "Read-write"
  6223. msgstr ""
  6224. #. TRANS: Form guide.
  6225. #: lib/applicationeditform.php:336
  6226. msgid "Default access for this application: read-only, or read-write"
  6227. msgstr ""
  6228. #. TRANS: Submit button title.
  6229. #: lib/applicationeditform.php:353
  6230. msgid "Cancel application changes."
  6231. msgstr ""
  6232. #. TRANS: Submit button title.
  6233. #: lib/applicationeditform.php:357
  6234. msgid "Save application changes."
  6235. msgstr ""
  6236. #. TRANS: Submit button text to accept a group membership request on approve group form.
  6237. #. TRANS: Submit button text to accept a subscription request on approve sub form.
  6238. #: lib/approvegroupform.php:116 lib/approvesubform.php:106
  6239. msgctxt "BUTTON"
  6240. msgid "Accept"
  6241. msgstr ""
  6242. #. TRANS: Submit button text to reject a group membership request on approve group form.
  6243. #. TRANS: Submit button text to reject a subscription request on approve sub form.
  6244. #: lib/approvegroupform.php:118 lib/approvesubform.php:108
  6245. msgctxt "BUTTON"
  6246. msgid "Reject"
  6247. msgstr ""
  6248. #. TRANS: Atom feed exception thrown when an author element does not contain a name element.
  6249. #: lib/atom10feed.php:113
  6250. msgid "Author element must contain a name element."
  6251. msgstr ""
  6252. #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname.
  6253. #: lib/atomlistnoticefeed.php:65
  6254. #, php-format
  6255. msgid "Timeline for people in list %1$s by %2$s"
  6256. msgstr ""
  6257. #. TRANS: Message is used as a subtitle in atom list notice feed.
  6258. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name.
  6259. #: lib/atomlistnoticefeed.php:72
  6260. #, php-format
  6261. msgid "Updates from %1$s's list %2$s on %3$s!"
  6262. msgstr ""
  6263. #: lib/attachment.php:43
  6264. msgid "Download link"
  6265. msgstr ""
  6266. #. TRANS: Message for inline attachments list in notices when the author has been silenced.
  6267. #: lib/attachmentlist.php:90
  6268. msgid "Attachments are hidden because this profile has been silenced."
  6269. msgstr ""
  6270. #: lib/attachmentlistitem.php:66
  6271. msgid "Untitled attachment"
  6272. msgstr ""
  6273. #. TRANS: Title.
  6274. #: lib/attachmentnoticesection.php:68
  6275. msgid "Notices where this attachment appears"
  6276. msgstr ""
  6277. #. TRANS: Exception thrown when a password change fails.
  6278. #: lib/authenticationplugin.php:219 lib/authenticationplugin.php:225
  6279. msgid "Password changing failed."
  6280. msgstr ""
  6281. #. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
  6282. #: lib/authenticationplugin.php:236
  6283. msgid "Password changing is not allowed."
  6284. msgstr ""
  6285. #. TRANS: Information displayed on the backup account page.
  6286. #: lib/backupaccountform.php:45
  6287. msgid ""
  6288. "You can backup your account data in <a href=\"http://activitystrea.ms/"
  6289. "\">Activity Streams</a> format. This is an experimental feature and provides "
  6290. "an incomplete backup; private account information like email and IM "
  6291. "addresses is not backed up. Additionally, uploaded files and direct messages "
  6292. "are not backed up."
  6293. msgstr ""
  6294. #. TRANS: Submit button to backup an account on the backup account page.
  6295. #: lib/backupaccountform.php:68
  6296. msgctxt "BUTTON"
  6297. msgid "Backup"
  6298. msgstr ""
  6299. #. TRANS: Title for submit button to backup an account on the backup account page.
  6300. #: lib/backupaccountform.php:72
  6301. msgid "Backup your account."
  6302. msgstr ""
  6303. #. TRANS: Title for the form to block a user.
  6304. #: lib/blockform.php:68
  6305. msgid "Block"
  6306. msgstr ""
  6307. #. TRANS: Description of the form to block a user.
  6308. #: lib/blockform.php:79
  6309. msgid "Block this user"
  6310. msgstr ""
  6311. #. TRANS: Submit button text on form to cancel group join request.
  6312. #: lib/cancelgroupform.php:111
  6313. msgctxt "BUTTON"
  6314. msgid "Cancel join request"
  6315. msgstr ""
  6316. #. TRANS: Button text for form action to cancel a subscription request.
  6317. #: lib/cancelsubscriptionform.php:122
  6318. msgctxt "BUTTON"
  6319. msgid "Cancel subscription request"
  6320. msgstr ""
  6321. #. TRANS: Title for command results.
  6322. #: lib/channel.php:104 lib/channel.php:125
  6323. msgid "Command results"
  6324. msgstr ""
  6325. #. TRANS: Title for command results.
  6326. #: lib/channel.php:138
  6327. msgid "AJAX error"
  6328. msgstr ""
  6329. #. TRANS: E-mail subject when a command has completed.
  6330. #. TRANS: E-mail subject for reply to an e-mail command.
  6331. #: lib/channel.php:177 lib/mailhandler.php:146
  6332. msgid "Command complete"
  6333. msgstr ""
  6334. #. TRANS: E-mail subject when a command has failed.
  6335. #: lib/channel.php:188
  6336. msgid "Command failed"
  6337. msgstr ""
  6338. #. TRANS: Command exception text shown when a notice ID is requested that does not exist.
  6339. #: lib/command.php:84 lib/command.php:108
  6340. msgid "Notice with that id does not exist."
  6341. msgstr ""
  6342. #. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
  6343. #. TRANS: Error text shown when a last user notice is requested and it does not exist.
  6344. #: lib/command.php:101 lib/command.php:595
  6345. msgid "User has no last notice."
  6346. msgstr ""
  6347. #. TRANS: Message given requesting a profile for a non-existing user.
  6348. #. TRANS: %s is the nickname of the user for which the profile could not be found.
  6349. #: lib/command.php:130
  6350. #, php-format
  6351. msgid "Could not find a user with nickname %s."
  6352. msgstr ""
  6353. #. TRANS: Message given getting a non-existing user.
  6354. #. TRANS: %s is the nickname of the user that could not be found.
  6355. #: lib/command.php:150
  6356. #, php-format
  6357. msgid "Could not find a local user with nickname %s."
  6358. msgstr ""
  6359. #. TRANS: Error text shown when an unimplemented command is given.
  6360. #: lib/command.php:185
  6361. msgid "Sorry, this command is not yet implemented."
  6362. msgstr ""
  6363. #. TRANS: Command exception text shown when a user tries to nudge themselves.
  6364. #: lib/command.php:231
  6365. msgid "It does not make a lot of sense to nudge yourself!"
  6366. msgstr ""
  6367. #. TRANS: Message given having nudged another user.
  6368. #. TRANS: %s is the nickname of the user that was nudged.
  6369. #: lib/command.php:240
  6370. #, php-format
  6371. msgid "Nudge sent to %s."
  6372. msgstr ""
  6373. #. TRANS: User statistics text.
  6374. #. TRANS: %1$s is the number of other user the user is subscribed to.
  6375. #. TRANS: %2$s is the number of users that are subscribed to the user.
  6376. #. TRANS: %3$s is the number of notices the user has sent.
  6377. #: lib/command.php:270
  6378. #, php-format
  6379. msgid ""
  6380. "Subscriptions: %1$s\n"
  6381. "Subscribers: %2$s\n"
  6382. "Notices: %3$s"
  6383. msgstr ""
  6384. #. TRANS: Message given having added a user to a group.
  6385. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
  6386. #: lib/command.php:317
  6387. #, php-format
  6388. msgid "%1$s joined group %2$s."
  6389. msgstr ""
  6390. #. TRANS: Message given having removed a user from a group.
  6391. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
  6392. #: lib/command.php:362
  6393. #, php-format
  6394. msgid "%1$s left group %2$s."
  6395. msgstr ""
  6396. #. TRANS: Error displayed if tagging a user fails.
  6397. #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation).
  6398. #: lib/command.php:419
  6399. #, php-format
  6400. msgid "Error tagging %1$s: %2$s"
  6401. msgstr ""
  6402. #. TRANS: Succes message displayed if tagging a user succeeds.
  6403. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
  6404. #. TRANS: Plural is decided based on the number of tags added (not part of message).
  6405. #: lib/command.php:427
  6406. #, php-format
  6407. msgid "%1$s was tagged %2$s"
  6408. msgid_plural "%1$s was tagged %2$s"
  6409. msgstr[0] ""
  6410. msgstr[1] ""
  6411. #. TRANS: Separator for list of tags.
  6412. #. TRANS: Separator in list of user names like "Jim, Bob, Mary".
  6413. #: lib/command.php:432 lib/command.php:485 lib/noticelistactorsitem.php:78
  6414. msgid ", "
  6415. msgstr ""
  6416. #. TRANS: Error displayed if a given tag is invalid.
  6417. #. TRANS: %s is the invalid tag.
  6418. #: lib/command.php:460
  6419. #, php-format
  6420. msgid "Invalid tag: \"%s\""
  6421. msgstr ""
  6422. #. TRANS: Error displayed if untagging a user fails.
  6423. #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
  6424. #: lib/command.php:472
  6425. #, php-format
  6426. msgid "Error untagging %1$s: %2$s"
  6427. msgstr ""
  6428. #. TRANS: Succes message displayed if untagging a user succeeds.
  6429. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
  6430. #. TRANS: Plural is decided based on the number of tags removed (not part of message).
  6431. #: lib/command.php:480
  6432. #, php-format
  6433. msgid "The following tag was removed from user %1$s: %2$s."
  6434. msgid_plural "The following tags were removed from user %1$s: %2$s."
  6435. msgstr[0] ""
  6436. msgstr[1] ""
  6437. #. TRANS: Whois output.
  6438. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
  6439. #: lib/command.php:504
  6440. #, php-format
  6441. msgctxt "WHOIS"
  6442. msgid "%1$s (%2$s)"
  6443. msgstr ""
  6444. #. TRANS: Whois output. %s is the full name of the queried user.
  6445. #: lib/command.php:508
  6446. #, php-format
  6447. msgid "Fullname: %s"
  6448. msgstr ""
  6449. #. TRANS: Whois output. %s is the location of the queried user.
  6450. #. TRANS: Profile info line in notification e-mail.
  6451. #. TRANS: %s is a location.
  6452. #: lib/command.php:512 lib/mail.php:309
  6453. #, php-format
  6454. msgid "Location: %s"
  6455. msgstr ""
  6456. #. TRANS: Whois output. %s is the homepage of the queried user.
  6457. #. TRANS: Profile info line in notification e-mail.
  6458. #. TRANS: %s is a homepage.
  6459. #: lib/command.php:516 lib/mail.php:314
  6460. #, php-format
  6461. msgid "Homepage: %s"
  6462. msgstr ""
  6463. #. TRANS: Whois output. %s is the bio information of the queried user.
  6464. #: lib/command.php:520
  6465. #, php-format
  6466. msgid "About: %s"
  6467. msgstr ""
  6468. #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
  6469. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
  6470. #: lib/command.php:556
  6471. #, php-format
  6472. msgid "Notice too long - maximum is %1$d character, you sent %2$d."
  6473. msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
  6474. msgstr[0] ""
  6475. msgstr[1] ""
  6476. #. TRANS: Text shown having sent a reply to a notice successfully.
  6477. #. TRANS: %s is the nickname of the user of the notice the reply was sent to.
  6478. #: lib/command.php:569
  6479. #, php-format
  6480. msgid "Reply to %s sent."
  6481. msgstr ""
  6482. #. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
  6483. #: lib/command.php:572
  6484. msgid "Error saving notice."
  6485. msgstr ""
  6486. #. TRANS: Error text shown when no username was provided when issuing a subscribe command.
  6487. #: lib/command.php:619
  6488. msgid "Specify the name of the user to subscribe to."
  6489. msgstr ""
  6490. #. TRANS: Text shown after having subscribed to another user successfully.
  6491. #. TRANS: %s is the name of the user the subscription was requested for.
  6492. #: lib/command.php:629
  6493. #, php-format
  6494. msgid "Subscribed to %s."
  6495. msgstr ""
  6496. #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
  6497. #. TRANS: Error text shown when no username was provided when issuing the command.
  6498. #: lib/command.php:650 lib/command.php:760
  6499. msgid "Specify the name of the user to unsubscribe from."
  6500. msgstr ""
  6501. #. TRANS: Text shown after having unsubscribed from another user successfully.
  6502. #. TRANS: %s is the name of the user the unsubscription was requested for.
  6503. #: lib/command.php:660
  6504. #, php-format
  6505. msgid "Unsubscribed from %s."
  6506. msgstr ""
  6507. #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
  6508. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
  6509. #: lib/command.php:680 lib/command.php:706
  6510. msgid "Command not yet implemented."
  6511. msgstr ""
  6512. #. TRANS: Text shown when issuing the command "off" successfully.
  6513. #: lib/command.php:684
  6514. msgid "Notification off."
  6515. msgstr ""
  6516. #. TRANS: Error text shown when the command "off" fails for an unknown reason.
  6517. #: lib/command.php:687
  6518. msgid "Can't turn off notification."
  6519. msgstr ""
  6520. #. TRANS: Text shown when issuing the command "on" successfully.
  6521. #: lib/command.php:710
  6522. msgid "Notification on."
  6523. msgstr ""
  6524. #. TRANS: Error text shown when the command "on" fails for an unknown reason.
  6525. #: lib/command.php:713
  6526. msgid "Can't turn on notification."
  6527. msgstr ""
  6528. #. TRANS: Error text shown when issuing the login command while login is disabled.
  6529. #: lib/command.php:727
  6530. msgid "Login command is disabled."
  6531. msgstr ""
  6532. #. TRANS: Text shown after issuing the login command successfully.
  6533. #. TRANS: %s is a logon link..
  6534. #: lib/command.php:740
  6535. #, php-format
  6536. msgid "This link is useable only once and is valid for only 2 minutes: %s."
  6537. msgstr ""
  6538. #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
  6539. #. TRANS: %s is the name of the user the unsubscription was requested for.
  6540. #: lib/command.php:769
  6541. #, php-format
  6542. msgid "Unsubscribed %s."
  6543. msgstr ""
  6544. #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
  6545. #: lib/command.php:787
  6546. msgid "You are not subscribed to anyone."
  6547. msgstr ""
  6548. #. TRANS: Text shown after requesting other users a user is subscribed to.
  6549. #. TRANS: This message supports plural forms. This message is followed by a
  6550. #. TRANS: hard coded space and a comma separated list of subscribed users.
  6551. #: lib/command.php:792
  6552. msgid "You are subscribed to this person:"
  6553. msgid_plural "You are subscribed to these people:"
  6554. msgstr[0] ""
  6555. msgstr[1] ""
  6556. #. TRANS: Text shown after requesting other users that are subscribed to a user
  6557. #. TRANS: (followers) without having any subscribers.
  6558. #: lib/command.php:814
  6559. msgid "No one is subscribed to you."
  6560. msgstr ""
  6561. #. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
  6562. #. TRANS: This message supports plural forms. This message is followed by a
  6563. #. TRANS: hard coded space and a comma separated list of subscribing users.
  6564. #: lib/command.php:819
  6565. msgid "This person is subscribed to you:"
  6566. msgid_plural "These people are subscribed to you:"
  6567. msgstr[0] ""
  6568. msgstr[1] ""
  6569. #. TRANS: Text shown after requesting groups a user is subscribed to without having
  6570. #. TRANS: any group subscriptions.
  6571. #: lib/command.php:841
  6572. msgid "You are not a member of any groups."
  6573. msgstr ""
  6574. #. TRANS: Text shown after requesting groups a user is subscribed to.
  6575. #. TRANS: This message supports plural forms. This message is followed by a
  6576. #. TRANS: hard coded space and a comma separated list of subscribed groups.
  6577. #: lib/command.php:846
  6578. msgid "You are a member of this group:"
  6579. msgid_plural "You are a member of these groups:"
  6580. msgstr[0] ""
  6581. msgstr[1] ""
  6582. #. TRANS: Header line of help text for commands.
  6583. #: lib/command.php:860
  6584. msgctxt "COMMANDHELP"
  6585. msgid "Commands:"
  6586. msgstr ""
  6587. #. TRANS: Help message for IM/SMS command "on".
  6588. #: lib/command.php:862
  6589. msgctxt "COMMANDHELP"
  6590. msgid "turn on notifications"
  6591. msgstr ""
  6592. #. TRANS: Help message for IM/SMS command "off".
  6593. #: lib/command.php:864
  6594. msgctxt "COMMANDHELP"
  6595. msgid "turn off notifications"
  6596. msgstr ""
  6597. #. TRANS: Help message for IM/SMS command "help".
  6598. #: lib/command.php:866
  6599. msgctxt "COMMANDHELP"
  6600. msgid "show this help"
  6601. msgstr ""
  6602. #. TRANS: Help message for IM/SMS command "follow <nickname>".
  6603. #: lib/command.php:868
  6604. msgctxt "COMMANDHELP"
  6605. msgid "subscribe to user"
  6606. msgstr ""
  6607. #. TRANS: Help message for IM/SMS command "groups".
  6608. #: lib/command.php:870
  6609. msgctxt "COMMANDHELP"
  6610. msgid "lists the groups you have joined"
  6611. msgstr ""
  6612. #. TRANS: Help message for IM/SMS command "tag".
  6613. #: lib/command.php:872
  6614. msgctxt "COMMANDHELP"
  6615. msgid "tag a user"
  6616. msgstr ""
  6617. #. TRANS: Help message for IM/SMS command "untag".
  6618. #: lib/command.php:874
  6619. msgctxt "COMMANDHELP"
  6620. msgid "untag a user"
  6621. msgstr ""
  6622. #. TRANS: Help message for IM/SMS command "subscriptions".
  6623. #: lib/command.php:876
  6624. msgctxt "COMMANDHELP"
  6625. msgid "list the people you follow"
  6626. msgstr ""
  6627. #. TRANS: Help message for IM/SMS command "subscribers".
  6628. #: lib/command.php:878
  6629. msgctxt "COMMANDHELP"
  6630. msgid "list the people that follow you"
  6631. msgstr ""
  6632. #. TRANS: Help message for IM/SMS command "leave <nickname>".
  6633. #: lib/command.php:880
  6634. msgctxt "COMMANDHELP"
  6635. msgid "unsubscribe from user"
  6636. msgstr ""
  6637. #. TRANS: Help message for IM/SMS command "d <nickname> <text>".
  6638. #: lib/command.php:882
  6639. msgctxt "COMMANDHELP"
  6640. msgid "direct message to user"
  6641. msgstr ""
  6642. #. TRANS: Help message for IM/SMS command "get <nickname>".
  6643. #: lib/command.php:884
  6644. msgctxt "COMMANDHELP"
  6645. msgid "get last notice from user"
  6646. msgstr ""
  6647. #. TRANS: Help message for IM/SMS command "whois <nickname>".
  6648. #: lib/command.php:886
  6649. msgctxt "COMMANDHELP"
  6650. msgid "get profile info on user"
  6651. msgstr ""
  6652. #. TRANS: Help message for IM/SMS command "lose <nickname>".
  6653. #: lib/command.php:888
  6654. msgctxt "COMMANDHELP"
  6655. msgid "force user to stop following you"
  6656. msgstr ""
  6657. #. TRANS: Help message for IM/SMS command "reply #<notice_id>".
  6658. #: lib/command.php:890
  6659. msgctxt "COMMANDHELP"
  6660. msgid "reply to notice with a given id"
  6661. msgstr ""
  6662. #. TRANS: Help message for IM/SMS command "reply <nickname>".
  6663. #: lib/command.php:892
  6664. msgctxt "COMMANDHELP"
  6665. msgid "reply to the last notice from user"
  6666. msgstr ""
  6667. #. TRANS: Help message for IM/SMS command "join <group>".
  6668. #: lib/command.php:894
  6669. msgctxt "COMMANDHELP"
  6670. msgid "join group"
  6671. msgstr ""
  6672. #. TRANS: Help message for IM/SMS command "login".
  6673. #: lib/command.php:896
  6674. msgctxt "COMMANDHELP"
  6675. msgid "Get a link to login to the web interface"
  6676. msgstr ""
  6677. #. TRANS: Help message for IM/SMS command "drop <group>".
  6678. #: lib/command.php:898
  6679. msgctxt "COMMANDHELP"
  6680. msgid "leave group"
  6681. msgstr ""
  6682. #. TRANS: Help message for IM/SMS command "stats".
  6683. #: lib/command.php:900
  6684. msgctxt "COMMANDHELP"
  6685. msgid "get your stats"
  6686. msgstr ""
  6687. #. TRANS: Help message for IM/SMS command "stop".
  6688. #. TRANS: Help message for IM/SMS command "quit".
  6689. #: lib/command.php:902 lib/command.php:904
  6690. msgctxt "COMMANDHELP"
  6691. msgid "same as 'off'"
  6692. msgstr ""
  6693. #. TRANS: Help message for IM/SMS command "sub <nickname>".
  6694. #: lib/command.php:906
  6695. msgctxt "COMMANDHELP"
  6696. msgid "same as 'follow'"
  6697. msgstr ""
  6698. #. TRANS: Help message for IM/SMS command "unsub <nickname>".
  6699. #: lib/command.php:908
  6700. msgctxt "COMMANDHELP"
  6701. msgid "same as 'leave'"
  6702. msgstr ""
  6703. #. TRANS: Help message for IM/SMS command "last <nickname>".
  6704. #: lib/command.php:910
  6705. msgctxt "COMMANDHELP"
  6706. msgid "same as 'get'"
  6707. msgstr ""
  6708. #. TRANS: Help message for IM/SMS command "on <nickname>".
  6709. #. TRANS: Help message for IM/SMS command "off <nickname>".
  6710. #. TRANS: Help message for IM/SMS command "invite <phone number>".
  6711. #. TRANS: Help message for IM/SMS command "track <word>".
  6712. #. TRANS: Help message for IM/SMS command "untrack <word>".
  6713. #. TRANS: Help message for IM/SMS command "track off".
  6714. #. TRANS: Help message for IM/SMS command "untrack all".
  6715. #. TRANS: Help message for IM/SMS command "tracks".
  6716. #. TRANS: Help message for IM/SMS command "tracking".
  6717. #: lib/command.php:912 lib/command.php:914 lib/command.php:918
  6718. #: lib/command.php:920 lib/command.php:922 lib/command.php:924
  6719. #: lib/command.php:926 lib/command.php:928 lib/command.php:930
  6720. msgctxt "COMMANDHELP"
  6721. msgid "not yet implemented."
  6722. msgstr ""
  6723. #. TRANS: Help message for IM/SMS command "nudge <nickname>".
  6724. #: lib/command.php:916
  6725. msgctxt "COMMANDHELP"
  6726. msgid "remind a user to update."
  6727. msgstr ""
  6728. #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
  6729. #: lib/common.php:32
  6730. msgid "No configuration file found."
  6731. msgstr ""
  6732. #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
  6733. #. TRANS: Is followed by a list of directories (separated by HTML breaks).
  6734. #: lib/common.php:35
  6735. msgid "I looked for configuration files in the following places:"
  6736. msgstr ""
  6737. #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
  6738. #: lib/common.php:38
  6739. msgid "You may wish to run the installer to fix this."
  6740. msgstr ""
  6741. #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
  6742. #. TRANS: The text is link text that leads to the installer page.
  6743. #: lib/common.php:42
  6744. msgid "Go to the installer."
  6745. msgstr ""
  6746. #. TRANS: Name for an anonymous application in application list.
  6747. #: lib/connectedappslist.php:102
  6748. msgid "Unknown application"
  6749. msgstr ""
  6750. #. TRANS: Message has a leading space and a trailing space. Used in application list.
  6751. #. TRANS: Before this message the application name is put, behind it the organisation that manages it.
  6752. #: lib/connectedappslist.php:110
  6753. msgid " by "
  6754. msgstr ""
  6755. #. TRANS: Application access type
  6756. #: lib/connectedappslist.php:118
  6757. msgid "read-write"
  6758. msgstr ""
  6759. #. TRANS: Application access type
  6760. #: lib/connectedappslist.php:120
  6761. msgid "read-only"
  6762. msgstr ""
  6763. #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only")
  6764. #: lib/connectedappslist.php:126
  6765. #, php-format
  6766. msgid "Approved %1$s - \"%2$s\" access."
  6767. msgstr ""
  6768. #. TRANS: Access token in the application list.
  6769. #. TRANS: %s are the first 7 characters of the access token.
  6770. #: lib/connectedappslist.php:141
  6771. #, php-format
  6772. msgid "Access token starting with: %s"
  6773. msgstr ""
  6774. #. TRANS: Button label in application list to revoke access to user data.
  6775. #: lib/connectedappslist.php:157
  6776. msgctxt "BUTTON"
  6777. msgid "Revoke"
  6778. msgstr ""
  6779. #. TRANS: Page title for when a database error occurs.
  6780. #: lib/dberroraction.php:60
  6781. msgid "Database error"
  6782. msgstr ""
  6783. #. TRANS: Menu item in default local navigation panel.
  6784. #. TRANS: Menu item in search group navigation panel.
  6785. #: lib/defaultlocalnav.php:65 lib/publicgroupnav.php:63
  6786. msgctxt "MENU"
  6787. msgid "Public"
  6788. msgstr ""
  6789. #. TRANS: Menu item in default local navigation panel.
  6790. #. TRANS: Menu item title in local navigation menu.
  6791. #: lib/defaultlocalnav.php:79 lib/subgroupnav.php:136
  6792. msgctxt "MENU"
  6793. msgid "Lists"
  6794. msgstr ""
  6795. #. TRANS: Description of form for deleting a user.
  6796. #: lib/deleteuserform.php:75
  6797. msgid "Delete this user"
  6798. msgstr ""
  6799. #: lib/emptypkeyvalueexception.php:37
  6800. #, php-format
  6801. msgid "Empty primary key (%1$s) value was given to query for a \"%2$s\" object"
  6802. msgstr ""
  6803. #. TRANS: Page title after an AJAX error occurs on the send notice page.
  6804. #: lib/erroraction.php:114
  6805. msgid "Ajax Error"
  6806. msgstr ""
  6807. #. TRANS: Feed type name.
  6808. #: lib/feed.php:93
  6809. msgid "RSS 1.0"
  6810. msgstr ""
  6811. #. TRANS: Feed type name.
  6812. #: lib/feed.php:96
  6813. msgid "RSS 2.0"
  6814. msgstr ""
  6815. #. TRANS: Feed type name.
  6816. #: lib/feed.php:99
  6817. msgid "Atom"
  6818. msgstr ""
  6819. #. TRANS: Feed type name. FOAF stands for Friend of a Friend.
  6820. #: lib/feed.php:102
  6821. msgid "FOAF"
  6822. msgstr ""
  6823. #. TRANS: Feed type name. See http://activitystrea.ms/
  6824. #: lib/feed.php:105
  6825. msgid "Activity Streams"
  6826. msgstr ""
  6827. #. TRANS: Client exception thrown when an imported feed does not have an author.
  6828. #: lib/feedimporter.php:82
  6829. msgid "No author in the feed."
  6830. msgstr ""
  6831. #. TRANS: Client exception thrown when an imported feed does not have an author that
  6832. #. TRANS: can be associated with a user.
  6833. #: lib/feedimporter.php:91
  6834. msgid "Cannot import without a user."
  6835. msgstr ""
  6836. #. TRANS: Header for feed links (h2).
  6837. #: lib/feedlist.php:67
  6838. msgid "Feeds"
  6839. msgstr ""
  6840. #: lib/filenotfoundexception.php:40
  6841. msgid "File not found in filesystem."
  6842. msgstr ""
  6843. #: lib/filenotstoredlocallyexception.php:13
  6844. msgid "Requested local URL for a file that is not stored locally."
  6845. msgstr ""
  6846. #. TRANS: List element on gallery action page to show all tags.
  6847. #: lib/galleryaction.php:68
  6848. msgctxt "TAGS"
  6849. msgid "All"
  6850. msgstr ""
  6851. #. TRANS: Dropdown field label on gallery action page for a list containing tags.
  6852. #: lib/galleryaction.php:79
  6853. msgid "Tag"
  6854. msgstr ""
  6855. #. TRANS: Dropdown field title on gallery action page for a list containing tags.
  6856. #: lib/galleryaction.php:81
  6857. msgid "Choose a tag to narrow list."
  6858. msgstr ""
  6859. #. TRANS: Description on form for granting a role.
  6860. #: lib/grantroleform.php:88
  6861. #, php-format
  6862. msgid "Grant this user the \"%s\" role"
  6863. msgstr ""
  6864. #. TRANS: Header for mini list of group members on a group page (h2).
  6865. #: lib/groupaction.php:137
  6866. msgid "Members"
  6867. msgstr ""
  6868. #. TRANS: Link to all group members from mini list of group members if group has more than n members.
  6869. #: lib/groupaction.php:158 lib/groupaction.php:247
  6870. msgid "All members"
  6871. msgstr ""
  6872. #. TRANS: Header for mini list of users with a pending membership request on a group page (h2).
  6873. #: lib/groupaction.php:195
  6874. msgid "Pending"
  6875. msgstr ""
  6876. #. TRANS: Header for mini list of users that are blocked in a group page (h2).
  6877. #: lib/groupaction.php:226
  6878. msgid "Blocked"
  6879. msgstr ""
  6880. #. TRANS: Title for list of group administrators on a group page.
  6881. #: lib/groupadminsection.php:23
  6882. msgctxt "TITLE"
  6883. msgid "Admins"
  6884. msgstr ""
  6885. #. TRANS: Button text for the form that will block a user from a group.
  6886. #: lib/groupblockform.php:124
  6887. msgctxt "BUTTON"
  6888. msgid "Block"
  6889. msgstr ""
  6890. #. TRANS: Submit button title.
  6891. #: lib/groupblockform.php:128
  6892. msgctxt "TOOLTIP"
  6893. msgid "Block this user so that they can no longer post messages to it."
  6894. msgstr ""
  6895. #. TRANS: Field title on group edit form.
  6896. #: lib/groupeditform.php:166
  6897. msgid "URL of the homepage or blog of the group or topic."
  6898. msgstr ""
  6899. #. TRANS: Text area title for group description when there is no text limit.
  6900. #: lib/groupeditform.php:172
  6901. msgid "Describe the group or topic."
  6902. msgstr ""
  6903. #. TRANS: Text area title for group description.
  6904. #. TRANS: %d is the number of characters available for the description.
  6905. #: lib/groupeditform.php:176
  6906. #, php-format
  6907. msgid "Describe the group or topic in %d character or less."
  6908. msgid_plural "Describe the group or topic in %d characters or less."
  6909. msgstr[0] ""
  6910. msgstr[1] ""
  6911. #. TRANS: Field title on group edit form.
  6912. #: lib/groupeditform.php:191
  6913. msgid ""
  6914. "Location for the group, if any, like \"City, State (or Region), Country\"."
  6915. msgstr ""
  6916. #. TRANS: Field label on group edit form.
  6917. #: lib/groupeditform.php:197
  6918. msgid "Aliases"
  6919. msgstr ""
  6920. #. TRANS: Input field title for group aliases.
  6921. #. TRANS: %d is the maximum number of group aliases available.
  6922. #: lib/groupeditform.php:202
  6923. #, php-format
  6924. msgid ""
  6925. "Extra nicknames for the group, separated with commas or spaces. Maximum %d "
  6926. "alias allowed."
  6927. msgid_plural ""
  6928. "Extra nicknames for the group, separated with commas or spaces. Maximum %d "
  6929. "aliases allowed."
  6930. msgstr[0] ""
  6931. msgstr[1] ""
  6932. #. TRANS: Checkbox field title on group edit form to mark a group private.
  6933. #: lib/groupeditform.php:214
  6934. msgid ""
  6935. "New members must be approved by admin and all posts are forced to be private."
  6936. msgstr ""
  6937. #. TRANS: Indicator in group members list that this user is a group administrator.
  6938. #: lib/groupmemberlistitem.php:21
  6939. msgctxt "GROUPADMIN"
  6940. msgid "Admin"
  6941. msgstr ""
  6942. #. TRANS: Exception text shown when no profile can be found for a group.
  6943. #. TRANS: %1$s is a group nickname, $2$d is a group profile_id (number).
  6944. #: lib/groupnoprofileexception.php:58
  6945. #, php-format
  6946. msgid "Group \"%1$s\" (%2$d) has no profile record."
  6947. msgstr ""
  6948. #. TRANS: Group actions header (h2). Text hidden by default.
  6949. #: lib/groupprofileblock.php:103
  6950. msgid "Group actions"
  6951. msgstr ""
  6952. #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
  6953. #. TRANS: %s is the nickname of the group.
  6954. #: lib/groupprofileblock.php:130
  6955. #, php-format
  6956. msgctxt "TOOLTIP"
  6957. msgid "Edit %s group properties"
  6958. msgstr ""
  6959. #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
  6960. #. TRANS: %s is the nickname of the group.
  6961. #: lib/groupprofileblock.php:139
  6962. #, php-format
  6963. msgctxt "TOOLTIP"
  6964. msgid "Add or edit %s logo"
  6965. msgstr ""
  6966. #. TRANS: Link text for link on user profile.
  6967. #: lib/groupprofileblock.php:141
  6968. msgctxt "MENU"
  6969. msgid "Logo"
  6970. msgstr ""
  6971. #. TRANS: Title for groups with the most members section.
  6972. #: lib/groupsbymemberssection.php:71
  6973. msgid "Popular groups"
  6974. msgstr ""
  6975. #. TRANS: Title for groups with the most posts section.
  6976. #: lib/groupsbypostssection.php:71
  6977. msgid "Active groups"
  6978. msgstr ""
  6979. #. TRANS: Link description for seeing all groups.
  6980. #. TRANS: Link description for seeing all lists.
  6981. #: lib/groupsnav.php:89 lib/listsnav.php:86
  6982. msgid "See all"
  6983. msgstr ""
  6984. #. TRANS: Link title for seeing all groups.
  6985. #: lib/groupsnav.php:91
  6986. msgid "See all groups you belong to."
  6987. msgstr ""
  6988. #. TRANS: Menu item title in personal group navigation menu.
  6989. #. TRANS: %s is a username.
  6990. #: lib/homestubnav.php:60
  6991. msgid "Back to top"
  6992. msgstr ""
  6993. #. TRANS: Client exception 406
  6994. #: lib/htmloutputter.php:106
  6995. msgid "This page is not available in a media type you accept"
  6996. msgstr ""
  6997. #. TRANS: Exception. %s is the URL we tried to GET.
  6998. #: lib/httpclient.php:205 lib/httpclient.php:238
  6999. #, php-format
  7000. msgid "Could not GET URL %s."
  7001. msgstr ""
  7002. #. TRANS: Exception thrown when trying to upload an unsupported image file format.
  7003. #: lib/imagefile.php:70
  7004. msgid "Unsupported image format."
  7005. msgstr ""
  7006. #: lib/imagefile.php:118
  7007. msgid "File without filename could not get a thumbnail source."
  7008. msgstr ""
  7009. #: lib/imagefile.php:133
  7010. msgid "Unsupported media format."
  7011. msgstr ""
  7012. #. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
  7013. #: lib/imagefile.php:256
  7014. msgid "Lost our file."
  7015. msgstr ""
  7016. #. TRANS: Exception thrown when trying to resize an unknown file type.
  7017. #. TRANS: Exception thrown when trying resize an unknown file type.
  7018. #: lib/imagefile.php:334 lib/imagefile.php:393
  7019. msgid "Unknown file type"
  7020. msgstr ""
  7021. #. TRANS: Body text for confirmation code e-mail.
  7022. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename,
  7023. #. TRANS: %3$s is the display name of an IM plugin.
  7024. #: lib/implugin.php:255
  7025. #, php-format
  7026. msgid ""
  7027. "User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If "
  7028. "that is true, you can confirm by clicking on this URL: %4$s . (If you cannot "
  7029. "click it, copy-and-paste it into the address bar of your browser). If that "
  7030. "user is not you, or if you did not request this confirmation, just ignore "
  7031. "this message."
  7032. msgstr ""
  7033. #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox.
  7034. #. TRANS: %d is the unknown inbox ID (number).
  7035. #: lib/implugin.php:343
  7036. #, php-format
  7037. msgid "Unknown inbox source %d."
  7038. msgstr ""
  7039. #. TRANS: Message given when a status is too long. %1$s is the maximum number of characters,
  7040. #. TRANS: %2$s is the number of characters sent (used for plural).
  7041. #: lib/implugin.php:493
  7042. #, php-format
  7043. msgid "Message too long - maximum is %1$d character, you sent %2$d."
  7044. msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
  7045. msgstr[0] ""
  7046. msgstr[1] ""
  7047. #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites.
  7048. #: lib/implugin.php:625
  7049. msgid "Queueing must be enabled to use IM plugins."
  7050. msgstr ""
  7051. #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method.
  7052. #: lib/implugin.php:630
  7053. msgid "Transport cannot be null."
  7054. msgstr ""
  7055. #: lib/invalidfilenameexception.php:50
  7056. msgid "Invalid filename."
  7057. msgstr ""
  7058. #. TRANS: Default button text for inviting more users to the StatusNet instance.
  7059. #: lib/invitebuttonsection.php:56
  7060. msgctxt "BUTTON"
  7061. msgid "Invite more people"
  7062. msgstr ""
  7063. #. TRANS: Form legend.
  7064. #: lib/inviteform.php:85
  7065. msgid "Invite collegues"
  7066. msgstr ""
  7067. #. TRANS: Field label for a list of e-mail addresses.
  7068. #: lib/inviteform.php:100
  7069. msgid "Email addresses"
  7070. msgstr ""
  7071. #. TRANS: Field title for a list of e-mail addresses.
  7072. #: lib/inviteform.php:103
  7073. msgid "Addresses of friends to invite (one per line)."
  7074. msgstr ""
  7075. #. TRANS: Field label for a personal message to send to invitees.
  7076. #: lib/inviteform.php:109
  7077. msgid "Personal message"
  7078. msgstr ""
  7079. #. TRANS: Field title for a personal message to send to invitees.
  7080. #: lib/inviteform.php:112
  7081. msgid "Optionally add a personal message to the invitation."
  7082. msgstr ""
  7083. #. TRANS: Send button for inviting friends
  7084. #. TRANS: Button text for sending notice.
  7085. #: lib/inviteform.php:128 lib/noticeform.php:307
  7086. msgctxt "BUTTON"
  7087. msgid "Send"
  7088. msgstr ""
  7089. #. TRANS: Submit button title.
  7090. #: lib/inviteform.php:131
  7091. msgid "Send invitations."
  7092. msgstr ""
  7093. #. TRANS: Button text for joining a group.
  7094. #: lib/joinform.php:103
  7095. msgctxt "BUTTON"
  7096. msgid "Join"
  7097. msgstr ""
  7098. #. TRANS: Button text on form to leave a group.
  7099. #: lib/leaveform.php:104
  7100. msgctxt "BUTTON"
  7101. msgid "Leave"
  7102. msgstr ""
  7103. #. TRANS: Link title for seeing all lists.
  7104. #: lib/listsnav.php:88
  7105. msgid "See all lists you have created."
  7106. msgstr ""
  7107. #. TRANS: Menu item for logging in to the StatusNet site.
  7108. #. TRANS: Menu item in primary navigation panel.
  7109. #: lib/logingroupnav.php:64 lib/primarynav.php:82
  7110. msgctxt "MENU"
  7111. msgid "Login"
  7112. msgstr ""
  7113. #. TRANS: Title for menu item for logging in to the StatusNet site.
  7114. #: lib/logingroupnav.php:66
  7115. msgid "Login with a username and password"
  7116. msgstr ""
  7117. #. TRANS: Menu item for registering with the StatusNet site.
  7118. #: lib/logingroupnav.php:73
  7119. msgctxt "MENU"
  7120. msgid "Register"
  7121. msgstr ""
  7122. #. TRANS: Title for menu item for registering with the StatusNet site.
  7123. #: lib/logingroupnav.php:75
  7124. msgid "Sign up for a new account"
  7125. msgstr ""
  7126. #. TRANS: Subject of new-subscriber notification e-mail.
  7127. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
  7128. #. TRANS: Main body of new-subscriber notification e-mail.
  7129. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename.
  7130. #: lib/mail.php:214 lib/mail.php:220
  7131. #, php-format
  7132. msgid "%1$s is now following you on %2$s."
  7133. msgstr ""
  7134. #. TRANS: Subject of pending new-subscriber notification e-mail.
  7135. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
  7136. #: lib/mail.php:254
  7137. #, php-format
  7138. msgid "%1$s would like to listen to your notices on %2$s."
  7139. msgstr ""
  7140. #. TRANS: Main body of pending new-subscriber notification e-mail.
  7141. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename.
  7142. #: lib/mail.php:261
  7143. #, php-format
  7144. msgid ""
  7145. "%1$s would like to listen to your notices on %2$s. You may approve or reject "
  7146. "their subscription at %3$s"
  7147. msgstr ""
  7148. #. TRANS: Common footer block for StatusNet notification emails.
  7149. #. TRANS: %1$s is the StatusNet sitename,
  7150. #. TRANS: %2$s is a link to the addressed user's e-mail settings.
  7151. #: lib/mail.php:280
  7152. #, php-format
  7153. msgid ""
  7154. "Faithfully yours,\n"
  7155. "%1$s.\n"
  7156. "\n"
  7157. "----\n"
  7158. "Change your email address or notification options at %2$s"
  7159. msgstr ""
  7160. #. TRANS: Profile info line in notification e-mail.
  7161. #. TRANS: %s is a URL.
  7162. #: lib/mail.php:305
  7163. #, php-format
  7164. msgid "Profile: %s"
  7165. msgstr ""
  7166. #. TRANS: Profile info line in notification e-mail.
  7167. #. TRANS: %s is biographical information.
  7168. #: lib/mail.php:319
  7169. #, php-format
  7170. msgid "Bio: %s"
  7171. msgstr ""
  7172. #. TRANS: This is a paragraph in a new-subscriber e-mail.
  7173. #. TRANS: %s is a URL where the subscriber can be reported as abusive.
  7174. #: lib/mail.php:329
  7175. #, php-format
  7176. msgid ""
  7177. "If you believe this account is being used abusively, you can block them from "
  7178. "your subscribers list and report as spam to site administrators at %s."
  7179. msgstr ""
  7180. #. TRANS: Subject of notification mail for new posting email address.
  7181. #. TRANS: %s is the StatusNet sitename.
  7182. #: lib/mail.php:357
  7183. #, php-format
  7184. msgid "New email address for posting to %s"
  7185. msgstr ""
  7186. #. TRANS: Body of notification mail for new posting email address.
  7187. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
  7188. #. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
  7189. #: lib/mail.php:363
  7190. #, php-format
  7191. msgid ""
  7192. "You have a new posting address on %1$s.\n"
  7193. "\n"
  7194. "Send email to %2$s to post new messages.\n"
  7195. "\n"
  7196. "More email instructions at %3$s."
  7197. msgstr ""
  7198. #. TRANS: Subject line for SMS-by-email notification messages.
  7199. #. TRANS: %s is the posting user's nickname.
  7200. #: lib/mail.php:499
  7201. #, php-format
  7202. msgid "%s status"
  7203. msgstr ""
  7204. #. TRANS: Subject line for SMS-by-email address confirmation message.
  7205. #: lib/mail.php:525
  7206. msgid "SMS confirmation"
  7207. msgstr ""
  7208. #. TRANS: Main body heading for SMS-by-email address confirmation message.
  7209. #. TRANS: %s is the addressed user's nickname.
  7210. #: lib/mail.php:529
  7211. #, php-format
  7212. msgid "%s: confirm you own this phone number with this code:"
  7213. msgstr ""
  7214. #. TRANS: Subject for 'nudge' notification email.
  7215. #. TRANS: %s is the nudging user.
  7216. #: lib/mail.php:550
  7217. #, php-format
  7218. msgid "You have been nudged by %s"
  7219. msgstr ""
  7220. #. TRANS: Body for 'nudge' notification email.
  7221. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
  7222. #. TRANS: %3$s is a URL to post notices at.
  7223. #: lib/mail.php:557
  7224. #, php-format
  7225. msgid ""
  7226. "%1$s (%2$s) is wondering what you are up to these days and is inviting you "
  7227. "to post some news.\n"
  7228. "\n"
  7229. "So let's hear from you :)\n"
  7230. "\n"
  7231. "%3$s\n"
  7232. "\n"
  7233. "Don't reply to this email; it won't get to them."
  7234. msgstr ""
  7235. #. TRANS: Subject for direct-message notification email.
  7236. #. TRANS: %s is the sending user's nickname.
  7237. #: lib/mail.php:602
  7238. #, php-format
  7239. msgid "New private message from %s"
  7240. msgstr ""
  7241. #. TRANS: Body for direct-message notification email.
  7242. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
  7243. #. TRANS: %3$s is the message content, %4$s a URL to the message,
  7244. #: lib/mail.php:609
  7245. #, php-format
  7246. msgid ""
  7247. "%1$s (%2$s) sent you a private message:\n"
  7248. "\n"
  7249. "------------------------------------------------------\n"
  7250. "%3$s\n"
  7251. "------------------------------------------------------\n"
  7252. "\n"
  7253. "You can reply to their message here:\n"
  7254. "\n"
  7255. "%4$s\n"
  7256. "\n"
  7257. "Don't reply to this email; it won't get to them."
  7258. msgstr ""
  7259. #. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
  7260. #: lib/mail.php:668
  7261. #, php-format
  7262. msgid ""
  7263. "The full conversation can be read here:\n"
  7264. "\n"
  7265. "\t%s"
  7266. msgstr ""
  7267. #. TRANS: E-mail subject for notice notification.
  7268. #. TRANS: %1$s is the "fancy name" for a profile.
  7269. #: lib/mail.php:676
  7270. #, php-format
  7271. msgid "%1$s sent a notice to your attention"
  7272. msgstr ""
  7273. #. TRANS: Body of @-reply notification e-mail.
  7274. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename,
  7275. #. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
  7276. #. TRANS: %5$s is the text "The full conversation can be read here:" and a URL to the full conversion if it exists (otherwise empty),
  7277. #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user,
  7278. #: lib/mail.php:683
  7279. #, php-format
  7280. msgid ""
  7281. "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
  7282. "\n"
  7283. "The notice is here:\n"
  7284. "\n"
  7285. "\t%3$s\n"
  7286. "\n"
  7287. "It reads:\n"
  7288. "\n"
  7289. "\t%4$s\n"
  7290. "\n"
  7291. "%5$sYou can reply back here:\n"
  7292. "\n"
  7293. "\t%6$s\n"
  7294. "\n"
  7295. "The list of all @-replies for you here:\n"
  7296. "\n"
  7297. "%7$s"
  7298. msgstr ""
  7299. #. TRANS: Subject of group join notification e-mail.
  7300. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
  7301. #: lib/mail.php:754
  7302. #, php-format
  7303. msgid "%1$s has joined your group %2$s on %3$s"
  7304. msgstr ""
  7305. #. TRANS: Main body of group join notification e-mail.
  7306. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
  7307. #. TRANS: %4$s is a block of profile info about the subscriber.
  7308. #. TRANS: %5$s is a link to the addressed user's e-mail settings.
  7309. #: lib/mail.php:764
  7310. #, php-format
  7311. msgid "%1$s has joined your group %2$s on %3$s."
  7312. msgstr ""
  7313. #. TRANS: Subject of pending group join request notification e-mail.
  7314. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
  7315. #: lib/mail.php:801
  7316. #, php-format
  7317. msgid "%1$s wants to join your group %2$s on %3$s."
  7318. msgstr ""
  7319. #. TRANS: Main body of pending group join request notification e-mail.
  7320. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
  7321. #. TRANS: %4$s is the URL to the moderation queue page.
  7322. #: lib/mail.php:809
  7323. #, php-format
  7324. msgid ""
  7325. "%1$s would like to join your group %2$s on %3$s. You may approve or reject "
  7326. "their group membership at %4$s"
  7327. msgstr ""
  7328. #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed.
  7329. #: lib/mailhandler.php:37
  7330. msgid "Could not parse message."
  7331. msgstr ""
  7332. #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user.
  7333. #: lib/mailhandler.php:43
  7334. msgid "Not a registered user."
  7335. msgstr ""
  7336. #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address.
  7337. #: lib/mailhandler.php:48
  7338. msgid "Sorry, that is not your incoming email address."
  7339. msgstr ""
  7340. #. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed.
  7341. #: lib/mailhandler.php:53
  7342. msgid "Sorry, no incoming email allowed."
  7343. msgstr ""
  7344. #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type.
  7345. #. TRANS: %s is the unsupported type.
  7346. #: lib/mailhandler.php:234
  7347. #, php-format
  7348. msgid "Unsupported message type: %s."
  7349. msgstr ""
  7350. #. TRANS: Form legend for form to make a user a group admin.
  7351. #: lib/makeadminform.php:87
  7352. msgid "Make user an admin of the group"
  7353. msgstr ""
  7354. #. TRANS: Button text for the form that will make a user administrator.
  7355. #: lib/makeadminform.php:120
  7356. msgctxt "BUTTON"
  7357. msgid "Make Admin"
  7358. msgstr ""
  7359. #. TRANS: Submit button title.
  7360. #: lib/makeadminform.php:124
  7361. msgctxt "TOOLTIP"
  7362. msgid "Make this user an admin."
  7363. msgstr ""
  7364. #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
  7365. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
  7366. #: lib/managedaction.php:83
  7367. #, php-format
  7368. msgid ""
  7369. "The server was unable to handle that much POST data (%s MiB) due to its "
  7370. "current configuration."
  7371. msgstr ""
  7372. #. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
  7373. #: lib/mediafile.php:189 lib/mediafile.php:245
  7374. msgid "There was a database error while saving your file. Please try again."
  7375. msgstr ""
  7376. #. TRANS: Number of megabytes. %d is the number.
  7377. #: lib/mediafile.php:260
  7378. #, php-format
  7379. msgid "%dMB"
  7380. msgid_plural "%dMB"
  7381. msgstr[0] ""
  7382. msgstr[1] ""
  7383. #. TRANS: Number of kilobytes. %d is the number.
  7384. #: lib/mediafile.php:264
  7385. #, php-format
  7386. msgid "%dkB"
  7387. msgid_plural "%dkB"
  7388. msgstr[0] ""
  7389. msgstr[1] ""
  7390. #. TRANS: Number of bytes. %d is the number.
  7391. #: lib/mediafile.php:267
  7392. #, php-format
  7393. msgid "%dB"
  7394. msgid_plural "%dB"
  7395. msgstr[0] ""
  7396. msgstr[1] ""
  7397. #: lib/mediafile.php:335
  7398. #, php-format
  7399. msgid "That file is too big. The maximum file size is %s."
  7400. msgstr ""
  7401. #. TRANS: Client exception thrown when a file upload operation fails because the file could
  7402. #. TRANS: not be moved from the temporary folder to the permanent file location.
  7403. #. UX: too specific
  7404. #. TRANS: Client exception thrown when a file upload operation fails because the file could
  7405. #. TRANS: not be moved from the temporary folder to the permanent file location.
  7406. #: lib/mediafile.php:390 lib/mediafile.php:435 lib/mediafile.php:459
  7407. msgid "File could not be moved to destination directory."
  7408. msgstr ""
  7409. #: lib/mediafile.php:564
  7410. msgid "Could not determine file's MIME type."
  7411. msgstr ""
  7412. #. TRANS: Client exception thrown trying to upload a forbidden MIME type.
  7413. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of
  7414. #. TRANS: the MIME type that was denied.
  7415. #: lib/mediafile.php:606
  7416. #, php-format
  7417. msgid ""
  7418. "\"%1$s\" is not a supported file type on this server. Try using another %2$s "
  7419. "format."
  7420. msgstr ""
  7421. #. TRANS: Client exception thrown trying to upload a forbidden MIME type.
  7422. #. TRANS: %s is the file type that was denied.
  7423. #: lib/mediafile.php:611
  7424. #, php-format
  7425. msgid "\"%s\" is not a supported file type on this server."
  7426. msgstr ""
  7427. #: lib/methodnotimplementedexception.php:48
  7428. #, php-format
  7429. msgid "Method %s not implemented"
  7430. msgstr ""
  7431. #. TRANS: Link description to show more items in a list.
  7432. #: lib/moremenu.php:98
  7433. msgid "More ▼"
  7434. msgstr ""
  7435. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7436. #: lib/nickname.php:275
  7437. msgid "Nickname must have only lowercase letters and numbers and no spaces."
  7438. msgstr ""
  7439. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7440. #: lib/nickname.php:288
  7441. msgid "Nickname cannot be empty."
  7442. msgstr ""
  7443. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7444. #: lib/nickname.php:301
  7445. #, php-format
  7446. msgid "Nickname cannot be more than %d character long."
  7447. msgid_plural "Nickname cannot be more than %d characters long."
  7448. msgstr[0] ""
  7449. msgstr[1] ""
  7450. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7451. #: lib/nickname.php:313
  7452. msgid "Nickname is disallowed through blacklist."
  7453. msgstr ""
  7454. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7455. #: lib/nickname.php:322
  7456. msgid "Nickname is identical to system path names."
  7457. msgstr ""
  7458. #. TRANS: Validation error in form for registration, profile and group settings, etc.
  7459. #: lib/nickname.php:344
  7460. msgid "Nickname is already in use on this server."
  7461. msgstr ""
  7462. #: lib/nohttpresponseexception.php:41
  7463. #, php-format
  7464. msgid "No HTTP response from URL %s."
  7465. msgstr ""
  7466. #: lib/noobjecttypeexception.php:39
  7467. #, php-format
  7468. msgid "Notice has no object type."
  7469. msgstr ""
  7470. #: lib/noparentnoticeexception.php:39
  7471. #, php-format
  7472. msgid "No parent for notice with ID \"%s\"."
  7473. msgstr ""
  7474. #. TRANS: Exception text shown when no profile can be found for a user.
  7475. #. TRANS: %u is a profile ID (number).
  7476. #: lib/noprofileexception.php:53
  7477. #, php-format
  7478. msgid "There is no profile with id==%u"
  7479. msgstr ""
  7480. #: lib/noqueuehandlerexception.php:39
  7481. #, php-format
  7482. msgid "No queue handler found for transport %s."
  7483. msgstr ""
  7484. #: lib/noresultexception.php:40
  7485. #, php-format
  7486. msgid "No result found on %s lookup."
  7487. msgstr ""
  7488. #: lib/noroutemapexception.php:39
  7489. #, php-format
  7490. msgid "Could not find a handler for the given path %s."
  7491. msgstr ""
  7492. #: lib/nosuchgroupexception.php:65
  7493. msgid "No such group found."
  7494. msgstr ""
  7495. #: lib/nosuchuserexception.php:65
  7496. msgid "No such user found."
  7497. msgstr ""
  7498. #. TRANS: Form legend for notice form.
  7499. #: lib/noticeform.php:188
  7500. msgid "Send a notice"
  7501. msgstr ""
  7502. #: lib/noticeform.php:194
  7503. msgid "Write a reply..."
  7504. msgstr ""
  7505. #: lib/noticeform.php:197
  7506. msgid "Share your status..."
  7507. msgstr ""
  7508. #. TRANS: Title for notice label. %s is the user's nickname.
  7509. #: lib/noticeform.php:211
  7510. #, php-format
  7511. msgid "What's up, %s?"
  7512. msgstr ""
  7513. #. TRANS: Input label in notice form for adding an attachment.
  7514. #: lib/noticeform.php:234
  7515. msgid "Attach"
  7516. msgstr ""
  7517. #. TRANS: Title for input field to attach a file to a notice.
  7518. #: lib/noticeform.php:241
  7519. msgid "Attach a file."
  7520. msgstr ""
  7521. #. TRANS: Checkbox label to allow sharing geo location in notices.
  7522. #: lib/noticeform.php:277
  7523. msgid "Share my location"
  7524. msgstr ""
  7525. #. TRANS: Text to not share location for a notice in notice form.
  7526. #: lib/noticeform.php:281
  7527. msgid "Do not share my location"
  7528. msgstr ""
  7529. #. TRANS: Timeout error text for location retrieval in notice form.
  7530. #: lib/noticeform.php:283
  7531. msgid ""
  7532. "Sorry, retrieving your geo location is taking longer than expected, please "
  7533. "try again later"
  7534. msgstr ""
  7535. #. TRANS: Reference to the logged in user in favourite list.
  7536. #: lib/noticelistactorsitem.php:43
  7537. msgctxt "FAVELIST"
  7538. msgid "You"
  7539. msgstr ""
  7540. #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this".
  7541. #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list.
  7542. #: lib/noticelistactorsitem.php:81
  7543. #, php-format
  7544. msgctxt "FAVELIST"
  7545. msgid "%1$s and %2$s"
  7546. msgstr ""
  7547. #. TRANS: Used in coordinates as abbreviation of north.
  7548. #: lib/noticelistitem.php:418
  7549. msgid "N"
  7550. msgstr ""
  7551. #. TRANS: Used in coordinates as abbreviation of south.
  7552. #: lib/noticelistitem.php:420
  7553. msgid "S"
  7554. msgstr ""
  7555. #. TRANS: Used in coordinates as abbreviation of east.
  7556. #: lib/noticelistitem.php:422
  7557. msgid "E"
  7558. msgstr ""
  7559. #. TRANS: Used in coordinates as abbreviation of west.
  7560. #: lib/noticelistitem.php:424
  7561. msgid "W"
  7562. msgstr ""
  7563. #. TRANS: Coordinates message.
  7564. #. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes,
  7565. #. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude,
  7566. #. TRANS: %5$s is longitude degrees, %6$s is longitude minutes,
  7567. #. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude,
  7568. #: lib/noticelistitem.php:431
  7569. #, php-format
  7570. msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
  7571. msgstr ""
  7572. #. TRANS: Followed by geo location.
  7573. #: lib/noticelistitem.php:441
  7574. msgid "at"
  7575. msgstr ""
  7576. #. TRANS: A possible notice source (web interface).
  7577. #: lib/noticelistitem.php:493
  7578. msgctxt "SOURCE"
  7579. msgid "web"
  7580. msgstr ""
  7581. #. TRANS: Followed by notice source.
  7582. #: lib/noticelistitem.php:498
  7583. msgid "from"
  7584. msgstr ""
  7585. #. TRANS: Addition in notice list item for single-notice view.
  7586. #: lib/noticelistitem.php:565
  7587. msgid "permalink"
  7588. msgstr ""
  7589. #. TRANS: A link to the conversation view of a notice, on the local server.
  7590. #: lib/noticelistitem.php:580
  7591. msgid "In conversation"
  7592. msgstr ""
  7593. #. TRANS: Link title in notice list item to reply to a notice.
  7594. #: lib/noticelistitem.php:600
  7595. msgid "Reply to this notice."
  7596. msgstr ""
  7597. #. TRANS: Link text in notice list item to reply to a notice.
  7598. #: lib/noticelistitem.php:602
  7599. msgid "Reply"
  7600. msgstr ""
  7601. #. TRANS: Link title in notice list item to delete a notice.
  7602. #: lib/noticelistitem.php:628
  7603. msgid "Delete this notice from the timeline."
  7604. msgstr ""
  7605. #. TRANS: Exception text shown when no uploaded media was provided in POST
  7606. #. TRANS: %s is the HTML input field name.
  7607. #: lib/nouploadedmediaexception.php:26
  7608. #, php-format
  7609. msgid "There is no uploaded media for input field \"%s\"."
  7610. msgstr ""
  7611. #. TRANS: Form legend of form to nudge/ping another user.
  7612. #: lib/nudgeform.php:111
  7613. msgid "Nudge this user"
  7614. msgstr ""
  7615. #. TRANS: Button text to nudge/ping another user.
  7616. #: lib/nudgeform.php:124
  7617. msgctxt "BUTTON"
  7618. msgid "Nudge"
  7619. msgstr ""
  7620. #. TRANS: Button title to nudge/ping another user.
  7621. #: lib/nudgeform.php:128
  7622. msgid "Send a nudge to this user."
  7623. msgstr ""
  7624. #: lib/passwordhashexception.php:39
  7625. msgid "Password hashing failed."
  7626. msgstr ""
  7627. #. TRANS: Field label for list.
  7628. #: lib/peopletageditform.php:131
  7629. msgctxt "LABEL"
  7630. msgid "List"
  7631. msgstr ""
  7632. #. TRANS: Field title for list.
  7633. #: lib/peopletageditform.php:134
  7634. msgid "Change the list (letters, numbers, -, ., and _ are allowed)."
  7635. msgstr ""
  7636. #. TRANS: Field title for description of list.
  7637. #: lib/peopletageditform.php:141
  7638. msgid "Describe the list or topic."
  7639. msgstr ""
  7640. #. TRANS: Field title for description of list.
  7641. #. TRANS: %d is the maximum number of characters for the description.
  7642. #: lib/peopletageditform.php:145
  7643. #, php-format
  7644. msgid "Describe the list or topic in %d character."
  7645. msgid_plural "Describe the list or topic in %d characters."
  7646. msgstr[0] ""
  7647. msgstr[1] ""
  7648. #. TRANS: Button title to delete a list.
  7649. #: lib/peopletageditform.php:175
  7650. msgid "Delete this list."
  7651. msgstr ""
  7652. #. TRANS: Header in list edit form.
  7653. #: lib/peopletageditform.php:182
  7654. msgid "Add or remove people"
  7655. msgstr ""
  7656. #. TRANS: Header in list edit form.
  7657. #: lib/peopletageditform.php:186
  7658. msgctxt "HEADER"
  7659. msgid "Search"
  7660. msgstr ""
  7661. #. TRANS: Menu item in list navigation panel.
  7662. #: lib/peopletaggroupnav.php:114
  7663. msgctxt "MENU"
  7664. msgid "List"
  7665. msgstr ""
  7666. #. TRANS: Menu item title in list navigation panel.
  7667. #. TRANS: %1$s is a list, %2$s is a nickname.
  7668. #: lib/peopletaggroupnav.php:117 lib/peopletaggroupnav.php:128
  7669. #, php-format
  7670. msgid "%1$s list by %2$s."
  7671. msgstr ""
  7672. #. TRANS: Menu item in list navigation panel.
  7673. #: lib/peopletaggroupnav.php:125
  7674. msgctxt "MENU"
  7675. msgid "Listed"
  7676. msgstr ""
  7677. #. TRANS: Menu item in list navigation panel.
  7678. #. TRANS: Menu item in local navigation menu.
  7679. #: lib/peopletaggroupnav.php:136 lib/subgroupnav.php:97
  7680. msgctxt "MENU"
  7681. msgid "Subscribers"
  7682. msgstr ""
  7683. #. TRANS: Menu item title in list navigation panel.
  7684. #. TRANS: %1$s is a list, %2$s is a nickname.
  7685. #: lib/peopletaggroupnav.php:139
  7686. #, php-format
  7687. msgid "Subscribers to %1$s list by %2$s."
  7688. msgstr ""
  7689. #. TRANS: Menu item in list navigation panel.
  7690. #: lib/peopletaggroupnav.php:149
  7691. msgctxt "MENU"
  7692. msgid "Edit"
  7693. msgstr ""
  7694. #. TRANS: Menu item title in list navigation panel.
  7695. #. TRANS: %s is a list.
  7696. #: lib/peopletaggroupnav.php:152
  7697. #, php-format
  7698. msgid "Edit %s list by you."
  7699. msgstr ""
  7700. #. TRANS: Title for link to edit list settings.
  7701. #: lib/peopletaglistitem.php:136
  7702. msgid "Edit list settings."
  7703. msgstr ""
  7704. #. TRANS: Text for link to edit list settings.
  7705. #: lib/peopletaglistitem.php:138
  7706. msgid "Edit"
  7707. msgstr ""
  7708. #. TRANS: Privacy mode text in list list item for private list.
  7709. #: lib/peopletaglistitem.php:193
  7710. msgctxt "MODE"
  7711. msgid "Private"
  7712. msgstr ""
  7713. #. TRANS: Menu item in the group navigation page.
  7714. #: lib/peopletagnav.php:78
  7715. msgctxt "MENU"
  7716. msgid "List Subscriptions"
  7717. msgstr ""
  7718. #. TRANS: Tooltip for menu item in the group navigation page.
  7719. #. TRANS: %s is a user nickname.
  7720. #: lib/peopletagnav.php:81
  7721. #, php-format
  7722. msgctxt "TOOLTIP"
  7723. msgid "Lists subscribed to by %s."
  7724. msgstr ""
  7725. #. TRANS: Menu item in the group navigation page.
  7726. #. TRANS: %s is a user nickname.
  7727. #: lib/peopletagnav.php:88
  7728. #, php-format
  7729. msgctxt "MENU"
  7730. msgid "Lists with %s"
  7731. msgstr ""
  7732. #. TRANS: Tooltip for menu item in the group navigation page.
  7733. #. TRANS: %s is a user nickname.
  7734. #: lib/peopletagnav.php:91
  7735. #, php-format
  7736. msgctxt "TOOLTIP"
  7737. msgid "Lists with %s."
  7738. msgstr ""
  7739. #. TRANS: Menu item in the group navigation page.
  7740. #. TRANS: %s is a user nickname.
  7741. #: lib/peopletagnav.php:98
  7742. #, php-format
  7743. msgctxt "MENU"
  7744. msgid "Lists by %s"
  7745. msgstr ""
  7746. #. TRANS: Tooltip for menu item in the group navigation page.
  7747. #. TRANS: %s is a user nickname.
  7748. #: lib/peopletagnav.php:101
  7749. #, php-format
  7750. msgctxt "TOOLTIP"
  7751. msgid "Lists by %s."
  7752. msgstr ""
  7753. #. TRANS: Title for section contaning lists with the most subscribers.
  7754. #: lib/peopletagsbysubssection.php:69
  7755. msgid "Popular lists"
  7756. msgstr ""
  7757. #. TRANS: List summary. %1$d is the number of users in the list,
  7758. #. TRANS: %2$d is the number of subscribers to the list.
  7759. #: lib/peopletagsection.php:127
  7760. #, php-format
  7761. msgid "Listed: %1$d Subscribers: %2$d"
  7762. msgstr ""
  7763. #. TRANS: Title for page that displays which lists current user is part of.
  7764. #: lib/peopletagsforusersection.php:68
  7765. #, php-format
  7766. msgid "Lists with you"
  7767. msgstr ""
  7768. #. TRANS: Title for page that displays which lists a user is part of.
  7769. #. TRANS: %s is a profile name.
  7770. #: lib/peopletagsforusersection.php:72
  7771. #, php-format
  7772. msgid "Lists with %s"
  7773. msgstr ""
  7774. #. TRANS: Title for page that displays lists a user has subscribed to.
  7775. #: lib/peopletagsubscriptionssection.php:66
  7776. msgid "List subscriptions"
  7777. msgstr ""
  7778. #. TRANS: Label in lists widget.
  7779. #: lib/peopletagswidget.php:83
  7780. msgctxt "LABEL"
  7781. msgid "Your lists"
  7782. msgstr ""
  7783. #. TRANS: Fieldset legend in lists widget.
  7784. #: lib/peopletagswidget.php:131
  7785. msgctxt "LEGEND"
  7786. msgid "Edit lists"
  7787. msgstr ""
  7788. #. TRANS: Menu item in personal group navigation menu.
  7789. #. TRANS: Menu item in settings navigation panel.
  7790. #. TRANS: Menu item in local navigation menu.
  7791. #: lib/personalgroupnav.php:85 lib/settingsnav.php:74 lib/subgroupnav.php:78
  7792. msgctxt "MENU"
  7793. msgid "Profile"
  7794. msgstr ""
  7795. #. TRANS: Menu item title in personal group navigation menu.
  7796. #: lib/personalgroupnav.php:87
  7797. msgid "Your profile"
  7798. msgstr ""
  7799. #. TRANS: Menu item in personal group navigation menu.
  7800. #: lib/personalgroupnav.php:93
  7801. msgctxt "MENU"
  7802. msgid "Replies"
  7803. msgstr ""
  7804. #. TRANS: Displayed as version information for a plugin if no version information was found.
  7805. #: lib/plugin.php:190
  7806. msgid "Unknown"
  7807. msgstr ""
  7808. #. TRANS: Plugin admin panel controls
  7809. #: lib/plugindisableform.php:90
  7810. msgctxt "plugin"
  7811. msgid "Disable"
  7812. msgstr ""
  7813. #. TRANS: Plugin admin panel controls
  7814. #: lib/pluginenableform.php:112
  7815. msgctxt "plugin"
  7816. msgid "Enable"
  7817. msgstr ""
  7818. #. TRANS: Plugin description for a disabled plugin.
  7819. #: lib/pluginlist.php:195
  7820. msgctxt "plugin-description"
  7821. msgid ""
  7822. "(The plugin description is unavailable when a plugin has been disabled.)"
  7823. msgstr ""
  7824. #. TRANS: Menu item in primary navigation panel.
  7825. #: lib/primarynav.php:58
  7826. msgctxt "MENU"
  7827. msgid "Settings"
  7828. msgstr ""
  7829. #. TRANS: Menu item title in primary navigation panel.
  7830. #: lib/primarynav.php:60
  7831. msgid "Change your personal settings."
  7832. msgstr ""
  7833. #. TRANS: Menu item in primary navigation panel.
  7834. #: lib/primarynav.php:66
  7835. msgctxt "MENU"
  7836. msgid "Admin"
  7837. msgstr ""
  7838. #. TRANS: Menu item title in primary navigation panel.
  7839. #: lib/primarynav.php:68
  7840. msgid "Site configuration."
  7841. msgstr ""
  7842. #. TRANS: Menu item in primary navigation panel.
  7843. #: lib/primarynav.php:74
  7844. msgctxt "MENU"
  7845. msgid "Logout"
  7846. msgstr ""
  7847. #. TRANS: Menu item title in primary navigation panel.
  7848. #: lib/primarynav.php:76
  7849. msgid "Logout from the site."
  7850. msgstr ""
  7851. #. TRANS: Menu item title in primary navigation panel.
  7852. #: lib/primarynav.php:84
  7853. msgid "Login to the site."
  7854. msgstr ""
  7855. #. TRANS: Message when a private stream attemps to be read by unauthorized third party.
  7856. #: lib/privatestreamexception.php:25
  7857. msgid ""
  7858. "This stream is protected and only authorized subscribers may see its "
  7859. "contents."
  7860. msgstr ""
  7861. #: lib/profileaction.php:88
  7862. msgid "This profile has been silenced by site moderators"
  7863. msgstr ""
  7864. #. TRANS: H2 text for user subscription statistics.
  7865. #: lib/profileaction.php:142
  7866. msgid "Following"
  7867. msgstr ""
  7868. #. TRANS: H2 text for user subscriber statistics.
  7869. #: lib/profileaction.php:170
  7870. msgid "Followers"
  7871. msgstr ""
  7872. #. TRANS: H2 text for user statistics.
  7873. #: lib/profileaction.php:204
  7874. msgid "Statistics"
  7875. msgstr ""
  7876. #. TRANS: Label for user statistics.
  7877. #: lib/profileaction.php:212
  7878. msgid "User ID"
  7879. msgstr ""
  7880. #. TRANS: Label for user statistics.
  7881. #: lib/profileaction.php:218
  7882. msgid "Member since"
  7883. msgstr ""
  7884. #. TRANS: Label for user statistics.
  7885. #: lib/profileaction.php:224
  7886. msgid "Notices"
  7887. msgstr ""
  7888. #. TRANS: Label for user statistics.
  7889. #. TRANS: Average count of posts made per day since account registration.
  7890. #: lib/profileaction.php:231
  7891. msgid "Daily average"
  7892. msgstr ""
  7893. #. TRANS: H2 text for user group membership statistics.
  7894. #: lib/profileaction.php:268
  7895. msgid "Groups"
  7896. msgstr ""
  7897. #. TRANS: H2 text for user list membership statistics.
  7898. #: lib/profileaction.php:303
  7899. msgid "Lists"
  7900. msgstr ""
  7901. #. TRANS: Server error displayed when using an unimplemented method.
  7902. #: lib/profileformaction.php:123
  7903. msgid "Unimplemented method."
  7904. msgstr ""
  7905. #. TRANS: Exception text shown when no profile can be found for a user.
  7906. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
  7907. #: lib/profilenoaccturiexception.php:53
  7908. #, php-format
  7909. msgid "Could not get an acct: URI for profile with id==%u"
  7910. msgstr ""
  7911. #. TRANS: Menu item in search group navigation panel.
  7912. #: lib/publicgroupnav.php:70
  7913. msgctxt "MENU"
  7914. msgid "Network"
  7915. msgstr ""
  7916. #. TRANS: Menu item title in search group navigation panel.
  7917. #: lib/publicgroupnav.php:78
  7918. msgid "User groups"
  7919. msgstr ""
  7920. #. TRANS: Menu item in search group navigation panel.
  7921. #: lib/publicgroupnav.php:82
  7922. msgctxt "MENU"
  7923. msgid "Featured"
  7924. msgstr ""
  7925. #. TRANS: Client error displayed when return-to was defined without a target.
  7926. #: lib/redirectingaction.php:93
  7927. msgid "No return-to arguments."
  7928. msgstr ""
  7929. #. TRANS: Description of role revoke form. %s is the role to be revoked.
  7930. #: lib/revokeroleform.php:88
  7931. #, php-format
  7932. msgid "Revoke the \"%s\" role from this user"
  7933. msgstr ""
  7934. #. TRANS: Client error on action trying to visit a non-existing page.
  7935. #: lib/router.php:1106
  7936. msgid "Page not found."
  7937. msgstr ""
  7938. #. TRANS: Title of form to sandbox a user.
  7939. #: lib/sandboxform.php:65
  7940. msgctxt "TITLE"
  7941. msgid "Sandbox"
  7942. msgstr ""
  7943. #. TRANS: Description of form to sandbox a user.
  7944. #: lib/sandboxform.php:76
  7945. msgid "Sandbox this user"
  7946. msgstr ""
  7947. #. TRANS: Fieldset legend for the search form.
  7948. #: lib/searchaction.php:102
  7949. msgid "Search site"
  7950. msgstr ""
  7951. #. TRANS: Used as a field label for the field where one or more keywords
  7952. #. TRANS: for searching can be entered.
  7953. #: lib/searchaction.php:110
  7954. msgid "Keyword(s)"
  7955. msgstr ""
  7956. #. TRANS: Button text for searching site.
  7957. #. TRANS: Button text for search button on search form.
  7958. #. TRANS: Button text to search profiles.
  7959. #: lib/searchaction.php:112 lib/searchform.php:76 lib/togglepeopletag.php:134
  7960. msgctxt "BUTTON"
  7961. msgid "Search"
  7962. msgstr ""
  7963. #. TRANS: Standard search suggestions shown when a search does not give any results.
  7964. #: lib/searchaction.php:125
  7965. msgid ""
  7966. "* Make sure all words are spelled correctly.\n"
  7967. "* Try different keywords.\n"
  7968. "* Try more general keywords.\n"
  7969. "* Try fewer keywords."
  7970. msgstr ""
  7971. #. TRANS: Standard search suggestions shown when a search does not give any results.
  7972. #: lib/searchaction.php:136
  7973. #, php-format
  7974. msgid ""
  7975. "You can also try your search on other engines:\n"
  7976. "\n"
  7977. "* [DuckDuckGo](https://duckduckgo.com/?q=site%%3A%%%%site.server%%%%+%s)\n"
  7978. "* [Ixquick](https://ixquick.com/do/search?query=site%%3A%%%%site.server%%%%+"
  7979. "%s)\n"
  7980. "* [Searx](https://searx.laquadrature.net/?q=site%%3A%%%%site.server%%%%+%s)\n"
  7981. "* [Yahoo!](https://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+"
  7982. "%s)\n"
  7983. msgstr ""
  7984. #. TRANS: Menu item in search group navigation panel.
  7985. #: lib/searchgroupnav.php:74
  7986. msgctxt "MENU"
  7987. msgid "People"
  7988. msgstr ""
  7989. #. TRANS: Menu item title in search group navigation panel.
  7990. #: lib/searchgroupnav.php:76
  7991. msgid "Find people on this site"
  7992. msgstr ""
  7993. #. TRANS: Menu item in search group navigation panel.
  7994. #: lib/searchgroupnav.php:78
  7995. msgctxt "MENU"
  7996. msgid "Notices"
  7997. msgstr ""
  7998. #. TRANS: Menu item title in search group navigation panel.
  7999. #: lib/searchgroupnav.php:80
  8000. msgid "Find content of notices"
  8001. msgstr ""
  8002. #. TRANS: Menu item title in search group navigation panel.
  8003. #: lib/searchgroupnav.php:84
  8004. msgid "Find groups on this site"
  8005. msgstr ""
  8006. #. TRANS: Secondary navigation menu item leading to Terms of Service.
  8007. #: lib/secondarynav.php:67
  8008. msgctxt "MENU"
  8009. msgid "TOS"
  8010. msgstr ""
  8011. #. TRANS: Secondary navigation menu item leading to privacy policy.
  8012. #: lib/secondarynav.php:71
  8013. msgctxt "MENU"
  8014. msgid "Privacy"
  8015. msgstr ""
  8016. #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license.
  8017. #: lib/secondarynav.php:74
  8018. msgctxt "MENU"
  8019. msgid "Source"
  8020. msgstr ""
  8021. #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site.
  8022. #: lib/secondarynav.php:77
  8023. msgctxt "MENU"
  8024. msgid "Version"
  8025. msgstr ""
  8026. #. TRANS: Default title for section/sidebar widget.
  8027. #: lib/section.php:98
  8028. msgid "Untitled section"
  8029. msgstr ""
  8030. #. TRANS: Default "More..." title for section/sidebar widget.
  8031. #: lib/section.php:122
  8032. msgid "More..."
  8033. msgstr ""
  8034. #. TRANS: Label in self tags widget.
  8035. #: lib/selftagswidget.php:41
  8036. msgctxt "LABEL"
  8037. msgid "Tags"
  8038. msgstr ""
  8039. #. TRANS: Header in settings navigation panel.
  8040. #: lib/settingsnav.php:68
  8041. msgctxt "HEADER"
  8042. msgid "Settings"
  8043. msgstr ""
  8044. #. TRANS: Menu item title in settings navigation panel.
  8045. #: lib/settingsnav.php:76
  8046. msgid "Change your profile settings"
  8047. msgstr ""
  8048. #. TRANS: Menu item in settings navigation panel.
  8049. #: lib/settingsnav.php:81
  8050. msgctxt "MENU"
  8051. msgid "Avatar"
  8052. msgstr ""
  8053. #. TRANS: Menu item title in settings navigation panel.
  8054. #: lib/settingsnav.php:83
  8055. msgid "Upload an avatar"
  8056. msgstr ""
  8057. #. TRANS: Menu item in settings navigation panel.
  8058. #: lib/settingsnav.php:88
  8059. msgctxt "MENU"
  8060. msgid "Password"
  8061. msgstr ""
  8062. #. TRANS: Menu item title in settings navigation panel.
  8063. #: lib/settingsnav.php:90
  8064. msgid "Change your password"
  8065. msgstr ""
  8066. #. TRANS: Menu item in settings navigation panel.
  8067. #: lib/settingsnav.php:95
  8068. msgctxt "MENU"
  8069. msgid "Email"
  8070. msgstr ""
  8071. #. TRANS: Menu item title in settings navigation panel.
  8072. #: lib/settingsnav.php:97
  8073. msgid "Change email handling"
  8074. msgstr ""
  8075. #. TRANS: Menu item in settings navigation panel.
  8076. #: lib/settingsnav.php:102
  8077. msgctxt "MENU"
  8078. msgid "URL"
  8079. msgstr ""
  8080. #. TRANS: Menu item title in settings navigation panel.
  8081. #: lib/settingsnav.php:104
  8082. msgid "URL shorteners"
  8083. msgstr ""
  8084. #. TRANS: Menu item in settings navigation panel.
  8085. #: lib/settingsnav.php:116
  8086. msgctxt "MENU"
  8087. msgid "IM"
  8088. msgstr ""
  8089. #. TRANS: Menu item title in settings navigation panel.
  8090. #: lib/settingsnav.php:118
  8091. msgid "Updates by instant messenger (IM)"
  8092. msgstr ""
  8093. #. TRANS: Menu item in settings navigation panel.
  8094. #: lib/settingsnav.php:125
  8095. msgctxt "MENU"
  8096. msgid "SMS"
  8097. msgstr ""
  8098. #. TRANS: Menu item title in settings navigation panel.
  8099. #: lib/settingsnav.php:127
  8100. msgid "Updates by SMS"
  8101. msgstr ""
  8102. #. TRANS: Menu item in settings navigation panel.
  8103. #: lib/settingsnav.php:133
  8104. msgctxt "MENU"
  8105. msgid "Connections"
  8106. msgstr ""
  8107. #. TRANS: Menu item title in settings navigation panel.
  8108. #: lib/settingsnav.php:135
  8109. msgid "Authorized connected applications"
  8110. msgstr ""
  8111. #. TRANS: Menu item in settings navigation panel.
  8112. #: lib/settingsnav.php:141
  8113. msgctxt "MENU"
  8114. msgid "Old school"
  8115. msgstr ""
  8116. #. TRANS: Menu item title in settings navigation panel.
  8117. #: lib/settingsnav.php:143
  8118. msgid "UI tweaks for old-school users"
  8119. msgstr ""
  8120. #. TRANS: Title of form to silence a user.
  8121. #: lib/silenceform.php:65
  8122. msgctxt "TITLE"
  8123. msgid "Silence"
  8124. msgstr ""
  8125. #. TRANS: Description of form to silence a user.
  8126. #: lib/silenceform.php:76
  8127. msgid "Silence this user"
  8128. msgstr ""
  8129. #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
  8130. #. TRANS: %s is the page limit.
  8131. #: lib/sitestreamaction.php:32
  8132. #, php-format
  8133. msgid "Beyond the page limit (%s)."
  8134. msgstr ""
  8135. #. TRANS: Server error displayed when a public timeline cannot be retrieved.
  8136. #: lib/sitestreamaction.php:44
  8137. msgid "Could not retrieve public timeline."
  8138. msgstr ""
  8139. #. TRANS: Text displayed for public feed when there are no public notices.
  8140. #: lib/sitestreamaction.php:119
  8141. #, php-format
  8142. msgid ""
  8143. "This is the public timeline for %%site.name%% but no one has posted anything "
  8144. "yet."
  8145. msgstr ""
  8146. #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
  8147. #: lib/sitestreamaction.php:123
  8148. msgid "Be the first to post!"
  8149. msgstr ""
  8150. #. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
  8151. #: lib/sitestreamaction.php:128
  8152. #, php-format
  8153. msgid ""
  8154. "Why not [register an account](%%action.register%%) and be the first to post!"
  8155. msgstr ""
  8156. #. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
  8157. #. TRANS: This message contains Markdown links. Please mind the formatting.
  8158. #: lib/sitestreamaction.php:168
  8159. #, php-format
  8160. msgid ""
  8161. "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
  8162. "blogging) service based on the Free Software [StatusNet](http://status.net/) "
  8163. "tool. [Join now](%%action.register%%) to share notices about yourself with "
  8164. "friends, family, and colleagues! ([Read more](%%doc.help%%))"
  8165. msgstr ""
  8166. #. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
  8167. #. TRANS: This message contains Markdown links. Please mind the formatting.
  8168. #: lib/sitestreamaction.php:175
  8169. #, php-format
  8170. msgid ""
  8171. "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
  8172. "blogging) service based on the Free Software [StatusNet](http://status.net/) "
  8173. "tool."
  8174. msgstr ""
  8175. #. TRANS: Menu item in local navigation menu.
  8176. #: lib/subgroupnav.php:86
  8177. msgctxt "MENU"
  8178. msgid "Subscriptions"
  8179. msgstr ""
  8180. #. TRANS: Menu item title in local navigation menu.
  8181. #. TRANS: %s is a user nickname.
  8182. #: lib/subgroupnav.php:89
  8183. #, php-format
  8184. msgid "People %s subscribes to."
  8185. msgstr ""
  8186. #. TRANS: Menu item title in local navigation menu.
  8187. #. TRANS: %s is a user nickname.
  8188. #: lib/subgroupnav.php:100
  8189. #, php-format
  8190. msgid "People subscribed to %s."
  8191. msgstr ""
  8192. #. TRANS: Menu item in local navigation menu.
  8193. #. TRANS: %d is the number of pending subscription requests.
  8194. #: lib/subgroupnav.php:113
  8195. #, php-format
  8196. msgctxt "MENU"
  8197. msgid "Pending (%d)"
  8198. msgstr ""
  8199. #. TRANS: Menu item title in local navigation menu.
  8200. #: lib/subgroupnav.php:115
  8201. #, php-format
  8202. msgid "Approve pending subscription requests."
  8203. msgstr ""
  8204. #. TRANS: Menu item title in local navigation menu.
  8205. #. TRANS: %s is a user nickname.
  8206. #: lib/subgroupnav.php:128
  8207. #, php-format
  8208. msgid "Groups %s is a member of."
  8209. msgstr ""
  8210. #. TRANS: Menu item title in local navigation menu.
  8211. #. TRANS: %s is a user nickname.
  8212. #: lib/subgroupnav.php:139
  8213. #, php-format
  8214. msgid "List subscriptions by %s."
  8215. msgstr ""
  8216. #. TRANS: Menu item in local navigation menu.
  8217. #: lib/subgroupnav.php:147
  8218. msgctxt "MENU"
  8219. msgid "Invite"
  8220. msgstr ""
  8221. #. TRANS: Menu item title in local navigation menu.
  8222. #. TRANS: %s is the StatusNet sitename.
  8223. #: lib/subgroupnav.php:150
  8224. #, php-format
  8225. msgid "Invite friends and colleagues to join you on %s."
  8226. msgstr ""
  8227. #. TRANS: Form of form to subscribe to a user.
  8228. #: lib/subscribeform.php:107
  8229. msgid "Subscribe to this user"
  8230. msgstr ""
  8231. #. TRANS: Button text to subscribe to a user.
  8232. #. TRANS: Button text for subscribing to a list.
  8233. #: lib/subscribeform.php:130 lib/subscribepeopletagform.php:106
  8234. msgctxt "BUTTON"
  8235. msgid "Subscribe"
  8236. msgstr ""
  8237. #. TRANS: Button title to subscribe to a user.
  8238. #: lib/subscribeform.php:132
  8239. msgid "Subscribe to this user."
  8240. msgstr ""
  8241. #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list.
  8242. #: lib/subscriptionslistitem.php:38
  8243. msgctxt "LABEL"
  8244. msgid "IM"
  8245. msgstr ""
  8246. #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
  8247. #: lib/subscriptionslistitem.php:53
  8248. msgid "SMS"
  8249. msgstr ""
  8250. #. TRANS: Field label on list form.
  8251. #: lib/tagprofileform.php:130
  8252. msgctxt "LABEL"
  8253. msgid "Lists"
  8254. msgstr ""
  8255. #. TRANS: Field title on list form.
  8256. #: lib/tagprofileform.php:133
  8257. msgid ""
  8258. "Lists for this user (letters, numbers, -, ., and _), comma- or space- "
  8259. "separated."
  8260. msgstr ""
  8261. #. TRANS: Server exception displayed if a theme name was invalid.
  8262. #: lib/theme.php:79
  8263. msgid "Invalid theme name."
  8264. msgstr ""
  8265. #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration.
  8266. #: lib/themeuploader.php:51
  8267. msgid "This server cannot handle theme uploads without ZIP support."
  8268. msgstr ""
  8269. #. TRANS: Server exception thrown when uploading a theme fails.
  8270. #: lib/themeuploader.php:60 lib/themeuploader.php:64
  8271. msgid "The theme file is missing or the upload failed."
  8272. msgstr ""
  8273. #. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails.
  8274. #. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction.
  8275. #: lib/themeuploader.php:95 lib/themeuploader.php:107 lib/themeuploader.php:293
  8276. #: lib/themeuploader.php:298 lib/themeuploader.php:307
  8277. #: lib/themeuploader.php:315
  8278. msgid "Failed saving theme."
  8279. msgstr ""
  8280. #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure.
  8281. #: lib/themeuploader.php:153
  8282. msgid "Invalid theme: Bad directory structure."
  8283. msgstr ""
  8284. #. TRANS: Client exception thrown when an uploaded theme is larger than the limit.
  8285. #. TRANS: %d is the number of bytes of the uncompressed theme.
  8286. #: lib/themeuploader.php:174
  8287. #, php-format
  8288. msgid "Uploaded theme is too large; must be less than %d byte uncompressed."
  8289. msgid_plural ""
  8290. "Uploaded theme is too large; must be less than %d bytes uncompressed."
  8291. msgstr[0] ""
  8292. msgstr[1] ""
  8293. #. TRANS: Server exception thrown when an uploaded theme is incomplete.
  8294. #: lib/themeuploader.php:188
  8295. msgid "Invalid theme archive: Missing file css/display.css"
  8296. msgstr ""
  8297. #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name.
  8298. #: lib/themeuploader.php:229
  8299. msgid ""
  8300. "Theme contains invalid file or folder name. Stick with ASCII letters, "
  8301. "digits, underscore, and minus sign."
  8302. msgstr ""
  8303. #. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions.
  8304. #: lib/themeuploader.php:236
  8305. msgid "Theme contains unsafe file extension names; may be unsafe."
  8306. msgstr ""
  8307. #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed.
  8308. #. TRANS: %s is the file type that is not allowed.
  8309. #: lib/themeuploader.php:255
  8310. #, php-format
  8311. msgid "Theme contains file of type \".%s\", which is not allowed."
  8312. msgstr ""
  8313. #. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened.
  8314. #: lib/themeuploader.php:273
  8315. msgid "Error opening theme archive."
  8316. msgstr ""
  8317. #. TRANS: Header for Notices section.
  8318. #: lib/threadednoticelist.php:74
  8319. msgctxt "HEADER"
  8320. msgid "Notices"
  8321. msgstr ""
  8322. #. TRANS: Link to show replies for a notice.
  8323. #. TRANS: %d is the number of replies to a notice and used for plural.
  8324. #: lib/threadednoticelistmoreitem.php:57
  8325. #, php-format
  8326. msgid "Show reply"
  8327. msgid_plural "Show all %d replies"
  8328. msgstr[0] ""
  8329. msgstr[1] ""
  8330. #. TRANS: Form legend.
  8331. #: lib/togglepeopletag.php:94
  8332. #, php-format
  8333. msgid "Search and list people"
  8334. msgstr ""
  8335. #. TRANS: Dropdown option for searching in profiles.
  8336. #: lib/togglepeopletag.php:105
  8337. msgid "Everything"
  8338. msgstr ""
  8339. #. TRANS: Dropdown option for searching in profiles.
  8340. #: lib/togglepeopletag.php:109
  8341. msgid "Fullname"
  8342. msgstr ""
  8343. #. TRANS: Dropdown option for searching in profiles.
  8344. #: lib/togglepeopletag.php:115
  8345. msgid "URI (Remote users)"
  8346. msgstr ""
  8347. #. TRANS: Dropdown field label.
  8348. #: lib/togglepeopletag.php:121
  8349. msgctxt "LABEL"
  8350. msgid "Search in"
  8351. msgstr ""
  8352. #. TRANS: Dropdown field title.
  8353. #: lib/togglepeopletag.php:123
  8354. msgid "Choose a field to search."
  8355. msgstr ""
  8356. #. TRANS: Form legend.
  8357. #. TRANS: %1$s is a nickname, $2$s is a list.
  8358. #: lib/togglepeopletag.php:190
  8359. #, php-format
  8360. msgid "Remove %1$s from list %2$s"
  8361. msgstr ""
  8362. #. TRANS: Legend on form to add a profile to a list.
  8363. #. TRANS: %1$s is a nickname, %2$s is a list.
  8364. #: lib/togglepeopletag.php:268
  8365. #, php-format
  8366. msgid "Add %1$s to list %2$s"
  8367. msgstr ""
  8368. #. TRANS: Title for top posters section.
  8369. #: lib/topposterssection.php:74
  8370. msgid "Top posters"
  8371. msgstr ""
  8372. #. TRANS: Option in drop-down of potential addressees.
  8373. #. TRANS: %s is a StatusNet sitename.
  8374. #: lib/toselector.php:125
  8375. #, php-format
  8376. msgid "Everyone at %s"
  8377. msgstr ""
  8378. #. TRANS: Option in drop-down of potential addressees.
  8379. #: lib/toselector.php:130
  8380. msgctxt "SENDTO"
  8381. msgid "Everyone"
  8382. msgstr ""
  8383. #. TRANS: Label for drop-down of potential addressees.
  8384. #: lib/toselector.php:138
  8385. msgctxt "LABEL"
  8386. msgid "To:"
  8387. msgstr ""
  8388. #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private.
  8389. #: lib/toselector.php:148
  8390. msgid "Private?"
  8391. msgstr ""
  8392. #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received.
  8393. #: lib/toselector.php:208
  8394. #, php-format
  8395. msgid "Unknown to value: \"%s\"."
  8396. msgstr ""
  8397. #. TRANS: Title for the form to unblock a user.
  8398. #: lib/unblockform.php:67
  8399. msgctxt "TITLE"
  8400. msgid "Unblock"
  8401. msgstr ""
  8402. #. TRANS: We accept the file type (we probably just accept all files)
  8403. #. TRANS: but don't know the file extension for it. %1$s is the extension.
  8404. #: lib/unknownextensionmimeexception.php:22
  8405. #, php-format
  8406. msgid "Unknown MIME type for file extension: %1$s"
  8407. msgstr ""
  8408. #. TRANS: We accept the file type (we probably just accept all files)
  8409. #. TRANS: but don't know the file extension for it.
  8410. #: lib/unknownmimeextensionexception.php:24
  8411. #, php-format
  8412. msgid "Supported mimetype but unknown extension relation: %1$s"
  8413. msgstr ""
  8414. #. TRANS: Exception text shown when no object found with certain URI
  8415. #. TRANS: %s is the URI.
  8416. #: lib/unknownuriexception.php:43
  8417. #, php-format
  8418. msgid "No object found with URI \"%s\""
  8419. msgstr ""
  8420. #. TRANS: Title for unsandbox form.
  8421. #: lib/unsandboxform.php:67
  8422. msgctxt "TITLE"
  8423. msgid "Unsandbox"
  8424. msgstr ""
  8425. #. TRANS: Description for unsandbox form.
  8426. #: lib/unsandboxform.php:78
  8427. msgid "Unsandbox this user"
  8428. msgstr ""
  8429. #. TRANS: Title for unsilence form.
  8430. #: lib/unsilenceform.php:65
  8431. msgid "Unsilence"
  8432. msgstr ""
  8433. #. TRANS: Form description for unsilence form.
  8434. #: lib/unsilenceform.php:76
  8435. msgid "Unsilence this user"
  8436. msgstr ""
  8437. #. TRANS: Form legend on unsubscribe form.
  8438. #: lib/unsubscribeform.php:109
  8439. msgid "Unsubscribe from this user"
  8440. msgstr ""
  8441. #. TRANS: Button text on unsubscribe form.
  8442. #. TRANS: Button text for unsubscribing from a list.
  8443. #: lib/unsubscribeform.php:132 lib/unsubscribepeopletagform.php:106
  8444. msgctxt "BUTTON"
  8445. msgid "Unsubscribe"
  8446. msgstr ""
  8447. #. TRANS: Button title on unsubscribe form.
  8448. #: lib/unsubscribeform.php:134
  8449. msgid "Unsubscribe from this user."
  8450. msgstr ""
  8451. #. TRANS: Exception text shown when no profile can be found for a user.
  8452. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
  8453. #: lib/usernoprofileexception.php:58
  8454. #, php-format
  8455. msgid "User %1$s (%2$d) has no profile record."
  8456. msgstr ""
  8457. #. TRANS: Authorisation exception thrown when a user a not allowed to login.
  8458. #: lib/util.php:336
  8459. msgid "Not allowed to log in."
  8460. msgstr ""
  8461. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8462. #: lib/util.php:1541
  8463. msgid "a few seconds ago"
  8464. msgstr ""
  8465. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8466. #: lib/util.php:1544
  8467. msgid "about a minute ago"
  8468. msgstr ""
  8469. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8470. #: lib/util.php:1548
  8471. #, php-format
  8472. msgid "about one minute ago"
  8473. msgid_plural "about %d minutes ago"
  8474. msgstr[0] ""
  8475. msgstr[1] ""
  8476. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8477. #: lib/util.php:1551
  8478. msgid "about an hour ago"
  8479. msgstr ""
  8480. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8481. #: lib/util.php:1555
  8482. #, php-format
  8483. msgid "about one hour ago"
  8484. msgid_plural "about %d hours ago"
  8485. msgstr[0] ""
  8486. msgstr[1] ""
  8487. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8488. #: lib/util.php:1558
  8489. msgid "about a day ago"
  8490. msgstr ""
  8491. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8492. #: lib/util.php:1562
  8493. #, php-format
  8494. msgid "about one day ago"
  8495. msgid_plural "about %d days ago"
  8496. msgstr[0] ""
  8497. msgstr[1] ""
  8498. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8499. #: lib/util.php:1565
  8500. msgid "about a month ago"
  8501. msgstr ""
  8502. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8503. #: lib/util.php:1569
  8504. #, php-format
  8505. msgid "about one month ago"
  8506. msgid_plural "about %d months ago"
  8507. msgstr[0] ""
  8508. msgstr[1] ""
  8509. #. TRANS: Used in notices to indicate when the notice was made compared to now.
  8510. #: lib/util.php:1572
  8511. msgid "about a year ago"
  8512. msgstr ""
  8513. #. TRANS: Human-readable full date-time specification (formatting on http://php.net/date)
  8514. #: lib/util.php:1592
  8515. msgid "l, d-M-Y H:i:s T"
  8516. msgstr ""
  8517. #. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
  8518. #. TRANS: %s is the provided (invalid) color code.
  8519. #: lib/webcolor.php:81 lib/webcolor.php:121
  8520. #, php-format
  8521. msgid "%s is not a valid color! Use 3 or 6 hex characters."
  8522. msgstr ""
  8523. #. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
  8524. #: scripts/restoreuser.php:61
  8525. #, php-format
  8526. msgid "Getting backup from file '%s'."
  8527. msgstr ""