trad4all.inc.php 534 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449
  1. <?php
  2. /*
  3. for more information: see languages.txt in the lang folder.
  4. */
  5. $OpenBadgesBannerText = "You can generate badges for the skills learnt by your users, to give them recognition for their effort, through which they will be able to show off their acquired skills and competencies with icons that will be shown on their user profile. For more information on OpenBadges, check <a href='http://openbadges.org'>http://openbadges.org/</a>.";
  6. $OpenBadgesIntroduction = "You can now design skills learning badges for learning through your courses on this virtual campus.";
  7. $DesignANewBadgeComment = "Design a new badge, download it from the design tool and upload it on the platform.";
  8. $TheBadgesWillBeSentToThatBackpack = "The badges will be sent to this backpack";
  9. $BackpackDetails = "Backpack details";
  10. $CriteriaToEarnTheBadge = "Criteria to earn the badge";
  11. $BadgePreview = "Badge preview";
  12. $DesignNewBadge = "Design a new badge";
  13. $TotalX = "Total: %s";
  14. $DownloadBadges = "Download badges";
  15. $IssuerDetails = "Badges issuer details";
  16. $CreateBadge = "Create badge";
  17. $Badges = "Badges";
  18. $StudentsWhoAchievedTheSkillX = "Students who acquired skill %s";
  19. $AchievedSkillInCourseX = "Skills acquired in course %s";
  20. $SkillsReport = "Skills report";
  21. $AssignedUsersListToStudentBoss = "Users assigned to their superior";
  22. $AssignUsersToBoss = "Assign users to superior";
  23. $RoleStudentBoss = "Student's superior";
  24. $CosecantCsc = "Cosecant:\t\t\t\tcsc(x)";
  25. $HyperbolicCosecantCsch = "Hyperbolic cosecant:\t\tcsch(x)";
  26. $ArccosecantArccsc = "Arccosecant:\t\t\tarccsc(x)";
  27. $HyperbolicArccosecantArccsch = "Hyperbolic arccosecant:\t\tarccsch(x)";
  28. $SecantSec = "Secant:\t\t\t\tsec(x)";
  29. $HyperbolicSecantSech = "Hyperbolic secant:\t\tsech(x)";
  30. $ArcsecantArcsec = "Arcsecant:\t\t\tarcsec(x)";
  31. $HyperbolicArcsecantArcsech = "Hyperbolic arcsecant:\t\tarcsech(x)";
  32. $CotangentCot = "Cotangent:\t\t\tcot(x)";
  33. $HyperbolicCotangentCoth = "Hyperbolic cotangent:\t\tcoth(x)";
  34. $ArccotangentArccot = "Arccotangent:\t\t\tarccot(x)";
  35. $HyperbolicArccotangentArccoth = "Hyperbolic arccotangent:\t\tarccoth(x)";
  36. $HelpCookieUsageValidation = "In order for this site to work and be able to measure the use of content, this platform uses cookies.<br /><br />\nIf needed, the Help section of your browser indicates how to configure cookies.<br /><br />\nFor more information on cookies, you can visit the <a href=\"http://www.aboutcookies.org/\">About Cookies</a> website.";
  37. $YouAcceptCookies = "By continuing to use this site, you declare you accept its use of cookies.";
  38. $TemplateCertificateComment = "An example certificate format";
  39. $TemplateCertificateTitle = "Certificate";
  40. $ResultsVisibility = "Results visibility";
  41. $DownloadCertificate = "Download certificate";
  42. $PortalActiveCoursesLimitReached = "Sorry, this installation has an active courses limit, which has now been reached. You can still create new courses, but only if you hide/disable at least one existing active course. To do this, edit a course from the administration courses list, and change the visibility to 'hidden', then try creating this course again. To increase the maximum number of active courses allowed on this Chamilo installation, please contact your hosting provider or, if available, upgrade to a superior hosting plan.";
  43. $WelcomeToInstitution = "Welcome to the campus of %s";
  44. $WelcomeToSiteName = "Welcome to %s";
  45. $RequestAccess = "Request access";
  46. $Formula = "Formula";
  47. $MultipleConnectionsAreNotAllow = "This user is already logged in";
  48. $Listen = "Listen";
  49. $AudioFileForItemX = "Audio file for item %s";
  50. $ThereIsANewWorkFeedbackInWorkXHere = "There's a new feedback in work: %s <a href='%s'>Click here</a> to see it.";
  51. $ThereIsANewWorkFeedback = "There's a new feedback in work: %s";
  52. $LastUpload = "Last upload";
  53. $EditUserListCSV = "Edit users list";
  54. $NumberOfCoursesHidden = "Number of hidden courses";
  55. $Post = "Post";
  56. $Write = "Write";
  57. $YouHaveNotYetAchievedSkills = "You have not yet achieved skills";
  58. $Corn = "Corn";
  59. $Gray = "Gray";
  60. $LightBlue = "Light blue";
  61. $Black = "Black";
  62. $White = "White";
  63. $DisplayOptions = "Display options";
  64. $EnterTheSkillNameToSearch = "Enter the skill name to search";
  65. $SkillsSearch = "Skills search";
  66. $ChooseABackgroundColor = "Choose a background color";
  67. $SocialWriteNewComment = "Write new comment";
  68. $SocialWallWhatAreYouThinkingAbout = "What are you thinking about?";
  69. $SocialMessageDelete = "Delete comment";
  70. $SocialWall = "Social wall";
  71. $BuyCourses = "Buy courses";
  72. $MySessions = "My sessions";
  73. $ActivateAudioRecorder = "Activate audio recorder";
  74. $StartSpeaking = "Start speaking";
  75. $AssignedCourses = "Assigned courses";
  76. $QuestionEditionNotAvailableBecauseItIsAlreadyAnsweredHoweverYouCanCopyItAndModifyTheCopy = "Question edition is not available because the question has been already answered. However, you can copy and modify it.";
  77. $SessionDurationDescription = "The session duration allows you to set a number of days of access starting from the first access date of the user to the session. This way, you can set a session to 'last for 15 days' instead of starting at a fixed date for all students.";
  78. $HyperbolicArctangentArctanh = "Hyperbolic arctangent:\t\tarctanh(x)";
  79. $SessionDurationTitle = "Session duration";
  80. $ArctangentArctan = "Arctangent:\t\t\tarctan(x)";
  81. $HyperbolicTangentTanh = "Hyperbolic tangent:\t\ttanh(x)";
  82. $TangentTan = "Tangent:\t\t\ttan(x)";
  83. $CoachAndStudent = "Coach and student";
  84. $Serie = "Series";
  85. $HyperbolicArccosineArccosh = "Hyperbolic arccosine:\t\tarccosh(x)";
  86. $ArccosineArccos = "Arccosine:\t\t\tarccos(x)";
  87. $HyperbolicCosineCosh = "Hyperbolic cosine:\t\tcosh(x)";
  88. $CosineCos = "Cosine:\t\t\t\tcos(x)";
  89. $TeacherTimeReport = "Teachers time report";
  90. $HyperbolicArcsineArcsinh = "Hyperbolic arcsine:\t\tarcsinh(x)";
  91. $YourLanguageNotThereContactUs = "Cannot find your language in the list? Contact us at info@chamilo.org to contribute as a translator.";
  92. $ArcsineArcsin = "Arcsine:\t\t\tarcsin(x)";
  93. $HyperbolicSineSinh = "Hyperbolic sine:\t\tsinh(x)";
  94. $SineSin = "Sine:\t\t\t\tsin(x)";
  95. $PiNumberPi = "Pi number:\t\t\tpi";
  96. $ENumberE = "E number:\t\t\te";
  97. $LogarithmLog = "Logarithm:\t\t\tlog(x)";
  98. $NaturalLogarithmLn = "Natural logarithm:\t\tln(x)";
  99. $AbsoluteValueAbs = "Absolute value:\t\t\tabs(x)";
  100. $SquareRootSqrt = "Square root:\t\t\tsqrt(x)";
  101. $ExponentiationCircumflex = "Exponentiation:\t\t\t^";
  102. $DivisionSlash = "Division:\t\t\t/";
  103. $MultiplicationStar = "Multiplication:\t\t\t*";
  104. $SubstractionMinus = "Substraction:\t\t\t-";
  105. $SummationPlus = "Summation:\t\t\t+";
  106. $NotationList = "Formula notation";
  107. $SubscribeToSessionRequest = "Request subscription";
  108. $PleaseSubscribeMeToSession = "Please consider subscribing me to session";
  109. $SearchActiveSessions = "Search active sessions";
  110. $UserNameHasDash = "The username cannot contain the '-' character";
  111. $IfYouWantOnlyIntegerValuesWriteBothLimitsWithoutDecimals = "If you want only integer values write both limits without decimals";
  112. $GiveAnswerVariations = "Please, write how many question variations you want";
  113. $AnswerVariations = "Question variations";
  114. $GiveFormula = "Please, write the formula";
  115. $SignatureFormula = "Sincerely";
  116. $FormulaExample = "Formula sample: sqrt( [x] / [y] ) * ( e ^ ( ln(pi) ) )";
  117. $VariableRanges = "Variable ranges";
  118. $ExampleValue = "Range value";
  119. $CalculatedAnswer = "Calculated question";
  120. $UserIsCurrentlySubscribed = "The user is currently subscribed";
  121. $OnlyBestAttempts = "Only best attempts";
  122. $IncludeAllUsers = "Include all users";
  123. $HostingWarningReached = "Hosting warning reached";
  124. $SessionName = "Session name";
  125. $MobilePhoneNumberWrong = "Mobile phone number is incomplete or contains invalid characters";
  126. $CountryDialCode = "Include the country dial code";
  127. $FieldTypeMobilePhoneNumber = "Mobile phone number";
  128. $CheckUniqueEmail = "Check unique e-mail";
  129. $EmailUsedTwice = "This email is not available";
  130. $TotalPostsInAllForums = "Total posts in all forums.";
  131. $AddMeAsCoach = "Add me as coach";
  132. $AddMeAsTeacherInCourses = "Add me as teacher in the imported courses.";
  133. $ExerciseProgressInfo = "Progress of exercises taken by the student";
  134. $CourseTimeInfo = "Time spent in the course";
  135. $ExerciseAverageInfo = "Average of best grades of each exercise attempt";
  136. $ExtraDurationForUser = "Additional access days for this user";
  137. $UserXSessionY = "User: %s - Session: %s";
  138. $DurationIsSameAsDefault = "The given session duration is the same as the default for the session. Ignoring.";
  139. $FirstAccessWasXSessionDurationYEndDateWasZ = "This user's first access to the session was on %s. With a session duration of %s days, the access to this session already expired on %s";
  140. $FirstAccessWasXSessionDurationYEndDateInZDays = "This user's first access to the session was on %s. With a session duration of %s days, the end date is scheduled in %s days";
  141. $UserNeverAccessedSessionDefaultDurationIsX = "This user never accessed this session before. The duration is currently set to %s days (from the first access date)";
  142. $SessionDurationEdit = "Edit session duration";
  143. $EditUserSessionDuration = "User's session duration edition";
  144. $SessionDurationXDaysLeft = "This session has a maximum duration. Only %s days to go.";
  145. $NextTopic = "Next topic";
  146. $CurrentTopic = "Current topic";
  147. $ShowFullCourseAdvance = "Show course planning";
  148. $RedirectToCourseHome = "Redirect to Course home";
  149. $LpReturnLink = "Learning path return link";
  150. $LearningPathList = "Learning path list";
  151. $UsersWithoutTask = "Learners who didn't send their work";
  152. $UsersWithTask = "Learners who sent their work";
  153. $UploadFromTemplate = "Upload from template";
  154. $DocumentAlreadyAdded = "Document already added";
  155. $AddDocument = "Add document";
  156. $ExportToDoc = "Export to .doc";
  157. $SortByTitle = "Sort by title";
  158. $SortByUpdatedDate = "Sort by edition date";
  159. $SortByCreatedDate = "Sort by creation date";
  160. $ViewTable = "Table view";
  161. $ViewList = "List view";
  162. $DRH = "Human Resources Manager";
  163. $Global = "Global";
  164. $QuestionTitle = "Question title";
  165. $QuestionId = "Question ID";
  166. $ExerciseId = "ExerciseId";
  167. $ExportExcel = "Excel export";
  168. $CompanyReportResumed = "Corporate report, short version";
  169. $CompanyReport = "Corporate report";
  170. $Report = "Report";
  171. $TraceIP = "Trace IP";
  172. $NoSessionProvided = "No session provided";
  173. $UserMustHaveTheDrhRole = "Users must have the HR director role";
  174. $NothingToAdd = "Nothing to add";
  175. $NoStudentsFoundForSession = "No student found for the session";
  176. $NoDestinationSessionProvided = "No destination session provided";
  177. $SessionXSkipped = "Session %s skipped";
  178. $CheckDates = "Validate dates";
  179. $CreateACategory = "Create a category";
  180. $PriorityOfMessage = "Message type";
  181. $ModifyDate = "Modification date";
  182. $Weep = "Weep";
  183. $LatestChanges = "Latest changes";
  184. $FinalScore = "Final score";
  185. $ErrorWritingXMLFile = "There was an error writing the XML file. Please ask the administrator to check the error logs.";
  186. $TeacherXInSession = "Teacher in session: %s";
  187. $DeleteAttachment = "Delete attachment";
  188. $EditingThisEventWillRemoveItFromTheSerie = "Editing this event will remove it from the serie of events it is currently part of";
  189. $EnterTheCharactersYouReadInTheImage = "Enter the characters you see on the image";
  190. $YouDontHaveAnInstitutionAccount = "You don't have an institutional account";
  191. $LoginWithYourAccount = "Login with your account";
  192. $YouHaveAnInstitutionalAccount = "You already have an institutional account";
  193. $NoActionAvailable = "No action available";
  194. $Coaches = "Coaches";
  195. $ShowDescription = "Show description";
  196. $HumanResourcesManagerShouldNotBeRegisteredToCourses = "Human resources managers should not be registered to courses. The corresponding users you selected have not been subscribed.";
  197. $CleanAndUpdateCourseCoaches = "Clean and update course coaches";
  198. $NoPDFFoundAtRoot = "No PDF found at root: please make sure that the PDFs are at the root of your zip file (no intermediate folder)";
  199. $PDFsMustLookLike = "PDFs must look like:";
  200. $ImportZipFileLocation = "Location of import zip file";
  201. $YouMustImportAZipFile = "You must import a zip file";
  202. $ImportPDFIntroToCourses = "Import PDF introductions into courses";
  203. $SubscribeTeachersToSession = "Subscribe teachers to session(s)";
  204. $SubscribeStudentsToSession = "Subscribe students to session(s)";
  205. $ManageCourseCategories = "Manage course categories";
  206. $CourseCategoryListInX = "Course categories in %s site:";
  207. $CourseCategoryInPlatform = "Course categories available";
  208. $UserGroupBelongURL = "The group now belongs to the selected site";
  209. $AtLeastOneUserGroupAndOneURL = "You need to select at least one group and one site";
  210. $AgendaList = "Agenda list";
  211. $Calendar = "Calendar";
  212. $CustomRange = "Custom range";
  213. $ThisWeek = "This week";
  214. $SendToUsersInSessions = "Send to users in all sessions of this course";
  215. $ParametersNotFound = "Parameters not found";
  216. $UsersToAdd = "Users to add";
  217. $DocumentsAdded = "Documents added";
  218. $NoUsersToAdd = "No users to add";
  219. $StartSurvey = "Start the Survey";
  220. $Subgroup = "Subgroup";
  221. $Subgroups = "Subgroups";
  222. $EnterTheLettersYouSee = "Enter the letters you see.";
  223. $ClickOnTheImageForANewOne = "Click on the image to load a new one.";
  224. $AccountBlockedByCaptcha = "Account blocked by captcha.";
  225. $CatchScreenCasts = "Capture screenshot/screencast";
  226. $View = "View";
  227. $AmountSubmitted = "Number submitted";
  228. $InstallWarningCouldNotInterpretPHP = "Warning: the installer detected an error while trying to reach the test file at %s. It looks like the PHP script could not be interpreted. This could be a warning sign for future problems when creating courses. Please check the installation guide for more information about permissions. If you are installing a site with a URL that doesn't resolve yet, you can probably ignore this message.";
  229. $BeforeX = "Before %s";
  230. $AfterX = "After %s";
  231. $ExportSettingsAsXLS = "Export settings as XLS";
  232. $DeleteAllItems = "Delete all items";
  233. $DeleteThisItem = "Delete this item";
  234. $RecordYourVoice = "Record your voice";
  235. $RecordIsNotAvailable = "No recording available";
  236. $WorkNumberSubmitted = "Works received";
  237. $ClassIdDoesntExists = "Class ID does not exist";
  238. $WithoutCategory = "Without category";
  239. $IncorrectScore = "Incorrect score";
  240. $CorrectScore = "Correct score";
  241. $UseCustomScoreForAllQuestions = "Use custom score for all questions";
  242. $YouShouldAddItemsBeforeAttachAudio = "You should add some items to your learning path, otherwise you won't be able to attach audio files to them";
  243. $InactiveDays = "Inactive days";
  244. $FollowedHumanResources = "Followed HR directors";
  245. $TheTextYouEnteredDoesNotMatchThePicture = "The text you entered doesn't match the picture.";
  246. $RemoveOldRelationships = "Remove previous relationships";
  247. $ImportSessionDrhList = "Import list of HR directors into sessions";
  248. $FollowedStudents = "Followed students";
  249. $FollowedTeachers = "Followed teachers";
  250. $AllowOnlyFiles = "Allow only files";
  251. $AllowOnlyText = "Allow only text";
  252. $AllowFileOrText = "Allow files or online text";
  253. $DocumentType = "Document type";
  254. $SendOnlyAnEmailToMySelfToTest = "Send an email to myself for testing purposes.";
  255. $DeleteAllSelectedAttendances = "Delete all selected attendances";
  256. $AvailableClasses = "Available classes";
  257. $RegisteredClasses = "Registered classes";
  258. $DeleteItemsNotInFile = "Delete items not in file";
  259. $ImportGroups = "Import groups";
  260. $HereIsYourFeedback = "Here is your feedback";
  261. $SearchSessions = "Session Search";
  262. $ShowSystemFolders = "Show system folders.";
  263. $SelectADateOnTheCalendar = "Select a date from the calendar";
  264. $AreYouSureDeleteTestResultBeforeDateD = "Are you sure you want to clean results for this test before the selected date ?";
  265. $CleanStudentsResultsBeforeDate = "Clean all results before a selected date";
  266. $HGlossary = "Glossary help";
  267. $GlossaryContent = "This tool allows you to create glossary terms for this course, which can then be used from the documents tool";
  268. $ForumContent = "<p> The forum is an discussion tool for asynchronous written work. In contrast to e-mail, a forum is for public, or semi-public, group discussion. </p>To use the Chamilo forum, members can simply use their browser - they do not require any distinct client software. </p>To organize forums, click on the Forums tool. Discussions are organized hierarchically according to the following structure: </ p><b> Category> Forum> Topic> Post</ b> </ p> To ensure members can participate in the forum tidily and effectively, it is essential in the first instance to create categories and forums; it's then up to the participants to create topics and posts. By default, the forum contains a single (public) category, an example topic and an example post. You can add forums to the category, change its title or create other categories within which you could then create new forums. (Don't confuse categories and forums, and remember that a category that contains no forum is useless and not displayed.)</p>\n<p>The forum description might include a list of its members, a definition of its purpose, a target a task, a theme etc.</p><p>Group forums should not be created via the Forum tool but instead via the Groups tool, where you can determine whether your group forums should be private or public, at the same time providing a location for sharing groups of documents.</p><b> Teaching Tips</ b></ p> A learning forum is not quite the same as the forums you are used to seeing on the internet. For one thing, it is not possible for learners to alter their posts once they have been published as the course is logically archived to allow tracking of what has been said in the past. Furthermore, Chamilo forums allow for specific uses relevant to teaching. For example, some teachers/trainers publish corrections directly within forums in the following way: <li> A learner is asked to post a report directly into the forum, </ li> The teacher corrects it by clicking Edit (yellow pencil) and marking it using the graphics editor (color, underlining, etc.) </ li> Finally, other learners benefit from viewing the corrections was made on the production of one of of them, </ li> Note that the same principle can be applied between learners, but will require his copying/pasting the message of his fellow student because students / trainees can not edit one another's posts. <. li> </ ul>";
  269. $HForum = "Forum help";
  270. $LoginToGoToThisCourse = "Please login to go to this course";
  271. $AreYouSureToEmptyAllTestResults = "Clear all learners results for every exercises ?";
  272. $CleanAllStudentsResultsForAllTests = "Are you sure to delete all test's results ?";
  273. $AdditionalMailWasSentToSelectedUsers = "Additionally, a new announcement has been created and sent to selected users";
  274. $LoginDate = "Login date";
  275. $ChooseStartDateAndEndDate = "Choose start and end dates";
  276. $TestFeedbackNotShown = "This test is configured not to display feedback to learners. Comments will not be seen at the end of the test, but may be useful for you, as teacher, when reviewing the question details.";
  277. $WorkAdded = "Work added";
  278. $FeedbackDisplayOptions = "How should we show the feedback/comment for each question? This option defines how it will be shown to the learner when taking the test. We recommend you try different options by editing your test options before having learners take it.";
  279. $InactiveUsers = "Users who's account has been disabled";
  280. $ActiveUsers = "Users with an active account";
  281. $SurveysProgress = "Surveys progress";
  282. $SurveysLeft = "Incomplete surveys";
  283. $SurveysDone = "Completed surveys";
  284. $SurveysTotal = "Total surveys";
  285. $WikiProgress = "Wiki pages reading progress";
  286. $WikiUnread = "Wiki pages unread";
  287. $WikiRead = "Wiki pages read";
  288. $WikiRevisions = "Wiki pages revisions";
  289. $WikiTotal = "Total wiki pages";
  290. $AssignmentsProgress = "Assignments progress";
  291. $AssignmentsLeft = "Missing assignments";
  292. $AssignmentsDone = "Completed handed in";
  293. $AssignmentsTotal = "Total assignments";
  294. $ForumsProgress = "Forums progress";
  295. $ForumsLeft = "Forums not read";
  296. $ForumsDone = "Forums read";
  297. $ForumsTotal = "Total forums";
  298. $ExercisesProgress = "Exercises progress";
  299. $ExercisesLeft = "Incomplete exercises";
  300. $ExercisesDone = "Completed exercises";
  301. $ExercisesTotal = "Total exercises";
  302. $LearnpathsProgress = "Learning paths progress";
  303. $LearnpathsLeft = "Incomplete learning paths";
  304. $LearnpathsDone = "Completed learning paths";
  305. $LearnpathsTotal = "Total learning paths";
  306. $TimeLoggedIn = "Time connected (hh:mm)";
  307. $SelectSurvey = "Select survey";
  308. $SurveyCopied = "Survey copied";
  309. $NoSurveysAvailable = "No surveys available";
  310. $DescriptionCopySurvey = "Duplicate an empty survey copy into another course. You need 2 courses to use this feature: an original course and a target course.";
  311. $CopySurvey = "Copy survey";
  312. $ChooseSession = "Please pick a session";
  313. $SearchSession = "Search sessions";
  314. $ChooseStudent = "Please pick a student";
  315. $SearchStudent = "Search users";
  316. $ChooseCourse = "Please pick a course";
  317. $DisplaySurveyOverview = "Surveys overview";
  318. $DisplayProgressOverview = "Participation and reading progress overview";
  319. $DisplayLpProgressOverview = "Learning paths progress overview";
  320. $DisplayExerciseProgress = "Detailed exercises progress";
  321. $DisplayAccessOverview = "Accesses by user overview";
  322. $AllowMemberLeaveGroup = "Allow members to leave group";
  323. $WorkFileNotUploadedDirXDoesNotExist = "Assignment could not be uploaded because folder %s does not exist";
  324. $DeleteUsersNotInList = "Unsubscribe students which are not in the imported list";
  325. $IfSessionExistsUpdate = "If a session exists, update it";
  326. $CreatedByXYOnZ = "Create by <a href=\"%s\">%s</a> on %s";
  327. $LoginWithExternalAccount = "Login without an institutional account";
  328. $ImportAikenQuizExplanationExample = "This is the text for question 1
  329. A. Answer 1
  330. B. Answer 2
  331. C. Answer 3
  332. ANSWER: B
  333. This is the text for question 2
  334. A. Answer 1
  335. B. Answer 2
  336. C. Answer 3
  337. D. Answer 4
  338. ANSWER: D
  339. ANSWER_EXPLANATION: this is an optional feedback comment that will appear next to the correct answer.
  340. SCORE: 20";
  341. $ImportAikenQuizExplanation = "The Aiken format comes in a simple text (.txt) file, with several question blocks, each separated by a blank line. The first line is the question, the answer lines are prefixed by a letter and a dot, and the correct answer comes next with the ANSWER: prefix. See example below.";
  342. $ExerciseAikenErrorNoAnswerOptionGiven = "The imported file has at least one question without any answer (or the answers do not include the required prefix letter). Please make sure each question has at least one answer and that it is prefixed by a letter and a dot or a parenthesis, like this: A. answer one";
  343. $ExerciseAikenErrorNoCorrectAnswerDefined = "The imported file includes at least one question without any correct answer defined. Please make sure all questions include the ANSWER: [Letter] line.";
  344. $SearchCourseBySession = "Search course by session";
  345. $ThereWasAProblemWithYourFile = "There was an unknown issue with your file. Please review its format and try again.";
  346. $YouMustUploadAZipOrTxtFile = "You must upload a .txt or .zip file";
  347. $NoTxtFileFoundInTheZip = "No .txt file found in zip";
  348. $ImportAikenQuiz = "Import Aiken quiz";
  349. $GlobalLinkUseDoubleColumnPrivateToShowPrivately = "Use ::private at the end of the link to show it only to logged-in users";
  350. $NumberOfGroupsToCreate = "Number of groups to create";
  351. $CoachesSubscribedAsATeacherInCourseX = "Coaches subscribed as teachers in course %s";
  352. $EnrollStudentsFromExistingSessions = "Enroll students from existing sessions";
  353. $EnrollTrainersFromExistingSessions = "Enroll trainers from existing sessions";
  354. $AddingStudentsFromSessionXToSessionY = "Adding students from session <b>%s</b> to session <b>%s</b>";
  355. $AddUserGroupToThatURL = "Add user group to this URL";
  356. $FirstLetter = "First letter";
  357. $UserGroupList = "User groups list";
  358. $AddUserGroupToURL = "Add group to URL";
  359. $UserGroupListInX = "Groups in %s";
  360. $UserGroupListInPlatform = "Platform groups list";
  361. $EditUserGroupToURL = "Edit groups for one URL";
  362. $ManageUserGroup = "Manage user groups";
  363. $FolderDoesntExistsInFileSystem = "Target folder doesn't exist on the server.";
  364. $RegistrationDisabled = "Sorry, you are trying to access the registration page for this portal, but registration is currently disabled. Please contact the administrator (see contact information in the footer). If you already have an account on this site.";
  365. $CasDirectCourseAccess = "Enter course with CAS authentication";
  366. $TeachersWillBeAddedAsCoachInAllCourseSessions = "Teachers will be added as a coach in all course sessions.";
  367. $DateTimezoneSettingNotSet = "We have detected that your PHP installation does not define the date.timezone setting. This is a requirement of Chamilo. Please make sure it is configured by checking your php.ini configuration, otherwise you will run into problems. We warned you!";
  368. $YesImSure = "Yes, I'm sure";
  369. $NoIWantToTurnBack = "No, I want to return";
  370. $IfYouContinueYourAnswerWillBeSavedAnyChangeWillBeNotAllowed = "If you continue your answer will be saved. Any change will be not allowed.";
  371. $SpecialCourses = "Special courses";
  372. $Roles = "Roles";
  373. $ToolCurriculum = "Curriculum";
  374. $ToReviewXYZ = "%s to review (%s)";
  375. $UnansweredXYZ = "%s unanswered (%s)";
  376. $AnsweredXYZ = "%s answered (%s)+(%s)";
  377. $UnansweredZ = "(%s) Unanswered";
  378. $AnsweredZ = "(%s) Answered";
  379. $CurrentQuestionZ = "(%s) Current question";
  380. $ToReviewZ = "(%s) To review";
  381. $ReturnToExerciseList = "Return to exercises list";
  382. $ExerciseAutoLaunch = "Auto-launch for exercises";
  383. $AllowFastExerciseEdition = "Enable exercise fast edition mode";
  384. $Username = "Username";
  385. $SignIn = "Sign in";
  386. $YouAreReg = "You are registered to";
  387. $ManageQuestionCategories = "Manage global questions categories";
  388. $ManageCourseFields = "Manage extra fields for courses";
  389. $ManageQuestionFields = "Manage extra fields for questions";
  390. $QuestionFields = "Questions fields";
  391. $FieldLoggeable = "Field changes should be logged";
  392. $EditExtraFieldWorkFlow = "Edit this field's workflow";
  393. $SelectRole = "Select role";
  394. $SelectAnOption = "Please select an option";
  395. $CurrentStatus = "Current status";
  396. $MyCourseCategories = "My courses categories";
  397. $SessionsCategories = "Sessions categories";
  398. $CourseSessionBlock = "Courses and sessions";
  399. $Committee = "Committee";
  400. $ModelType = "Exercise model type";
  401. $AudioFile = "Audio file";
  402. $CourseVisibilityHidden = "Hidden - Completely hidden to all users except the administrators";
  403. $HandedOutDate = "Time of reception";
  404. $HandedOut = "Handed out";
  405. $HandOutDateLimit = "Deadline";
  406. $ApplyAllLanguages = "Apply this change to all available languages";
  407. $ExerciseWasActivatedFromXToY = "Exercise was activated from %s to %s";
  408. $YourPasswordCannotBeTheSameAsYourUsername = "Your password cannot be the same as your username";
  409. $CheckEasyPasswords = "Check passwords too easy to guess";
  410. $PasswordVeryStrong = "Very strong";
  411. $PasswordStrong = "Strong";
  412. $PasswordMedium = "Medium";
  413. $PasswordNormal = "Normal";
  414. $PasswordWeak = "Weak";
  415. $PasswordIsTooShort = "The password is too short";
  416. $BadCredentials = "Bad credentials";
  417. $SelectAnAnswerToContinue = "Select an answer to continue";
  418. $QuestionReused = "Question added in the exercise";
  419. $QuestionCopied = "Question copied to the exercise";
  420. $BreadcrumbNavigationDisplayComment = "Show or hide the breadcrumb navigation, the one appearing just below the main navigation tabs. It is highly recommended to have this navigation shown to users, as this allows them to locate their current position and navigate to previous pages easily. Sometimes, however, it might be necessary to hide it (for example in the case of exam platforms) to avoid users navigating to pages they should not see.";
  421. $BreadcrumbNavigationDisplayTitle = "Breadcrumb navigation";
  422. $AllowurlfopenIsSetToOff = "The PHP setting \"allow_url_fopen\" is set to off. This prevents the registration mechanism to work properly. This setting can be changed in you PHP configuration file (php.ini) or in the Apache Virtual Host configuration, using the php_admin_value directive";
  423. $ImpossibleToContactVersionServerPleaseTryAgain = "Impossible to contact the version server right now. Please try again later.";
  424. $VersionUpToDate = "Your version is up-to-date";
  425. $LatestVersionIs = "The latest version is";
  426. $YourVersionNotUpToDate = "Your version is not up-to-date";
  427. $Hotpotatoes = "Hotpotatoes";
  428. $ZeroMeansNoQuestionWillBeSelectedMinusOneMeansThatAllQuestionsWillBeSelected = "-1 = All questions will be selected.
  429. 0 = No questions will be selected.";
  430. $EmailNotificationTemplateDescription = "You can customize the email sent to users when they finished the exercise. You can use tags like these:
  431. 1. {{ student.username }}
  432. 2. {{ student.firstname }}
  433. 3. {{ student.lastname }}
  434. 4. {{ student.official_code }}
  435. 5. {{ exercise.title }}
  436. 6. {{ exercise.start_time }}
  437. 7. {{ exercise.end_time }}
  438. 8. {{ course.title }}
  439. 9. {{ course.code }}";
  440. $EmailNotificationTemplate = "E-mail notification template";
  441. $ExerciseEndButtonDisconnect = "Logout";
  442. $ExerciseEndButtonExerciseHome = "Exercise list.";
  443. $ExerciseEndButtonCourseHome = "Course home";
  444. $ExerciseEndButton = "Exercise end button";
  445. $HideQuestionTitle = "Hide question title";
  446. $QuestionSelection = "Question selection type";
  447. $OrderedCategoriesByParentWithQuestionsRandom = "Ordered categories by parent with random questions";
  448. $OrderedCategoriesByParentWithQuestionsOrdered = "Ordered categories by parent with questions ordered";
  449. $RandomCategoriesWithRandomQuestionsNoQuestionGrouped = "Random categories with random questions (questions not grouped)";
  450. $RandomCategoriesWithQuestionsOrderedNoQuestionGrouped = "Random categories with questions ordered (questions not grouped)";
  451. $RandomCategoriesWithRandomQuestions = "Random categories with random questions";
  452. $OrderedCategoriesAlphabeticallyWithRandomQuestions = "Ordered categories alphabetically with random questions";
  453. $RandomCategoriesWithQuestionsOrdered = "Random categories with questions ordered";
  454. $OrderedCategoriesAlphabeticallyWithQuestionsOrdered = "Ordered categories alphabetically with questions ordered";
  455. $UsingCategories = "Using categories";
  456. $OrderedByUser = "Ordered by user";
  457. $ToReview = "To be reviewed";
  458. $Unanswered = "Unanswered";
  459. $CurrentQuestion = "Current question";
  460. $MediaQuestions = "Shareable enunciates";
  461. $CourseCategoriesAreGlobal = "Course categories are global over multiple portals configurations. Changes are only allowed in the main administrative portal.";
  462. $CareerUpdated = "Career updated successfully";
  463. $UserIsNotATeacher = "User is not a teacher";
  464. $ShowAllEvents = "All events";
  465. $Month = "Month";
  466. $Hour = "Hour";
  467. $Minutes = "Minutes";
  468. $AddSuccess = "Event added";
  469. $AgendaDeleteSuccess = "Event deleted";
  470. $NoAgendaItems = "There are no events";
  471. $ClassName = "Class name";
  472. $ItemTitle = "Event name";
  473. $Day = "day";
  474. $month_default = "default month";
  475. $year_default = "default year";
  476. $Hour = "Hour";
  477. $hour_default = "default hour";
  478. $Minute = "minute";
  479. $Lasting = "lasting";
  480. $OldToNew = "old to new";
  481. $NewToOld = "new to old";
  482. $Now = "now";
  483. $AddEvent = "Save the event";
  484. $Detail = "detail";
  485. $MonthView = "Month view";
  486. $WeekView = "Weekly";
  487. $DayView = "Daily";
  488. $AddPersonalItem = "Add event to the agenda";
  489. $Week = "Week";
  490. $Time = "Time";
  491. $AddPersonalCalendarItem = "Add event to the agenda";
  492. $ModifyPersonalCalendarItem = "Edit personal event";
  493. $PeronalAgendaItemAdded = "Event added";
  494. $PeronalAgendaItemEdited = "Event saved";
  495. $PeronalAgendaItemDeleted = "The event was deleted";
  496. $ViewPersonalItem = "View perso events only";
  497. $Print = "Print";
  498. $MyTextHere = "my text here";
  499. $CopiedAsAnnouncement = "Copied as announcement";
  500. $NewAnnouncement = "New announcement";
  501. $UpcomingEvent = "Upcoming events";
  502. $RepeatedEvent = "Repeated event";
  503. $RepeatType = "Repeat type";
  504. $RepeatDaily = "Daily";
  505. $RepeatWeekly = "Weekly";
  506. $RepeatMonthlyByDate = "Monthly, by date";
  507. $RepeatMonthlyByDay = "Monthly, by day";
  508. $RepeatMonthlyByDayR = "Monthly, by day, restricted";
  509. $RepeatYearly = "Yearly";
  510. $RepeatEnd = "Repeat end date";
  511. $RepeatedEventViewOriginalEvent = "View original event";
  512. $ICalFileImport = "Outlook import";
  513. $AllUsersOfThePlatform = "All system users";
  514. $GlobalEvent = "Platform event";
  515. $ModifyEvent = "Edit event";
  516. $EndDateCannotBeBeforeTheStartDate = "The end date cannot be before the start date";
  517. $ItemForUserSelection = "Users selection list";
  518. $IsNotiCalFormatFile = "This file is not in iCal format";
  519. $RepeatEvent = "Repeat event";
  520. $ScormVersion = "version";
  521. $ScormRestarted = "All the learning objects are now incomplete.";
  522. $ScormNoNext = "This is the latest learning object.";
  523. $ScormNoPrev = "This is the first learning object.";
  524. $ScormTime = "Time";
  525. $ScormNoOrder = "There is no given order, you can click on any learning object.";
  526. $ScormScore = "Score";
  527. $ScormLessonTitle = "Learning object name";
  528. $ScormStatus = "Status";
  529. $ScormToEnter = "To enter";
  530. $ScormFirstNeedTo = "you need first to accomplish";
  531. $ScormThisStatus = "This learning object is now";
  532. $ScormClose = "Terminate";
  533. $ScormRestart = "Restart";
  534. $ScormCompstatus = "Completed";
  535. $ScormIncomplete = "Incomplete";
  536. $ScormPassed = "Passed";
  537. $ScormFailed = "Failed";
  538. $ScormPrevious = "Previous";
  539. $ScormNext = "Next";
  540. $ScormTitle = "Chamilo SCORM player";
  541. $ScormMystatus = "My progress";
  542. $ScormNoItems = "This course is empty.";
  543. $ScormNoStatus = "No status for this content";
  544. $ScormLoggedout = "logged out from SCORM area";
  545. $ScormCloseWindow = "Close windows";
  546. $ScormBrowsed = "Browsed";
  547. $ScormExitFullScreen = "Back to normal screen";
  548. $ScormFullScreen = "Full screen";
  549. $ScormNotAttempted = "Not attempted";
  550. $Local = "Local";
  551. $Remote = "Remote";
  552. $Autodetect = "Auto-detect";
  553. $AccomplishedStepsTotal = "Total of completed learning objects";
  554. $AreYouSureToDeleteSteps = "Are you sure you want to delete these steps?";
  555. $Origin = "Authoring tool";
  556. $Local = "Local";
  557. $Remote = "Remote";
  558. $FileToUpload = "SCORM or AICC file to upload";
  559. $ContentMaker = "Authoring tool";
  560. $ContentProximity = "Course location";
  561. $UploadLocalFileFromGarbageDir = "Upload local .zip package from the archive/ directory";
  562. $ThisItemIsNotExportable = "This learning object or activity is not SCORM compliant. That's why it is not exportable.";
  563. $MoveCurrentChapter = "Move the current section";
  564. $GenericScorm = "Generic SCORM";
  565. $UnknownPackageFormat = "The format of this package could not be recognized. Please check this is a valid package.";
  566. $MoveTheCurrentForum = "Move the current forum";
  567. $WarningWhenEditingScorm = "Warning ! When you edit the content of a learning object, you may alter the reporting of the course or damage the learning object.";
  568. $MessageEmptyMessageOrSubject = "Please provide a subject or message";
  569. $Messages = "Messages";
  570. $NewMessage = "New message";
  571. $DeleteSelectedMessages = "Delete selected messages";
  572. $DeselectAll = "Deselect all";
  573. $ReplyToMessage = "Reply to this message";
  574. $BackToInbox = "Back to inbox";
  575. $MessageSentTo = "The message has been sent to";
  576. $SendMessageTo = "Send to";
  577. $Myself = "myself";
  578. $InvalidMessageId = "The id of the message to reply to is not valid.";
  579. $ErrorSendingMessage = "There was an error while trying to send the message.";
  580. $SureYouWantToDeleteSelectedMessages = "Are you sure you want to delete the selected messages?";
  581. $SelectedMessagesDeleted = "The selected messages have been deleted";
  582. $EnterTitle = "Please enter a title";
  583. $TypeYourMessage = "Type your message here";
  584. $MessageDeleted = "The message has been deleted";
  585. $ConfirmDeleteMessage = "Are you sure you want to delete the selected message?";
  586. $DeleteMessage = "Delete message";
  587. $ReadMessage = "Read message";
  588. $SendInviteMessage = "Send invitation message";
  589. $SendMessageInvitation = "Are you sure that you wish to send these invitations ?";
  590. $MessageTool = "Messages tool";
  591. $WriteAMessage = "Write a message";
  592. $AlreadyReadMessage = "Message already read";
  593. $UnReadMessage = "Message without reading";
  594. $MessageSent = "Message Sent";
  595. $ModifInfo = "Settings";
  596. $ModifDone = "The information has been modified";
  597. $DelCourse = "Completely delete this course";
  598. $Professors = "Trainers";
  599. $Faculty = "Category";
  600. $Confidentiality = "Confidentiality";
  601. $Unsubscription = "Unsubscribe";
  602. $PrivOpen = "Private access, registration open";
  603. $Forbidden = "Not allowed";
  604. $CourseAccessConfigTip = "By default, your course is public. But you can define the level of access above.";
  605. $OpenToTheWorld = "Public - access allowed for the whole world";
  606. $OpenToThePlatform = " Open - access allowed for users registered on the platform";
  607. $StudentXIsNotSubscribedToCourse = "Student %s is no subscribed to this course";
  608. $TipLang = "This language will be valid for every visitor of your courses portal";
  609. $Vid = "Chamilo LIVE";
  610. $Work = "Contributions";
  611. $ProgramMenu = "Course program";
  612. $Stats = "Statistics";
  613. $UplPage = "Upload page and link to Home Page";
  614. $LinkSite = "Add link to page on Home Page";
  615. $HasDel = "has been deleted";
  616. $ByDel = "Deleting this area will permanently delete all the content (documents, links...) it contains and unregister all its members (not remove them from other courses). <p>Do you really want to delete the course?";
  617. $Y = "YES";
  618. $N = "NO";
  619. $DepartmentUrl = "Department URL";
  620. $DepartmentUrlName = "Department";
  621. $BackupCourse = "Archive this course area";
  622. $ModifGroups = "Groups";
  623. $Professor = "Trainer";
  624. $DescriptionCours = "Description";
  625. $ArchiveCourse = "Course backup";
  626. $RestoreCourse = "Restore a course";
  627. $Restore = "Restore";
  628. $CreatedIn = "created in";
  629. $CreateMissingDirectories = "Creation of missing directories";
  630. $CopyDirectoryCourse = "Copy of course files";
  631. $Disk_free_space = "Free disk space";
  632. $BuildTheCompressedFile = "Creation of backup file";
  633. $FileCopied = "file copied";
  634. $ArchiveLocation = "Archive location";
  635. $SizeOf = "Size of";
  636. $ArchiveName = "Archive name";
  637. $BackupSuccesfull = "Backup successful";
  638. $BUCourseDataOfMainBase = "Backup of course data in main database for";
  639. $BUUsersInMainBase = "Backup of user data in main database for";
  640. $BUAnnounceInMainBase = "Backup of announcements data in main database for";
  641. $BackupOfDataBase = "Backup of database";
  642. $ExpirationDate = "Expiration date";
  643. $LastEdit = "Latest edit";
  644. $LastVisit = "Latest visit";
  645. $Subscription = "Subscription";
  646. $CourseAccess = "Course access";
  647. $ConfirmBackup = "Do you really want to backup this course?";
  648. $CreateSite = "Add a new course";
  649. $RestoreDescription = "The course is in an archive file which you can select below.<br><br>Once you click on \"Restore\", the archive will be uncompressed and the course recreated.";
  650. $RestoreNotice = "This script doesn't allow yet to automatically restore users, but data saved in \"users.csv\" are sufficient for the administrator to do it manually.";
  651. $AvailableArchives = "Available archives list";
  652. $NoArchive = "No archive has been selected";
  653. $ArchiveNotFound = "The archive has not been found";
  654. $ArchiveUncompressed = "The archive has been uncompressed and installed.";
  655. $CsvPutIntoDocTool = "The file \"users.csv\" has been put into Documents tool.";
  656. $WebServices = "Web services";
  657. $OtherCategory = "Other category";
  658. $AllowedToUnsubscribe = "Users are allowed to unsubscribe from this course";
  659. $NotAllowedToUnsubscribe = "Users are not allowed to unsubscribe from this course";
  660. $CourseVisibilityClosed = "Completely closed: the course is only accessible to the teachers.";
  661. $CourseVisibilityClosed = "Closed - the course is only accessible to the teachers";
  662. $CourseVisibilityModified = "Modified (more detailed settings specified through roles-rights system)";
  663. $WorkEmailAlert = "E-mail on assignments submission by students";
  664. $WorkEmailAlertActivate = "E-mail students and teachers on new assignment submission";
  665. $WorkEmailAlertDeactivate = "Disable e-mail alert on new assignment submission";
  666. $DropboxEmailAlert = "E-mail users on dropbox file reception";
  667. $DropboxEmailAlertActivate = "E-mail users on dropbox files reception";
  668. $DropboxEmailAlertDeactivate = "Disable e-mail alert on dropbox files reception";
  669. $AllowUserEditAgenda = "Allow learners to edit the agenda";
  670. $AllowUserEditAgendaActivate = "Activate course agenda edition by users";
  671. $AllowUserEditAgendaDeactivate = "Disable agenda editing by learners";
  672. $AllowUserEditAnnouncement = "Allow learners to edit announcements";
  673. $AllowUserEditAnnouncementActivate = "Enable edition by users";
  674. $AllowUserEditAnnouncementDeactivate = "Disable edition by users";
  675. $OrInTime = "Or in";
  676. $CourseRegistrationPassword = "Course registration password";
  677. $DescriptionDeleteCourse = "Click on this link for a full removal of the course from the server.<br /><br />Be carefull, there's no way back!";
  678. $DescriptionCopyCourse = "Duplicate the course or some learning objects in another course. You need 2 courses to use this feature: an original course and a target course.";
  679. $DescriptionRecycleCourse = "This tool empties the course. It removes documents, forums, links. And allows you to select what parts you want to remove or decide to remove the whole.";
  680. $QuizEmailAlert = "E-mail alert on new test submitted";
  681. $QuizEmailAlertActivate = "Activate e-mail sending when a user submits new test answers";
  682. $QuizEmailAlertDeactivate = "Disable e-mail alert on new test answers submission";
  683. $AllowUserImageForum = "User picture in forum";
  684. $AllowUserImageForumActivate = "Display users pictures in the forum";
  685. $AllowUserImageForumDeactivate = "Hide users pictures in the forum";
  686. $AllowLearningPathTheme = "Enable course themes";
  687. $AllowLearningPathThemeAllow = "Allowed";
  688. $AllowLearningPathThemeDisallow = "Disallowed";
  689. $ConfigChat = "Chat settings";
  690. $AllowOpenchatWindow = "Open chat in a new Window";
  691. $AllowOpenChatWindowActivate = "Activate open the chat in a new window";
  692. $AllowOpenChatWindowDeactivate = "Deactivate open the chat in a new window";
  693. $NewUserEmailAlert = "E-mail teacher when a new user auto-subscribes";
  694. $NewUserEmailAlertEnable = "E-mail the teacher when a new user auto-subscribes";
  695. $NewUserEmailAlertToTeacharAndTutor = "E-mail teacher and tutors when new user auto-subscribes";
  696. $NewUserEmailAlertDisable = "Disable e-mail alert to teacher on auto-subscription";
  697. $PressAgain = "Press 'Store' again...";
  698. $Rights = "Usage Rights";
  699. $Version = "Version";
  700. $StatusTip = "select from list";
  701. $CreatedSize = "Created, size";
  702. $AuthorTip = "in VCARD format";
  703. $Format = "Format";
  704. $FormatTip = "select from list";
  705. $Statuses = ":draft:draft,, final:final,, revised:revised,, unavailable:unavailable";
  706. $Costs = ":no:free, no cost,, yes:not free, cost";
  707. $Copyrights = ":yes:copyright,, no:no copyright";
  708. $Formats = ":text/plain;iso-8859-1:text/plain;iso-8859-1,, text/plain;utf-8:text/plain;utf-8,, text/html;iso-8859-1:text/html;iso-8859-1,, text/html;utf-8:text/html;utf-8,, inode/directory:Folder,, application/msword:MsWord,, application/octet-stream:Octet stream,, application/pdf:PDF,, application/postscript:PostScript,, application/rtf:RTF,, application/vnd.ms-excel:MsExcel,, application/vnd.ms-powerpoint:MsPowerpoint,, application/xml;iso-8859-1:XML;iso-8859-1,, application/xml;utf-8:XML;utf-8,, application/zip:ZIP";
  709. $LngResTypes = ":exercise:exercise,, simulation:simulation,, questionnaire:questionnaire,, diagram:diagram,, figure:figure,, graph:graf,, index:index,, slide:slide,, table:table,, narrative text:narrative text,, exam:exam,, experiment:experiment,, problem statement:problem statement,, self assessment:self assessment,, lecture:lecture";
  710. $SelectOptionForBackup = "Please select a backup option";
  711. $LetMeSelectItems = "Let me select learning objects";
  712. $CreateFullBackup = "Create a complete backup of this course";
  713. $CreateBackup = "Create a backup";
  714. $BackupCreated = "The backup has been created. The download of this file will start in a few moments. If your download does not start, click the following link";
  715. $SelectBackupFile = "Select a backup file";
  716. $ImportBackup = "Import backup";
  717. $ImportFullBackup = "Import full backup";
  718. $ImportFinished = "Import finished";
  719. $Tests = "Tests";
  720. $Learnpaths = "Courses";
  721. $CopyCourse = "Copy course";
  722. $SelectItemsToCopy = "Select learning objects to copy";
  723. $CopyFinished = "Copying is finished";
  724. $FullRecycle = "Delete everything";
  725. $RecycleCourse = "Empty this course";
  726. $RecycleFinished = "Recycle is finished";
  727. $RecycleWarning = "Warning: using this tool, you will delete learning objects in your course. There is no UNDO possible. We advise you to create a <a href=\"create_backup.php\">backup</a> before.";
  728. $SameFilename = "What should be done with imported files with the same file name as existing files?";
  729. $SameFilenameSkip = "Skip same file name";
  730. $SameFilenameRename = "Rename file (eg file.pdf becomes file_1.pdf)";
  731. $SameFilenameOverwrite = "Overwrite file";
  732. $SelectDestinationCourse = "Select target course";
  733. $FullCopy = "Full copy";
  734. $NoResourcesToBackup = "There are no resources to backup";
  735. $NoResourcesInBackupFile = "There are no resources in backup file";
  736. $SelectResources = "Select resources";
  737. $NoResourcesToRecycles = "There are no resources to recycle";
  738. $IncludeQuestionPool = "Include questions pool";
  739. $LocalFile = "local file";
  740. $ServerFile = "server file";
  741. $NoBackupsAvailable = "No backup is available";
  742. $NoDestinationCoursesAvailable = "No destination course available";
  743. $ImportBackupInfo = "Import a backup. You will be able to upload a backup file from you local drive or you can use a backup file available on the server.";
  744. $CreateBackupInfo = "Create a backup. You can select the learning objects to integrate in the backup file.";
  745. $ToolIntro = "Tool introduction";
  746. $UploadError = "Upload failed, please check maximum file size limits and folder rights.";
  747. $DocumentsWillBeAddedToo = "Documents will be added too";
  748. $ToExportLearnpathWithQuizYouHaveToSelectQuiz = "If you want to export a course containing a test, you have to make sure the corresponding tests are included in the export, so you have to select them in the list of tests.";
  749. $ArchivesDirectoryNotWriteableContactAdmin = "The app/cache/ directory, used by this tool, is not writeable. Please contact your platform administrator.";
  750. $DestinationCourse = "Target course";
  751. $ConvertToMultipleAnswer = "Convert to multiple answer";
  752. $CasMainActivateComment = "Enabling CAS authentication will allow users to authenticate with their CAS credentials.<br/>Go to <a href='settings.php?category=CAS'>Plugin</a> to add a configurable 'CAS Login' button for your Chamilo campus.";
  753. $UsersRegisteredInAnyGroup = "Users registered in any group";
  754. $Camera = "Camera";
  755. $Microphone = "Microphone";
  756. $DeleteStream = "Delete stream";
  757. $Record = "Record";
  758. $NoFileAvailable = "No File availible";
  759. $RecordingOnlyForTeachers = "Recording only for trainers";
  760. $UsersNow = "Users at the moment:";
  761. $StartConference = "Start conference";
  762. $MyName = "My name";
  763. $OrganisationSVideoconference = "Chamilo LIVE";
  764. $ImportPresentation = "Import presentation";
  765. $RefreshList = "Refresh list";
  766. $GoToTop = "Go to Top";
  767. $NewPoll = "New poll";
  768. $CreateNewPoll = "Create a new poll for this room";
  769. $Question = "Question";
  770. $PollType = "Polltype:";
  771. $InfoConnectedUsersGetNotifiedOfThisPoll = "Info: Every connected User in this room will get a notification of this new Poll.";
  772. $YesNo = "Yes / No";
  773. $Numeric1To10 = "Numeric 1-10";
  774. $Poll = "Poll";
  775. $YouHaveToBecomeModeratorOfThisRoomToStartPolls = "You have to become Moderator of this Room to make polls.";
  776. $YourVoteHasBeenSent = "Your vote has been sent";
  777. $YouAlreadyVotedForThisPoll = "You've already voted for this poll";
  778. $VoteButton = "Vote!";
  779. $YourAnswer = "Your answer";
  780. $WantsToKnow = "wants to know:";
  781. $PollResults = "Poll results";
  782. $ThereIsNoPoll = "There is no Poll.";
  783. $MeetingMode = "Meeting (max 4 seats)";
  784. $ConferenceMaxSeats = "Conference (max 50 seats)";
  785. $RemainingSeats = "Remaining seats";
  786. $AlreadyIn = "Already in";
  787. $CheckIn = "Check in";
  788. $TheModeratorHasLeft = "The Moderator of this Conference has left the room.";
  789. $SystemMessage = "System message";
  790. $ChooseDevices = "Choose devices";
  791. $ChooseCam = "Choose Cam:";
  792. $ChooseMic = "Choose Mic:";
  793. $YouHaveToReconnectSoThatTheChangesTakeEffect = "You have to reconnect so that the changes take effect.";
  794. $ChangeSettings = "Change settings";
  795. $CourseLanguage = "Course language";
  796. $ConfirmClearWhiteboard = "Confirm Clear Whiteboard";
  797. $ShouldWitheboardBeClearedBeforeNewImage = "Should the whiteboard be cleared before I add a new Image?";
  798. $DontAskMeAgain = "Don't ask me again";
  799. $ShowConfirmationBeforeClearingWhiteboard = "Ask confirmation before clearing whiteboard";
  800. $ClearDrawArea = "Clear Draw Area";
  801. $Undo = "Undo";
  802. $Redo = "Redo";
  803. $SelectAnObject = "Select an Object";
  804. $DrawLine = "Draw line";
  805. $DrawUnderline = "Draw underline";
  806. $Rectangle = "Rectangle";
  807. $Elipse = "Ellipse";
  808. $Arrow = "Arrow";
  809. $DeleteChosenItem = "Delete selected resource";
  810. $ApplyForModeration = "Apply for moderation";
  811. $Apply = "Apply";
  812. $BecomeModerator = "Become moderator";
  813. $Italic = "Italic";
  814. $Bold = "Bold";
  815. $Waiting = "Waiting";
  816. $AUserWantsToApplyForModeration = "A User wants to apply for moderation:";
  817. $Reject = "Reject";
  818. $SendingRequestToFollowingUsers = "Sending request to the following users";
  819. $Accepted = "Accepted";
  820. $Rejected = "Rejected";
  821. $ChangeModerator = "Change Moderator";
  822. $YouAreNotModeratingThisCourse = "You are not moderator.";
  823. $Moderator = "Moderator";
  824. $ThisRoomIsFullPleaseTryAgain = "This Room is full. Sorry please try again later.";
  825. $PleaseWaitWhileLoadingImage = "Please wait while loading image";
  826. $SynchronisingConferenceMembers = "Synchronizing conference members";
  827. $Trainer = "Teacher";
  828. $Slides = "Slides";
  829. $WaitingForParticipants = "Waiting for participants";
  830. $Browse = "Browse";
  831. $ChooseFile = "Choose a file to import";
  832. $ConvertingDocument = "Converting document";
  833. $Disconnected = "Disconnected";
  834. $FineStroke = "Thin";
  835. $MediumStroke = "Medium";
  836. $ThickStroke = "Thick";
  837. $ShowHotCoursesComment = "The hot courses list will be added in the index page";
  838. $ShowHotCoursesTitle = "Show hot courses";
  839. $ThisItemIsInvisibleForStudentsButYouHaveAccessAsTeacher = "This item is invisible for learner but you have access as teacher.";
  840. $PreventSessionAdminsToManageAllUsersTitle = "Prevent session admins to manage all users";
  841. $IsOpenSession = "Open session";
  842. $AllowVisitors = "Allow visitors";
  843. $EnableIframeInclusionComment = "Allowing arbitrary iframes in the HTML Editor will enhance the edition capabilities of the users, but it can represent a security risk. Please make sure you can rely on your users (i.e. you know who they are) before enabling this feature.";
  844. $AddedToLPCannotBeAccessed = "This exercise has been included in a learning path, so it cannot be accessed by students directly from here. If you want to put the same exercise available through the exercises tool, please make a copy of the current exercise using the copy icon.";
  845. $EnableIframeInclusionTitle = "Allow iframes in HTML Editor";
  846. $MailTemplateRegistrationMessage = "Dear ((firstname)) ((lastname)),\n\nYou are registered on
  847. ((sitename)) with the following settings:\n\nUsername :
  848. ((username))\nPass : ((password))\n\nThe address of ((sitename)) is :
  849. ((url))\n\nIn case of trouble, contact us.\n\nYours sincerely
  850. \n((admin_name)) ((admin_surname)).";
  851. $Explanation = "Once you click on \"Create a course\", a course is created with a section for Tests, Project based learning, Assessments, Courses, Dropbox, Agenda and much more. Logging in as teacher provides you with editing privileges for this course.";
  852. $CodeTaken = "This course code is already in use.<br>Use the <b>Back</b> button on your browser and try again.";
  853. $ExerciceEx = "Sample test";
  854. $Antique = "Irony";
  855. $SocraticIrony = "Socratic irony is...";
  856. $ManyAnswers = "(more than one answer can be true)";
  857. $Ridiculise = "Ridiculise one's interlocutor in order to have him concede he is wrong.";
  858. $NoPsychology = "No. Socratic irony is not a matter of psychology, it concerns argumentation.";
  859. $AdmitError = "Admit one's own errors to invite one's interlocutor to do the same.";
  860. $NoSeduction = "No. Socratic irony is not a seduction strategy or a method based on the example.";
  861. $Force = "Compell one's interlocutor, by a series of questions and sub-questions, to admit he doesn't know what he claims to know.";
  862. $Indeed = "Indeed. Socratic irony is an interrogative method. The Greek \"eirotao\" means \"ask questions\"";
  863. $Contradiction = "Use the Principle of Non Contradiction to force one's interlocutor into a dead end.";
  864. $NotFalse = "This answer is not false. It is true that the revelation of the interlocutor's ignorance means showing the contradictory conclusions where lead his premisses.";
  865. $AddPageHome = "Upload page and link to Homepage";
  866. $ModifyInfo = "Settings";
  867. $CourseDesc = "Description";
  868. $AgendaTitle = "Tuesday the 11th of December - First meeting. Room: LIN 18";
  869. $AgendaText = "General introduction to project management";
  870. $Micro = "Street interviews";
  871. $Google = "Quick and powerful search engine";
  872. $IntroductionTwo = "This page allows users and groups to publish documents.";
  873. $AnnouncementEx = "This is an announcement example. Only trainers are allowed to publish announcements.";
  874. $JustCreated = "You just created the course area";
  875. $CreateCourseGroups = "Groups";
  876. $CatagoryMain = "Main";
  877. $CatagoryGroup = "Groups forums";
  878. $Ln = "Language";
  879. $FieldsRequ = "All fields required";
  880. $Ex = "e.g. <i>Innovation management</i>";
  881. $Fac = "Category";
  882. $TargetFac = "This is the department or any other context where the course is delivered";
  883. $Doubt = "If you are unsure of your course code, consult the training details.";
  884. $Program = "Course Program</a>. If your course has no code, whatever the reason, invent one. For instance <i>INNOVATION</i> if the course is about Innovation Management";
  885. $Scormtool = "Courses";
  886. $Scormbuildertool = "SCORM Path builder";
  887. $Pathbuildertool = "Authoring tool";
  888. $OnlineConference = "Conference";
  889. $AgendaCreationTitle = "Course creation";
  890. $AgendaCreationContenu = "This course was created at this time";
  891. $OnlineDescription = "Conference description";
  892. $Only = "Only";
  893. $RandomLanguage = "Shuffle selection in available languages";
  894. $ForumLanguage = "english";
  895. $NewCourse = "New course";
  896. $AddNewCourse = "Add a new course";
  897. $OtherProperties = "Other properties found in the archive";
  898. $SysId = "System ID";
  899. $ScoreShow = "Show score";
  900. $Visibility = "Visibility";
  901. $VersionDb = "Database version used at archive time";
  902. $Expire = "Expiration";
  903. $ChoseFile = "Select file";
  904. $FtpFileTips = "File on a FTP server";
  905. $HttpFileTips = "File on a Web (HTTP) server";
  906. $LocalFileTips = "File on the platform server";
  907. $PostFileTips = "File on your local computer";
  908. $Minimum = "minimum";
  909. $Maximum = "maximum";
  910. $RestoreACourse = "Restore a course";
  911. $Recycle = "Recycle course";
  912. $AnnouncementExampleTitle = "This is an announcement example";
  913. $Wikipedia = "Free online encyclopedia";
  914. $DefaultGroupCategory = "Default groups";
  915. $DefaultCourseImages = "Gallery";
  916. $ExampleForumCategory = "Example Forum Category";
  917. $ExampleForum = "Example Forum";
  918. $ExampleThread = "Example Thread";
  919. $ExampleThreadContent = "Example content";
  920. $IntroductionWiki = "The word Wiki is short for WikiWikiWeb. Wikiwiki is a Hawaiian word, meaning \"fast\" or \"speed\". In a wiki, people write pages together. If one person writes something wrong, the next person can correct it. The next person can also add something new to the page. Because of this, the pages improve continuously.";
  921. $CreateCourseArea = "Create this course";
  922. $CreateCourse = "Create a course";
  923. $TitleNotification = "Since your latest visit";
  924. $ForumCategoryAdded = "The forum category has been added";
  925. $LearnpathAdded = "Course added";
  926. $GlossaryAdded = "Added new term in the Glossary";
  927. $QuizQuestionAdded = "Added new question in the quiz";
  928. $QuizQuestionUpdated = "Updated new question in the Quiz";
  929. $QuizQuestionDeleted = "Deleted new question in the Quiz";
  930. $QuizUpdated = "Quiz updated";
  931. $QuizAdded = "Quiz added";
  932. $QuizDeleted = "Quiz deleted";
  933. $DocumentInvisible = "Document invisible";
  934. $DocumentVisible = "Document visible";
  935. $CourseDescriptionAdded = "Course Description added";
  936. $NotebookAdded = "Note added";
  937. $NotebookUpdated = "Note updated";
  938. $NotebookDeleted = "Note deleted";
  939. $DeleteAllAttendances = "Delete all created attendances";
  940. $AssignSessionsTo = "Assign sessions to";
  941. $Upload = "Upload";
  942. $MailTemplateRegistrationTitle = "New user on ((sitename))";
  943. $Unsubscribe = "Unsubscribe";
  944. $AlreadyRegisteredToCourse = "Already registered in course";
  945. $ShowFeedback = "Show Feedback";
  946. $GiveFeedback = "Give / Edit Feedback";
  947. $JustUploadInSelect = "---Just upload---";
  948. $MailingNothingFor = "Nothing for";
  949. $MailingFileNotRegistered = "(not registered to this course)";
  950. $MailingFileSentTo = "sent to";
  951. $MailingFileIsFor = "is for";
  952. $ClickKw = "Click a keyword in the tree to select or deselect it.";
  953. $KwHelp = "<br/>Click '+' button to open, '-' button to close, '++' button to open all, '--' button to close all.<br/><br/>Clear all selected keywords by closing the tree and opening it again with the '+' button.<br/>Alt-click '+' searches the original keywords in the tree.<br/><br/>Alt-click keyword selects a keyword without broader terms or deselects a keyword with broader terms.<br/><br/>If you change the description language, do not add keywords at the same time.<br/><br/>";
  954. $SearchCrit = "One word per line!";
  955. $NoKeywords = "This course has no keywords";
  956. $KwCacheProblem = "The keyword cache cannot be opened";
  957. $CourseKwds = "This document contains the course keywords";
  958. $KwdsInMD = "keywords used in MD";
  959. $KwdRefs = "keyword references";
  960. $NonCourseKwds = "Non-course keywords";
  961. $KwdsUse = "Course keywords (bold = not used)";
  962. $TotalMDEs = "Total number of Links MD entries:";
  963. $ForumDeleted = "Forum deleted";
  964. $ForumCategoryDeleted = "Forum category deleted";
  965. $ForumLocked = "Forum blocked";
  966. $AddForumCategory = "Add forum category";
  967. $AddForum = "Add a forum";
  968. $Posts = "Posts";
  969. $LastPosts = "Latest Post";
  970. $NoForumInThisCategory = "There are no forums in this category";
  971. $InForumCategory = "Create in category";
  972. $AllowAnonymousPosts = "Allow anonymous posts?";
  973. $StudentsCanEdit = "Can learners edit their own posts?";
  974. $ApprovalDirect = "Approval / Direct Post";
  975. $AllowNewThreads = "Allow users to start new threads";
  976. $DefaultViewType = "Default view type";
  977. $GroupSettings = "Group Settings";
  978. $NotAGroupForum = "Not a group forum";
  979. $PublicPrivateGroupForum = "Public or private group forum?";
  980. $NewPostStored = "Your message has been saved";
  981. $ReplyToThread = "Reply to this thread";
  982. $QuoteMessage = "Quote this message";
  983. $NewTopic = "Create thread";
  984. $Views = "Views";
  985. $LastPost = "Latest post";
  986. $Quoting = "Quoting";
  987. $NotifyByEmail = "Notify me by e-mail when somebody replies";
  988. $StickyPost = "This is a sticky message (appears always on top and has a special sticky icon)";
  989. $ReplyShort = "Re:";
  990. $DeletePost = "Are you sure you want to delete this post? Deleting this post will also delete the replies on this post. Please check the threaded view to see which posts will also be deleted";
  991. $Locked = "Locked: students can no longer post new messages in this forum category, forum or thread but they can still read the messages that were already posted";
  992. $Unlocked = "Unlocked: learners can post new messages in this forum category, forum or thread";
  993. $Flat = "Flat";
  994. $Threaded = "Threaded";
  995. $Nested = "Nested";
  996. $FlatView = "List View";
  997. $ThreadedView = "Threaded View";
  998. $NestedView = "Nested View";
  999. $Structure = "Structure";
  1000. $ForumCategoryEdited = "The forum category has been modified";
  1001. $ForumEdited = "The forum has been modified";
  1002. $NewThreadStored = "The new thread has been added";
  1003. $Approval = "Approval";
  1004. $Direct = "Direct";
  1005. $ForGroup = "For Group";
  1006. $ThreadLocked = "Thread is locked.";
  1007. $NotAllowedHere = "You are not allowed here.";
  1008. $ReplyAdded = "The reply has been added";
  1009. $EditPost = "Edit a post";
  1010. $EditPostStored = "The post has been modified";
  1011. $NewForumPost = "New Post in the forum";
  1012. $YouWantedToStayInformed = "You stated that you wanted to be informed by e-mail whenever somebody replies on the thread";
  1013. $MessageHasToBeApproved = "Your message has to be approved before people can view it.";
  1014. $AllowAttachments = "Allow attachments";
  1015. $EditForumCategory = "Edit forum category";
  1016. $MovePost = "Move post";
  1017. $MoveToThread = "Move to a thread";
  1018. $ANewThread = "A new thread";
  1019. $DeleteForum = "Delete forum ?";
  1020. $DeleteForumCategory = "Delete forum category ?";
  1021. $Lock = "Lock";
  1022. $Unlock = "Unlock";
  1023. $MoveThread = "Move Thread";
  1024. $PostVisibilityChanged = "Post visibility changed";
  1025. $PostDeleted = "Post has been deleted";
  1026. $ThreadCanBeFoundHere = "The thread can be found here";
  1027. $DeleteCompleteThread = "Delete complete thread?";
  1028. $PostDeletedSpecial = "Special Post Deleted";
  1029. $ThreadDeleted = "Thread deleted";
  1030. $NextMessage = "Next message";
  1031. $PrevMessage = "Previous message";
  1032. $FirstMessage = "First message";
  1033. $LastMessage = "Last message";
  1034. $ForumSearch = "Search in the Forum";
  1035. $ForumSearchResults = "Forum search results";
  1036. $ForumSearchInformation = "You search on multiple words by using the + sign";
  1037. $YouWillBeNotifiedOfNewPosts = "You will be notified of new posts by e-mail.";
  1038. $YouWillNoLongerBeNotifiedOfNewPosts = "You will no longer be notified of new posts by email";
  1039. $AddImage = "Add image";
  1040. $QualifyThread = "Grade thread";
  1041. $ThreadUsersList = "Users list of the thread";
  1042. $QualifyThisThread = "Grade this thread";
  1043. $CourseUsers = "Users in course";
  1044. $PostsNumber = "Number of posts";
  1045. $NumberOfPostsForThisUser = "Number of posts for this user";
  1046. $AveragePostPerUser = "Posts by user";
  1047. $QualificationChangesHistory = "Assessment changes history";
  1048. $MoreRecent = "more recent";
  1049. $Older = "older";
  1050. $WhoChanged = "Who changed";
  1051. $NoteChanged = "Note changed";
  1052. $DateChanged = "Date changed";
  1053. $ViewComentPost = "View comments on the messages";
  1054. $AllStudents = "All learners";
  1055. $StudentsQualified = "Qualified learners";
  1056. $StudentsNotQualified = "Unqualified learners";
  1057. $NamesAndLastNames = "First names and last names";
  1058. $MaxScore = "Max score";
  1059. $QualificationCanNotBeGreaterThanMaxScore = "Grade cannot exceed max score";
  1060. $ThreadStatistics = "Thread statistics";
  1061. $Thread = "Thread";
  1062. $NotifyMe = "Notify me";
  1063. $ConfirmUserQualification = "Confirm mark";
  1064. $NotChanged = "Unchanged";
  1065. $QualifyThreadGradebook = "Grade this thread";
  1066. $QualifyNumeric = "Score";
  1067. $AlterQualifyThread = "Edit thread score";
  1068. $ForumMoved = "The forum has moved";
  1069. $YouMustAssignWeightOfQualification = "You must assign a score to this activity";
  1070. $DeleteAttachmentFile = "Delete attachment file";
  1071. $EditAnAttachment = "Edit an attachment";
  1072. $CreateForum = "Create forum";
  1073. $ModifyForum = "Edit forum";
  1074. $CreateThread = "Create thread";
  1075. $ModifyThread = "Edit thread";
  1076. $EditForum = "Edit forum";
  1077. $BackToForum = "Back to forum";
  1078. $BackToForumOverview = "Back to forum overview";
  1079. $BackToThread = "Back to thread";
  1080. $ForumcategoryLocked = "Forum category Locked";
  1081. $LinkMoved = "The link has been moved";
  1082. $LinkName = "Link name";
  1083. $LinkAdd = "Add a link";
  1084. $LinkAdded = "The link has been added.";
  1085. $LinkMod = "Edit link";
  1086. $LinkModded = "The link has been modified.";
  1087. $LinkDel = "Delete link";
  1088. $LinkDeleted = "The link has been deleted";
  1089. $LinkDelconfirm = "Do you want to delete this link?";
  1090. $AllLinksDel = "Delete all links in this category";
  1091. $CategoryName = "Category name";
  1092. $CategoryAdd = "Add a category";
  1093. $CategoryModded = "The category has been modified.";
  1094. $CategoryDel = "Delete category";
  1095. $CategoryDelconfirm = "When deleting a category, all links of this category are also deleted.\nDo you really want to delete this category and its links ?";
  1096. $AllCategoryDel = "Delete all categories and all links";
  1097. $GiveURL = "Please give the link URL, it should be valid.";
  1098. $GiveCategoryName = "Please give the category name";
  1099. $NoCategory = "General";
  1100. $ShowNone = "Close all categories";
  1101. $ListDeleted = "List has been deleted";
  1102. $AddLink = "Add a link";
  1103. $DelList = "Delete list";
  1104. $ModifyLink = "Edit Link";
  1105. $CsvImport = "CSV import";
  1106. $CsvFileNotFound = "CSV import file could not be opened (e.g. empty, too big)";
  1107. $CsvFileNoSeps = "CSV import file must use , or ; as listseparator";
  1108. $CsvFileNoURL = "CSV import file must at least have columns URL and title";
  1109. $CsvFileLine1 = "... - line 1 =";
  1110. $CsvLinesFailed = "line(s) failed to import a link (no URL or no title).";
  1111. $CsvLinesOld = "existing link(s) updated (same URL and category).";
  1112. $CsvLinesNew = "new link(s) created.";
  1113. $CsvExplain = "The file should look like:<blockquote><pre><b>URL</b>;category;<b>title</b>;description;<b>http://www.aaa.org/...</b>;Important links;<b>Name 1</b>;Description 1;<b>http://www.bbb.net/...</b>;;<b>Name 2</b>;\"Description 2\";</pre></blockquote>If URL and category are equal to those of an existing link, its title and description are updated. In all other cases a new link is created.<br><br>Bold = mandatory. Fields can be in any order, names in upper- or lowercase. Additional fields are added to description. Separator: comma or semicolon. Values may be quoted, but not the field names. Some [b]HTML tags[/b] can be imported in the description field.";
  1114. $LinkUpdated = "Link has been updated";
  1115. $OnHomepage = "Show link on course homepage";
  1116. $ShowLinkOnHomepage = "Show this link as an icon on course homepage";
  1117. $General = "General";
  1118. $SearchFeatureDoIndexLink = "Index link title and description?";
  1119. $SaveLink = "Save link";
  1120. $SaveCategory = "Save folder";
  1121. $BackToLinksOverview = "Back to links overview";
  1122. $AddTargetOfLinkOnHomepage = "Select the \"target\" which shows the link on the homepage of the course";
  1123. $StatDB = "Tracking DB.";
  1124. $EnableTracking = "Enable Tracking";
  1125. $InstituteShortName = "Your company short name";
  1126. $WarningResponsible = "Use this script only after backup. The Chamilo team is not responsible for lost or corrupted data.";
  1127. $AllowSelfRegProf = "Allow self-registration as a trainer";
  1128. $EG = "ex.";
  1129. $DBHost = "Database Host";
  1130. $DBLogin = "Database Login";
  1131. $DBPassword = "Database Password";
  1132. $MainDB = "Main Chamilo database (DB)";
  1133. $AllFieldsRequired = "all fields required";
  1134. $PrintVers = "Printable version";
  1135. $LocalPath = "Corresponding local path";
  1136. $AdminEmail = "Administrator e-mail";
  1137. $AdminName = "Administrator Name";
  1138. $AdminSurname = "Surname of the Administrator";
  1139. $AdminLogin = "Administrator login";
  1140. $AdminPass = "Administrator password (<font color=\"red\">you may want to change this</font>)";
  1141. $EducationManager = "Project manager";
  1142. $CampusName = "Your portal name";
  1143. $DBSettingIntro = "The install script will create (or use) the Chamilo database using the database name given here. Please make sure the user you give has the right to create the database by the name given here. If a database with this name exists, it will be overwritten. Please do not use the root user as the Chamilo database user. This can lead to serious security issues.";
  1144. $TimeSpentByStudentsInCourses = "Time spent by students in courses";
  1145. $Step3 = "Step 3";
  1146. $Step4 = "Step 4";
  1147. $Step5 = "Step 5";
  1148. $Step6 = "Step 6";
  1149. $CfgSetting = "Config settings";
  1150. $DBSetting = "MySQL database settings";
  1151. $MainLang = "Main language";
  1152. $Licence = "Licence";
  1153. $LastCheck = "Last check before install";
  1154. $AutoEvaluation = "Auto evaluation";
  1155. $DbPrefixForm = "MySQL database prefix";
  1156. $DbPrefixCom = "Leave empty if not requested";
  1157. $EncryptUserPass = "Encrypt user passwords in database";
  1158. $SingleDb = "Use one or several DB for Chamilo";
  1159. $AllowSelfReg = "Allow self-registration";
  1160. $Recommended = "(recommended)";
  1161. $ScormDB = "SCORM DB";
  1162. $AdminLastName = "Administrator last name";
  1163. $AdminPhone = "Administrator telephone";
  1164. $NewNote = "New note";
  1165. $Note = "Note";
  1166. $NoteDeleted = "Note deleted";
  1167. $NoteUpdated = "Note updated";
  1168. $NoteCreated = "Note created";
  1169. $YouMustWriteANote = "Please write a note";
  1170. $SaveNote = "Save note";
  1171. $WriteYourNoteHere = "Click here to write a new note";
  1172. $SearchByTitle = "Search by title";
  1173. $WriteTheTitleHere = "Write the title here";
  1174. $UpdateDate = "Updated";
  1175. $NoteAddNew = "Add new note in my personal notebook";
  1176. $OrderByCreationDate = "Sort by date created";
  1177. $OrderByModificationDate = "Sort by date last modified";
  1178. $OrderByTitle = "Sort by title";
  1179. $NoteTitle = "Note title";
  1180. $NoteComment = "Note details";
  1181. $NoteAdded = "Note added";
  1182. $NoteConfirmDelete = "Are you sure you want to delete this note";
  1183. $AddNote = "Create note";
  1184. $ModifyNote = "Edit my personal note";
  1185. $BackToNoteList = "Back to note list";
  1186. $NotebookManagement = "Notebook management";
  1187. $BackToNotesList = "Back to the notes list";
  1188. $NotesSortedByTitleAsc = "Notes sorted by title ascendant";
  1189. $NotesSortedByTitleDESC = "Notes sorted by title downward";
  1190. $NotesSortedByUpdateDateAsc = "Notes sorted by update date ascendant";
  1191. $NotesSortedByUpdateDateDESC = "Notes sorted by update date downward";
  1192. $NotesSortedByCreationDateAsc = "Notes sorted by creation date ascendant";
  1193. $NotesSortedByCreationDateDESC = "Notes sorted by creation date downward";
  1194. $Titular = "Leader";
  1195. $SendToAllUsers = "Send to all users";
  1196. $AdministrationTools = "Administration Tools";
  1197. $CatList = "Categories";
  1198. $Subscribe = "Subscribe";
  1199. $AlreadySubscribed = "Already subscribed";
  1200. $CodeMandatory = "Code mandatory";
  1201. $CourseCategoryMandatory = "Course category mandatory";
  1202. $TeacherMandatory = "Teacher mandatory";
  1203. $CourseCategoryStored = "Course category is created";
  1204. $WithoutTimeLimits = "Without time limits";
  1205. $Added = "Added";
  1206. $Deleted = "Deleted";
  1207. $Keeped = "Kept";
  1208. $HideAndSubscribeClosed = "Hidden / Closed";
  1209. $HideAndSubscribeOpen = "Hidden / Open";
  1210. $ShowAndSubscribeOpen = "Visible / Open";
  1211. $ShowAndSubscribeClosed = "Visible / Closed";
  1212. $AdminThisUser = "Back to user";
  1213. $Manage = "Manage Portal";
  1214. $EnrollToCourseSuccessful = "You have been registered to the course";
  1215. $SubCat = "Sub-categories";
  1216. $UnsubscribeNotAllowed = "Unsubscribing from this course is not allowed.";
  1217. $CourseAdminUnsubscribeNotAllowed = "You are a trainer in this course";
  1218. $CourseManagement = "Courses catalog";
  1219. $SortMyCourses = "Sort courses";
  1220. $SubscribeToCourse = "Subscribe to course";
  1221. $UnsubscribeFromCourse = "Unsubscribe from course";
  1222. $CreateCourseCategory = "Create a personal courses category";
  1223. $CourseCategoryAbout2bedeleted = "Are you sure you want to delete this courses category? Courses inside this category will be moved outside the categories";
  1224. $CourseCategories = "Courses categories";
  1225. $CoursesInCategory = "Courses in this category";
  1226. $SearchCourse = "Search courses";
  1227. $UpOneCategory = "One category up";
  1228. $ConfirmUnsubscribeFromCourse = "Are you sure you want to unsubscribe?";
  1229. $NoCourseCategory = "No courses category";
  1230. $EditCourseCategorySucces = "The course has been added to the category";
  1231. $SubscribingNotAllowed = "Subscribing not allowed";
  1232. $CourseSortingDone = "Courses sorted";
  1233. $ExistingCourseCategories = "Existing courses categories";
  1234. $YouAreNowUnsubscribed = "You have been unsubscribed from this course";
  1235. $ViewOpenCourses = "View public courses";
  1236. $ErrorContactPlatformAdmin = "There happened an unknown error. Please contact the platform administrator.";
  1237. $CourseRegistrationCodeIncorrect = "The course password is incorrect";
  1238. $CourseRequiresPassword = "This course requires a password";
  1239. $SubmitRegistrationCode = "Submit registration code";
  1240. $CourseCategoryDeleted = "The category was deleted";
  1241. $CategorySortingDone = "Category sorting done";
  1242. $CourseCategoryEditStored = "Category updated";
  1243. $buttonCreateCourseCategory = "Save courses category";
  1244. $buttonSaveCategory = "Save the category";
  1245. $buttonChangeCategory = "Change category";
  1246. $Expand = "Expand";
  1247. $Collapse = "Collapse";
  1248. $CourseDetails = "Course description";
  1249. $DocumentList = "List of all documents";
  1250. $OrganisationList = "Table of contents";
  1251. $EditTOC = "Edit table of contents";
  1252. $EditDocument = "Edit";
  1253. $CreateDocument = "Create a rich media page / activity";
  1254. $MissingImagesDetected = "Missing images detected";
  1255. $Publish = "Publish";
  1256. $Scormcontentstudent = "This is a SCORM course. To play it, click here : <input type=button name=scormbutton value='Launch it !' ='openscorm()'>";
  1257. $Scormcontent = "This is a SCORM content<br><input type=button name=scormbutton value='Launch it !' ='openscorm()'>";
  1258. $DownloadAndZipEnd = " Zip file uploaded and uncompressed";
  1259. $ZipNoPhp = "The zip file can not contain .PHP files";
  1260. $GroupForumLink = "Group forum";
  1261. $NotScormContent = "This is not a valid SCORM ZIP file !";
  1262. $NoText = "Please type your text / HTML content";
  1263. $NoFileName = "Please enter the file name";
  1264. $FileError = "The file to upload is not valid.";
  1265. $ViMod = "Visibility modified";
  1266. $AddComment = "Add/Edit a comment to";
  1267. $Impossible = "Operation impossible";
  1268. $NoSpace = "The upload has failed. Either you have exceeded your maximum quota, or there is not enough disk space.";
  1269. $DownloadEnd = "The upload is finished";
  1270. $FileExists = "The operation is impossible, a file with this name already exists.";
  1271. $DocCopied = "Document copied";
  1272. $DocDeleted = "Document deleted";
  1273. $ElRen = "Element renamed";
  1274. $DirMv = "Element moved";
  1275. $ComMod = "Comment modified";
  1276. $Rename = "Rename";
  1277. $NameDir = "Name of the new folder";
  1278. $DownloadFile = "Download file";
  1279. $Builder = "Create a course (authoring tool)";
  1280. $MailMarkSelectedAsUnread = "Mark as unread";
  1281. $ViewModeImpress = "Current view mode: Impress";
  1282. $AllowTeachersToCreateSessionsComment = "Teachers can create, edit and delete their own sessions.";
  1283. $AllowTeachersToCreateSessionsTitle = "Allow teachers to create sessions";
  1284. $SelectACategory = "Select a category";
  1285. $MailMarkSelectedAsRead = "Mark as read";
  1286. $MailSubjectReplyShort = "RE:";
  1287. $AdvancedEdit = "Advanced edit";
  1288. $ScormBuilder = "Create a course (authoring tool)";
  1289. $CreateDoc = "Create a rich media page / activity";
  1290. $OrganiseDocuments = "Create table of contents";
  1291. $Uncompress = "Uncompress zip";
  1292. $ExportShort = "Export as SCORM";
  1293. $AllDay = "All day";
  1294. $PublicationStartDate = "Published start date";
  1295. $ShowStatus = "Show status";
  1296. $Mode = "Mode";
  1297. $Schedule = "Schedule";
  1298. $Place = "Place/Location";
  1299. $RecommendedNumberOfParticipants = "Recommended number of participants";
  1300. $WCAGGoMenu = "Goto menu";
  1301. $WCAGGoContent = "Goto content";
  1302. $AdminBy = "Administration by";
  1303. $Statistiques = "Statistics";
  1304. $VisioHostLocal = "Videoconference host";
  1305. $VisioRTMPIsWeb = "Whether the videoconference protocol is web-based (false most of the time)";
  1306. $ShowBackLinkOnTopOfCourseTreeComment = "Show a link to go back in the courses hierarchy. A link is available at the bottom of the list anyway.";
  1307. $Used = "used";
  1308. $Exist = "existing";
  1309. $ShowBackLinkOnTopOfCourseTree = "Show back links from categories/courses";
  1310. $ShowNumberOfCourses = "Show courses number";
  1311. $DisplayTeacherInCourselistTitle = "Display teacher in course name";
  1312. $DisplayTeacherInCourselistComment = "Display teacher in courses list";
  1313. $DisplayCourseCodeInCourselistComment = "Display Course Code in courses list";
  1314. $DisplayCourseCodeInCourselistTitle = "Display Code in Course name";
  1315. $ThereAreNoVirtualCourses = "There are no Alias courses on the platform.";
  1316. $ConfigureHomePage = "Edit portal homepage";
  1317. $CourseCreateActiveToolsTitle = "Modules active upon course creation";
  1318. $CourseCreateActiveToolsComment = "Which tools have to be enabled (visible) by default when a new course is created?";
  1319. $CreateUser = "Create user";
  1320. $ModifyUser = "Edit user";
  1321. $buttonEditUserField = "Edit user field";
  1322. $ModifyCoach = "Edit coach";
  1323. $ModifyThisSession = "Edit this session";
  1324. $ExportSession = "Export session(s)";
  1325. $ImportSession = "Import session(s)";
  1326. $CourseBackup = "Backup this course";
  1327. $CourseTitular = "Teacher";
  1328. $CourseFaculty = "Category";
  1329. $CourseDepartment = "Department";
  1330. $CourseDepartmentURL = "Department URL";
  1331. $CourseSubscription = "Course subscription";
  1332. $PublicAccess = "Public access";
  1333. $PrivateAccess = "Private access";
  1334. $DBManagementOnlyForServerAdmin = "Database management is only available for the server administrator";
  1335. $ShowUsersOfCourse = "Show users subscribed to this course";
  1336. $ShowClassesOfCourse = "Show classes subscribed to this course";
  1337. $ShowGroupsOfCourse = "Show groups of this course";
  1338. $PhoneNumber = "Phone number";
  1339. $AddToCourse = "Add to a course";
  1340. $DeleteFromPlatform = "Remove from portal";
  1341. $DeleteCourse = "Delete selected course(s)";
  1342. $DeleteFromCourse = "Unsubscribe from course(s)";
  1343. $DeleteSelectedClasses = "Delete selected classes";
  1344. $DeleteSelectedGroups = "Delete selected groups";
  1345. $Administrator = "Administrator";
  1346. $ChangePicture = "Change picture";
  1347. $XComments = "%s comments";
  1348. $AddUsers = "Add a user";
  1349. $AddGroups = "Add groups";
  1350. $AddClasses = "Add classes";
  1351. $ExportUsers = "Export users list";
  1352. $NumberOfParticipants = "Number of members";
  1353. $NumberOfUsers = "Number of users";
  1354. $Participants = "Members";
  1355. $FirstLetterClass = "First letter (class name)";
  1356. $FirstLetterUser = "First letter (last name)";
  1357. $FirstLetterCourse = "First letter (code)";
  1358. $ModifyUserInfo = "Edit user information";
  1359. $ModifyClassInfo = "Edit class information";
  1360. $ModifyGroupInfo = "Edit group information";
  1361. $ModifyCourseInfo = "Edit course information";
  1362. $PleaseEnterClassName = "Please enter the class name !";
  1363. $PleaseEnterLastName = "Please enter the user's last name !";
  1364. $PleaseEnterFirstName = "Please enter the user's first name !";
  1365. $PleaseEnterValidEmail = "Please enter a valid e-mail address !";
  1366. $PleaseEnterValidLogin = "Please enter a valid login !";
  1367. $PleaseEnterCourseCode = "Please enter the course code.";
  1368. $PleaseEnterTitularName = "Please enter the teacher's First and Last Name.";
  1369. $PleaseEnterCourseTitle = "Please enter the course title";
  1370. $AcceptedPictureFormats = "Accepted formats are JPG, PNG and GIF !";
  1371. $LoginAlreadyTaken = "This login is already taken !";
  1372. $ImportUserListXMLCSV = "Import users list";
  1373. $ExportUserListXMLCSV = "Export users list";
  1374. $OnlyUsersFromCourse = "Only users from the course";
  1375. $AddClassesToACourse = "Add classes to a course";
  1376. $AddUsersToACourse = "Add users to course";
  1377. $AddUsersToAClass = "Add users to a class";
  1378. $AddUsersToAGroup = "Add users to a group";
  1379. $AtLeastOneClassAndOneCourse = "You must select at least one class and one course";
  1380. $AtLeastOneUser = "You must select at least one user !";
  1381. $AtLeastOneUserAndOneCourse = "You must select at least one user and one course";
  1382. $ClassList = "Class list";
  1383. $AddToThatCourse = "Add to the course(s)";
  1384. $AddToClass = "Add to the class";
  1385. $RemoveFromClass = "Remove from the class";
  1386. $AddToGroup = "Add to the group";
  1387. $RemoveFromGroup = "Remove from the group";
  1388. $UsersOutsideClass = "Users outside the class";
  1389. $UsersInsideClass = "Users inside the class";
  1390. $UsersOutsideGroup = "Users outside the group";
  1391. $UsersInsideGroup = "Users inside the group";
  1392. $MustUseSeparator = "must use the ';' character as a separator";
  1393. $CSVMustLookLike = "The CSV file must look like this";
  1394. $XMLMustLookLike = "The XML file must look like this";
  1395. $MandatoryFields = "Fields in <strong>bold</strong> are mandatory.";
  1396. $NotXML = "The specified file is not XML format !";
  1397. $NotCSV = "The specified file is not CSV format !";
  1398. $NoNeededData = "The specified file doesn't contain all needed data !";
  1399. $MaxImportUsers = "You can't import more than 500 users at once !";
  1400. $AdminDatabases = "Databases (phpMyAdmin)";
  1401. $AdminUsers = "Users";
  1402. $AdminClasses = "Classes of users";
  1403. $AdminGroups = "Groups of users";
  1404. $AdminCourses = "Courses";
  1405. $AdminCategories = "Courses categories";
  1406. $SubscribeUserGroupToCourse = "Subscribe a user / group to a course";
  1407. $NoCategories = "There are no categories here";
  1408. $AllowCoursesInCategory = "Allow adding courses in this category?";
  1409. $GoToForum = "Go to the forum";
  1410. $CategoryCode = "Category code";
  1411. $MetaTwitterCreatorComment = "The Twitter Creator is a Twitter account (e.g. @ywarnier) that represents the *person* that created the site. This field is optional.";
  1412. $EditNode = "Edit this category";
  1413. $OpenNode = "Open this category";
  1414. $DeleteNode = "Delete this category";
  1415. $AddChildNode = "Add a sub-category";
  1416. $ViewChildren = "View children";
  1417. $TreeRebuildedIn = "Tree rebuilded in";
  1418. $TreeRecountedIn = "Tree recounted in";
  1419. $RebuildTree = "Rebuild the tree";
  1420. $RefreshNbChildren = "Refresh number of children";
  1421. $ShowTree = "Show tree";
  1422. $MetaImagePathTitle = "Meta image path";
  1423. $LogDeleteCat = "Category deleted";
  1424. $RecountChildren = "Recount children";
  1425. $UpInSameLevel = "Up in same level";
  1426. $MailTo = "Mail to :";
  1427. $AddAdminInApache = "Add an administrator";
  1428. $AddFaculties = "Add categories";
  1429. $SearchACourse = "Search for a course";
  1430. $SearchAUser = "Search for a user";
  1431. $TechnicalTools = "Technical";
  1432. $Config = "System config";
  1433. $LogIdentLogoutComplete = "Login list (extended)";
  1434. $LimitUsersListDefaultMax = "Maximum users showing in scroll list";
  1435. $NoTimeLimits = "No time limits";
  1436. $GeneralProperties = "General properties";
  1437. $CourseCoach = "Course coach";
  1438. $UsersNumber = "Users number";
  1439. $PublicAdmin = "Public administration";
  1440. $PageAfterLoginTitle = "Page after login";
  1441. $PageAfterLoginComment = "The page which is seen by the user entering the platform";
  1442. $TabsMyProfile = "My Profile tab";
  1443. $GlobalRole = "Global Role";
  1444. $NomOutilTodo = "Manage Todo list";
  1445. $NomPageAdmin = "Administration";
  1446. $SysInfo = "Info about the System";
  1447. $DiffTranslation = "Compare translations";
  1448. $StatOf = "Reporting for";
  1449. $PDFDownloadNotAllowedForStudents = "PDF download is not allowed for students";
  1450. $LogIdentLogout = "Login list";
  1451. $ServerStatus = "Status of MySQL server :";
  1452. $DataBase = "Database";
  1453. $Run = "works";
  1454. $Client = "MySql Client";
  1455. $Server = "MySql Server";
  1456. $titulary = "Owner";
  1457. $UpgradeBase = "Upgrade database";
  1458. $ErrorsFound = "errors found";
  1459. $Maintenance = "Backup";
  1460. $Upgrade = "Upgrade Chamilo";
  1461. $Website = "Website";
  1462. $Documentation = "Documentation";
  1463. $Contribute = "Contribute";
  1464. $InfoServer = "Server Information";
  1465. $SendMailToUsers = "Send a mail to users";
  1466. $CourseSystemCode = "System code";
  1467. $CourseVisualCode = "Visual code";
  1468. $SystemCode = "System Code";
  1469. $VisualCode = "visual code";
  1470. $AddCourse = "Create a course";
  1471. $AdminManageVirtualCourses = "Manage virtual courses";
  1472. $AdminCreateVirtualCourse = "Create a virtual course";
  1473. $AdminCreateVirtualCourseExplanation = "The virtual course will share storage space (directory and database) with an existing 'real' course.";
  1474. $RealCourseCode = "Real course code";
  1475. $CourseCreationSucceeded = "The course was successfully created.";
  1476. $OnTheHardDisk = "on the hard disk";
  1477. $IsVirtualCourse = "Virtual course?";
  1478. $AnnouncementUpdated = "Announcement has been updated";
  1479. $MetaImagePathComment = "This Meta Image path is the path to a file inside your Chamilo directory (e.g. home/image.png) that should show in a Twitter card or a OpenGraph card when showing a link to your LMS. Twitter recommends an image of 120 x 120 pixels, which might sometimes be cropped to 120x90.";
  1480. $PermissionsForNewFiles = "Permissions for new files";
  1481. $PermissionsForNewFilesComment = "The ability to define the permissions settings to assign to every newly-created file lets you improve security against attacks by hackers uploading dangerous content to your portal. The default setting (0550) should be enough to give your server a reasonable protection level. The given format uses the UNIX terminology of Owner-Group-Others with Read-Write-Execute permissions. If you use Oogie, take care that the user who launch LibreOffice can write files in the course folder.";
  1482. $Guest = "Guest";
  1483. $LoginAsThisUserColumnName = "Login as";
  1484. $LoginAsThisUser = "Login";
  1485. $SelectPicture = "Select picture...";
  1486. $DontResetPassword = "Don't reset password";
  1487. $ParticipateInCommunityDevelopment = "Participate in development";
  1488. $CourseAdmin = "Teacher";
  1489. $PlatformLanguageTitle = "Portal Language";
  1490. $ServerStatusComment = "What sort of server is this? This enables or disables some specific options. On a development server there is a translation feature functional that inidcates untranslated strings";
  1491. $ServerStatusTitle = "Server Type";
  1492. $PlatformLanguages = "Chamilo Portal Languages";
  1493. $PlatformLanguagesExplanation = "This tool manages the language selection menu on the login page. As a platform administrator you can decide which languages should be available for your users.";
  1494. $OriginalName = "Original name";
  1495. $EnglishName = "English name";
  1496. $LMSFolder = "Chamilo folder";
  1497. $Properties = "Properties";
  1498. $PlatformConfigSettings = "Configuration settings";
  1499. $SettingsStored = "The settings have been stored";
  1500. $InstitutionTitle = "Organization name";
  1501. $InstitutionComment = "The name of the organization (appears in the header on the right)";
  1502. $InstitutionUrlTitle = "Organization URL (web address)";
  1503. $InstitutionUrlComment = "The URL of the institutions (the link that appears in the header on the right)";
  1504. $SiteNameTitle = "E-learning portal name";
  1505. $SiteNameComment = "The Name of your Chamilo Portal (appears in the header)";
  1506. $emailAdministratorTitle = "Portal Administrator: e-mail";
  1507. $emailAdministratorComment = "The e-mail address of the Platform Administrator (appears in the footer on the left)";
  1508. $administratorSurnameTitle = "Portal Administrator: Last Name";
  1509. $administratorSurnameComment = "The Family Name of the Platform Administrator (appears in the footer on the left)";
  1510. $administratorNameTitle = "Portal Administrator: First Name";
  1511. $administratorNameComment = "The First Name of the Platform Administrator (appears in the footer on the left)";
  1512. $ShowAdministratorDataTitle = "Platform Administrator Information in footer";
  1513. $ShowAdministratorDataComment = "Show the Information of the Platform Administrator in the footer?";
  1514. $HomepageViewTitle = "Course homepage layout";
  1515. $HomepageViewComment = "How would you like the homepage of a course to look (icons layout)?";
  1516. $HomepageViewDefault = "Two column layout. Inactive tools are hidden";
  1517. $HomepageViewFixed = "Three column layout. Inactive tools are greyed out (Icons stay on their place)";
  1518. $ShowToolShortcutsTitle = "Tools shortcuts";
  1519. $ShowToolShortcutsComment = "Show the tool shortcuts in the banner?";
  1520. $ShowStudentViewTitle = "Learner View";
  1521. $ShowStudentViewComment = "Enable Learner View?<br>This feature allows the teacher to see the learner view.";
  1522. $AllowGroupCategories = "Group categories";
  1523. $AllowGroupCategoriesComment = "Allow teachers to create categories in the Groups tool?";
  1524. $PlatformLanguageComment = "You can determine the platform languages in a different part of the platform administration, namely: <a href=\"languages.php\">Chamilo Platform Languages</a>";
  1525. $ProductionServer = "Production Server";
  1526. $TestServer = "Test Server";
  1527. $ShowOnlineTitle = "Who's Online";
  1528. $AsPlatformLanguage = "as platformlanguage";
  1529. $ShowOnlineComment = "Display the number of persons that are online?";
  1530. $AllowNameChangeTitle = "Allow Name Change in profile?";
  1531. $AllowNameChangeComment = "Is the user allowed to change his/her firste and last name?";
  1532. $DefaultDocumentQuotumTitle = "Default hard disk space";
  1533. $DefaultDocumentQuotumComment = "What is the available disk space for a course? You can override the quota for specific course through: platform administration > Courses > modify";
  1534. $ProfileChangesTitle = "Profile";
  1535. $ProfileChangesComment = "Which parts of the profile can be changed?";
  1536. $RegistrationRequiredFormsTitle = "Registration: required fields";
  1537. $RegistrationRequiredFormsComment = "Which fields are required (besides name, first name, login and password)";
  1538. $DefaultGroupQuotumTitle = "Group disk space available";
  1539. $DefaultGroupQuotumComment = "What is the default hard disk spacde available for a groups documents tool?";
  1540. $AllowLostPasswordTitle = "Lost password";
  1541. $AllowLostPasswordComment = "Are users allowed to request their lost password?";
  1542. $AllowRegistrationTitle = "Registration";
  1543. $AllowRegistrationComment = "Is registration as a new user allowed? Can users create new accounts?";
  1544. $AllowRegistrationAsTeacherTitle = "Registration as teacher";
  1545. $AllowRegistrationAsTeacherComment = "Can one register as a teacher (with the ability to create courses)?";
  1546. $PlatformLanguage = "Portal Language";
  1547. $Tuning = "Tuning";
  1548. $SplitUsersUploadDirectory = "Split users' upload directory";
  1549. $SplitUsersUploadDirectoryComment = "On high-load portals, where a lot of users are registered and send their pictures, the upload directory (main/upload/users/) might contain too many files for the filesystem to handle (it has been reported with more than 36000 files on a Debian server). Changing this option will enable a one-level splitting of the directories in the upload directory. 9 directories will be used in the base directory and all subsequent users' directories will be stored into one of these 9 directories. The change of this option will not affect the directories structure on disk, but will affect the behaviour of the Chamilo code, so if you change this option, you have to create the new directories and move the existing directories by yourself on te server. Be aware that when creating and moving those directories, you will have to move the directories of users 1 to 9 into subdirectories of the same name. If you are not sure about this option, it is best not to activate it.";
  1550. $CourseQuota = "Disk Space";
  1551. $EditNotice = "Edit notice";
  1552. $InsertLink = "Add a page/hyperlink";
  1553. $EditNews = "Edit News";
  1554. $EditCategories = "Edit courses categories";
  1555. $EditHomePage = "Edit Homepage central area";
  1556. $AllowUserHeadingsComment = "Can a teacher define learner profile fields to retrieve additional information?";
  1557. $MetaTwitterSiteTitle = "Twitter Site account";
  1558. $Languages = "Languages";
  1559. $NoticeTitle = "Title of Notice";
  1560. $NoticeText = "Text of Notice";
  1561. $LinkURL = "URL of Link";
  1562. $OpenInNewWindow = "Open in new window";
  1563. $LimitUsersListDefaultMaxComment = "In the screens allowing addition of users to courses or classes, if the first non-filtered list contains more than this number of users, then default to the first letter (A)";
  1564. $HideDLTTMarkupComment = "Hide the [= ... =] markup when a language variable is not translated";
  1565. $UpgradeFromLMS19x = "Upgrade from LMS v1.9.*";
  1566. $SignUp = "Sign up!";
  1567. $UserDeleted = "The user has been deleted";
  1568. $NoClassesForThisCourse = "There are no classes subscribed to this course";
  1569. $CourseUsage = "Course usage";
  1570. $NoCoursesForThisUser = "This user isn't subscribed in a course";
  1571. $NoClassesForThisUser = "This user isn't subscribed in a class";
  1572. $NoCoursesForThisClass = "This class isn't subscribed in a course";
  1573. $Tool = "tool";
  1574. $NumberOfItems = "number of items";
  1575. $DocumentsAndFolders = "Documents and folders";
  1576. $Exercises = "Tests";
  1577. $AllowPersonalAgendaTitle = "Personal Agenda";
  1578. $AllowPersonalAgendaComment = "Can the learner add personal events to the Agenda?";
  1579. $CurrentValue = "current value";
  1580. $AlreadyRegisteredToSession = "Already registered to session";
  1581. $MyCoursesDefaultView = "My courses default view";
  1582. $UserPassword = "Password";
  1583. $SubscriptionAllowed = "Registr. allowed";
  1584. $UnsubscriptionAllowed = "Unreg. allowed";
  1585. $AddDummyContentToCourse = "Add some dummy (example) content to this course";
  1586. $DummyCourseCreator = "Create dummy course content";
  1587. $DummyCourseDescription = "This will add some dummy (example) content to this course. This is only meant for testing purposes.";
  1588. $AvailablePlugins = "These are the plugins that have been found on your system. You can download additional plugins on <a href=\"http://www.chamilo.org/extensions/index.php?section=plugins\">http://www.chamilo.org/extensions/index.php?section=plugins</a>";
  1589. $CreateVirtualCourse = "Create a virtual course";
  1590. $DisplayListVirtualCourses = "Display list of virtual courses";
  1591. $LinkedToRealCourseCode = "Linked to real course code";
  1592. $AttemptedCreationVirtualCourse = "Attempted creation of virtual course...";
  1593. $WantedCourseCode = "Wanted course code";
  1594. $ResetPassword = "Reset password";
  1595. $CheckToSendNewPassword = "Check to send new password";
  1596. $AutoGeneratePassword = "Automatically generate a new password";
  1597. $UseDocumentTitleTitle = "Use a title for the document name";
  1598. $UseDocumentTitleComment = "This will allow the use of a title for document names instead of document_name.ext";
  1599. $StudentPublications = "Assignments";
  1600. $PermanentlyRemoveFilesTitle = "Deleted files cannot be restored";
  1601. $PermanentlyRemoveFilesComment = "Deleting a file in the documents tool permanently deletes it. The file cannot be restored";
  1602. $DropboxMaxFilesizeTitle = "Dropbox: Maximum file size of a document";
  1603. $DropboxMaxFilesizeComment = "How big (in MB) can a dropbox document be?";
  1604. $DropboxAllowOverwriteTitle = "Dropbox: Can documents be overwritten";
  1605. $DropboxAllowOverwriteComment = "Can the original document be overwritten when a user or trainer uploads a document with the name of a document that already exist? If you answer yes then you loose the versioning mechanism.";
  1606. $DropboxAllowJustUploadTitle = "Dropbox: Upload to own dropbox space?";
  1607. $DropboxAllowJustUploadComment = "Allow trainers and users to upload documents to their dropbox without sending the documents to themselves";
  1608. $DropboxAllowStudentToStudentTitle = "Dropbox: Learner <-> Learner";
  1609. $DropboxAllowStudentToStudentComment = "Allow users to send documents to other users (peer 2 peer). Users might use this for less relevant documents also (mp3, tests solutions, ...). If you disable this then the users can send documents to the trainer only.";
  1610. $DropboxAllowMailingTitle = "Dropbox: Allow mailing";
  1611. $DropboxAllowMailingComment = "With the mailing functionality you can send each learner a personal document";
  1612. $PermissionsForNewDirs = "Permissions for new directories";
  1613. $PermissionsForNewDirsComment = "The ability to define the permissions settings to assign to every newly created directory lets you improve security against attacks by hackers uploading dangerous content to your portal. The default setting (0770) should be enough to give your server a reasonable protection level. The given format uses the UNIX terminology of Owner-Group-Others with Read-Write-Execute permissions.";
  1614. $UserListHasBeenExported = "The users list has been exported.";
  1615. $ClickHereToDownloadTheFile = "Download the file";
  1616. $administratorTelephoneTitle = "Portal Administrator: Telephone";
  1617. $administratorTelephoneComment = "The telephone number of the platform administrator";
  1618. $SendMailToNewUser = "Send mail to new user";
  1619. $ExtendedProfileTitle = "Extended profile";
  1620. $ExtendedProfileComment = "If this setting is set to 'True', a user can fill in following (optional) fields: 'My competences', 'My diplomas', 'What I am able to teach' and 'My personal open area'";
  1621. $Classes = "Classes";
  1622. $UserUnsubscribed = "User is now unsubscribed";
  1623. $CannotUnsubscribeUserFromCourse = "User can not be unsubscribed because he is one of the teachers.";
  1624. $InvalidStartDate = "Invalid start date was given.";
  1625. $InvalidEndDate = "Invalid end date was given.";
  1626. $DateFormatLabel = "(d/m/y h:m)";
  1627. $HomePageFilesNotWritable = "Homepage-files are not writable!";
  1628. $PleaseEnterNoticeText = "Please give a notice text";
  1629. $PleaseEnterNoticeTitle = "Please give a notice title";
  1630. $PleaseEnterLinkName = "Plese give a link name";
  1631. $InsertThisLink = "Insert this link";
  1632. $FirstPlace = "First place";
  1633. $DropboxAllowGroupTitle = "Dropbox: allow group";
  1634. $DropboxAllowGroupComment = "Users can send files to groups";
  1635. $ClassDeleted = "The class is deleted";
  1636. $ClassesDeleted = "The classes are deleted";
  1637. $NoUsersInClass = "No users in this class";
  1638. $UsersAreSubscibedToCourse = "The selected users are subscribed to the selected course";
  1639. $InvalidTitle = "Please enter a title";
  1640. $CatCodeAlreadyUsed = "This category is already used";
  1641. $PleaseEnterCategoryInfo = "Please enter a code and a name for the category";
  1642. $RegisterYourPortal = "Register your portal";
  1643. $ShowNavigationMenuTitle = "Display course navigation menu";
  1644. $ShowNavigationMenuComment = "Display a navigation menu that quickens access to the tools";
  1645. $LoginAs = "Login as";
  1646. $ImportClassListCSV = "Import class list via CSV";
  1647. $ShowOnlineWorld = "Display number of users online on the login page (visible for the world)";
  1648. $ShowOnlineUsers = "Display number of users online all pages (visible for the persons who are logged in)";
  1649. $ShowOnlineCourse = "Display number of users online in this course";
  1650. $ShowIconsInNavigationsMenuTitle = "Show icons in navigation menu?";
  1651. $SeeAllRightsAllRolesForSpecificLocation = "Focus on location";
  1652. $MetaTwitterCreatorTitle = "Twitter Creator account";
  1653. $ClassesSubscribed = "The selected classes were subscribed to the selected course";
  1654. $RoleId = "Role ID";
  1655. $RoleName = "Role name";
  1656. $RoleType = "Type";
  1657. $MakeAvailable = "Make available";
  1658. $MakeUnavailable = "Make unavailable";
  1659. $Stylesheets = "Style sheets";
  1660. $ShowIconsInNavigationsMenuComment = "Should the navigation menu show the different tool icons?";
  1661. $Plugin = "Plugin";
  1662. $MainMenu = "Main menu";
  1663. $MainMenuLogged = "Main menu after login";
  1664. $Banner = "Banner";
  1665. $ImageResizeTitle = "Resize uploaded user images";
  1666. $ImageResizeComment = "User images can be resized on upload if PHP is compiled with the <a href=\"http://php.net/manual/en/ref.image.php\" target=\"_blank\">GD library</a>. If GD is unavailable, this setting will be silently ignored.";
  1667. $MaxImageWidthTitle = "Maximum user image width";
  1668. $MaxImageWidthComment = "Maximum width in pixels of a user image. This setting only applies if user images are set to be resized on upload.";
  1669. $MaxImageHeightTitle = "Maximum user image height";
  1670. $MaxImageHeightComment = "Maximum height in pixels of a user image. This setting only applies if user images are set to be resized on upload.";
  1671. $YourVersionIs = "Your version is";
  1672. $ConnectSocketError = "Socket Connection Error";
  1673. $SocketFunctionsDisabled = "Socket connections are disabled";
  1674. $ShowEmailAddresses = "Show email addresses";
  1675. $ShowEmailAddressesComment = "Show email addresses to users";
  1676. $ActiveExtensions = "Activate this service";
  1677. $Visioconf = "Chamilo LIVE";
  1678. $VisioconfDescription = "Chamilo LIVE is a videoconferencing tool that offers: Slides sharing, whiteboard to draw and write on top of slides, audio/video duplex and chat. It requires Flash® player 9+ and offers 2 modes : one to many and many to many.";
  1679. $Ppt2lp = "Chamilo RAPID";
  1680. $Ppt2lpDescription = "Chamilo RAPID is a Rapid Learning tool available in Chamilo Pro and Chamilo Medical. It allows you to convert Powerpoint or LibreOffice presentations to SCORM-compliant courses. After the conversion, you end up in the Courses authoring tool and are able to add audio comments on slides and pages, tests and activities between the slides or pages and interaction activities like forum discussions or assignment upload. Every step becomes an independent and removable learning object. And the whole course generates accurate SCORM reporting for further coaching.";
  1681. $BandWidthStatistics = "Bandwidth statistics";
  1682. $BandWidthStatisticsDescription = "MRTG allow you to consult advanced statistics about the state of the server on the last 24 hours.";
  1683. $ServerStatistics = "Server statistics";
  1684. $ServerStatisticsDescription = "AWStats allows you to consult the statistics of your platform : visitors, page views, referers...";
  1685. $SearchEngine = "Chamilo LIBRARY";
  1686. $SearchEngineDescription = "Chamilo LIBRARY is a Search Engine offering multi-criteria indexing and research. It is part of the Chamilo Medical features.";
  1687. $ListSession = "Training sessions list";
  1688. $AddSession = "Add a training session";
  1689. $ImportSessionListXMLCSV = "Import sessions list";
  1690. $ExportSessionListXMLCSV = "Export sessions list";
  1691. $NbCourses = "Courses";
  1692. $DateStart = "Start date";
  1693. $DateEnd = "End date";
  1694. $CoachName = "Coach name";
  1695. $SessionNameIsRequired = "A name is required for the session";
  1696. $NextStep = "Next step";
  1697. $Confirm = "Confirm";
  1698. $UnsubscribeUsersFromCourse = "Unsubscribe users from course";
  1699. $MissingClassName = "Missing class name";
  1700. $ClassNameExists = "Class name exists";
  1701. $ImportCSVFileLocation = "CSV file import location";
  1702. $ClassesCreated = "Classes created";
  1703. $ErrorsWhenImportingFile = "Errors when importing file";
  1704. $ServiceActivated = "Service activated";
  1705. $ActivateExtension = "Activate service";
  1706. $InvalidExtension = "Invalid extension";
  1707. $VersionCheckExplanation = "In order to enable the automatic version checking you have to register your portal on chamilo.org. The information obtained by clicking this button is only for internal use and only aggregated data will be publicly available (total number of portals, total number of chamilo course, total number of chamilo users, ...) (see <a href=\"http://www.chamilo.org/stats/\">http://www.chamilo.org/stats/</a>. When registering you will also appear on the worldwide list (<a href=\"http://www.chamilo.org/community.php\">http://www.chamilo.org/community.php</a>. If you do not want to appear in this list you have to check the checkbox below. The registration is as easy as it can be: you only have to click this button: <br />";
  1708. $AfterApproval = "After approval";
  1709. $StudentViewEnabledTitle = "Enable learner view";
  1710. $StudentViewEnabledComment = "Enable the learner view, which allows a teacher or admin to see a course as a learner would see it";
  1711. $TimeLimitWhosonlineTitle = "Time limit on Who Is Online";
  1712. $TimeLimitWhosonlineComment = "This time limit defines for how many minutes after his last action a user will be considered *online*";
  1713. $ExampleMaterialCourseCreationTitle = "Example material on course creation";
  1714. $ExampleMaterialCourseCreationComment = "Create example material automatically when creating a new course";
  1715. $AccountValidDurationTitle = "Account validity";
  1716. $AccountValidDurationComment = "A user account is valid for this number of days after creation";
  1717. $UseSessionModeTitle = "Use training sessions";
  1718. $UseSessionModeComment = "Training sessions give a different way of dealing with training, where courses have an author, a coach and learners. Each coach gives a course for a set period of time, called a *training session*, to a set of learners who do not mix with other learner groups attached to another training session.";
  1719. $HomepageViewActivity = "Activity view";
  1720. $HomepageView2column = "Two columns view";
  1721. $HomepageView3column = "Three columns view";
  1722. $AllowUserHeadings = "Allow users profiling inside courses";
  1723. $IconsOnly = "Icons only";
  1724. $TextOnly = "Text only";
  1725. $IconsText = "Icons and text";
  1726. $EnableToolIntroductionTitle = "Enable tool introduction";
  1727. $EnableToolIntroductionComment = "Enable introductions on each tool's homepage";
  1728. $BreadCrumbsCourseHomepageTitle = "Course homepage breadcrumb";
  1729. $BreadCrumbsCourseHomepageComment = "The breadcrumb is the horizontal links navigation system usually in the top left of your page. This option selects what you want to appear in the breadcrumb on courses' homepages";
  1730. $MetaTwitterSiteComment = "The Twitter site is a Twitter account (e.g. @chamilo_news) that is related to your site. It is usually a more temporary account than the Twitter creator account, or represents an entity (instead of a person). This field is required if you want the Twitter card meta fields to show.";
  1731. $LoginPageMainArea = "Login page main area";
  1732. $LoginPageMenu = "Login page menu";
  1733. $CampusHomepageMainArea = "Portal homepage main area";
  1734. $CampusHomepageMenu = "Portal homepage menu";
  1735. $MyCoursesMainArea = "Courses main area";
  1736. $MyCoursesMenu = "Courses menu";
  1737. $Header = "Header";
  1738. $Footer = "Footer";
  1739. $PublicPagesComplyToWAITitle = "Public pages compliance to WAI";
  1740. $PublicPagesComplyToWAIComment = "WAI (Web Accessibility Initiative) is an initiative to make the web more accessible. By selecting this option, the public pages of Chamilo will become more accessible. This also means that some content on the portal's public pages might appear differently.";
  1741. $VersionCheck = "Version check";
  1742. $SessionOverview = "Session overview";
  1743. $SubscribeUserIfNotAllreadySubscribed = "Add user in the course only if not yet in";
  1744. $UnsubscribeUserIfSubscriptionIsNotInFile = "Remove user from course if his name is not in the list";
  1745. $DeleteSelectedSessions = "Delete selected sessions";
  1746. $CourseListInSession = "Courses in this session";
  1747. $UnsubscribeCoursesFromSession = "Unsubscribe selected courses from this session";
  1748. $NbUsers = "Users";
  1749. $SubscribeUsersToSession = "Subscribe users to this session";
  1750. $UserListInPlatform = "Portal users list";
  1751. $UserListInSession = "List of users registered in this session";
  1752. $CourseListInPlatform = "Courses list";
  1753. $Host = "Host";
  1754. $UserOnHost = "Login";
  1755. $FtpPassword = "FTP password";
  1756. $PathToLzx = "Path to LZX files";
  1757. $WCAGContent = "Text";
  1758. $SubscribeCoursesToSession = "Add courses to this session";
  1759. $DateStartSession = "Start date (available from 00:00:00 on this date)";
  1760. $DateEndSession = "End date (until 23:59:59 on this date)";
  1761. $EditSession = "Edit this session";
  1762. $VideoConferenceUrl = "Path to live conferencing";
  1763. $VideoClassroomUrl = "Path to classroom live conferencing";
  1764. $ReconfigureExtension = "Reconfigure extension";
  1765. $ServiceReconfigured = "Service reconfigured";
  1766. $ChooseNewsLanguage = "Choose news language";
  1767. $Ajax_course_tracking_refresh = "Total time spent in a course";
  1768. $Ajax_course_tracking_refresh_comment = "This option is used to calculate in real time the time that a user spend in a course. The value in the field is the refresh interval in seconds. To disable this option, let the default value 0 in the field.";
  1769. $FinishSessionCreation = "Finish session creation";
  1770. $VisioRTMPPort = "Videoconference RTMTP protocol port";
  1771. $SessionNameAlreadyExists = "Session name already exists";
  1772. $NoClassesHaveBeenCreated = "No classes have been created";
  1773. $ThisFieldShouldBeNumeric = "This field should be numeric";
  1774. $UserLocked = "User locked";
  1775. $UserUnlocked = "User unlocked";
  1776. $CannotDeleteUser = "You cannot delete this user";
  1777. $SelectedUsersDeleted = "Selected users deleted";
  1778. $SomeUsersNotDeleted = "Some of the selected users have not been deleted. We recommend you confirm which, by using the advanced search.";
  1779. $ExternalAuthentication = "External authentification";
  1780. $RegistrationDate = "Registration date";
  1781. $UserUpdated = "User updated";
  1782. $HomePageFilesNotReadable = "Homepage files are not readable";
  1783. $Choose = "Choose";
  1784. $ModifySessionCourse = "Edit session course";
  1785. $CourseSessionList = "Courses in this session";
  1786. $SelectACoach = "Select a coach";
  1787. $UserNameUsedTwice = "Login is used twice";
  1788. $UserNameNotAvailable = "This login is not available";
  1789. $UserNameTooLong = "This login is too long";
  1790. $WrongStatus = "This status doesn't exist";
  1791. $ClassNameNotAvailable = "This classname is not available";
  1792. $FileImported = "File imported";
  1793. $WhichSessionToExport = "Choose the session to export";
  1794. $AllSessions = "All the sessions";
  1795. $CodeDoesNotExists = "This code does not exist";
  1796. $UnknownUser = "Unknown user";
  1797. $UnknownStatus = "Unknown status";
  1798. $SessionDeleted = "The session has been deleted";
  1799. $CourseDoesNotExist = "This course doesn't exist";
  1800. $UserDoesNotExist = "This user doesn't exist";
  1801. $ButProblemsOccured = "but problems occured";
  1802. $UsernameTooLongWasCut = "This login was cut";
  1803. $NoInputFile = "No file was sent";
  1804. $StudentStatusWasGivenTo = "Learner status has been given to";
  1805. $WrongDate = "Wrong date format (yyyy-mm-dd)";
  1806. $YouWillSoonReceiveMailFromCoach = "You will soon receive an email from your coach.";
  1807. $SlideSize = "Size of the slides";
  1808. $EphorusPlagiarismPrevention = "Ephorus plagiarism prevention";
  1809. $CourseTeachers = "Teachers";
  1810. $UnknownTeacher = "Unknown trainer";
  1811. $HideDLTTMarkup = "Hide DLTT Markup";
  1812. $ListOfCoursesOfSession = "List of courses of the session";
  1813. $UnsubscribeSelectedUsersFromSession = "Unsubscribe selected users from session";
  1814. $ShowDifferentCourseLanguageComment = "Show the language each course is in, next to the course title, on the homepage courses list";
  1815. $ShowEmptyCourseCategoriesComment = "Show the categories of courses on the homepage, even if they're empty";
  1816. $ShowEmptyCourseCategories = "Show empty courses categories";
  1817. $XMLNotValid = "XML document is not valid";
  1818. $ForTheSession = "for the session";
  1819. $AllowEmailEditorTitle = "Online e-mail editor enabled";
  1820. $AllowEmailEditorComment = "If this option is activated, clicking on an e-mail address will open an online editor.";
  1821. $AddCSVHeader = "Include header line?";
  1822. $YesAddCSVHeader = "Yes, add the headers<br />This will put the fields names on the first line. It is necessary when you want to import the file later on in a Chamilo portal.";
  1823. $ListOfUsersSubscribedToCourse = "List of users subscribed to course";
  1824. $NumberOfCourses = "Courses";
  1825. $ShowDifferentCourseLanguage = "Show course languages";
  1826. $VisioRTMPTunnelPort = "Videoconference RTMPT protocol tunnel port";
  1827. $Security = "Security";
  1828. $UploadExtensionsListType = "Type of filtering on document uploads";
  1829. $UploadExtensionsListTypeComment = "Whether you want to use the blacklist or whitelist filtering. See blacklist or whitelist description below for more details.";
  1830. $Blacklist = "Blacklist";
  1831. $Whitelist = "Whitelist";
  1832. $UploadExtensionsBlacklist = "Blacklist - setting";
  1833. $UploadExtensionsWhitelist = "Whitelist - setting";
  1834. $UploadExtensionsBlacklistComment = "The blacklist is used to filter the files extensions by removing (or renaming) any file which extension figures in the blacklist below. The extensions should figure without the leading dot (.) and separated by semi-column (;) like the following: exe;com;bat;scr;php. Files without extension are accepted. Letter casing (uppercase/lowercase) doesn't matter.";
  1835. $UploadExtensionsWhitelistComment = "The whitelist is used to filter the file extensions by removing (or renaming) any file whose extension does *NOT* figure in the whitelist below. It is generally considered as a safer but more restrictive approach to filtering. The extensions should figure without the leading dot (.) and separated by semi-column (;) such as the following: htm;html;txt;doc;xls;ppt;jpg;jpeg;gif;sxw. Files without extension are accepted. Letter casing (uppercase/lowercase) doesn't matter.";
  1836. $UploadExtensionsSkip = "Filtering behaviour (skip/rename)";
  1837. $UploadExtensionsSkipComment = "If you choose to skip, the files filtered through the blacklist or whitelist will not be uploaded to the system. If you choose to rename them, their extension will be replaced by the one defined in the extension replacement setting. Beware that renaming doesn't really protect you, and may cause name collision if several files of the same name but different extensions exist.";
  1838. $UploadExtensionsReplaceBy = "Replacement extension";
  1839. $UploadExtensionsReplaceByComment = "Enter the extension that you want to use to replace the dangerous extensions detected by the filter. Only needed if you have selected a filter by replacement.";
  1840. $ShowNumberOfCoursesComment = "Show the number of courses in each category in the courses categories on the homepage";
  1841. $EphorusDescription = "Start using the Ephorus anti plagiarism service in Chamilo.<br /> \t\t\t\t\t\t\t\t\t\t\t\t\t\t<strong>With Ephorus, you will prevent internet plagiarism without any additional effort.</strong><br /> \t\t\t\t\t\t\t\t\t\t\t\t\t\t You can use our unique open standard webservice to build your own integration or you can use one of our Chamilo-integration modules.";
  1842. $EphorusLeadersInAntiPlagiarism = "<strong>Leaders in <br />anti plagiarism </strong>\t\t\t\t";
  1843. $EphorusClickHereForInformationsAndPrices = "Click here for more information and prices\t\t\t";
  1844. $NameOfTheSession = "Session name";
  1845. $NoSessionsForThisUser = "This user isn't subscribed in a session";
  1846. $DisplayCategoriesOnHomepageTitle = "Display categories on home page";
  1847. $DisplayCategoriesOnHomepageComment = "This option will display or hide courses categories on the portal home page";
  1848. $ShowTabsTitle = "Tabs in the header";
  1849. $ShowTabsComment = "Check the tabs you want to see appear in the header. The unchecked tabs will appear on the right hand menu on the portal homepage and my courses page if these need to appear";
  1850. $DefaultForumViewTitle = "Default forum view";
  1851. $DefaultForumViewComment = "What should be the default option when creating a new forum. Any trainer can however choose a different view for every individual forum";
  1852. $TabsMyCourses = "Courses tab";
  1853. $TabsCampusHomepage = "Portal homepage tab";
  1854. $TabsReporting = "Reporting tab";
  1855. $TabsPlatformAdministration = "Platform Administration tab";
  1856. $NoCoursesForThisSession = "No course for this session";
  1857. $NoUsersForThisSession = "No Users for this session";
  1858. $LastNameMandatory = "The last name cannot be empty";
  1859. $FirstNameMandatory = "The first name cannot be empty";
  1860. $EmailMandatory = "The email cannot be empty";
  1861. $TabsMyAgenda = "Agenda tab";
  1862. $NoticeWillBeNotDisplayed = "The notice will be not displayed on the homepage";
  1863. $LetThoseFieldsEmptyToHideTheNotice = "Let those fields empty to hide the notice";
  1864. $Ppt2lpVoiceRecordingNeedsRed5 = "The voice recording feature in the course editor relies on a Red5 streaming server. This server's parameters can be configured in the videoconference section on the current page.";
  1865. $PlatformCharsetTitle = "Character set";
  1866. $PlatformCharsetComment = "The character set is what pilots the way specific languages can be displayed in Chamilo. If you use Russian or Japanese characters, for example, you might want to change this. For all english, latin and west-european characters, the default UTF-8 should be alright.";
  1867. $ExtendedProfileRegistrationTitle = "Extended profile fields in registration";
  1868. $ExtendedProfileRegistrationComment = "Which of the following fields of the extended profile have to be available in the user registration process? This requires that the extended profile is activated (see above).";
  1869. $ExtendedProfileRegistrationRequiredTitle = "Required extended profile fields in registration";
  1870. $ExtendedProfileRegistrationRequiredComment = "Which of the following fields of the extende profile are required in the user registration process? This requires that the extended profile is activated and that the field is also available in the registration form (see above).";
  1871. $NoReplyEmailAddress = "No-reply e-mail address";
  1872. $NoReplyEmailAddressComment = "This is the e-mail address to be used when an e-mail has to be sent specifically requesting that no answer be sent in return. Generally, this e-mail address should be configured on your server to drop/ignore any incoming e-mail.";
  1873. $SurveyEmailSenderNoReply = "Survey e-mail sender (no-reply)";
  1874. $SurveyEmailSenderNoReplyComment = "Should the survey invitations use the coach e-mail address or the no-reply address defined in the main configuration section?";
  1875. $CourseCoachEmailSender = "Coach e-mail address";
  1876. $NoReplyEmailSender = "No-reply e-mail address";
  1877. $OpenIdAuthenticationComment = "Enable the OpenID URL-based authentication (displays an additional login form on the homepage)";
  1878. $VersionCheckEnabled = "Version check enabled";
  1879. $InstallDirAccessibleSecurityThreat = "The main/install directory of your Chamilo system is still accessible to web users. This might represent a security threat for your installation. We recommend that you remove this directory or that you change its permissions so web users cannot use the scripts it contains.";
  1880. $GradebookActivation = "Assessments tool activation";
  1881. $GradebookActivationComment = "The Assessments tool allows you to assess competences in your organization by merging classroom and online activities evaluations into Performance reports. Do you want to activate it?";
  1882. $UserTheme = "Theme (stylesheet)";
  1883. $UserThemeSelection = "User theme selection";
  1884. $UserThemeSelectionComment = "Allow users to select their own visual theme in their profile. This will change the look of Chamilo for them, but will leave the default style of the portal intact. If a specific course or session has a specific theme assigned, it will have priority over user-defined themes.";
  1885. $VisioHost = "Videoconference streaming server hostname or IP address";
  1886. $VisioPort = "Videoconference streaming server port";
  1887. $VisioPassword = "Videoconference streaming server password";
  1888. $Port = "Port";
  1889. $EphorusClickHereForADemoAccount = "Click here for a demo account";
  1890. $ManageUserFields = "Profiling";
  1891. $AddUserField = "Add profile field";
  1892. $FieldLabel = "Field label";
  1893. $FieldType = "Field type";
  1894. $FieldTitle = "Field title";
  1895. $FieldDefaultValue = "Default value";
  1896. $FieldOrder = "Order";
  1897. $FieldVisibility = "Visible?";
  1898. $FieldChangeability = "Can change";
  1899. $FieldTypeText = "Text";
  1900. $FieldTypeTextarea = "Text area";
  1901. $FieldTypeRadio = "Radio buttons";
  1902. $FieldTypeSelect = "Select drop-down";
  1903. $FieldTypeSelectMultiple = "Multiple selection drop-down";
  1904. $FieldAdded = "Field succesfully added";
  1905. $GradebookScoreDisplayColoring = "Grades thresholds colouring";
  1906. $GradebookScoreDisplayColoringComment = "Tick the box to enable marks thresholds";
  1907. $TabsGradebookEnableColoring = "Enable marks thresholds";
  1908. $GradebookScoreDisplayCustom = "Competence levels labelling";
  1909. $GradebookScoreDisplayCustomComment = "Tick the box to enable Competence levels labelling";
  1910. $TabsGradebookEnableCustom = "Enable Competence level labelling";
  1911. $GradebookScoreDisplayColorSplit = "Threshold";
  1912. $GradebookScoreDisplayColorSplitComment = "The threshold (in %) under which scores will be colored red";
  1913. $GradebookScoreDisplayUpperLimit = "Display score upper limit";
  1914. $GradebookScoreDisplayUpperLimitComment = "Tick the box to show the score's upper limit";
  1915. $TabsGradebookEnableUpperLimit = "Enable score's upper limit display";
  1916. $AddUserFields = "Add profile field";
  1917. $FieldPossibleValues = "Possible values";
  1918. $FieldPossibleValuesComment = "Only given for repetitive fields, split by semi-column (;)";
  1919. $FieldTypeDate = "Date";
  1920. $FieldTypeDatetime = "Date and time";
  1921. $UserFieldsAddHelp = "Adding a user field is very easy:<br />- pick a one-word, lowercase identifier,<br />- select a type,<br />- pick a text that should appear to the user (if you use an existing translated name like BirthDate or UserSex, it will automatically get translated to any language),<br />- if you picked a multiple type (radio, select, multiple select), provide the possible choices (again, it can make use of the language variables defined in Chamilo), split by semi-column characters,<br />- for text types, you can choose a default value.<br /><br />Once you're done, add the field and choose whether you want to make it visible and modifiable. Making it modifiable but not visible is useless.";
  1922. $AllowCourseThemeTitle = "Allow course themes";
  1923. $AllowCourseThemeComment = "Allows course graphical themes and makes it possible to change the style sheet used by a course to any of the possible style sheets available to Chamilo. When a user enters the course, the style sheet of the course will have priority over the user's own style sheet and the platform's default style sheet.";
  1924. $DisplayMiniMonthCalendarTitle = "Display the small month calendar in the agenda tool";
  1925. $DisplayMiniMonthCalendarComment = "This setting enables or disables the small month calendar that appears in the left column of the agenda tool";
  1926. $DisplayUpcomingEventsTitle = "Display the upcoming events in the agenda tool";
  1927. $DisplayUpcomingEventsComment = "This setting enables or disables the upcoming events that appears in the left column of the agenda tool of the course";
  1928. $NumberOfUpcomingEventsTitle = "Number of upcoming events that have to be displayed.";
  1929. $NumberOfUpcomingEventsComment = "The number of upcoming events that have to be displayed in the agenda. This requires that the upcoming event functionlity is activated (see setting above).";
  1930. $ShowClosedCoursesTitle = "Display closed courses on login page and portal start page?";
  1931. $ShowClosedCoursesComment = "Display closed courses on the login page and courses start page? On the portal start page an icon will appear next to the courses to quickly subscribe to each courses. This will only appear on the portal's start page when the user is logged in and when the user is not subscribed to the portal yet.";
  1932. $LDAPConnectionError = "LDAP Connection Error";
  1933. $LDAP = "LDAP";
  1934. $LDAPEnableTitle = "Enable LDAP";
  1935. $LDAPEnableComment = "If you have an LDAP server, you will have to configure its settings below and modify your configuration file as described in the installation guide, and then activate it. This will allow users to authenticate using their LDAP logins. If you don't know what LDAP is, please leave it disabled";
  1936. $LDAPMainServerAddressTitle = "Main LDAP server address";
  1937. $LDAPMainServerAddressComment = "The IP address or url of your main LDAP server.";
  1938. $LDAPMainServerPortTitle = "Main LDAP server's port.";
  1939. $LDAPMainServerPortComment = "The port on which the main LDAP server will respond (usually 389). This is a mandatory setting.";
  1940. $LDAPDomainTitle = "LDAP domain";
  1941. $LDAPDomainComment = "This is the LDAP domain (dc) that will be used to find the contacts on the LDAP server. For example: dc=xx, dc=yy, dc=zz";
  1942. $LDAPReplicateServerAddressTitle = "Replicate server address";
  1943. $LDAPReplicateServerAddressComment = "When the main server is not available, this server will be accessed. Leave blank or use the same value as the main server if you don't have a replicate server.";
  1944. $LDAPReplicateServerPortTitle = "Replicate server's port";
  1945. $LDAPReplicateServerPortComment = "The port on which the replicate server will respond.";
  1946. $LDAPSearchTermTitle = "Search term";
  1947. $LDAPSearchTermComment = "This term will be used to filter the search for contacts on the LDAP server. If you are unsure what to put in here, please refer to your LDAP server's documentation and configuration.";
  1948. $LDAPVersionTitle = "LDAP version";
  1949. $LDAPVersionComment = "Please select the version of the LDAP server you want to use. Using the right version depends on your LDAP server's configuration.";
  1950. $LDAPVersion2 = "LDAP 2";
  1951. $LDAPVersion3 = "LDAP 3";
  1952. $LDAPFilledTutorFieldTitle = "Tutor identification field";
  1953. $LDAPFilledTutorFieldComment = "A check will be done on this LDAP contact field on new users insertion. If this field is not empty, the user will be considered as a tutor and inserted in Chamilo as such. If you want all your users to be recognised as simple users, leave this field empty. You can modify this behaviour by changing the code. Please read the <a href=\"../../documentation/installation_guide.html\">installation guide</a> for more information.";
  1954. $LDAPAuthenticationLoginTitle = "Authentication login";
  1955. $LDAPAuthenticationLoginComment = "If you are using an LDAP server that does not support or accept anonymous access, fill the following field with the user login that should be used. Do not include \"cn=\". Leave empty for anonymous access.";
  1956. $LDAPAuthenticationPasswordTitle = "Authentication password";
  1957. $LDAPAuthenticationPasswordComment = "If you are using an LDAP server that does not support or accept anonymous access, fill the following field with the user password that should be used.";
  1958. $LDAPImport = "LDAP Import";
  1959. $EmailNotifySubscription = "Notify subscribed users by e-mail";
  1960. $DontUncheck = "Do not uncheck";
  1961. $AllSlashNone = "All/None";
  1962. $LDAPImportUsersSteps = "LDAP Import: Users/Steps";
  1963. $EnterStepToAddToYourSession = "Enter step to add to your session";
  1964. $ToDoThisYouMustEnterYearDepartmentAndStep = "In order to do this, you must enter the year, the department and the step";
  1965. $FollowEachOfTheseStepsStepByStep = "Follow each of these steps, step by step";
  1966. $RegistrationYearExample = "Registration year. Example: %s for academic year %s-%s";
  1967. $SelectDepartment = "Select department";
  1968. $RegistrationYear = "Registration year";
  1969. $SelectStepAcademicYear = "Select step (academic year)";
  1970. $ErrorExistingStep = "Error: this step already exists";
  1971. $ErrorStepNotFoundOnLDAP = "Error: step not found on LDAP server";
  1972. $StepDeletedSuccessfully = "Step deleted successfully";
  1973. $StepUsersDeletedSuccessfully = "Step users removed successfully";
  1974. $NoStepForThisSession = "No LOs in this session";
  1975. $DeleteStepUsers = "Remove users from step";
  1976. $ImportStudentsOfAllSteps = "Import learners of all steps";
  1977. $ImportLDAPUsersIntoPlatform = "Import LDAP users into the platform";
  1978. $NoUserInThisSession = "No user in this session";
  1979. $SubscribeSomeUsersToThisSession = "Subscribe some users to this session";
  1980. $EnterStudentsToSubscribeToCourse = "Enter the learners you would like to register to your course";
  1981. $ToDoThisYouMustEnterYearComponentAndComponentStep = "In order to do this, you must enter the year, the component and the component's step";
  1982. $SelectComponent = "Select component";
  1983. $Component = "Component";
  1984. $SelectStudents = "Select learners";
  1985. $LDAPUsersAdded = "LDAP users added";
  1986. $NoUserAdded = "No user added";
  1987. $ImportLDAPUsersIntoCourse = "Import LDAP users into a course";
  1988. $ImportLDAPUsersAndStepIntoSession = "Import LDAP users and a step into a session";
  1989. $LDAPSynchroImportUsersAndStepsInSessions = "LDAP synchro: Import learners/steps into course sessions";
  1990. $TabsMyGradebook = "Assessments tab";
  1991. $LDAPUsersAddedOrUpdated = "LDAP users added or updated";
  1992. $SearchLDAPUsers = "Search for LDAP users";
  1993. $SelectCourseToImportUsersTo = "Select a course in which you would like to register the users you are going to select next";
  1994. $ImportLDAPUsersIntoSession = "Import LDAP users into a session";
  1995. $LDAPSelectFilterOnUsersOU = "Select a filter to find a matching string at the end of the OU attribute";
  1996. $LDAPOUAttributeFilter = "The OU attribute filter";
  1997. $SelectSessionToImportUsersTo = "Select the session in which you want to import these users";
  1998. $VisioUseRtmptTitle = "Use the RTMPT protocol";
  1999. $VisioUseRtmptComment = "The RTMPT protocol allows access to the videoconference from behind a firewall, by redirecting the communications on port 80. This, however, will slow down the streaming, so it is recommended to avoid using it unless required.";
  2000. $UploadNewStylesheet = "New stylesheet file";
  2001. $NameStylesheet = "Name of the stylesheet";
  2002. $StylesheetAdded = "The stylesheet has been added";
  2003. $LDAPFilledTutorFieldValueTitle = "Tutor identification value";
  2004. $LDAPFilledTutorFieldValueComment = "When a check is done on the tutor field given above, this value has to be inside one of the tutor fields sub-elements for the user to be considered as a trainer. If you leave this field blank, the only condition is that the field exists for this LDAP user to be considered as a trainer. As an example, the field could be \"memberof\" and the value to search for could be \"CN=G_TRAINER,OU=Trainer\".";
  2005. $IsNotWritable = "is not writeable";
  2006. $FieldMovedDown = "The field is successfully moved down";
  2007. $CannotMoveField = "Cannot move the field.";
  2008. $FieldMovedUp = "The field is successfully moved up.";
  2009. $MetaTitleTitle = "OpenGraph meta title";
  2010. $MetaDescriptionComment = "This will show an OpenGraph Description meta (og:description) in your site's headers";
  2011. $MetaDescriptionTitle = "Meta description";
  2012. $MetaTitleComment = "This will show an OpenGraph Title meta (og:title) in your site's headers";
  2013. $FieldDeleted = "The field has been deleted";
  2014. $CannotDeleteField = "Cannot delete the field";
  2015. $AddUsersByCoachTitle = "Register users by Coach";
  2016. $AddUsersByCoachComment = "Coach users may create users to the platform and subscribe users to a session.";
  2017. $UserFieldsSortOptions = "Sort the options of the profiling fields";
  2018. $FieldOptionMovedUp = "The option has been moved up.";
  2019. $CannotMoveFieldOption = "Cannot move the option.";
  2020. $FieldOptionMovedDown = "The option has been moved down.";
  2021. $DefineSessionOptions = "Define access limits for the coach";
  2022. $DaysBefore = "days before session starts";
  2023. $DaysAfter = "days after";
  2024. $SessionAddTypeUnique = "Single registration";
  2025. $SessionAddTypeMultiple = "Multiple registration";
  2026. $EnableSearchTitle = "Full-text search feature";
  2027. $EnableSearchComment = "Select \"Yes\" to enable this feature. It is highly dependent on the Xapian extension for PHP, so this will not work if this extension is not installed on your server, in version 1.x at minimum.";
  2028. $SearchASession = "Find a training session";
  2029. $ActiveSession = "Session session";
  2030. $AddUrl = "Add URL";
  2031. $ShowSessionCoachTitle = "Show session coach";
  2032. $ShowSessionCoachComment = "Show the global session coach name in session title box in the courses list";
  2033. $ExtendRightsForCoachTitle = "Extend rights for coach";
  2034. $ExtendRightsForCoachComment = "Activate this option will give the coach the same permissions as the trainer on authoring tools";
  2035. $ExtendRightsForCoachOnSurveyComment = "Activate this option will allow the coachs to create and edit surveys";
  2036. $ExtendRightsForCoachOnSurveyTitle = "Extend rights for coachs on surveys";
  2037. $CannotDeleteUserBecauseOwnsCourse = "This user cannot be deleted because he is still teacher in a course. You can either remove his teacher status from these courses and then delete his account, or disable his account instead of deleting it.";
  2038. $AllowUsersToCreateCoursesTitle = "Allow non admin to create courses";
  2039. $AllowUsersToCreateCoursesComment = "Allow non administrators (teachers) to create new courses on the server";
  2040. $AllowStudentsToBrowseCoursesComment = "Allow learners to browse the courses catalogue and subscribe to available courses";
  2041. $YesWillDeletePermanently = "Yes (the files will be deleted permanently and will not be recoverable)";
  2042. $NoWillDeletePermanently = "No (the files will be deleted from the application but will be manually recoverable by your server administrator)";
  2043. $SelectAResponsible = "Select a manager";
  2044. $ThereIsNotStillAResponsible = "No HR manager available";
  2045. $AllowStudentsToBrowseCoursesTitle = "Learners access to courses catalogue";
  2046. $SharedSettingIconComment = "This is a shared setting";
  2047. $GlobalAgenda = "Global agenda";
  2048. $AdvancedFileManagerTitle = "Advanced file manager in the WYSIWYG editor";
  2049. $AdvancedFileManagerComment = "Enable advanced file manager for WYSIWYG editor? This will add a considerable amount of additional options to the file manager that opens in a pop-up window when uploading files to the server, but might be a little more complicated to use for the final user.";
  2050. $ScormAndLPProgressTotalAverage = "Average progress in courses";
  2051. $MultipleAccessURLs = "Multiple access URL / Branding";
  2052. $SearchShowUnlinkedResultsTitle = "Full-text search: show unlinked results";
  2053. $SearchShowUnlinkedResultsComment = "When showing the results of a full-text search, what should be done with the results that are not accessible to the current user?";
  2054. $SearchHideUnlinkedResults = "Do not show them";
  2055. $SearchShowUnlinkedResults = "Show them but without a link to the resource";
  2056. $Templates = "Templates";
  2057. $EnableVersionCheck = "Enable version check";
  2058. $AllowMessageToolTitle = "Internal messaging tool";
  2059. $AllowReservationTitle = "Booking";
  2060. $AllowReservationComment = "The booking system allows you to book resources for your courses (rooms, tables, books, screens, ...). You need this tool to be enabled (through the Admin) to have it appear in the user menu.";
  2061. $ConfigureResourceType = "Configure";
  2062. $ConfigureMultipleAccessURLs = "Configure multiple access URL";
  2063. $URLAdded = "The URL has been added";
  2064. $URLAlreadyAdded = "This URL already exists, please select another URL";
  2065. $AreYouSureYouWantToSetThisLanguageAsThePortalDefault = "Are you sure you want to set this language as the portal's default?";
  2066. $CurrentLanguagesPortal = "Current portal's language";
  2067. $EditUsersToURL = "Edit users and URLs";
  2068. $AddUsersToURL = "Add users to an URL";
  2069. $URLList = "URL list";
  2070. $AddToThatURL = "Add users to that URL";
  2071. $SelectUrl = "Select URL";
  2072. $UserListInURL = "Users subscribed to this URL";
  2073. $UsersWereEdited = "The user accounts have been updated";
  2074. $AtLeastOneUserAndOneURL = "You must select at least one user and one URL";
  2075. $UsersBelongURL = "The user accounts are now attached to the URL";
  2076. $LPTestScore = "Course score";
  2077. $ScormAndLPTestTotalAverage = "Average of tests in Learning Paths";
  2078. $ImportUsersToACourse = "Import users list";
  2079. $ImportCourses = "Import courses list";
  2080. $ManageUsers = "Manage users";
  2081. $ManageCourses = "Manage courses";
  2082. $UserListIn = "Users of";
  2083. $URLInactive = "The URL has been disabled";
  2084. $URLActive = "The URL has been enabled";
  2085. $EditUsers = "Edit users";
  2086. $EditCourses = "Edit courses";
  2087. $CourseListIn = "Courses of";
  2088. $AddCoursesToURL = "Add courses to an URL";
  2089. $EditCoursesToURL = "Edit courses of an URL";
  2090. $AddCoursesToThatURL = "Add courses to that URL";
  2091. $EnablePlugins = "Enable the selected plugins";
  2092. $AtLeastOneCourseAndOneURL = "At least one course and one URL";
  2093. $ClickToRegisterAdmin = "Click here to register the admin into all sites";
  2094. $AdminShouldBeRegisterInSite = "Admin user should be registered here";
  2095. $URLNotConfiguredPleaseChangedTo = "URL not configured yet, please add this URL :";
  2096. $AdminUserRegisteredToThisURL = "Admin user assigned to this URL";
  2097. $CoursesWereEdited = "Courses updated successfully";
  2098. $URLEdited = "The URL has been edited";
  2099. $AddSessionToURL = "Add session to an URL";
  2100. $FirstLetterSession = "Session title's first letter";
  2101. $EditSessionToURL = "Edit session";
  2102. $AddSessionsToThatURL = "Add sessions to that URL";
  2103. $SessionBelongURL = "Sessions were edited";
  2104. $ManageSessions = "Manage sessions";
  2105. $AllowMessageToolComment = "Enabling the internal messaging tool allows users to send messages to other users of the platform and to have a messaging inbox.";
  2106. $AllowSocialToolTitle = "Social network tool (Facebook-like)";
  2107. $AllowSocialToolComment = "The social network tool allows users to define relations with other users and, by doing so, to define groups of friends. Combined with the internal messaging tool, this tool allows tight communication with friends, inside the portal environment.";
  2108. $SetLanguageAsDefault = "Set language as default";
  2109. $FieldFilter = "Filter";
  2110. $FilterOn = "Filter on";
  2111. $FilterOff = "Filter off";
  2112. $FieldFilterSetOn = "You can now use this field as a filter";
  2113. $FieldFilterSetOff = "You can't use this field as a filter";
  2114. $buttonAddUserField = "Add user field";
  2115. $UsersSubscribedToFollowingCoursesBecauseOfVirtualCourses = "The users have been subscribed to the following courses because several courses share the same visual code";
  2116. $TheFollowingCoursesAlreadyUseThisVisualCode = "The following courses already use this code";
  2117. $UsersSubscribedToBecauseVisualCode = "The users have been subscribed to the following courses because several courses share the same visual code";
  2118. $UsersUnsubscribedFromBecauseVisualCode = "The users have been unsubscribed from the following courses because several courses share the same visual code";
  2119. $FilterUsers = "Filter users";
  2120. $SeveralCoursesSubscribedToSessionBecauseOfSameVisualCode = "Several courses were subscribed to the session because of a duplicate course code";
  2121. $CoachIsRequired = "You must select a coach";
  2122. $EncryptMethodUserPass = "Encryption method";
  2123. $AddTemplate = "Add a template";
  2124. $TemplateImageComment100x70 = "This image will represent the template in the templates list. It should be no larger than 100x70 pixels";
  2125. $TemplateAdded = "Template added";
  2126. $TemplateDeleted = "Template deleted";
  2127. $EditTemplate = "Template edition";
  2128. $FileImportedJustUsersThatAreNotRegistered = "The users that were not registered on the platform have been imported";
  2129. $YouMustImportAFileAccordingToSelectedOption = "You must import a file corresponding to the selected format";
  2130. $ShowEmailOfTeacherOrTutorTitle = "Show teacher or tutor's e-mail address in the footer";
  2131. $ShowEmailOfTeacherOrTutorComent = "Show trainer or tutor's e-mail in footer ?";
  2132. $AddSystemAnnouncement = "Add a system announcement";
  2133. $EditSystemAnnouncement = "Edit system announcement";
  2134. $LPProgressScore = "% of learning objects visited";
  2135. $TotalTimeByCourse = "Total time in course";
  2136. $LastTimeTheCourseWasUsed = "Last time learner entered the course";
  2137. $AnnouncementAvailable = "The announcement is available";
  2138. $AnnouncementNotAvailable = "The announcement is not available";
  2139. $Searching = "Searching";
  2140. $AddLDAPUsers = "Add LDAP users";
  2141. $Academica = "Academica";
  2142. $AddNews = "Add news";
  2143. $SearchDatabaseOpeningError = "Failed to open the search database";
  2144. $SearchDatabaseVersionError = "The search database uses an unsupported format";
  2145. $SearchDatabaseModifiedError = "The search database has been modified/broken";
  2146. $SearchDatabaseLockError = "Failed to lock the search database";
  2147. $SearchDatabaseCreateError = "Failed to create the search database";
  2148. $SearchDatabaseCorruptError = "The search database has suffered corruption";
  2149. $SearchNetworkTimeoutError = "Connection timed out while communicating with the remote search database";
  2150. $SearchOtherXapianError = "Error in search engine";
  2151. $SearchXapianModuleNotInstalled = "The Xapian search module is not installed";
  2152. $FieldRemoved = "Field removed";
  2153. $TheNewSubLanguageHasBeenAdded = "The new sub-language has been added";
  2154. $DeleteSubLanguage = "Delete sub-language";
  2155. $CreateSubLanguageForLanguage = "Create a sub-language for this language";
  2156. $DeleteSubLanguageFromLanguage = "Delete this sub-language";
  2157. $CreateSubLanguage = "Create sub-language";
  2158. $RegisterTermsOfSubLanguageForLanguage = "Define new terms for this sub-language";
  2159. $AddTermsOfThisSubLanguage = "Sub-language terms";
  2160. $LoadLanguageFile = "Load language file";
  2161. $AllowUseSubLanguageTitle = "Allow definition and use of sub-languages";
  2162. $AllowUseSubLanguageComment = "By enabling this option, you will be able to define variations for each of the language terms used in the platform's interface, in the form of a new language based on and extending an existing language. You'll find this option in the languages section of the administration panel.";
  2163. $AddWordForTheSubLanguage = "Add terms to the sub-language";
  2164. $TemplateEdited = "Template edited";
  2165. $SubLanguage = "Sub-language";
  2166. $LanguageIsNowVisible = "The language has been made visible and can now be used throughout the platform.";
  2167. $LanguageIsNowHidden = "The language has been hidden. It will not be possible to use it until it becomes visible again.";
  2168. $LanguageDirectoryNotWriteableContactAdmin = "The /main/lang directory, used on this portal to store the languages, is not writable. Please contact your platform administrator and report this message.";
  2169. $ShowGlossaryInDocumentsTitle = "Show glossary terms in documents";
  2170. $ShowGlossaryInDocumentsComment = "From here you can configure how to add links to the glossary terms from the documents";
  2171. $ShowGlossaryInDocumentsIsAutomatic = "Automatic: adds links to all defined glossary terms found in the document";
  2172. $ShowGlossaryInDocumentsIsManual = "Manual: shows a glossary icon in the online editor, so you can mark the terms that are in the glossary and that you want to link";
  2173. $ShowGlossaryInDocumentsIsNone = "None: doesn't add any glossary terms to the documents";
  2174. $LanguageVariable = "Language variable";
  2175. $ToExportDocumentsWithGlossaryYouHaveToSelectGlossary = "To export a document that has glossary terms with its references to the glossary, you have to make sure you include the glossary tool in the export";
  2176. $ShowTutorDataTitle = "Session's tutor's data is shown in the footer.";
  2177. $ShowTutorDataComment = "Show the session's tutor reference (name and e-mail if available) in the footer?";
  2178. $ShowTeacherDataTitle = "Show teacher information in footer";
  2179. $ShowTeacherDataComment = "Show the teacher reference (name and e-mail if available) in the footer?";
  2180. $HTMLText = "HTML";
  2181. $PageLink = "Page Link";
  2182. $DisplayTermsConditions = "Display a Terms & Conditions statement on the registration page, require visitor to accept the T&C to register.";
  2183. $AllowTermsAndConditionsTitle = "Enable terms and conditions";
  2184. $AllowTermsAndConditionsComment = "This option will display the Terms and Conditions in the register form for new users. Need to be configured first in the portal administration page.";
  2185. $Load = "Load";
  2186. $AllVersions = "All versions";
  2187. $EditTermsAndConditions = "Edit terms and conditions";
  2188. $ExplainChanges = "Explain changes";
  2189. $TermAndConditionNotSaved = "Term and condition not saved";
  2190. $TheSubLanguageHasBeenRemoved = "The sub language has been removed";
  2191. $AddTermsAndConditions = "Add terms and conditions";
  2192. $TermAndConditionSaved = "Term and condition saved";
  2193. $ListSessionCategory = "Sessions categories list";
  2194. $AddSessionCategory = "Add category";
  2195. $SessionCategoryName = "Category name";
  2196. $EditSessionCategory = "Edit session category";
  2197. $SessionCategoryAdded = "The category has been added";
  2198. $SessionCategoryUpdate = "Category update";
  2199. $SessionCategoryDelete = "The selected categories have been deleted";
  2200. $SessionCategoryNameIsRequired = "Please give a name to the sessions category";
  2201. $ThereIsNotStillASession = "There are no sessions available";
  2202. $SelectASession = "Select a session";
  2203. $OriginCoursesFromSession = "Courses from the original session";
  2204. $DestinationCoursesFromSession = "Courses from the destination session";
  2205. $CopyCourseFromSessionToSessionExplanation = "Help for the copy of courses from session to session";
  2206. $TypeOfCopy = "Type of copy";
  2207. $CopyFromCourseInSessionToAnotherSession = "Copy from course in session to another session";
  2208. $YouMustSelectACourseFromOriginalSession = "You must select a course from original session";
  2209. $MaybeYouWantToDeleteThisUserFromSession = "Maybe you want to delete the user, instead of unsubscribing him from all courses...?";
  2210. $EditSessionCoursesByUser = "Edit session courses by user";
  2211. $CoursesUpdated = "Courses updated";
  2212. $CurrentCourses = "Current courses";
  2213. $CoursesToAvoid = "Unaccessible courses";
  2214. $EditSessionCourses = "Edit session courses";
  2215. $SessionVisibility = "Visibility after end date";
  2216. $BlockCoursesForThisUser = "Block user from courses in this session";
  2217. $LanguageFile = "Language file";
  2218. $ShowCoursesDescriptionsInCatalogTitle = "Show the courses descriptions in the catalog";
  2219. $ShowCoursesDescriptionsInCatalogComment = "Show the courses descriptions as an integrated popup when clicking on a course info icon in the courses catalog";
  2220. $StylesheetNotHasBeenAdded = "The stylesheet could not be added";
  2221. $AddSessionsInCategories = "Add sessions in categories";
  2222. $ItIsRecommendedInstallImagickExtension = "It is recommended to install the imagick php extension for better performances in the resolution for generating the thumbnail images otherwise not show very well, if it is not install by default uses the php-gd extension.";
  2223. $EditSpecificSearchField = "Edit specific search field";
  2224. $FieldName = "Field name";
  2225. $SpecialExports = "Special exports";
  2226. $SpecialCreateFullBackup = "Special create full backup";
  2227. $SpecialLetMeSelectItems = "Special let me select items";
  2228. $AllowCoachsToEditInsideTrainingSessions = "Allow coaches to edit inside course sessions";
  2229. $AllowCoachsToEditInsideTrainingSessionsComment = "Allow coaches to edit inside course sessions";
  2230. $ShowSessionDataTitle = "Show session data title";
  2231. $ShowSessionDataComment = "Show session data comment";
  2232. $SubscribeSessionsToCategory = "Subscription sessions in the category";
  2233. $SessionListInPlatform = "List of session in the platform";
  2234. $SessionListInCategory = "List of sesiones in the categories";
  2235. $ToExportSpecialSelect = "If you want to export courses containing sessions, which will ensure that these seansido included in the export to any of that will have to choose in the list.";
  2236. $ErrorMsgSpecialExport = "There were no courses registered or may not have made the association with the sessions";
  2237. $ConfigureInscription = "Setting the registration page";
  2238. $MsgErrorSessionCategory = "Select category and sessions";
  2239. $NumberOfSession = "Number sessions";
  2240. $DeleteSelectedSessionCategory = "Delete only the selected categories without sessions";
  2241. $DeleteSelectedFullSessionCategory = "Delete the selected categories to sessions";
  2242. $EditTopRegister = "Edit Note";
  2243. $InsertTabs = "Add Tabs";
  2244. $EditTabs = "Edit Tabs";
  2245. $AnnEmpty = "Announcements list has been cleared up";
  2246. $AnnouncementModified = "Announcement has been modified";
  2247. $AnnouncementAdded = "Announcement has been added";
  2248. $AnnouncementDeleted = "Announcement has been deleted";
  2249. $AnnouncementPublishedOn = "Published on";
  2250. $AddAnnouncement = "Add an announcement";
  2251. $AnnouncementDeleteAll = "Clear list of announcements";
  2252. $professorMessage = "Message from the trainer";
  2253. $EmailSent = " and emailed to registered learners";
  2254. $EmailOption = "Send this announcement by email to selected groups/users";
  2255. $On = "On";
  2256. $RegUser = "registered users of the site";
  2257. $Unvalid = "have unvalid or no e-mail address";
  2258. $ModifAnn = "Modifies this announcement";
  2259. $SelMess = "Warnings to some users";
  2260. $SelectedUsers = "Selected Users";
  2261. $PleaseEnterMessage = "You must introduce the message text.";
  2262. $PleaseSelectUsers = "You must select some users.";
  2263. $Teachersubject = "Message sent to users";
  2264. $MessageToSelectedUsers = "Messages to selected users";
  2265. $IntroText = "To send a message, select groups of users (see G) or single users from the list on the left.";
  2266. $MsgSent = "The message has been sent to the selected learners";
  2267. $SelUser = "selected users of the site";
  2268. $MessageToSelectedGroups = "Message to selected groups";
  2269. $SelectedGroups = "selected groups";
  2270. $Msg = "Messages";
  2271. $MsgText = "Message";
  2272. $AnnouncementDeletedAll = "All announcements have been deleted";
  2273. $AnnouncementMoved = "The announcement has been moved";
  2274. $NoAnnouncements = "There are no announcements.";
  2275. $SelectEverybody = "Select Everybody";
  2276. $SelectedUsersGroups = "selected user groups";
  2277. $LearnerMessage = "Message from a learner";
  2278. $TitleIsRequired = "Title is required";
  2279. $AnnounceSentByEmail = "Announcement sent by e-mail";
  2280. $AnnounceSentToUserSelection = "Announcement sent to the selected users";
  2281. $SendAnnouncement = "Send announcement";
  2282. $ModifyAnnouncement = "Edit announcement";
  2283. $ButtonPublishAnnouncement = "Send announcement";
  2284. $LineNumber = "Line Number";
  2285. $LineOrLines = "line(s)";
  2286. $AddNewHeading = "Add new heading";
  2287. $CourseAdministratorOnly = "Teachers only";
  2288. $DefineHeadings = "Define Headings";
  2289. $BackToUsersList = "Back to users list";
  2290. $CourseManager = "Teacher";
  2291. $ModRight = "change rights of";
  2292. $NoAdmin = "has from now on <b>no</b> rights on this page";
  2293. $AllAdmin = "has from now on <b>all</b> rights on this page";
  2294. $ModRole = "Change role of";
  2295. $IsNow = "is from now on";
  2296. $InC = "in this course";
  2297. $Filled = "You have left some fields empty.";
  2298. $UserNo = "The login you chose";
  2299. $Taken = "is already in use. Choose another one.";
  2300. $Tutor = "Coach";
  2301. $Unreg = "Unsubscribe";
  2302. $GroupUserManagement = "Groups management";
  2303. $AddAUser = "Add a user";
  2304. $UsersUnsubscribed = "The selected users have been unsubscribed from the course";
  2305. $ThisStudentIsSubscribeThroughASession = "This learner is subscribed in this training through a training session. You cannot edit his information";
  2306. $AddToFriends = "Are you sure you want to add this contact to your friends ?";
  2307. $AddPersonalMessage = "Add a personal message";
  2308. $Friends = "Friends";
  2309. $PersonalData = "Profile";
  2310. $Contacts = "Contacts";
  2311. $SocialInformationComment = "This screen allows you to organise your contacts";
  2312. $AttachContactsToGroup = "Attach contacts to group";
  2313. $ContactsList = "Contacts list";
  2314. $AttachToGroup = "Add to a group";
  2315. $SelectOneContact = "Select one contact";
  2316. $SelectOneGroup = "Select one group";
  2317. $AttachContactsPersonal = "Add personal contacts";
  2318. $AttachContactsToGroupSuccesfuly = "Successfully added contacts to group";
  2319. $AddedContactToList = "Added contact to list";
  2320. $ContactsGroupsComment = "This screen is a list of contacts sorted by groups";
  2321. $YouDontHaveContactsInThisGroup = "No contacts found";
  2322. $SelectTheCheckbox = "Select the check box";
  2323. $YouDontHaveInvites = "Empty";
  2324. $SocialInvitesComment = "Pending invitations.";
  2325. $InvitationSentBy = "Invitation sent by";
  2326. $RequestContact = "Request contact";
  2327. $SocialUnknow = "Unknown";
  2328. $SocialParent = "My parents";
  2329. $SocialFriend = "My friends";
  2330. $SocialGoodFriend = "My real friends";
  2331. $SocialEnemy = "My enemies";
  2332. $SocialDeleted = "Contact deleted";
  2333. $MessageOutboxComment = "Messages sent.";
  2334. $MyPersonalData = "My personal data";
  2335. $AlterPersonalData = "Alter personal data";
  2336. $Invites = "Invitations";
  2337. $ContactsGroups = "Group contacts";
  2338. $MyInbox = "My inbox";
  2339. $ViewSharedProfile = "View shared profile";
  2340. $ImagesUploaded = "Uploaded images";
  2341. $ExtraInformation = "Extra information";
  2342. $SearchContacts = "Search contacts";
  2343. $SocialSeeContacts = "See contacts";
  2344. $SocialUserInformationAttach = "Please write a message before sending the request";
  2345. $MessageInvitationNotSent = "your invitation message has not been sent";
  2346. $SocialAddToFriends = "Add to my contacts";
  2347. $ChangeContactGroup = "Change contact group";
  2348. $Friend = "Friend";
  2349. $ViewMySharedProfile = "My shared profile";
  2350. $UserStatistics = "Reporting for this user";
  2351. $EditUser = "Edit this user";
  2352. $ViewUser = "View this user";
  2353. $RSSFeeds = "RSS feed";
  2354. $NoFriendsInYourContactList = "No friends in your contact list";
  2355. $TryAndFindSomeFriends = "Try and find some friends";
  2356. $SendInvitation = "Send invitation";
  2357. $SocialInvitationToFriends = "Invite to join my group of friends";
  2358. $MyCertificates = "My certificates";
  2359. $NewGroupCreate = "Create new group(s)";
  2360. $GroupCreation = "New groups creation";
  2361. $NewGroups = "new group(s)";
  2362. $Max = "max. 20 characters, e.g. <i>INNOV21</i>";
  2363. $GroupPlacesThis = "seats (optional)";
  2364. $GroupsAdded = "group(s) has (have) been added";
  2365. $GroupDel = "Group deleted";
  2366. $ExistingGroups = "Groups";
  2367. $Registered = "Registered";
  2368. $GroupAllowStudentRegistration = "Learners are allowed to self-register in groups";
  2369. $GroupTools = "Tools";
  2370. $GroupDocument = "Documents";
  2371. $GroupPropertiesModified = "Group settings have been modified";
  2372. $GroupName = "Group name";
  2373. $GroupDescription = "Group description";
  2374. $GroupMembers = "Group members";
  2375. $EditGroup = "Edit this group";
  2376. $GroupSettingsModified = "Group settings modified";
  2377. $GroupTooMuchMembers = "Number proposed exceeds max. that you allowed (you can modify in the group settings). Group composition has not been modified";
  2378. $GroupTutor = "Group tutor";
  2379. $GroupNoTutor = "(none)";
  2380. $GroupNone = "(none)";
  2381. $GroupNoneMasc = "(none)";
  2382. $AddTutors = "Admin users list";
  2383. $MyGroup = "my group";
  2384. $OneMyGroups = "my supervision";
  2385. $GroupSelfRegistration = "Registration";
  2386. $GroupSelfRegInf = "register";
  2387. $RegIntoGroup = "Add me to this group";
  2388. $GroupNowMember = "You are now a member of this group.";
  2389. $Private = "Private access (access authorized to group members only)";
  2390. $Public = "Public access (access authorized to any member of the course)";
  2391. $PropModify = "Edit settings";
  2392. $State = "State";
  2393. $GroupFilledGroups = "Groups have been filled (or completed) by users present in the 'Users' list.";
  2394. $Subscribed = "users registered in this course";
  2395. $StudentsNotInThisGroups = "Learners not in this group";
  2396. $QtyOfUserCanSubscribe_PartBeforeNumber = "A user can be member of maximum";
  2397. $QtyOfUserCanSubscribe_PartAfterNumber = " groups";
  2398. $GroupLimit = "Limit";
  2399. $CreateGroup = "Create group(s)";
  2400. $ProceedToCreateGroup = "Proceed to create group(s)";
  2401. $StudentRegAllowed = "Learners are allowed to self-register to groups";
  2402. $GroupAllowStudentUnregistration = "Learners are allowed to unregister themselves from groups";
  2403. $AllGroups = "All groups";
  2404. $StudentUnsubscribe = "Unsubscribe me from this group.";
  2405. $StudentDeletesHimself = "You're now unsubscribed.";
  2406. $DefaultSettingsForNewGroups = "Default settings for new groups";
  2407. $SelectedGroupsDeleted = "All selected groups have been deleted";
  2408. $SelectedGroupsEmptied = "All selected groups are now empty";
  2409. $GroupEmptied = "The group is now empty";
  2410. $SelectedGroupsFilled = "All selected groups have been filled";
  2411. $GroupSelfUnRegInf = "unregister";
  2412. $SameForAll = "same for all";
  2413. $NoLimit = "No limitation";
  2414. $PleaseEnterValidNumber = "Please enter the desired number of groups";
  2415. $CreateGroupsFromVirtualCourses = "Create groups from all users in the virtual courses";
  2416. $CreateGroupsFromVirtualCoursesInfo = "This course is a combination of a real course and one or more virtual courses. If you press following button, new groups will be created according to these (virtual) courses. All learners will be subscribed to the groups.";
  2417. $NoGroupsAvailable = "No groups available";
  2418. $GroupsFromVirtualCourses = "Virtual courses";
  2419. $CreateSubgroups = "Create subgroups";
  2420. $CreateSubgroupsInfo = "This option allows you to create new groups based on an existing group. Provide the desired number of groups and choose an existing group. The given number of groups will be created and all members of the existing group will be subscribed in those new groups. The existing group remains unchanged.";
  2421. $CreateNumberOfGroups = "Create number of groups";
  2422. $WithUsersFrom = "groups with members from";
  2423. $FillGroup = "Fill the group randomly with course students";
  2424. $EmptyGroup = "unsubscribe all users";
  2425. $MaxGroupsPerUserInvalid = "The maximum number of groups per user you submitted is invalid. There are now users who are subscribed in more groups than the number you propose.";
  2426. $GroupOverview = "Groups overview";
  2427. $GroupCategory = "Group category";
  2428. $NoTitleGiven = "Please give a title";
  2429. $InvalidMaxNumberOfMembers = "Please enter a valid number for the maximum number of members.";
  2430. $CategoryOrderChanged = "The category order was changed";
  2431. $CategoryCreated = "Category created";
  2432. $GroupTutors = "Coaches";
  2433. $GroupWork = "Assignments";
  2434. $GroupCalendar = "Agenda";
  2435. $GroupAnnouncements = "Announcements";
  2436. $NoCategoriesDefined = "No categories defined";
  2437. $GroupsFromClasses = "Groups from classes";
  2438. $GroupsFromClassesInfo = "Using this option, you can create groups based on the classes subscribed to your course.";
  2439. $BackToGroupList = "Back to Groups list";
  2440. $NewForumCreated = "A new forum has now been created";
  2441. $NewThreadCreated = "A new forum thread has now been created";
  2442. $AddHotpotatoes = "Add hotpotatoes";
  2443. $HideAttemptView = "Hide attempt view";
  2444. $ExtendAttemptView = "Extend attempt view";
  2445. $LearnPathAddedTitle = "Welcome to the Chamilo course authoring tool !";
  2446. $BuildComment = "Add learning objects and activities to your course";
  2447. $BasicOverviewComment = "Add audio comments and order learning objects in the table of contents";
  2448. $DisplayComment = "Watch the course from learner's viewpoint";
  2449. $NewChapterComment = "Chapter 1, Chapter 2 or Week 1, Week 2...";
  2450. $NewStepComment = "Add tests, activities and multimedia content";
  2451. $LearnpathTitle = "Title";
  2452. $LearnpathPrerequisites = "Prerequisites";
  2453. $LearnpathMoveUp = "Up";
  2454. $LearnpathMoveDown = "Down";
  2455. $ThisItem = "this learning object";
  2456. $LearnpathTitleAndDesc = "Name & description";
  2457. $LearnpathChangeOrder = "Change order";
  2458. $LearnpathAddPrereqi = "Add prerequisities";
  2459. $LearnpathAddTitleAndDesc = "Edit name & desc.";
  2460. $LearnpathMystatus = "My progress in this course";
  2461. $LearnpathCompstatus = "completed";
  2462. $LearnpathIncomplete = "incomplete";
  2463. $LearnpathPassed = "passed";
  2464. $LearnpathFailed = "failed";
  2465. $LearnpathPrevious = "Previous learning object";
  2466. $LearnpathNext = "Next learning object";
  2467. $LearnpathRestart = "Restart";
  2468. $LearnpathThisStatus = "This learning object is now";
  2469. $LearnpathToEnter = "To enter";
  2470. $LearnpathFirstNeedTo = "you need first accomplish";
  2471. $LearnpathLessonTitle = "Section name";
  2472. $LearnpathStatus = "Status";
  2473. $LearnpathScore = "Score";
  2474. $LearnpathTime = "Time";
  2475. $LearnpathVersion = "version";
  2476. $LearnpathRestarted = "No learning object is completed.";
  2477. $LearnpathNoNext = "This is the last learning object.";
  2478. $LearnpathNoPrev = "This is the first learning object.";
  2479. $LearnpathAddLearnpath = "Create new learning path";
  2480. $LearnpathEditLearnpath = "Edit learnpath";
  2481. $LearnpathDeleteLearnpath = "Delete";
  2482. $LearnpathDoNotPublish = "do not publish";
  2483. $LearnpathPublish = "Publish on course homepage";
  2484. $LearnpathNotPublished = "not published";
  2485. $LearnpathPublished = "published";
  2486. $LearnpathEditModule = "Edit section description/name";
  2487. $LearnpathDeleteModule = "Delete section";
  2488. $LearnpathNoChapters = "No sectionss added yet.";
  2489. $LearnpathAddItem = "Add learning objects to this section";
  2490. $LearnpathItemDeleted = "The learning object has been deleted";
  2491. $LearnpathItemEdited = "The learning object has been edited";
  2492. $LearnpathPrereqNotCompleted = "This learning object cannot display because the course prerequisites are not completed. This happens when a course imposes that you follow it step by step or get a minimum score in tests before you reach the next steps.";
  2493. $NewChapter = "Add section";
  2494. $NewStep = "Add learning object or activity";
  2495. $EditPrerequisites = "Edit the prerequisites of the current LO";
  2496. $TitleManipulateChapter = "Edit section";
  2497. $TitleManipulateModule = "Edit section";
  2498. $TitleManipulateDocument = "Edit document";
  2499. $TitleManipulateLink = "Edit link";
  2500. $TitleManipulateQuiz = "Edit test structure";
  2501. $TitleManipulateStudentPublication = "Edit assignment";
  2502. $EnterDataNewChapter = "Adding a section to the course";
  2503. $EnterDataNewModule = "Enter information for section";
  2504. $CreateNewStep = "Create new rich media page";
  2505. $TicketUpdated = "Ticket updated";
  2506. $UseAnExistingResource = "Or use an existing resource :";
  2507. $Position = "Position";
  2508. $NewChapterCreated = "A new section has now been created. You may continue by adding a section or step.";
  2509. $NewLinksCreated = "The new link has been created";
  2510. $NewStudentPublicationCreated = "The new assignment has been created";
  2511. $NewModuleCreated = "The new section has been created. You can now add a section or a learning object to it.";
  2512. $NewExerciseCreated = "The test has been added to the course";
  2513. $ItemRemoved = "The learning object has been removed";
  2514. $Converting = "Converting...";
  2515. $Ppt2lpError = "Error during the conversion of PowerPoint. Please check if there are special characters in the name of your PowerPoint.";
  2516. $Build = "Build";
  2517. $ViewModeEmbedded = "Current view mode: embedded";
  2518. $ViewModeFullScreen = "Current view mode: fullscreen";
  2519. $ShowDebug = "Show debug";
  2520. $HideDebug = "Hide debug";
  2521. $CantEditDocument = "This document is not editable";
  2522. $After = "After";
  2523. $LearnpathPrerequisitesLimit = "Prerequisities (limit)";
  2524. $HotPotatoesFinished = "This HotPotatoes test has been closed.";
  2525. $CompletionLimit = "Completion limit (minimum points)";
  2526. $PrereqToEnter = "To enter";
  2527. $PrereqFirstNeedTo = " you need first accomplish";
  2528. $PrereqModuleMinimum1 = "At least 1 step is missing from";
  2529. $PrereqModuleMinimum2 = " which is set as prerequisities.";
  2530. $PrereqTestLimit1 = " you must reach minimum";
  2531. $PrereqTestLimit2 = " points in";
  2532. $PrereqTestLimitNow = "Now you have :";
  2533. $LearnpathExitFullScreen = "back to normal screen";
  2534. $LearnpathFullScreen = "full screen";
  2535. $ItemMissing1 = "There was a";
  2536. $ItemMissing2 = "page (step) here in the original Chamilo Learning Path.";
  2537. $NoItemSelected = "Select a learning object in the table of contents";
  2538. $NewDocumentCreated = "The rich media page/activity has been added to the course";
  2539. $EditCurrentChapter = "Edit the current section";
  2540. $ditCurrentModule = "Edit the current section";
  2541. $CreateTheDocument = "Create a new document";
  2542. $MoveTheCurrentDocument = "Move the current document";
  2543. $EditTheCurrentDocument = "Edit the current document";
  2544. $Warning = "Warning !";
  2545. $WarningEditingDocument = "When you edit an existing document in Courses, the new version of the document will not overwrite the old version but will be saved as a new document. If you want to edit a document definitively, you can do that with the document tool.";
  2546. $CreateTheExercise = "Adding a test to the course";
  2547. $MoveTheCurrentExercise = "Move the current test";
  2548. $EditCurrentExecice = "Edit the current test";
  2549. $UploadScorm = "Import AICC, SCORM and Chamilo learning path";
  2550. $PowerPointConvert = "Chamilo RAPID";
  2551. $LPCreatedToContinue = "To continue add a section or a learning object or activity to your course.";
  2552. $LPCreatedAddChapterStep = " <html><body><p><big><img height=\"250\" width=\"250\" align=\"right\" src=\"images/gallery/mr_dokeos/animated/practicerAnim.gif\" alt=\"practicerAnim.gif\" />Welcome to the Chamilo course authoring tool !</big></p> <ul> <li><b>Build</b> : Add learning objects and activities to your course</li> <li><b>Organize</b> : Add audio comments and order learning objects in the table of contents</li> <li><b>Display</b> : Watch the course from learner's viewpoint</li> <li><b>Add section</b> : Chapter 1, Chapter 2 or Week 1, Week 2...</li> <li><b>Add learning object or activity</b> : activities, tests, videos, multimedia pages</li> </ul></html></body>";
  2553. $PrerequisitesAdded = "Prerequisites to the current learning object have been added.";
  2554. $AddEditPrerequisites = "Add/edit prerequisites";
  2555. $NoDocuments = "No documents";
  2556. $NoExercisesAvailable = "No tests available";
  2557. $NoLinksAvailable = "No links available";
  2558. $NoItemsInLp = "There are no learning objects in the course. Click on \"Build\" to enter authoring mode.";
  2559. $FirstPosition = "First position";
  2560. $NewQuiz = "New test";
  2561. $CreateTheForum = "Adding a forum to the course";
  2562. $AddLpIntro = "<strong>Welcome</strong> to the Chamilo Course authoring tool.<br />Create your courses step-by-step. The table of contents will appear to the left.";
  2563. $AddLpToStart = "To start, give a title to your course";
  2564. $CreateTheLink = "Adding a link to the course";
  2565. $MoveCurrentLink = "Move the current link";
  2566. $EditCurrentLink = "Edit the current link";
  2567. $MoveCurrentStudentPublication = "Move the current assignment";
  2568. $EditCurrentStudentPublication = "Edit the current assignment";
  2569. $AllowMultipleAttempts = "Allow multiple attempts";
  2570. $PreventMultipleAttempts = "Prevent multiple attempts";
  2571. $MakeScormRecordingExtra = "Make SCORM recordings extra";
  2572. $MakeScormRecordingNormal = "Make SCORM recordings normal";
  2573. $DocumentHasBeenDeleted = "The document cannot be displayed because it has been deleted";
  2574. $EditCurrentForum = "Edit the current forum";
  2575. $NoPrerequisites = "No prerequisites";
  2576. $NewExercise = "New test";
  2577. $CreateANewLink = "Create a new link";
  2578. $CreateANewForum = "Create a new forum";
  2579. $WoogieConversionPowerPoint = "Woogie : Word conversion";
  2580. $WelcomeWoogieSubtitle = "MS Word to course converter";
  2581. $WelcomeWoogieConverter = "Welcome to Woogie Rapid Learning<ul type=\"1\"><li>Browse your hard disk to find any .doc, .sxw or .odt file<li>Upload it to Woogie. It will convert it into a SCORM course<li>You will then be able to add audio comments on each page and insert quizzes and other activities between pages</ul>";
  2582. $WoogieError = "Error during the conversion of the word document. Please check if there are special characters in the name of your document..";
  2583. $WordConvert = "MS Word conversion";
  2584. $InteractionID = "Interaction ID";
  2585. $TimeFinished = "Time (finished at...)";
  2586. $CorrectAnswers = "Correct answers";
  2587. $StudentResponse = "Learner answers";
  2588. $LatencyTimeSpent = "Time spent";
  2589. $SplitStepsPerPage = "A page, a learning object";
  2590. $SplitStepsPerChapter = "A section, a learning object";
  2591. $TakeSlideName = "Use the slides names as course learning object names";
  2592. $CannotConnectToOpenOffice = "The connection to the document converter failed. Please contact your platform administrator to fix the problem.";
  2593. $OogieConversionFailed = "The conversion failed. <br />Some documents are too complex to be treated automatically by the document converter.<br />We try to improve it.";
  2594. $OogieUnknownError = "The conversion failed for an unknown reason.<br />Please contact your administrator to get more information.";
  2595. $OogieBadExtension = "Please upload presentations only. Filename extension should be .ppt or .odp";
  2596. $WoogieBadExtension = "Please upload text documents only. Filename extension should be .doc, .docx or .odt";
  2597. $ShowAudioRecorder = "Show audio recorder";
  2598. $SearchFeatureSearchExplanation = "To search the course database, please use the following syntax:<br/>    <i>term tag:tag_name -exclude +include \"exact phrase\"</i><br/> For example:<br/>    <i>car tag:truck -ferrari +ford \"high consumption\".</i><br/> This will show all the results for the word 'car' tagged as 'truck', not including the word 'ferrari' but including the word 'ford' and the exact phrase 'high consumption'.";
  2599. $ViewLearningPath = "View course";
  2600. $SearchFeatureDocumentTagsIfIndexing = "Tags to add to the document, if indexing";
  2601. $ReturnToLearningPaths = "Back to learning paths";
  2602. $UploadMp3audio = "Upload Mp3 audio";
  2603. $UpdateAllAudioFragments = "Add audio";
  2604. $LeaveEmptyToKeepCurrentFile = "Leave import form empty to keep current audio file";
  2605. $RemoveAudio = "Remove audio";
  2606. $SaveAudio = "Validate";
  2607. $ViewScoreChangeHistory = "View score change history";
  2608. $ImageWillResizeMsg = "Trainer picture will resize if needed";
  2609. $ImagePreview = "Image preview";
  2610. $UplAlreadyExists = " already exists.";
  2611. $UplUnableToSaveFile = "The uploaded file could not be saved (perhaps a permission problem?)";
  2612. $MoveDocument = "Move document";
  2613. $EditLPSettings = "Edit course settings";
  2614. $SaveLPSettings = "Save course settings";
  2615. $ShowAllAttempts = "Show all attempts";
  2616. $HideAllAttempts = "Hide all attempts";
  2617. $ShowAllAttemptsByExercise = "Show all attempts by test";
  2618. $ShowAttempt = "Show attempt";
  2619. $ShowAndQualifyAttempt = "Show and grade attempt";
  2620. $ModifyPrerequisites = "Save prerequisites settings";
  2621. $CreateLearningPath = "Continue";
  2622. $AddExercise = "Add test to course";
  2623. $LPCreateDocument = "Add this document to the course";
  2624. $ObjectiveID = "Objective ID";
  2625. $ObjectiveStatus = "Objective status";
  2626. $ObjectiveRawScore = "Objective raw score";
  2627. $ObjectiveMaxScore = "Objective max score";
  2628. $ObjectiveMinScore = "Objective min score";
  2629. $LPName = "Learning path name";
  2630. $AuthoringOptions = "Authoring options";
  2631. $SaveSection = "Save section";
  2632. $AddLinkToCourse = "Add link to course";
  2633. $AddAssignmentToCourse = "Add assignment to course";
  2634. $AddForumToCourse = "Add forum to course";
  2635. $SaveAudioAndOrganization = "Save audio and organization";
  2636. $UploadOnlyMp3Files = "Please upload mp3 files only";
  2637. $OpenBadgesTitle = "Chamilo supports the OpenBadges standard";
  2638. $NoPosts = "No posts";
  2639. $WithoutAchievedSkills = "Without achieved skills";
  2640. $TypeMessage = "Please type your message!";
  2641. $ConfirmReset = "Do you really want to delete all messages?";
  2642. $MailCronCourseExpirationReminderBody = "Dear %s,
  2643. It has come to our attention that you have not completed the course %s although its expiration date had been set on %s, remaining %s days to finish it.
  2644. We remind you that you have only the possibility to follow this course once a year, that is why we invite you insistently to complete your course on time.
  2645. You can return to the course connecting to the platform through this address: %s
  2646. Best Regards,
  2647. %s Team";
  2648. $MailCronCourseExpirationReminderSubject = "Urgent: %s course expiration reminder";
  2649. $ExerciseAndLearningPath = "Exercise and learning path";
  2650. $LearningPathGradebookWarning = "Warning: It is possible to use, in the gradebook, tests that are part of learning paths. If the learning path itself is already included, this test might be part of the gradebook already. The learning paths evaluation is made on the basis of a progress percentage, while the evaluation on tests is made on the basis of a score. Survey evaluation is based on whether the user has answered (1) or not (0). Make sure you test your combinations of gradebook evaluations to avoid mind-boggling situations.";
  2651. $ChooseEitherDurationOrTimeLimit = "Choose either duration or time limit";
  2652. $ClearList = "Clear the chat";
  2653. $SessionBanner = "Session banner";
  2654. $ShortDescription = "Short description";
  2655. $TargetAudience = "Target audience";
  2656. $OpenBadgesActionCall = "Convert your virtual campus to a skills-based learning experience";
  2657. $CallSent = "Chat call has been sent. Waiting for the approval of your partner.";
  2658. $ChatDenied = "Your call has been denied by your partner.";
  2659. $Send = "Send message";
  2660. $Connected = "Chat partners";
  2661. $Exercice = "Test";
  2662. $NoEx = "There is no test for the moment";
  2663. $NewEx = "Create a new test";
  2664. $Questions = "Questions";
  2665. $Answers = "Answers";
  2666. $True = "True";
  2667. $Answer = "Answer";
  2668. $YourResults = "Your results";
  2669. $StudentResults = "Score";
  2670. $ExerciseType = "Sequential";
  2671. $ExerciseName = "Test name";
  2672. $ExerciseDescription = "Give a context to the test";
  2673. $SimpleExercise = "All questions on one page";
  2674. $SequentialExercise = "One question by page";
  2675. $RandomQuestions = "Random questions";
  2676. $GiveExerciseName = "Please give the test name";
  2677. $Sound = "Audio or video file";
  2678. $DeleteSound = "Delete the audio or video file";
  2679. $NoAnswer = "There is no answer for the moment";
  2680. $GoBackToQuestionPool = "Go back to the question pool";
  2681. $GoBackToQuestionList = "Go back to the questions list";
  2682. $QuestionAnswers = "Answers to the question";
  2683. $UsedInSeveralExercises = "Warning ! This question and its answers are used in several tests. Would you like to Edit them";
  2684. $ModifyInAllExercises = "in all tests";
  2685. $ModifyInThisExercise = "only in the current test";
  2686. $AnswerType = "Answer type";
  2687. $MultipleSelect = "Multiple answers";
  2688. $FillBlanks = "Fill blanks or form";
  2689. $Matching = "Matching";
  2690. $ReplacePicture = "Replace the picture";
  2691. $DeletePicture = "Delete picture";
  2692. $QuestionDescription = "Enrich question";
  2693. $GiveQuestion = "Please type the question";
  2694. $WeightingForEachBlank = "Please enter a score for each blank";
  2695. $UseTagForBlank = "use square brackets [...] to define one or more blanks";
  2696. $QuestionWeighting = "Score";
  2697. $MoreAnswers = "+answ";
  2698. $LessAnswers = "-answ";
  2699. $MoreElements = "+elem";
  2700. $LessElements = "-elem";
  2701. $TypeTextBelow = "Please type your text below";
  2702. $DefaultTextInBlanks = "<table cellspacing=\"0\" cellpadding=\"10\" border=\"1\" width=\"720\" style=\"\" height:=\"\"> <tbody> <tr> <td colspan=\"2\"> <h3>Example fill the form activity : calculate the Body Mass Index</h3> </td> </tr> <tr> <td style=\"text-align: right;\"><strong>Age</strong></td> <td width=\"75%\" style=\"\">[25] years old</td> </tr> <tr> <td style=\"text-align: right;\"><strong>Sex</strong></td> <td style=\"\" text-align:=\"\">[M] (M or F)</td> </tr> <tr> <td style=\"text-align: right;\"><strong>Weight</strong></td> <td style=\"\" text-align:=\"\">95 Kg</td> </tr> <tr> <td style=\"vertical-align: top; text-align: right;\"><strong>Height</strong></td> <td style=\"vertical-align: top;\">1.81 m</td> </tr> <tr> <td style=\"vertical-align: top; text-align: right;\"><strong>Body Mass Index</strong></td> <td style=\"vertical-align: top;\">[29] BMI =Weight/Size<sup>2</sup> (Cf.<a href=\"http://en.wikipedia.org/wiki/Body_mass_index\" onclick=\"window.open(this.href,'','resizable=yes,location=yes,menubar=no,scrollbars=yes,status=yes,toolbar=no,fullscreen=no,dependent=no,width=800,height=600,left=40,top=40,status'); return false\"> Wikipedia article</a>)</td> </tr> </tbody></table>";
  2703. $DefaultMatchingOptA = "Note down the address";
  2704. $DefaultMatchingOptB = "Contact the emergency services";
  2705. $DefaultMakeCorrespond1 = "First step";
  2706. $DefaultMakeCorrespond2 = "Second step";
  2707. $DefineOptions = "Please define the options";
  2708. $MakeCorrespond = "Match them";
  2709. $FillLists = "Please fill the two lists below";
  2710. $GiveText = "Please type the text";
  2711. $DefineBlanks = "Please define at least one blank with square brackets [...]";
  2712. $GiveAnswers = "Please type the question's answers";
  2713. $ChooseGoodAnswer = "Please check the correct answer";
  2714. $ChooseGoodAnswers = "Please check one or more correct answers";
  2715. $QuestionList = "Question list of the test";
  2716. $GetExistingQuestion = "Recycle existing questions";
  2717. $FinishTest = "Correct test";
  2718. $QuestionPool = "Recycle existing questions";
  2719. $OrphanQuestions = "Orphan questions";
  2720. $NoQuestion = "Questions list (there is no question so far).";
  2721. $AllExercises = "All tests";
  2722. $GoBackToEx = "Go back to the test";
  2723. $Reuse = "Re-use in current test";
  2724. $ExerciseManagement = "Tests management";
  2725. $QuestionManagement = "Question / Answer management";
  2726. $QuestionNotFound = "Question not found";
  2727. $ExerciseNotFound = "Test not found or not visible";
  2728. $AlreadyAnswered = "You already answered the question";
  2729. $ElementList = "Elements list";
  2730. $CorrespondsTo = "Corresponds to";
  2731. $ExpectedChoice = "Expected choice";
  2732. $YourTotalScore = "Score for the test";
  2733. $ReachedMaxAttemptsAdmin = "You have reached the maximum number of attempts for this test. Being a trainer, you can go on practicing but your Results will not be reported.";
  2734. $ExerciseAdded = "Exercise added";
  2735. $EvalSet = "Assesment settings";
  2736. $Active = "active";
  2737. $Inactive = "inactive";
  2738. $QuestCreate = "Create questions";
  2739. $ExRecord = "your test has been saved";
  2740. $BackModif = "back to the edit page of questions";
  2741. $DoEx = "make test";
  2742. $DefScor = "Describe assessment settings";
  2743. $CreateModif = "Create/Edit questions";
  2744. $Sub = "subtitle";
  2745. $MyAnswer = "My answer";
  2746. $MorA = "+ answer";
  2747. $LesA = "- answer";
  2748. $RecEx = "Save test";
  2749. $RecQu = "Add question to test";
  2750. $RecAns = "Save Answers";
  2751. $Introduction = "Introduction";
  2752. $TitleAssistant = "Assistant for the creation of tests";
  2753. $QuesList = "questionlist";
  2754. $SaveEx = "save tests";
  2755. $QImage = "Question with an image";
  2756. $AddQ = "Add a question";
  2757. $DoAnEx = "Do an test";
  2758. $Generator = "Test list";
  2759. $Correct = "Correct";
  2760. $PossAnsw = "Number of good answers for one question";
  2761. $StudAnsw = "number of errors by the learner";
  2762. $Determine = "Determine";
  2763. $NonNumber = "a non numeric value";
  2764. $Replaced = "Replaced";
  2765. $Superior = "a value larger than 20";
  2766. $Rep20 = "Replace 20";
  2767. $DefComment = "previous values will be replaced by clicking the \"default values\" button";
  2768. $ScoreGet = "black numbers = score";
  2769. $ShowScor = "Show score to learner:";
  2770. $Step1 = "Step 1";
  2771. $Step2 = "Step 2";
  2772. $ImportHotPotatoesQuiz = "Import Hotpotatoes";
  2773. $HotPotatoesTests = "Import Hotpotatoes tests";
  2774. $DownloadImg = "Upload Image file to the server";
  2775. $NoImg = "Test whithout Images";
  2776. $ImgNote_st = "<br> You still have to upload";
  2777. $ImgNote_en = " image(s) :";
  2778. $NameNotEqual = "is not the valid file !";
  2779. $Indice = "Index";
  2780. $Indices = "Indexes";
  2781. $DateExo = "Date";
  2782. $ShowQuestion = "Show Question";
  2783. $UnknownExercise = "Unknown Test";
  2784. $ReuseQuestion = "Reuse the question";
  2785. $CreateExercise = "Create test";
  2786. $CreateQuestion = "Create a question";
  2787. $CreateAnswers = "Create answers";
  2788. $ModifyExercise = "Edit test name and settings";
  2789. $ModifyAnswers = "Edit answers";
  2790. $ForExercise = "for the test";
  2791. $UseExistantQuestion = "Use an existing question";
  2792. $FreeAnswer = "Open question";
  2793. $notCorrectedYet = "This answer has not yet been corrected. Meanwhile, your score for this question is set to 0, affecting the total score.";
  2794. $adminHP = "Hot Potatoes Admin";
  2795. $NewQu = "New question";
  2796. $NoImage = "Please select an image";
  2797. $AnswerHotspot = "Description and scoring are required for each hotspot - feedback is optional";
  2798. $MinHotspot = "You have to create one (1) hotspot at least.";
  2799. $MaxHotspot = "The maximum hotspots you can create is twelve (12).";
  2800. $HotspotError = "Please supply a description and weighing for each hotspot.";
  2801. $MoreHotspots = "Add hotspot";
  2802. $LessHotspots = "Remove hotspot";
  2803. $HotspotZones = "Image zones";
  2804. $CorrectAnswer = "Correct answer";
  2805. $HotspotHit = "Your answer was";
  2806. $OnlyJPG = "For hotspots you can only use JPEG (.jpg or .jpeg) images";
  2807. $FinishThisTest = "Show correct answers to each question and the score for the test";
  2808. $AllQuestions = "All questions";
  2809. $ModifyTitleDescription = "Edit title and description";
  2810. $ModifyHotspots = "Edit answers/hotspots";
  2811. $HotspotNotDrawn = "You haven't drawn all your hotspots yet";
  2812. $HotspotWeightingError = "You must give a positive score for each hotspots";
  2813. $HotspotValidateError1 = "You should answer completely to the question (";
  2814. $HotspotValidateError2 = " click(s) required on the image) before seeing the results";
  2815. $HotspotRequired = "Description and scoring are required for each hotspot. Feedback is optional.";
  2816. $HotspotChoose = "To create a hotspot: select a shape next to the colour, and draw the hotspot. To move a hotspot, select the colour, click another spot in the image, and draw the hotspot. To add a hotspot: click the Add hotspot button. To close a polygon shape: right click and select Close polygon.";
  2817. $Fault = "Incorrect";
  2818. $HotSpot = "Image zones";
  2819. $ClickNumber = "Click number";
  2820. $HotspotGiveAnswers = "Please give an answer";
  2821. $Addlimits = "Add limits";
  2822. $AreYouSure = "Are you sure";
  2823. $StudentScore = "Learner score";
  2824. $backtoTesthome = "Back to test home";
  2825. $MarkIsUpdated = "The grade has been updated";
  2826. $MarkInserted = "Grade inserted";
  2827. $PleaseGiveAMark = "Please give a grade";
  2828. $EditCommentsAndMarks = "Edit individual feedback and grade the open question";
  2829. $AddComments = "Add individual feedback";
  2830. $Number = "N°";
  2831. $Weighting = "Score";
  2832. $ChooseQuestionType = "To create a new question, choose the type above";
  2833. $MatchesTo = "Matches To";
  2834. $CorrectTest = "Correct test";
  2835. $ViewTest = "View";
  2836. $NotAttempted = "Not attempted";
  2837. $AddElem = "Add element";
  2838. $DelElem = "Remove element";
  2839. $PlusAnswer = "Add answer option";
  2840. $LessAnswer = "Remove answer option";
  2841. $YourScore = "Your score";
  2842. $Attempted = "Attempted";
  2843. $AssignMarks = "Assign a grade";
  2844. $ExerciseStored = "Proceed by clicking on a question type, then enter the appropriate information.";
  2845. $ChooseAtLeastOneCheckbox = "Choose at least one good answer";
  2846. $ExerciseEdited = "Test name and settings have been saved.";
  2847. $ExerciseDeleted = "The test has been deleted";
  2848. $ClickToCommentAndGiveFeedback = "Click this link to check the answer and/or give feedback";
  2849. $OpenQuestionsAttempted = "A learner has answered an open question";
  2850. $AttemptDetails = "Attempt details";
  2851. $TestAttempted = "Test attempted";
  2852. $StudentName = "Learner name";
  2853. $StudentEmail = "Learner e-mail";
  2854. $OpenQuestionsAttemptedAre = "Open question attempted is";
  2855. $UploadJpgPicture = "Upload image (jpg, png or gif) to apply hotspots.";
  2856. $HotspotDescription = "Now click on : (...)";
  2857. $ExamSheetVCC = "Examsheet viewed/corrected/commented by the trainer";
  2858. $AttemptVCC = "Your following attempt has been viewed/commented/corrected by the trainer";
  2859. $ClickLinkToViewComment = "Click the link below to access your account and view your commented Examsheet.";
  2860. $Regards = "Regards";
  2861. $AttemptVCCLong = "You attempt for the test %s has been viewed/commented/corrected by the trainer. Click the link below to access your account and view your Examsheet.";
  2862. $DearStudentEmailIntroduction = "Dear learner,";
  2863. $ResultsEnabled = "Results enabled for learners";
  2864. $ResultsDisabled = "Results disabled for learners";
  2865. $ExportWithUserFields = "Include profiling";
  2866. $ExportWithoutUserFields = "Exclude profiling";
  2867. $DisableResults = "Do not show results";
  2868. $EnableResults = "Show results to learners";
  2869. $ValidateAnswer = "Validate answers";
  2870. $FillInBlankSwitchable = "Allow answers order switches";
  2871. $ReachedMaxAttempts = "You cannot take test <b>%s</b> because you have already reached the maximum of %s attempts.";
  2872. $RandomQuestionsToDisplay = "Number of random questions to display";
  2873. $RandomQuestionsHelp = "To randomize all questions choose 10. To disable randomization, choose \"Do not randomize\".";
  2874. $ExerciseAttempts = "Max number of attempts";
  2875. $DoNotRandomize = "Do not randomize";
  2876. $Infinite = "Infinite";
  2877. $BackToExercisesList = "Back to Tests tool";
  2878. $NoStartDate = "No start date";
  2879. $ExeStartTime = "Start date";
  2880. $ExeEndTime = "End date";
  2881. $DeleteAttempt = "Delete attempt?";
  2882. $WithoutComment = "Without comment";
  2883. $QuantityQuestions = "Questions";
  2884. $FilterExercices = "Filter tests";
  2885. $FilterByNotRevised = "Only unqualified";
  2886. $FilterByRevised = "Only qualified";
  2887. $ReachedTimeLimit = "Time limit reached";
  2888. $TryAgain = "Try again";
  2889. $SeeTheory = "Theory link";
  2890. $EndActivity = "End of activity";
  2891. $NoFeedback = "Exam (no feedback)";
  2892. $DirectFeedback = "Adaptative test with immediate feedback";
  2893. $FeedbackType = "Feedback";
  2894. $Scenario = "Scenario";
  2895. $VisitUrl = "Visit this link";
  2896. $ExitTest = "Exit test";
  2897. $DurationFormat = "%1 seconds";
  2898. $Difficulty = "Difficulty";
  2899. $NewScore = "New score";
  2900. $NewComment = "New comment";
  2901. $ExerciseNoStartedYet = "The test did not start yet";
  2902. $ExerciseNoStartedAdmin = "The trainer did not allow the test to start yet";
  2903. $SelectTargetLP = "Select target course";
  2904. $SelectTargetQuestion = "Select target question";
  2905. $DirectFeedbackCantModifyTypeQuestion = "The test type cannot be modified since it was set to self evaluation. Self evaluation gives you the possibility to give direct feedback to the user, but this is not compatible with all question types and, so this type quiz cannot be changed afterward.";
  2906. $CantShowResults = "Not available";
  2907. $CantViewResults = "Can't view results";
  2908. $ShowCorrectedOnly = "With individual feedback";
  2909. $ShowUnCorrectedOnly = "Uncorrected results";
  2910. $HideResultsToStudents = "Hide results";
  2911. $ShowResultsToStudents = "Show score to learner";
  2912. $ProcedToQuestions = "Proceed to questions";
  2913. $AddQuestionToExercise = "Add this question to the test";
  2914. $PresentationQuestions = "Display";
  2915. $UniqueAnswer = "Multiple choice";
  2916. $MultipleAnswer = "Multiple answer";
  2917. $ReachedOneAttempt = "You can not take this test because you have already reached one attempt";
  2918. $QuestionsPerPage = "Questions per page";
  2919. $QuestionsPerPageOne = "One";
  2920. $QuestionsPerPageAll = "All";
  2921. $EditIndividualComment = "Edit individual feedback";
  2922. $ThankYouForPassingTheTest = "Thank you for passing the test";
  2923. $ExerciseAtTheEndOfTheTest = "At end of test";
  2924. $EnrichQuestion = "Enrich question";
  2925. $DefaultUniqueQuestion = "Select the good reasoning";
  2926. $DefaultUniqueAnswer1 = "A then B then C";
  2927. $DefaultUniqueComment1 = "Milk is the basis of many dairy products such as butter, cheese, yogurt, among other";
  2928. $DefaultUniqueAnswer2 = "A then C then B";
  2929. $DefaultUniqueComment2 = "Oats are one of the most comprehensive grain. By their energy and nutritional qualities has been the basis of feeding people";
  2930. $DefaultMultipleQuestion = "The marasmus is a consequence of";
  2931. $DefaultMultipleAnswer1 = "Lack of Calcium";
  2932. $DefaultMultipleComment1 = "The calcium acts as a ...";
  2933. $DefaultMultipleAnswer2 = "Lack of Vitamin A";
  2934. $DefaultMultipleComment2 = "The Vitamin A is responsible for...";
  2935. $DefaultFillBlankQuestion = "Calculate the Body Mass Index";
  2936. $DefaultMathingQuestion = "Order the operations";
  2937. $DefaultOpenQuestion = "List what you consider the 10 top qualities of a good project manager?";
  2938. $MoreHotspotsImage = "Add/edit hotspots on the image";
  2939. $ReachedTimeLimitAdmin = "Reached time limit admin";
  2940. $LastScoreTest = "Last score of a exercise";
  2941. $BackToResultList = "Back to result list";
  2942. $EditingScoreCauseProblemsToExercisesInLP = "If you edit a question score, please remember that this Exercise was added in a Course";
  2943. $SelectExercise = "Select exercise";
  2944. $YouHaveToSelectATest = "You have to select a test";
  2945. $HotspotDelineation = "Hotspot delineation";
  2946. $CreateQuestions = "Create questions";
  2947. $MoreOAR = "More areas at risk";
  2948. $LessOAR = "Less areas at risk";
  2949. $LearnerIsInformed = "This message, as well as the results table, will appear to the learner if he fails this step";
  2950. $MinOverlap = "Minimum overlap";
  2951. $MaxExcess = "Maximum excess";
  2952. $MaxMissing = "Maximum missing";
  2953. $IfNoError = "If no error";
  2954. $LearnerHasNoMistake = "The learner made no mistake";
  2955. $YourDelineation = "Your delineation :";
  2956. $ResultIs = "Your result is :";
  2957. $Overlap = "Overlapping area";
  2958. $Missing = "Missing area";
  2959. $Excess = "Excessive area";
  2960. $Min = "Minimum";
  2961. $Requirements = "Requirements";
  2962. $OARHit = "One (or more) area at risk has been hit";
  2963. $TooManyIterationsPleaseTryUsingMoreStraightforwardPolygons = "Too many iterations while calculating your answer. Please try drawing your delineation in a more straightforward manner";
  2964. $Thresholds = "Thresholds";
  2965. $Delineation = "Delineation";
  2966. $QuestionTypeDoesNotBelongToFeedbackTypeInExercise = "Question type does not belong to feedback type in exercise";
  2967. $Title = "Title";
  2968. $By = "By";
  2969. $UsersOnline = "Users online";
  2970. $Remove = "Remove";
  2971. $Enter = "Back to courses list";
  2972. $Description = "Description";
  2973. $Links = "Links";
  2974. $Works = "Assignments";
  2975. $Forums = "Forums";
  2976. $GradebookListOfStudentsReports = "Students list report";
  2977. $CreateDir = "Create folder";
  2978. $Name = "Name";
  2979. $Comment = "Comment";
  2980. $Visible = "Visible";
  2981. $NewDir = "Name of the new folder";
  2982. $DirCr = "Folder created";
  2983. $Download = "Download";
  2984. $Group = "Group";
  2985. $Edit = "Edit";
  2986. $GroupForum = "Group Forum";
  2987. $Language = "Language";
  2988. $LoginName = "Login";
  2989. $AutostartMp3 = "Do you want audio file to START automatically?";
  2990. $Assignments = "Assignments";
  2991. $Forum = "Forum";
  2992. $DelImage = "Remove picture";
  2993. $Code = "Course code";
  2994. $Up = "Up";
  2995. $Down = "down";
  2996. $TimeReportForCourseX = "Time report for course %s";
  2997. $Theme = "Graphical theme";
  2998. $TheListIsEmpty = "Empty";
  2999. $UniqueSelect = "Multiple choice";
  3000. $CreateCategory = "Create category";
  3001. $SendFile = "Upload document";
  3002. $SaveChanges = "Save changes";
  3003. $SearchTerm = "Search term";
  3004. $TooShort = "Too short";
  3005. $CourseCreate = "Create a course";
  3006. $Todo = "To do";
  3007. $UserName = "Username";
  3008. $TimeReportIncludingAllCoursesAndSessionsByTeacher = "Time report including all courses and sessions, by teacher";
  3009. $CategoryMod = "Edit Category";
  3010. $Hide = "Hide";
  3011. $Dear = "Dear";
  3012. $Archive = "archive";
  3013. $CourseCode = "Code";
  3014. $NoDescription = "No description";
  3015. $OfficialCode = "Code";
  3016. $FirstName = "First name";
  3017. $LastName = "Last name";
  3018. $Status = "Status";
  3019. $Email = "e-mail";
  3020. $SlideshowConversion = "Slideshow conversion";
  3021. $UploadFile = "File upload";
  3022. $AvailableFrom = "Available from";
  3023. $AvailableTill = "Until";
  3024. $Preview = "Preview";
  3025. $Type = "Type";
  3026. $EmailAddress = "E-mail address";
  3027. $Organisation = "Company";
  3028. $Reporting = "Reporting";
  3029. $Update = "Update";
  3030. $SelectQuestionType = "Select question type";
  3031. $CurrentCourse = "Current course";
  3032. $Back = "Back";
  3033. $Info = "Information";
  3034. $Search = "Search";
  3035. $AdvancedSearch = "Advanced search";
  3036. $Open = "Open";
  3037. $Import = "Import";
  3038. $AddAnother = "Add another";
  3039. $Author = "Author";
  3040. $TrueFalse = "True / False";
  3041. $QuestionType = "Question type";
  3042. $NoSearchResults = "No search results";
  3043. $SelectQuestion = "Select question";
  3044. $AddNewQuestionType = "Add new question type";
  3045. $Numbered = "Numbered";
  3046. $iso639_2_code = "en";
  3047. $iso639_1_code = "eng";
  3048. $charset = "iso-8859-1";
  3049. $text_dir = "ltr";
  3050. $left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
  3051. $right_font_family = "helvetica, arial, geneva, sans-serif";
  3052. $number_thousands_separator = ",";
  3053. $number_decimal_separator = ".";
  3054. $dateFormatShort = "%b %d, %Y";
  3055. $dateFormatLong = "%A %B %d, %Y";
  3056. $dateTimeFormatLong = "%B %d, %Y at %I:%M %p";
  3057. $timeNoSecFormat = "%I:%M %p";
  3058. $Yes = "Yes";
  3059. $No = "No";
  3060. $Next = "Next";
  3061. $Allowed = "Allowed";
  3062. $BackHome = "Back to Home Page.";
  3063. $Propositions = "Proposals for an improvement of";
  3064. $Maj = "Update";
  3065. $Modify = "Edit";
  3066. $Invisible = "invisible";
  3067. $Save = "Save";
  3068. $Move = "Move";
  3069. $Help = "Help";
  3070. $Ok = "Validate";
  3071. $Add = "Add";
  3072. $AddIntro = "Add an introduction text";
  3073. $BackList = "Return to the list";
  3074. $Text = "Text";
  3075. $Empty = "You left some fields empty.<br>Use the <b>Back</b> button on your browser and try again.<br>If you ignore your training code, see the Training Program";
  3076. $ConfirmYourChoice = "Please confirm your choice";
  3077. $And = "and";
  3078. $Choice = "Your choice";
  3079. $Finish = "Quit test";
  3080. $Cancel = "Cancel";
  3081. $NotAllowed = "You are not allowed to see this page. Either your connection has expired or you are trying to access a page for which you do not have the sufficient privileges.";
  3082. $NotLogged = "You are not logged in";
  3083. $Manager = "Administrator";
  3084. $Optional = "Optional";
  3085. $NextPage = "Next page";
  3086. $PreviousPage = "Previous page";
  3087. $Use = "Use";
  3088. $Total = "Total";
  3089. $Take = "take";
  3090. $One = "One";
  3091. $Several = "Several";
  3092. $Notice = "Notice";
  3093. $Date = "Date";
  3094. $Among = "among";
  3095. $Show = "Show";
  3096. $MyCourses = "My courses";
  3097. $ModifyProfile = "Profile";
  3098. $MyStats = "View my progress";
  3099. $Logout = "Logout";
  3100. $MyAgenda = "Personal agenda";
  3101. $CourseHomepage = "Course home";
  3102. $SwitchToTeacherView = "Switch to teacher view";
  3103. $SwitchToStudentView = "Switch to student view";
  3104. $AddResource = "Add it";
  3105. $AddedResources = "Attachments";
  3106. $TimeReportForTeacherX = "Time report for teacher %s";
  3107. $TotalTime = "Total time";
  3108. $NameOfLang['arabic'] = "arabic";
  3109. $NameOfLang['brazilian'] = "brazilian";
  3110. $NameOfLang['bulgarian'] = "bulgarian";
  3111. $NameOfLang['catalan'] = "catalan";
  3112. $NameOfLang['croatian'] = "croatian";
  3113. $NameOfLang['danish'] = "danish";
  3114. $NameOfLang['dutch'] = "dutch";
  3115. $NameOfLang['english'] = "english";
  3116. $NameOfLang['finnish'] = "finnish";
  3117. $NameOfLang['french'] = "french";
  3118. $NameOfLang['french_corporate'] = "french_corporate";
  3119. $NameOfLang['french_KM'] = "french_KM";
  3120. $NameOfLang['galician'] = "galician";
  3121. $NameOfLang['german'] = "german";
  3122. $NameOfLang['greek'] = "greek";
  3123. $NameOfLang['italian'] = "italian";
  3124. $NameOfLang['japanese'] = "japanese";
  3125. $NameOfLang['polish'] = "polish";
  3126. $NameOfLang['portuguese'] = "portuguese";
  3127. $NameOfLang['russian'] = "russian";
  3128. $NameOfLang['simpl_chinese'] = "simpl_chinese";
  3129. $NameOfLang['spanish'] = "spanish";
  3130. $Close = "Close";
  3131. $Platform = "Portal";
  3132. $localLangName = "language";
  3133. $email = "e-mail";
  3134. $CourseCodeAlreadyExists = "Sorry, but that course code already exists. Please choose another one.";
  3135. $Statistics = "Statistics";
  3136. $GroupList = "Groups list";
  3137. $Previous = "Previous";
  3138. $DestDirectoryDoesntExist = "The target folder does not exist";
  3139. $Courses = "Courses";
  3140. $In = "in";
  3141. $ShowAll = "Show all";
  3142. $Page = "Page";
  3143. $englishLangName = "English";
  3144. $Home = "Home";
  3145. $AreYouSureToDelete = "Are you sure you want to delete";
  3146. $SelectAll = "Select all";
  3147. $UnSelectAll = "Unselect all";
  3148. $WithSelected = "With selected";
  3149. $OnLine = "Online";
  3150. $Users = "Users";
  3151. $PlatformAdmin = "Administration";
  3152. $NameOfLang['hungarian'] = "hungarian";
  3153. $NameOfLang['indonesian'] = "indonesian";
  3154. $NameOfLang['malay'] = "malay";
  3155. $NameOfLang['slovenian'] = "slovenian";
  3156. $NameOfLang['spanish_latin'] = "spanish_latin";
  3157. $NameOfLang['swedish'] = "swedisch";
  3158. $NameOfLang['thai'] = "thai";
  3159. $NameOfLang['turkce'] = "turkish";
  3160. $NameOfLang['vietnamese'] = "vietnamese";
  3161. $UserInfo = "user information";
  3162. $ModifyQuestion = "Save the question";
  3163. $Example = "Example";
  3164. $CheckAll = "Check all";
  3165. $NbAnnoucement = "Announcement";
  3166. $DisplayCertificate = "Display certificate";
  3167. $Doc = "Document";
  3168. $PlataformAdmin = "Portal Admin";
  3169. $Groups = "Groups";
  3170. $GroupManagement = "Groups management";
  3171. $All = "All";
  3172. $None = "none";
  3173. $Sorry = "First select a course";
  3174. $Denied = "This function is only available to trainers";
  3175. $Today = "Today";
  3176. $CourseHomepageLink = "Course home";
  3177. $Attachment = "Attachment";
  3178. $User = "User";
  3179. $MondayInit = "M";
  3180. $TuesdayInit = "T";
  3181. $WednesdayInit = "W";
  3182. $ThursdayInit = "T";
  3183. $FridayInit = "F";
  3184. $SaturdayInit = "S";
  3185. $SundayInit = "S";
  3186. $MondayShort = "Mon";
  3187. $TuesdayShort = "Tue";
  3188. $WednesdayShort = "Wed";
  3189. $ThursdayShort = "Thu";
  3190. $FridayShort = "Fri";
  3191. $SaturdayShort = "Sat";
  3192. $SundayShort = "Sun";
  3193. $MondayLong = "Monday";
  3194. $TuesdayLong = "Tuesday";
  3195. $WednesdayLong = "Wednesday";
  3196. $ThursdayLong = "Thursday";
  3197. $FridayLong = "Friday";
  3198. $SaturdayLong = "Saturday";
  3199. $SundayLong = "Sunday";
  3200. $JanuaryInit = "J";
  3201. $FebruaryInit = "F";
  3202. $MarchInit = "M";
  3203. $AprilInit = "A";
  3204. $MayInit = "M";
  3205. $JuneInit = "J";
  3206. $JulyInit = "J";
  3207. $AugustInit = "A";
  3208. $SeptemberInit = "S";
  3209. $OctoberInit = "O";
  3210. $NovemberInit = "N";
  3211. $DecemberInit = "D";
  3212. $JanuaryShort = "Jan";
  3213. $FebruaryShort = "Feb";
  3214. $MarchShort = "Mar";
  3215. $AprilShort = "Apr";
  3216. $MayShort = "May";
  3217. $JuneShort = "Jun";
  3218. $JulyShort = "Jul";
  3219. $AugustShort = "Aug";
  3220. $SeptemberShort = "Sep";
  3221. $OctoberShort = "Oct";
  3222. $NovemberShort = "Nov";
  3223. $DecemberShort = "Dec";
  3224. $JanuaryLong = "January";
  3225. $FebruaryLong = "February";
  3226. $MarchLong = "March";
  3227. $AprilLong = "April";
  3228. $MayLong = "May";
  3229. $JuneLong = "June";
  3230. $JulyLong = "July";
  3231. $AugustLong = "August";
  3232. $SeptemberLong = "September";
  3233. $OctoberLong = "October";
  3234. $NovemberLong = "November";
  3235. $DecemberLong = "December";
  3236. $MyCompetences = "My competences";
  3237. $MyDiplomas = "My diplomas";
  3238. $MyPersonalOpenArea = "My personal open area";
  3239. $MyTeach = "What I am able to teach";
  3240. $Agenda = "Agenda";
  3241. $HourShort = "h";
  3242. $PleaseTryAgain = "Please Try Again!";
  3243. $UplNoFileUploaded = "No file was uploaded.";
  3244. $UplSelectFileFirst = "Please select a file before pressing the upload button.";
  3245. $UplNotAZip = "The file you selected was not a zip file.";
  3246. $UplUploadSucceeded = "File upload succeeded!";
  3247. $ExportAsCSV = "CSV export";
  3248. $ExportAsXLS = "Excel export";
  3249. $Openarea = "Personal area";
  3250. $Done = "Done";
  3251. $Documents = "Documents";
  3252. $DocumentAdded = "Document added";
  3253. $DocumentUpdated = "Document updated";
  3254. $DocumentInFolderUpdated = "Document updated in folder";
  3255. $Course_description = "Description";
  3256. $Average = "Average";
  3257. $Document = "Document";
  3258. $Learnpath = "Courses";
  3259. $Link = "Links";
  3260. $Announcement = "Announcements";
  3261. $Dropbox = "Dropbox";
  3262. $Quiz = "Tests";
  3263. $Chat = "Chat";
  3264. $Conference = "Conference";
  3265. $Student_publication = "Assignments";
  3266. $Tracking = "Reporting";
  3267. $homepage_link = "Add link to this page";
  3268. $Course_setting = "Settings";
  3269. $Backup = "Backup and import";
  3270. $copy_course_content = "Copy this course's content";
  3271. $recycle_course = "Empty this course";
  3272. $StartDate = "Start Date";
  3273. $EndDate = "End Date";
  3274. $StartTime = "Start Time";
  3275. $EndTime = "End Time";
  3276. $YouWereCalled = "You were invited to chat with";
  3277. $DoYouAccept = "Do you accept it ?";
  3278. $Everybody = "All";
  3279. $SentTo = "Visible to";
  3280. $Export = "Export";
  3281. $Tools = "Modules";
  3282. $Everyone = "Everyone";
  3283. $SelectGroupsUsers = "Select groups/users";
  3284. $Student = "Learner";
  3285. $Teacher = "Trainer";
  3286. $Send2All = "You did not select a user / group. The announcement is visible for every learner";
  3287. $Wiki = "Group wiki";
  3288. $Complete = "Complete";
  3289. $Incomplete = "Incomplete";
  3290. $reservation = "Book resource";
  3291. $StartTimeWindow = "Start";
  3292. $EndTimeWindow = "End";
  3293. $AccessNotAllowed = "The access to this page is not allowed";
  3294. $InThisCourse = "in this course";
  3295. $ThisFieldIsRequired = "Required field";
  3296. $AllowedHTMLTags = "Allowed HTML tags";
  3297. $FormHasErrorsPleaseComplete = "The form contains incorrect or incomplete data. Please check your input.";
  3298. $StartDateShouldBeBeforeEndDate = "The first date should be before the end date";
  3299. $InvalidDate = "Invalid date";
  3300. $OnlyLettersAndNumbersAllowed = "Only letters and numbers allowed";
  3301. $BasicOverview = "Organize";
  3302. $CourseAdminRole = "Course admin";
  3303. $UserRole = "Role";
  3304. $OnlyImagesAllowed = "Only PNG, JPG or GIF images allowed";
  3305. $ViewRight = "View";
  3306. $EditRight = "Edit";
  3307. $DeleteRight = "Delete";
  3308. $OverviewCourseRights = "Roles & rights overview";
  3309. $SeeAllRightsAllLocationsForSpecificRole = "Focus on role";
  3310. $SeeAllRolesAllLocationsForSpecificRight = "Focus on right";
  3311. $Advanced = "Authoring";
  3312. $RightValueModified = "The value has been modified.";
  3313. $course_rights = "Roles & rights overview";
  3314. $Visio_conference = "Virtual meeting";
  3315. $CourseAdminRoleDescription = "Teacher";
  3316. $MoveTo = "Move to";
  3317. $Delete = "Delete";
  3318. $MoveFileTo = "Move file to";
  3319. $TimeReportForSessionX = "Time report for session %s";
  3320. $Error = "Error";
  3321. $Anonymous = "Anonymous";
  3322. $h = "h";
  3323. $CreateNewGlobalRole = "Create new global role";
  3324. $CreateNewLocalRole = "Create new local role";
  3325. $Actions = "Detail";
  3326. $Inbox = "Inbox";
  3327. $ComposeMessage = "Compose message";
  3328. $Other = "Other";
  3329. $AddRight = "Add";
  3330. $CampusHomepage = "Homepage";
  3331. $YouHaveNewMessage = "You have a new message!";
  3332. $myActiveSessions = "My active Sessions";
  3333. $myInactiveSessions = "My inactive sessions";
  3334. $FileUpload = "File upload";
  3335. $MyActiveSessions = "My active Sessions";
  3336. $MyInActiveSessions = "My inactive sessions";
  3337. $MySpace = "Reporting";
  3338. $ExtensionActivedButNotYetOperational = "This extension has been actived but can't be operational for the moment.";
  3339. $MyStudents = "My learners";
  3340. $Progress = "Progress";
  3341. $Or = "or";
  3342. $Uploading = "Uploading...";
  3343. $AccountExpired = "Account expired";
  3344. $AccountInactive = "Account inactive";
  3345. $ActionNotAllowed = "Action not allowed";
  3346. $SubTitle = "Sub-title";
  3347. $NoResourcesToRecycle = "No resource to recycle";
  3348. $noOpen = "Could not open";
  3349. $TempsFrequentation = "Frequentation time";
  3350. $Progression = "Progress";
  3351. $NoCourse = "This course could not be found";
  3352. $Teachers = "Trainers";
  3353. $Session = "Session";
  3354. $Sessions = "Course sessions";
  3355. $NoSession = "The session could not be found";
  3356. $NoStudent = "The learner could not be found";
  3357. $Students = "Learners";
  3358. $NoResults = "No results found";
  3359. $Tutors = "Coaches";
  3360. $Tel = "Tel";
  3361. $NoTel = "No tel";
  3362. $SendMail = "Send mail";
  3363. $RdvAgenda = "Agenda appointment";
  3364. $VideoConf = "Chamilo LIVE";
  3365. $MyProgress = "Progress";
  3366. $NoOnlineStudents = "Nobody online";
  3367. $InCourse = "In course";
  3368. $UserOnlineListSession = "Users online - In my training sessions";
  3369. $From = "From";
  3370. $To = "To";
  3371. $Content = "Content";
  3372. $Year = "year";
  3373. $Years = "years";
  3374. $Day = "Day";
  3375. $Days = "days";
  3376. $PleaseStandBy = "Please stand by...";
  3377. $AvailableUntil = "Until";
  3378. $HourMinuteDivider = "h";
  3379. $Visio_classroom = "Virtual classroom";
  3380. $Survey = "Survey";
  3381. $More = "More";
  3382. $ClickHere = "Click here";
  3383. $Here = "here";
  3384. $SaveQuestion = "Save question";
  3385. $ReturnTo = "You can now return to the";
  3386. $Horizontal = "Horizontal";
  3387. $Vertical = "Vertical";
  3388. $DisplaySearchResults = "Display search results";
  3389. $DisplayAll = "Display all";
  3390. $File_upload = "File upload";
  3391. $NoUsersInCourse = "No users in course";
  3392. $Percentage = "Percentage";
  3393. $Information = "Information";
  3394. $EmailDestination = "Receiver";
  3395. $SendEmail = "Send email";
  3396. $EmailTitle = "Subject";
  3397. $EmailText = "E-mail content";
  3398. $Comments = "Comments";
  3399. $ModifyRecipientList = "Edit recipient list";
  3400. $Line = "Line";
  3401. $NoLinkVisited = "No link visited";
  3402. $NoDocumentDownloaded = "No document downloaded";
  3403. $Clicks = "clicks";
  3404. $SearchResults = "Search results";
  3405. $SessionPast = "Past";
  3406. $SessionActive = "Active";
  3407. $SessionFuture = "Not yet begun";
  3408. $DateFormatLongWithoutDay = "%B %d, %Y";
  3409. $InvalidDirectoryPleaseCreateAnImagesFolder = "Invalid folder: Please create a folder with the name images in your documents tool so that the images can be uploaded in this folder";
  3410. $UsersConnectedToMySessions = "Online in my sessions";
  3411. $Category = "Category";
  3412. $DearUser = "Dear user";
  3413. $YourRegistrationData = "Your registration data";
  3414. $ResetLink = "Click here to recover your password";
  3415. $VisibilityChanged = "The visibility has been changed.";
  3416. $MainNavigation = "Main navigation";
  3417. $SeeDetail = "See detail";
  3418. $GroupSingle = "Group";
  3419. $PleaseLoginAgainFromHomepage = "Please try to login again from the homepage";
  3420. $PleaseLoginAgainFromFormBelow = "Please try to login again using the form below";
  3421. $AccessToFaq = "Access to the Frequently Asked Questions";
  3422. $Faq = "Frequently Asked Question";
  3423. $RemindInactivesLearnersSince = "Remind learners inactive since";
  3424. $RemindInactiveLearnersMailSubject = "Inactivity on %s";
  3425. $RemindInactiveLearnersMailContent = "Dear user,<br /><br /> you are not active on %s since more than %s days.";
  3426. $OpenIdAuthentication = "OpenID authentication";
  3427. $UploadMaxSize = "Upload max size";
  3428. $Unknown = "Unknown";
  3429. $MoveUp = "Move up";
  3430. $MoveDown = "Move down";
  3431. $UplUnableToSaveFileFilteredExtension = "File upload failed: this file extension or file type is prohibited";
  3432. $OpenIDURL = "OpenID URL";
  3433. $UplFileTooBig = "The file is too big to upload.";
  3434. $UplGenericError = "The file you uploaded was not received succesfully. Please try again later or contact the administrator of this portal.";
  3435. $MyGradebook = "Assessments";
  3436. $Gradebook = "Assessments";
  3437. $OpenIDWhatIs = "What is OpenID?";
  3438. $OpenIDDescription = "OpenID eliminates the need for multiple logins across different websites, simplifying your online experience. You get to choose the OpenID Provider that best meets your needs and most importantly that you trust. At the same time, your OpenID can stay with you, no matter which Provider you move to. And best of all, the OpenID technology is not proprietary and is completely free.For businesses, this means a lower cost of password and account management, while drawing new web traffic. OpenID lowers user frustration by letting users have control of their login.<br /><br /><a href=\"http://openid.net/what/\">Read on...</a>";
  3439. $NoManager = "No administrator";
  3440. $ExportiCal = "iCal export";
  3441. $ExportiCalPublic = "Export in iCal format as public event";
  3442. $ExportiCalPrivate = "Export in iCal format as private event";
  3443. $ExportiCalConfidential = "Export in iCal format as confidential event";
  3444. $MoreStats = "More stats";
  3445. $Drh = "Human Resources Manager";
  3446. $MinDecade = "decade";
  3447. $MinYear = "year";
  3448. $MinMonth = "month";
  3449. $MinWeek = "week";
  3450. $MinDay = "day";
  3451. $MinHour = "hour";
  3452. $MinMinute = "minute";
  3453. $MinDecades = "decades";
  3454. $MinYears = "years";
  3455. $MinMonths = "months";
  3456. $MinWeeks = "weeks";
  3457. $MinDays = "days";
  3458. $MinHours = "hours";
  3459. $MinMinutes = "minutes";
  3460. $HomeDirectory = "Home";
  3461. $DocumentCreated = "Documented created";
  3462. $ForumAdded = "The forum has been added";
  3463. $ForumThreadAdded = "Forum thread added";
  3464. $ForumAttachmentAdded = "Forum attachment added";
  3465. $directory = "directory";
  3466. $Directories = "directories";
  3467. $UserAge = "Age";
  3468. $UserBirthday = "Birthday";
  3469. $Course = "Course";
  3470. $FilesUpload = "documents";
  3471. $ExerciseFinished = "Test Finished";
  3472. $UserSex = "Sex";
  3473. $UserNativeLanguage = "Native language";
  3474. $UserResidenceCountry = "Country of residence";
  3475. $AddAnAttachment = "Add attachment";
  3476. $FileComment = "File comment";
  3477. $FileName = "Filename";
  3478. $SessionsAdmin = "Sessions administrator";
  3479. $MakeChangeable = "Make changeable";
  3480. $MakeUnchangeable = "Make unchangeable";
  3481. $UserFields = "Profile attributes";
  3482. $FieldShown = "The field is now visible for the user.";
  3483. $CannotShowField = "Cannot make the field visible.";
  3484. $FieldHidden = "The field is now invisible for the user.";
  3485. $CannotHideField = "Cannot make the field invisible";
  3486. $FieldMadeChangeable = "The field is now changeable by the user: the user can now fill or edit the field";
  3487. $CannotMakeFieldChangeable = "The field can not be made changeable.";
  3488. $FieldMadeUnchangeable = "The field is now made unchangeable: the user cannot fill or edit the field.";
  3489. $CannotMakeFieldUnchangeable = "The field cannot be made unchangeable";
  3490. $Folder = "Folder";
  3491. $CloseOtherSession = "The chat is not available because another course has been opened in another page. To avoid this, please make sure you remain inside the same course for the duration of your chat session. To join the chat session again, please re-launch the chat from the course homepage.";
  3492. $FileUploadSucces = "The file has successfully been uploaded.";
  3493. $Yesterday = "Yesterday";
  3494. $Submit = "Submit";
  3495. $Department = "Department";
  3496. $BackToNewSearch = "Back to start new search";
  3497. $Step = "Step";
  3498. $SomethingFemininAddedSuccessfully = "added successfully";
  3499. $SomethingMasculinAddedSuccessfully = "added successfully";
  3500. $DeleteError = "Delete error";
  3501. $StepsList = "Steps list";
  3502. $AddStep = "Add step";
  3503. $StepCode = "Step code";
  3504. $Label = "Label";
  3505. $UnableToConnectTo = "Unable to connect to";
  3506. $NoUser = "No user";
  3507. $SearchResultsFor = "Search results for:";
  3508. $SelectFile = "Select a file";
  3509. $WarningFaqFileNonWriteable = "Warning - The FAQ file, located in the /home/ directory of your portal, is not writable. Your text will not be saved until the file permissions are changed.";
  3510. $AddCategory = "Add category";
  3511. $NoExercises = "No tests";
  3512. $NotAllowedClickBack = "Sorry, you are not allowed to access this page, or maybe your connection has expired. Please click your browser's \"Back\" button or follow the link below to return to the previous page.";
  3513. $Exercise = "Test";
  3514. $Result = "Result";
  3515. $AttemptingToLoginAs = "Attempting to login as %s %s (id %s)";
  3516. $LoginSuccessfulGoToX = "Login successful. Go to %s";
  3517. $FckMp3Autostart = "Start audio automatically";
  3518. $Learner = "Learner";
  3519. $IntroductionTextUpdated = "Intro was updated";
  3520. $Align = "Align";
  3521. $Width = "Width";
  3522. $VSpace = "V Space";
  3523. $HSpace = "H Space";
  3524. $Border = "Border";
  3525. $Alt = "Alt";
  3526. $Height = "Height";
  3527. $ImageManager = "Image manager";
  3528. $ImageFile = "Image File";
  3529. $ConstrainProportions = "Constrain proportions";
  3530. $InsertImage = "Insert image";
  3531. $AccountActive = "Account active";
  3532. $GroupSpace = "Group area";
  3533. $GroupWiki = "Wiki";
  3534. $ExportToPDF = "Export to PDF";
  3535. $CommentAdded = "You comment has been added";
  3536. $BackToPreviousPage = "Back to previous page";
  3537. $ListView = "List view";
  3538. $NoOfficialCode = "No code";
  3539. $Owner = "Owner";
  3540. $DisplayOrder = "Display order";
  3541. $SearchFeatureDoIndexDocument = "Index document text?";
  3542. $SearchFeatureDocumentLanguage = "Document language for indexation";
  3543. $With = "with";
  3544. $GeneralCoach = "General coach";
  3545. $SaveDocument = "Save document";
  3546. $CategoryDeleted = "The category has been deleted.";
  3547. $CategoryAdded = "Category added";
  3548. $IP = "IP";
  3549. $Qualify = "Grade activity";
  3550. $Words = "Words";
  3551. $GoBack = "Go back";
  3552. $Details = "Details";
  3553. $EditLink = "Edit link";
  3554. $LinkEdited = "Assessment edited";
  3555. $ForumThreads = "Forum threads";
  3556. $GradebookVisible = "Visible";
  3557. $GradebookInvisible = "Invisible";
  3558. $Phone = "Phone";
  3559. $InfoMessage = "Information message";
  3560. $ConfirmationMessage = "Confirmation message";
  3561. $WarningMessage = "Warning message";
  3562. $ErrorMessage = "Error message";
  3563. $Glossary = "Glossary";
  3564. $Coach = "Coach";
  3565. $Condition = "Condition";
  3566. $CourseSettings = "Course settings";
  3567. $EmailNotifications = "E-mail notifications";
  3568. $UserRights = "User rights";
  3569. $Theming = "Graphical theme";
  3570. $Qualification = "Score";
  3571. $OnlyNumbers = "Only numbers";
  3572. $ReorderOptions = "Reorder options";
  3573. $EditUserFields = "Edit user fields";
  3574. $OptionText = "Text";
  3575. $FieldTypeDoubleSelect = "Double select";
  3576. $FieldTypeDivider = "Visual divider";
  3577. $ScormUnknownPackageFormat = "Unknown package format";
  3578. $ResourceDeleted = "The resource has been deleted";
  3579. $AdvancedParameters = "Advanced settings";
  3580. $GoTo = "Go to";
  3581. $SessionNameAndCourseTitle = "Session and course name";
  3582. $CreationDate = "Creation date";
  3583. $LastUpdateDate = "Latest update";
  3584. $ViewHistoryChange = "View changes history";
  3585. $NameOfLang['asturian'] = "asturian";
  3586. $SearchGoToLearningPath = "Go to course";
  3587. $SearchLectureLibrary = "Lectures library";
  3588. $SearchImagePreview = "Preview image";
  3589. $SearchAdvancedOptions = "Advanced search options";
  3590. $SearchResetKeywords = "Reset keywords";
  3591. $SearchKeywords = "Keywords";
  3592. $IntroductionTextDeleted = "Intro was deleted";
  3593. $SearchKeywordsHelpTitle = "Keywords search help";
  3594. $SearchKeywordsHelpComment = "Select keywords in one or more fields and click the search button.<br /><br />To select more than one keyword in a field, use Ctrl+click.";
  3595. $Validate = "Validate";
  3596. $SearchCombineSearchWith = "Combine keywords with";
  3597. $SearchFeatureNotEnabledComment = "The full-text search feature is not enabled in Chamilo. Please contact the Chamilo administrator.";
  3598. $Top = "Top";
  3599. $YourTextHere = "Your text here";
  3600. $OrderBy = "Order by";
  3601. $Notebook = "Notebook";
  3602. $FieldRequired = "Mandatory field";
  3603. $BookingSystem = "Booking system";
  3604. $Any = "Any";
  3605. $SpecificSearchFields = "Specific search fields";
  3606. $SpecificSearchFieldsIntro = "Here you can define the fields you want to use for indexing content. When you are indexing one element you should add one or many terms on each field comma-separated.";
  3607. $AddSpecificSearchField = "Add a specific search field";
  3608. $SaveSettings = "Save settings";
  3609. $NoParticipation = "There are no participants";
  3610. $Subscribers = "Subscribers";
  3611. $Accept = "Accept";
  3612. $Reserved = "Reserved";
  3613. $SharedDocumentsDirectory = "Shared documents folder";
  3614. $Gallery = "Gallery";
  3615. $Audio = "Audio";
  3616. $GoToQuestion = "Go to question";
  3617. $Level = "Level";
  3618. $Duration = "Duration";
  3619. $SearchPrefilterPrefix = "Specific Field for prefilter";
  3620. $SearchPrefilterPrefixComment = "This option let you choose the Specific field to use on prefilter search type.";
  3621. $MaxTimeAllowed = "Max. time (minutes)";
  3622. $Class = "Class";
  3623. $Select = "Select";
  3624. $Booking = "Booking";
  3625. $ManageReservations = "Booking";
  3626. $DestinationUsers = "Destination users";
  3627. $AttachmentFileDeleteSuccess = "The attached file has been deleted";
  3628. $AccountURLInactive = "Account inactive for this URL";
  3629. $MaxFileSize = "Maximum file size";
  3630. $SendFileError = "An error has been detected while receiving your file. Please check your file is not corrupted and try again.";
  3631. $Expired = "Expired";
  3632. $InvitationHasBeenSent = "The invitation has been sent";
  3633. $InvitationHasBeenNotSent = "The invitation hasn't been sent";
  3634. $Outbox = "Outbox";
  3635. $Overview = "Overview";
  3636. $ApiKeys = "API keys";
  3637. $GenerateApiKey = "Generate API key";
  3638. $MyApiKey = "My API key";
  3639. $DateSend = "Date sent";
  3640. $Deny = "Deny";
  3641. $ThereIsNotQualifiedLearners = "There are no qualified learners";
  3642. $ThereIsNotUnqualifiedLearners = "There are no unqualified learners";
  3643. $SocialNetwork = "Social network";
  3644. $BackToOutbox = "Back to outbox";
  3645. $Invitation = "Invitation";
  3646. $SeeMoreOptions = "See more options";
  3647. $TemplatePreview = "Template preview";
  3648. $NoTemplatePreview = "Preview not available";
  3649. $ModifyCategory = "Edit category";
  3650. $Photo = "Photo";
  3651. $MoveFile = "Move the file";
  3652. $Filter = "Filter";
  3653. $Subject = "Subject";
  3654. $Message = "Message";
  3655. $MoreInformation = "More information";
  3656. $MakeInvisible = "Make invisible";
  3657. $MakeVisible = "Make Visible";
  3658. $Image = "Image";
  3659. $SaveIntroText = "Save intro text";
  3660. $CourseName = "Course name";
  3661. $SendAMessage = "Send a message";
  3662. $Menu = "Menu";
  3663. $BackToUserList = "Back to user list";
  3664. $GraphicNotAvailable = "Graphic not available";
  3665. $BackTo = "Back to";
  3666. $HistoryTrainingSessions = "Courses history";
  3667. $ConversionFailled = "Conversion failled";
  3668. $AlreadyExists = "Already exists";
  3669. $TheNewWordHasBeenAdded = "The new word has been added";
  3670. $CommentErrorExportDocument = "Some of the documents are too complex to be treated automatically by the document converter";
  3671. $YourGradebookFirstNeedsACertificateInOrderToBeLinkedToASkill = "Your gradebook first needs a certificate in order to be linked to a skill";
  3672. $DataType = "Data type";
  3673. $Value = "Value";
  3674. $System = "System";
  3675. $ImportantActivities = "Important activities";
  3676. $SearchActivities = "Search for specific activities";
  3677. $Parent = "Parent";
  3678. $SurveyAdded = "Survey added";
  3679. $WikiAdded = "Wiki added";
  3680. $ReadOnly = "Read only";
  3681. $Unacceptable = "Unacceptable";
  3682. $DisplayTrainingList = "Display courses list";
  3683. $HistoryTrainingSession = "Courses history";
  3684. $Until = "Until";
  3685. $FirstPage = "First page";
  3686. $LastPage = "Last page";
  3687. $Coachs = "Coachs";
  3688. $ModifyEvaluation = "Save assessment";
  3689. $CreateLink = "Add this learning activity to the assessment";
  3690. $AddResultNoStudents = "There are no learners to add results for";
  3691. $ScoreEdit = "Skills ranking";
  3692. $ScoreColor = "Competence thresholds colouring";
  3693. $ScoringSystem = "Skills ranking";
  3694. $EnableScoreColor = "Enable Competence thresholds";
  3695. $Below = "Below";
  3696. $WillColorRed = "The mark will be coloured in red";
  3697. $EnableScoringSystem = "Enable skills ranking";
  3698. $IncludeUpperLimit = "Include upper limit (e.g. 0-20 includes 20)";
  3699. $ScoreInfo = "Score info";
  3700. $Between = "Between";
  3701. $CurrentCategory = "Current course";
  3702. $RootCat = "Main folder";
  3703. $NewCategory = "New category";
  3704. $NewEvaluation = "Add classroom activity";
  3705. $Weight = "Weight";
  3706. $PickACourse = "Pick a course";
  3707. $CourseIndependent = "Independent from course";
  3708. $CourseIndependentEvaluation = "Course independent evaluation";
  3709. $EvaluationName = "Assessment";
  3710. $DateEval = "Evaluation date";
  3711. $AddUserToEval = "Add users to evaluation";
  3712. $NewSubCategory = "New sub-category";
  3713. $MakeLink = "Add online activity";
  3714. $DeleteSelected = "Delete selected";
  3715. $SetVisible = "Set visible";
  3716. $SetInvisible = "Set invisible";
  3717. $ChooseLink = "Choose type of activity to assess";
  3718. $LMSDropbox = "Dropbox";
  3719. $ChooseExercise = "Choose test";
  3720. $AddResult = "Grade learners";
  3721. $BackToOverview = "Back to folder view";
  3722. $ExportPDF = "Export to PDF";
  3723. $ChooseOrientation = "Choose orientation";
  3724. $Portrait = "Portrait";
  3725. $Landscape = "Landscape";
  3726. $FilterCategory = "Filter category";
  3727. $ScoringUpdated = "Skills ranking updated";
  3728. $CertificateWCertifiesStudentXFinishedCourseYWithGradeZ = "%s certifies that\n\n %s \n\nhas successfully completed the course \n\n '%s' \n\nwith a grade of\n\n '%s'";
  3729. $CertificateMinScore = "Minimum certification score";
  3730. $InViMod = "Assessment made invisible";
  3731. $ViewResult = "Assessment details";
  3732. $NoResultsInEvaluation = "No results in evaluation for now";
  3733. $AddStudent = "Add learners";
  3734. $ImportResult = "Import marks";
  3735. $ImportFileLocation = "Import marks in an assessment";
  3736. $FileType = "File type";
  3737. $ExampleCSVFile = "Example CSV file";
  3738. $ExampleXMLFile = "Example XML file";
  3739. $OverwriteScores = "Overwrite scores";
  3740. $IgnoreErrors = "Ignore errors";
  3741. $ItemsVisible = "The resources became visible";
  3742. $ItemsInVisible = "The resources became invisible";
  3743. $NoItemsSelected = "No resource selected";
  3744. $DeletedCategories = "Deleted categories";
  3745. $DeletedEvaluations = "Deleted evaluations";
  3746. $DeletedLinks = "Deleted links";
  3747. $TotalItems = "Total resources";
  3748. $EditEvaluation = "Edit evaluation";
  3749. $DeleteResult = "Delete marks";
  3750. $Display = "Ranking";
  3751. $ViewStatistics = "Graphical view";
  3752. $ResultAdded = "Result added";
  3753. $EvaluationStatistics = "Evaluation statistics";
  3754. $ExportResult = "PDF Report";
  3755. $EditResult = "Grade learners";
  3756. $GradebookWelcomeMessage = "Welcome to the Assessments tool. This tool allows you to assess competences in your organization. Generate Competences Reports by merging the score of various learning activities including classroom and online activities. This will typically fit in a blended learning environment.";
  3757. $CreateAllCat = "Create all the courses categories";
  3758. $AddAllCat = "Added all categories";
  3759. $StatsStudent = "Statistics of";
  3760. $Results = "Results and feedback";
  3761. $Certificates = "Certificates";
  3762. $Certificate = "Certificate";
  3763. $ChooseUser = "Choose users for this evaluation";
  3764. $ResultEdited = "Result edited";
  3765. $ChooseFormat = "PDF report";
  3766. $OutputFileType = "Output file type";
  3767. $OverMax = "Value exceeds score.";
  3768. $MoreInfo = "More info";
  3769. $ResultsPerUser = "Results per user";
  3770. $TotalUser = "Total for user";
  3771. $AverageTotal = "Average total";
  3772. $Evaluation = "Score";
  3773. $EvaluationAverage = "Assessment average";
  3774. $EditAllWeights = "Weight in Report";
  3775. $GradebookQualificationTotal = "Total";
  3776. $GradebookEvaluationDeleted = "Assessment deleted";
  3777. $GradebookQualifyLog = "Assessment history";
  3778. $GradebookNameLog = "Assessment name";
  3779. $GradebookDescriptionLog = "Assessment description";
  3780. $GradebookVisibilityLog = "Assessment visibility";
  3781. $ResourceType = "Category";
  3782. $GradebookWhoChangedItLog = "Who changed it";
  3783. $EvaluationEdited = "The evaluation has been succesfully edited";
  3784. $CategoryEdited = "Category updated";
  3785. $IncorrectData = "Incorrect data";
  3786. $Resource = "Assessment";
  3787. $PleaseEnableScoringSystem = "Please enable Skills ranking";
  3788. $AllResultDeleted = "All results have been removed";
  3789. $ImportNoFile = "There is no file to import";
  3790. $ProblemUploadingFile = "There was a problem sending your file. Nothing has been received.";
  3791. $AllResultsEdited = "All results have been edited";
  3792. $UserInfoDoesNotMatch = "The user info doesn't match.";
  3793. $ScoreDoesNotMatch = "The score doesn't match";
  3794. $FileUploadComplete = "File upload successfull";
  3795. $NoResultsAvailable = "No results available";
  3796. $CannotChangeTheMaxNote = "Cannot change the score";
  3797. $GradebookWeightUpdated = "Weights updated successfully";
  3798. $ChooseItem = "Choose activity to assess";
  3799. $AverageResultsVsResource = "Average results vs resource";
  3800. $ToViewGraphScoreRuleMustBeEnabled = "To view graph score rule must be enabled";
  3801. $GradebookPreviousWeight = "Previous weight of resource";
  3802. $AddAssessment = "Add this classroom activity to the assessment";
  3803. $FolderView = "Assessment home";
  3804. $GradebookSkillsRanking = "Skills ranking";
  3805. $SaveScoringRules = "Save weights in report";
  3806. $AttachCertificate = "Attach certificate";
  3807. $GradebookSeeListOfStudentsCertificates = "See list of learner certificates";
  3808. $CreateCertificate = "Create certificate";
  3809. $UploadCertificate = "Upload certificate";
  3810. $CertificateName = "Certificate name";
  3811. $CertificateOverview = "Certificate overview";
  3812. $CreateCertificateWithTags = "Create your certificate copy-pasting the following tags. They will be replaced in the document by their student-specific value:";
  3813. $ViewPresenceSheets = "View presence sheets";
  3814. $ViewEvaluations = "View evaluations";
  3815. $NewPresenceSheet = "New presence sheet";
  3816. $NewPresenceStep1 = "New presence sheet: step 1/2 : fill in the details of the presence sheet";
  3817. $TitlePresenceSheet = "Title of the activity";
  3818. $PresenceSheetCreatedBy = "Presence sheet created by";
  3819. $SavePresence = "Save presence sheet and continue to step 2";
  3820. $NewPresenceStep2 = "New presence sheet: step 2/2 : check the trainees that are present";
  3821. $NoCertificateAvailable = "No certificate available";
  3822. $SaveCertificate = "Save certificate";
  3823. $CertificateNotRemoved = "Certificate can't be removed";
  3824. $CertificateRemoved = "Certificate removed";
  3825. $NoDefaultCertificate = "No default";
  3826. $DefaultCertificate = "Default certificate";
  3827. $PreviewCertificate = "Preview certificate";
  3828. $IsDefaultCertificate = "Certificate set to default";
  3829. $ImportPresences = "Import presences";
  3830. $AddPresences = "Add presences";
  3831. $DeletePresences = "Delete presences";
  3832. $GradebookListOfStudentsCertificates = "List of learner certificates";
  3833. $NewPresence = "New presence";
  3834. $EditPresence = "Edit presence";
  3835. $SavedEditPresence = "Saved edit presence";
  3836. $PresenceSheetFormatExplanation = "You should use the presence sheet that you can download above. This presence sheet contains a list of all the learners in this course. The first column of the XLS file is the official code of the learner, followed by the lastname and the firstname. You should only change the 4th column and note 0 = absent, 1 = present";
  3837. $ValidatePresenceSheet = "Validate presence sheet";
  3838. $PresenceSheet = "Presence sheet";
  3839. $PresenceSheets = "Presence sheets";
  3840. $Evaluations = "Evaluations";
  3841. $SaveEditPresence = "Save changes in presence sheet";
  3842. $Training = "Course";
  3843. $Present = "Present";
  3844. $Numero = "N";
  3845. $PresentAbsent = "0 = absent, 1 = present";
  3846. $ExampleXLSFile = "Example Excel (XLS) file";
  3847. $NoResultsInPresenceSheet = "No presence registered";
  3848. $EditPresences = "Modify presences";
  3849. $TotalWeightMustNotBeMoreThan = "Total weight must not be more than";
  3850. $ThereIsNotACertificateAvailableByDefault = "There is no certificate available by default";
  3851. $CertificateMinimunScoreIsRequiredAndMustNotBeMoreThan = "Certificate minimum score is required and must not be more than";
  3852. $CourseProgram = "Description";
  3853. $ThisCourseDescriptionIsEmpty = "There is no course description so far.";
  3854. $Vacancies = "Vacancies";
  3855. $QuestionPlan = "Help";
  3856. $Cost = "Cost";
  3857. $NewBloc = "Other";
  3858. $TeachingHours = "Lecture hours";
  3859. $Area = "Area";
  3860. $InProcess = "In process";
  3861. $CourseDescriptionUpdated = "The description has been updated";
  3862. $CourseDescriptionDeleted = "Description has been deleted";
  3863. $PreventSessionAdminsToManageAllUsersComment = "By enabling this option, session admins will only be able to see, in the administration page, the users they created.";
  3864. $InvalidId = "Login failed - incorrect login or password.";
  3865. $Pass = "Pass";
  3866. $Advises = "Advises";
  3867. $CourseDoesntExist = "<b>Warning :</b> This course does not exist";
  3868. $GetCourseFromOldPortal = "click here to get this course from your old portal";
  3869. $SupportForum = "Support forum";
  3870. $BackToHomePage = "Categories Overview";
  3871. $LostPassword = "I lost my password";
  3872. $Valvas = "Latest announcements";
  3873. $Helptwo = "Help";
  3874. $EussMenu = "menu";
  3875. $Opinio = "Opinion";
  3876. $Intranet = "Intranet";
  3877. $Englin = "English";
  3878. $InvalidForSelfRegistration = "Login failed - if you are not registered, you can do so using the <a href=claroline/auth/inscription.php>registration form</a>";
  3879. $MenuGeneral = "Help";
  3880. $MenuUser = "My account";
  3881. $MenuAdmin = "Portal Admin";
  3882. $UsersOnLineList = "Online users list";
  3883. $TotalOnLine = "Total online";
  3884. $Refresh = "Refresh";
  3885. $SystemAnnouncements = "Portal news";
  3886. $HelpMaj = "Help";
  3887. $NotRegistered = "Not Registered";
  3888. $Login = "Login";
  3889. $RegisterForCourse = "Register for course";
  3890. $UnregisterForCourse = "Unregister from course";
  3891. $Refresh = "Refresh";
  3892. $TotalOnLine = "total users online";
  3893. $CourseClosed = "(the course is currently closed)";
  3894. $Teach = "What s/he can teach";
  3895. $Productions = "Productions";
  3896. $SendChatRequest = "Send a chat proposal to this person";
  3897. $RequestDenied = "The invitation has been rejected.";
  3898. $UsageDatacreated = "Usage data created";
  3899. $SessionView = "Display courses ordered by training sessions";
  3900. $CourseView = "Display the full list of the courses";
  3901. $DropboxFileAdded = "Dropbox file added";
  3902. $NewMessageInForum = "New message posted in the forum";
  3903. $FolderCreated = "New folder created";
  3904. $AgendaAdded = "Event added";
  3905. $ShouldBeCSVFormat = "File should be CSV format. Do not add spaces. Structure should be exactly :";
  3906. $TypeCurrentPassword = "To change your password, enter your current password in the field above and your new password in both fields below. To maintain the current password, leave the three fields empty.";
  3907. $AuthInfo = "Authentication";
  3908. $ImageWrong = "The file size should be smaller than";
  3909. $NewPass = "New password";
  3910. $CurrentPasswordEmptyOrIncorrect = "The current password is incorrect";
  3911. $password_request = "You have asked to reset your password. If you did not ask, then ignore this mail.";
  3912. $YourPasswordHasBeenEmailed = "Your password has been emailed to you.";
  3913. $EnterEmailAndWeWillSendYouYourPassword = "Enter the e-mail address that you used to register and we will send you your password back.";
  3914. $Action = "Action";
  3915. $Preserved = "Preserved";
  3916. $ConfirmUnsubscribe = "Confirm user unsubscription";
  3917. $See = "Go to";
  3918. $LastVisits = "My latest visits";
  3919. $IfYouWantToAddManyUsers = "If you want to add a list of users in your course, please contact your web administrator.";
  3920. $PassTooEasy = "this password is too simple. Use a pass like this";
  3921. $AddedToCourse = "has been registered to your course";
  3922. $UserAlreadyRegistered = "A user with same name is already registered in this course.";
  3923. $BackUser = "Back to users list";
  3924. $UserOneByOneExplanation = "He (she) will receive e-mail confirmation with login and password";
  3925. $GiveTutor = "Make coach";
  3926. $RemoveRight = "Remove this right";
  3927. $GiveAdmin = "Make admin";
  3928. $UserNumber = "number";
  3929. $DownloadUserList = "Upload the list";
  3930. $UserAddExplanation = "Every line of file to send will necessarily and only include 5 fields: <b>First name   LastName   Login   Password   E-mail</b> tab-separated and in this order. Users will receive an e-mail confirmation with their login/password.";
  3931. $UserMany = "Import a users list";
  3932. $OneByOne = "Add user manually";
  3933. $AddHereSomeCourses = "<big>Edit courses list</big><br><br>Check the courses you want to follow.<br>Uncheck the ones you don't want to follow anymore.<br> Then click Ok at the bottom of the list";
  3934. $ImportUserList = "Import list of users";
  3935. $AddAU = "Add a user";
  3936. $AddedU = "has been added. An e-mail has been sent to give him his login";
  3937. $TheU = "The user";
  3938. $RegYou = "has registered you to this course";
  3939. $OneResp = "One of the course administrators";
  3940. $UserPicture = "Picture";
  3941. $ProfileReg = "Your new profile has been saved";
  3942. $EmailWrong = "The email address is not complete or contains some invalid characters";
  3943. $UserTaken = "This login is already in use";
  3944. $Fields = "You left some fields empty";
  3945. $Again = "Try again!";
  3946. $PassTwo = "You have typed two different passwords";
  3947. $ViewProfile = "View my e-portfolio";
  3948. $ModifProfile = "Edit Profile";
  3949. $IsReg = "Your modifications have been registered";
  3950. $NowGoCreateYourCourse = "You can now create your course";
  3951. $NowGoChooseYourCourses = "You can now select, in the list, the course you want access to";
  3952. $MailHasBeenSent = "An e-mail has been sent to remind you of your login and password";
  3953. $PersonalSettings = "Your personal settings have been registered";
  3954. $Problem = "In case of trouble, contact us.";
  3955. $Is = "is";
  3956. $Address = "The address of";
  3957. $FieldTypeFile = "File upload";
  3958. $YourReg = "Your registration on";
  3959. $UserFree = "This login is already taken. Use your browser's back button and choose another.";
  3960. $EmptyFields = "You left some fields empty. Use your browser's back button and try again.";
  3961. $PassTwice = "You typed two different passwords. Use your browser's back button and try again.";
  3962. $RegAdmin = "Teacher (creates courses)";
  3963. $RegStudent = "Student (follows courses)";
  3964. $Confirmation = "Confirm password";
  3965. $Surname = "Last name";
  3966. $Registration = "Registration";
  3967. $YourAccountParam = "This is your information to connect to";
  3968. $LoginRequest = "Login request";
  3969. $AdminOfCourse = "Admin";
  3970. $SimpleUserOfCourse = "User of course";
  3971. $IsTutor = "Coach";
  3972. $ParamInTheCourse = "Status in course";
  3973. $HaveNoCourse = "No course available";
  3974. $UserProfileReg = "User e-portfolio has been registered";
  3975. $Courses4User = "User's courses";
  3976. $CoursesByUser = "Courses by user";
  3977. $SubscribeUserToCourse = "Enroll users to course";
  3978. $Preced100 = "Previous 100";
  3979. $Addmore = "Add registered users";
  3980. $Addback = "Go to users list";
  3981. $reg = "Register";
  3982. $Quit = "Quit";
  3983. $YourPasswordHasBeenReset = "Your password has been reset";
  3984. $Sex = "Sex";
  3985. $OptionalTextFields = "Optional fields";
  3986. $FullUserName = "Full name";
  3987. $SearchForUser = "Search for user";
  3988. $SearchButton = "Search";
  3989. $SearchNoResultsFound = "No search results found";
  3990. $UsernameWrong = "Your login can only contain letters, numbers and _.-";
  3991. $PasswordRequestFrom = "This is a password request for the e-mail address";
  3992. $CorrespondsToAccount = "This e-mail address corresponds to the following user account.";
  3993. $CorrespondsToAccounts = "This e-mail address corresponds to the following user accounts.";
  3994. $AccountExternalAuthSource = "Chamilo can't handle the request automatically because the account has an external authentication source. Please take appropriate measures and notify the user.";
  3995. $AccountsExternalAuthSource = "Chamilo can't handle the request automatically because at least one of the accounts has an external authentication source. Please take appropriate measures for all accounts (including those with platform authentication) and notify the user.";
  3996. $RequestSentToPlatformAdmin = "Chamilo can't handle the request automatically for this type of account. Your request has been sent to the platform administrator, who will take appropriate measures and notify you of the result.";
  3997. $ProgressIntroduction = "Start with selecting a session below.<br />You can then see your progress for every course you are subscribed to.";
  3998. $NeverExpires = "Never expires";
  3999. $ActiveAccount = "Account";
  4000. $YourAccountHasToBeApproved = "Your account has to be approved";
  4001. $ApprovalForNewAccount = "Approval for new account";
  4002. $ManageUser = "Manage user";
  4003. $SubscribeUserToCourseAsTeacher = "Enroll teachers";
  4004. $PasswordEncryptedForSecurity = "Your password is encrypted for security reasons. Thus, after pressing the link an e-mail will be sent to you again with your password.";
  4005. $ExtraFields = "Extra fields";
  4006. $OpenIDCouldNotBeFoundPleaseRegister = "This OpenID could not be found in our database. Please register for a new account. If you have already an account with us, please edit your profile inside your account to add this OpenID";
  4007. $UsernameMaxXCharacters = "The login needs to be maximum %s characters long";
  4008. $PictureUploaded = "Your picture has been uploaded";
  4009. $ProductionUploaded = "Your production file has been uploaded";
  4010. $UsersRegistered = "These users have been registered to the course";
  4011. $UserAlreadyRegisterByOtherCreator = "User already register by other coach.";
  4012. $UserCreatedPlatform = "User created in portal";
  4013. $UserInSession = "User added into the session";
  4014. $UserNotAdded = "User not added.";
  4015. $NoSessionId = "The session was not identified";
  4016. $NoUsersRead = "Please verify your XML/CVS file";
  4017. $UserImportFileMessage = "If in the XML/CVS file the logins are missing, the firstname and the lastname will merge to create a login, i.e Julio Montoya into jmontoya";
  4018. $UserAlreadyRegisteredByOtherCreator = "User already register by other coach.";
  4019. $NewUserInTheCourse = "New user in the course";
  4020. $MessageNewUserInTheCourse = "There is a new user in the course";
  4021. $EditExtendProfile = "Edit extended profile";
  4022. $EditInformation = "Edit profile";
  4023. $RegisterUser = "Register";
  4024. $IHaveReadAndAgree = "I have read and agree to the";
  4025. $ByClickingRegisterYouAgreeTermsAndConditions = "By clicking on 'Register' below you are agreeing to the Terms and Conditions";
  4026. $LostPass = "Forgot your password ?";
  4027. $EnterEmailUserAndWellSendYouPassword = "Enter the username or the e-mail address with which you registered and we will send your password.";
  4028. $NoUserAccountWithThisEmailAddress = "There is no account with this user and/or e-mail address";
  4029. $InLnk = "Hidden tools and links";
  4030. $DelLk = "Do you really want to delete this link?";
  4031. $NameOfTheLink = "Name of the link";
  4032. $CourseAdminOnly = "Teachers only";
  4033. $PlatformAdminOnly = "Portal Administrators only";
  4034. $CombinedCourse = "Combined course";
  4035. $ToolIsNowVisible = "The tool is now visible.";
  4036. $ToolIsNowHidden = "The tool is now invisible.";
  4037. $GreyIcons = "Toolbox";
  4038. $Interaction = "Interaction";
  4039. $Authoring = "Authoring";
  4040. $SessionIdentifier = "Identifier of session";
  4041. $SessionCategory = "Sessions categories";
  4042. $ConvertToUniqueAnswer = "Convert to unique answer";
  4043. $ReportsRequiresNoSetting = "This report type requires no settings";
  4044. $ShowWizard = "Show wizard";
  4045. $ReportFormat = "Report format";
  4046. $ReportType = "Report type";
  4047. $PleaseChooseReportType = "Please choose a report type";
  4048. $PleaseFillFormToBuildReport = "Please fill the form to build the report";
  4049. $UnknownFormat = "Unknown format";
  4050. $ErrorWhileBuildingReport = "An error occured while building the report";
  4051. $WikiSearchResults = "Wiki Search Results";
  4052. $StartPage = "Main page";
  4053. $EditThisPage = "Edit this page";
  4054. $ShowPageHistory = "History";
  4055. $RecentChanges = "Latest changes";
  4056. $AllPages = "All pages";
  4057. $AddNew = "Add new page";
  4058. $ChangesStored = "Audio added";
  4059. $NewWikiSaved = "The wiki page has been saved.";
  4060. $DefaultContent = " <br/> <br/> <p align=\"center\"> <img src=\"%swiki/wcollaborative.png\" alt=\"Working as a team\" title=\"Working as a team\" /></p> <p align=\"center\">To begin editing this page and remove this text</p>";
  4061. $CourseWikiPages = "Wiki pages";
  4062. $GroupWikiPages = "Group wiki pages";
  4063. $NoWikiPageTitle = "Your changes have been saved. You still have to give a name to the page";
  4064. $WikiPageTitleExist = "This page name already exists. To edit the page content, click here:";
  4065. $WikiDiffAddedLine = "A line has been added";
  4066. $WikiDiffDeletedLine = "A line has been deleted";
  4067. $WikiDiffMovedLine = "A line has been moved";
  4068. $WikiDiffUnchangedLine = "Line without changes";
  4069. $DifferencesNew = "Changes in version";
  4070. $DifferencesOld = "old version of";
  4071. $Differences = "Differences";
  4072. $MostRecentVersion = "View of the latest selected version";
  4073. $ShowDifferences = "Compare selected versions";
  4074. $SearchPages = "Search";
  4075. $Discuss = "Discuss";
  4076. $History = "History";
  4077. $ShowThisPage = "View this page";
  4078. $DeleteThisPage = "Delete this page";
  4079. $DiscussThisPage = "Discuss this page";
  4080. $HomeWiki = "Wiki home";
  4081. $DeleteWiki = "Delete all";
  4082. $WikiDeleted = "Your Wiki has been deleted";
  4083. $WikiPageDeleted = "The page and its history have been deleted.";
  4084. $NumLine = "Num line";
  4085. $DeletePageHistory = "Delete this page and all its versions";
  4086. $OnlyAdminDeleteWiki = "Trainers only can delete the Wiki";
  4087. $OnlyAdminDeletePageWiki = "Trainers only can delete a page";
  4088. $OnlyAddPagesGroupMembers = "Trainers and members of this group only can add pages to the group Wiki";
  4089. $OnlyEditPagesGroupMembers = "Trainers and group members only can edit pages of the group Wiki";
  4090. $ConfirmDeleteWiki = "Are you sure you want to delete this Wiki?";
  4091. $ConfirmDeletePage = "Are you sure you want to delete this page and its history?";
  4092. $AlsoSearchContent = "Search also in content";
  4093. $PageLocked = "Page protected";
  4094. $PageUnlocked = "Page unprotected";
  4095. $PageLockedExtra = "This page is protected. Trainers only can change it";
  4096. $PageUnlockedExtra = "This page is unprotected. All course users or group members can edit this page";
  4097. $ShowAddOption = "Show add option";
  4098. $HideAddOption = "Hide add option";
  4099. $AddOptionProtected = "The Add option has been protected. Trainers only can add pages to this Wiki. But learners and group members can still edit them";
  4100. $AddOptionUnprotected = "The add option has been enabled for all course users and group members";
  4101. $NotifyChanges = "Notify me of changes";
  4102. $NotNotifyChanges = "Do not notify me of changes";
  4103. $CancelNotifyByEmail = "Do not notify me by e-mail when this page is edited";
  4104. $MostRecentVersionBy = "The latest version was edited by";
  4105. $RatingMedia = "The average rating for the page is";
  4106. $NumComments = "Comments on this page";
  4107. $NumCommentsScore = "Number of comments scored:";
  4108. $AddPagesLocked = "The add option has been temporarily disabled by the trainer";
  4109. $LinksPages = "What links here";
  4110. $ShowLinksPages = "Show the pages that have links to this page";
  4111. $MoreWikiOptions = "More Wiki options";
  4112. $DefaultTitle = "Home";
  4113. $DiscussNotAvailable = "Discuss not available";
  4114. $EditPage = "Edit";
  4115. $AddedBy = "added by";
  4116. $EditedBy = "edited by";
  4117. $DeletedBy = "deleted by";
  4118. $WikiStandardMode = "Wiki mode";
  4119. $GroupTutorAndMember = "Coach and group member";
  4120. $GroupStandardMember = "Group member";
  4121. $AssignmentMode = "Individual assignment mode";
  4122. $ConfigDefault = "Default config";
  4123. $UnlockPage = "Unprotect";
  4124. $LockPage = "Protect";
  4125. $NotifyDiscussChanges = "Notify comment";
  4126. $NotNotifyDiscussChanges = "Don't notify comments";
  4127. $AssignmentWork = "Learner paper";
  4128. $AssignmentDesc = "Assignment proposed by the trainer";
  4129. $WikiDiffAddedTex = "Text added";
  4130. $WikiDiffDeletedTex = "Text deleted";
  4131. $WordsDiff = "word by word";
  4132. $LinesDiff = "line by line";
  4133. $MustSelectPage = "You must select a page first";
  4134. $Export2ZIP = "Export to ZIP";
  4135. $HidePage = "Hide Page";
  4136. $ShowPage = "Show Page";
  4137. $GoAndEditMainPage = "To start Wiki go and edit Main page";
  4138. $UnlockDiscuss = "Unlock discuss";
  4139. $LockDiscuss = "Lock discuss";
  4140. $HideDiscuss = "Hide discuss";
  4141. $ShowDiscuss = "Show discuss";
  4142. $UnlockRatingDiscuss = "Activate rate";
  4143. $LockRatingDiscuss = "Deactivate rating";
  4144. $EditAssignmentWarning = "You can edit this page, but the pages of learners will not be modified";
  4145. $ExportToDocArea = "Export latest version of this page to Documents";
  4146. $LockByTeacher = "Disabled by trainer";
  4147. $LinksPagesFrom = "Pages that link to this page";
  4148. $DefineAssignmentPage = "Define this page as an individual assignment";
  4149. $AssignmentDescription = "Assignment description";
  4150. $UnlockRatingDiscussExtra = "Now all members can rate this page";
  4151. $LockRatingDiscussExtra = "Now only trainers can rate this page";
  4152. $HidePageExtra = "Now the page only is visible by trainer";
  4153. $ShowPageExtra = "Now the page is visible by all users";
  4154. $OnlyEditPagesCourseManager = "The Main Page can be edited by a teacher only";
  4155. $AssignmentLinktoTeacherPage = "Acces to trainer page";
  4156. $HideDiscussExtra = "Now discussion is visible by trainers only";
  4157. $ShowDiscussExtra = "Now discussion is visible by all users";
  4158. $LockDiscussExtra = "Now only trainers can add comments to this discussion";
  4159. $UnlockDiscussExtra = "Now all members can add comments to this discussion";
  4160. $AssignmentDescExtra = "This page is an assignment proposed by a trainer";
  4161. $AssignmentWorkExtra = "This page is a learner work";
  4162. $NoAreSeeingTheLastVersion = "Warning you are not seeing the latest version of the page";
  4163. $AssignmentFirstComToStudent = "Change this page to make your work about the assignment proposed";
  4164. $AssignmentLinkstoStudentsPage = "Access to the papers written by learners";
  4165. $AllowLaterSends = "Allow delayed sending";
  4166. $WikiStandBy = "This Wiki is frozen so far. A trainer must start it.";
  4167. $NotifyDiscussByEmail = "Notify by e-mail of new comments about this page is allowed";
  4168. $CancelNotifyDiscussByEmail = "The email notification of new comments on this page is disabled";
  4169. $EmailWikiChanges = "Notify Wiki changes";
  4170. $EmailWikipageModified = "It has modified the page";
  4171. $EmailWikiPageAdded = "Page was added";
  4172. $EmailWikipageDedeleted = "One page has been deleted in the Wiki";
  4173. $EmailWikiPageDiscAdded = "New comment in the discussion of the page";
  4174. $FullNotifyByEmail = "Receive an e-mail notification every time there is a change in the Wiki";
  4175. $FullCancelNotifyByEmail = "Stop receiving notifications by e-mail every time there is a change in the Wiki";
  4176. $EmailWikiChangesExt_1 = "This notification has been made in accordance with their desire to monitor changes in the Wiki. This option means you have activated the button";
  4177. $EmailWikiChangesExt_2 = "If you want to stop being notified of changes in the Wiki, select the tabs<strong> Recent Changes</ strong>, <strong>Current page</ strong>, <strong>Talk</ strong> as appropriate and then push the button";
  4178. $OrphanedPages = "Orphaned pages";
  4179. $WantedPages = "Wanted pages";
  4180. $MostVisitedPages = "Most visited pages";
  4181. $MostChangedPages = "Most changed pages";
  4182. $Changes = "Changes";
  4183. $MostActiveUsers = "Most active users";
  4184. $Contributions = "contributions";
  4185. $UserContributions = "User contributions";
  4186. $WarningDeleteMainPage = "Deleting the homepage of the Wiki is not recommended because it is the main access to the wiki.<br />If, however, you need to do so, do not forget to re-create this Homepage. Until then, other users will not be able to add new pages.";
  4187. $ConvertToLastVersion = "To set this version as the last one, click on";
  4188. $CurrentVersion = "Current version";
  4189. $LastVersion = "Latest version";
  4190. $PageRestored = "The page has been restored. You can view it by clicking";
  4191. $RestoredFromVersion = "Restored from version";
  4192. $HWiki = "Help: wiki";
  4193. $FirstSelectOnepage = "Please select a page first";
  4194. $DefineTask = "If you enter a description, this page will be considered a special page that allows you to create a task";
  4195. $ThisPageisBeginEditedBy = "At this time, this page is being edited by";
  4196. $ThisPageisBeginEditedTryLater = "Please try again later. If the user who is currently editing the page does not save it, this page will be available to you around";
  4197. $EditedByAnotherUser = "Your changes will not be saved because another user has modified and saved the page while you were editing it yourself";
  4198. $WarningMaxEditingTime = "You have 20 minutes to edit this page. After this time, if you have not saved the page, another user will be able to edit it, and you might lose your changes";
  4199. $TheTaskDoesNotBeginUntil = "Still is not the start date";
  4200. $TheDeadlineHasBeenCompleted = "You have exceeded the deadline";
  4201. $HasReachedMaxNumWords = "You have exceeded the number of words allowed";
  4202. $HasReachedMaxiNumVersions = "You have exceeded the number of versions allowed";
  4203. $DescriptionOfTheTask = "Description of the assignment";
  4204. $OtherSettings = "Other requirements";
  4205. $NMaxWords = "Maximum number of words";
  4206. $NMaxVersion = "Maximum number of versions";
  4207. $AddFeedback = "Add guidance messages associated with the progress on the page";
  4208. $Feedback1 = "First message";
  4209. $Feedback2 = "Second message";
  4210. $Feedback3 = "Third message";
  4211. $FProgress = "Progress";
  4212. $PutATimeLimit = "Set a time limit";
  4213. $StandardTask = "Standard Task";
  4214. $ToolName = "Import Blackboard courses";
  4215. $TrackingDisabled = "Reporting has been disabled by system administrator.";
  4216. $InactivesStudents = "Learners not connected for a week or more";
  4217. $AverageTimeSpentOnThePlatform = "Time spent on portal";
  4218. $AverageCoursePerStudent = "Average number of courses to which my learners are subscribed";
  4219. $AverageProgressInLearnpath = "Progress in courses";
  4220. $AverageResultsToTheExercices = "Tests score";
  4221. $SeeStudentList = "See the learners list";
  4222. $NbActiveSessions = "Active sessions";
  4223. $NbPastSessions = "Past sessions";
  4224. $NbFutureSessions = "Future sessions";
  4225. $NbStudentPerSession = "Number of learners by session";
  4226. $NbCoursesPerSession = "Number of courses per session";
  4227. $SeeSessionList = "See the sessions list";
  4228. $CourseStats = "Course Stats";
  4229. $ToolsAccess = "Tools access";
  4230. $LinksAccess = "Links";
  4231. $DocumentsAccess = "Documents";
  4232. $ScormAccess = "Courses";
  4233. $LinksDetails = "Links accessed";
  4234. $WorksDetails = "assignments uploaded";
  4235. $LoginsDetails = "Click on the month name for more details";
  4236. $DocumentsDetails = "Documents downloaded";
  4237. $ExercicesDetails = "Tests score";
  4238. $BackToList = "Back to users list";
  4239. $StatsOfCourse = "Course reporting data";
  4240. $StatsOfUser = "Statistics of user";
  4241. $StatsOfCampus = "Statistics of portal";
  4242. $CountUsers = "Number of users";
  4243. $CountToolAccess = "Number of connections to this course";
  4244. $LoginsTitleMonthColumn = "Month";
  4245. $LoginsTitleCountColumn = "Number of logins";
  4246. $ToolTitleToolnameColumn = "Name of the tool";
  4247. $ToolTitleUsersColumn = "Users Clicks";
  4248. $ToolTitleCountColumn = "Total Clicks";
  4249. $LinksTitleLinkColumn = "Link";
  4250. $LinksTitleUsersColumn = "Users Clicks";
  4251. $LinksTitleCountColumn = "Total Clicks";
  4252. $ExercicesTitleExerciceColumn = "Test";
  4253. $ExercicesTitleScoreColumn = "Score";
  4254. $DocumentsTitleDocumentColumn = "Document";
  4255. $DocumentsTitleUsersColumn = "Users Downloads";
  4256. $DocumentsTitleCountColumn = "Total Downloads";
  4257. $ScormContentColumn = "Title";
  4258. $ScormStudentColumn = "Learners";
  4259. $ScormTitleColumn = "Step";
  4260. $ScormStatusColumn = "Status";
  4261. $ScormScoreColumn = "Score";
  4262. $ScormTimeColumn = "Time";
  4263. $ScormNeverOpened = "The user never opened the course.";
  4264. $WorkTitle = "Title";
  4265. $WorkAuthors = "Authors";
  4266. $WorkDescription = "Description";
  4267. $informationsAbout = "Tracking of";
  4268. $NoEmail = "No e-mail address specified";
  4269. $NoResult = "There is no result yet";
  4270. $Hits = "Hits";
  4271. $LittleHour = "h.";
  4272. $Last31days = "In the last 31 days";
  4273. $Last7days = "In the last 7 days";
  4274. $ThisDay = "This day";
  4275. $Logins = "Logins";
  4276. $LoginsExplaination = "Here is the list of your latest logins with the tools you visited during these sessions.";
  4277. $ExercicesResults = "Score for the tests done";
  4278. $At = "at";
  4279. $LoginTitleDateColumn = "Date";
  4280. $LoginTitleCountColumn = "Visits";
  4281. $LoginsAndAccessTools = "Logins and access to tools";
  4282. $WorkUploads = "Contributions uploads";
  4283. $ErrorUserNotInGroup = "Invalid user : this user doesn't exist in your group";
  4284. $ListStudents = "List of learners in this group";
  4285. $PeriodHour = "Hour";
  4286. $PeriodDay = "Day";
  4287. $PeriodWeek = "Week";
  4288. $PeriodMonth = "Month";
  4289. $PeriodYear = "Year";
  4290. $NextDay = "Next Day";
  4291. $PreviousDay = "Previous Day";
  4292. $NextWeek = "Next Week";
  4293. $PreviousWeek = "Previous Week";
  4294. $NextMonth = "Next Month";
  4295. $PreviousMonth = "Previous Month";
  4296. $NextYear = "Next Year";
  4297. $PreviousYear = "Previous Year";
  4298. $ViewToolList = "View List of All Tools";
  4299. $ToolList = "List of all tools";
  4300. $PeriodToDisplay = "Period";
  4301. $DetailView = "View by";
  4302. $BredCrumpGroups = "Groups";
  4303. $BredCrumpGroupSpace = "Group Area";
  4304. $BredCrumpUsers = "Users";
  4305. $AdminToolName = "Admin Stats";
  4306. $PlatformStats = "Portal Statistics";
  4307. $StatsDatabase = "Stats Database";
  4308. $PlatformAccess = "Access to portal";
  4309. $PlatformCoursesAccess = "Access to courses";
  4310. $PlatformToolAccess = "Tools access";
  4311. $HardAndSoftUsed = "Countries Providers Browsers Os Referers";
  4312. $StrangeCases = "Problematic cases";
  4313. $StatsDatabaseLink = "Click Here";
  4314. $CountCours = "Courses";
  4315. $CountCourseByFaculte = "Number of courses by category";
  4316. $CountCourseByLanguage = "Number of courses by language";
  4317. $CountCourseByVisibility = "Number of courses by visibility";
  4318. $CountUsersByCourse = "Number of users by course";
  4319. $CountUsersByFaculte = "Number of users by category";
  4320. $CountUsersByStatus = "Number of users by status";
  4321. $Access = "Access";
  4322. $Countries = "Countries";
  4323. $Providers = "Providers";
  4324. $OS = "OS";
  4325. $Browsers = "Browsers";
  4326. $Referers = "Referers";
  4327. $AccessExplain = "(When an user open the index of the portal)";
  4328. $TotalPlatformAccess = "Total";
  4329. $TotalPlatformLogin = "Total";
  4330. $MultipleLogins = "Accounts with same <i>Login</i>";
  4331. $MultipleUsernameAndPassword = "Accounts with same <i>Login</i> AND same <i>Password</i>";
  4332. $MultipleEmails = "Accounts with same <i>e-mail</i>";
  4333. $CourseWithoutProf = "Courses without teachers";
  4334. $CourseWithoutAccess = "Unused courses";
  4335. $LoginWithoutAccess = "Logins not used";
  4336. $AllRight = "There is no strange case here";
  4337. $Defcon = "Ooops, problematic cases detected !!";
  4338. $NULLValue = "Empty (or NULL)";
  4339. $TrafficDetails = "Traffic Details";
  4340. $SeeIndividualTracking = "For individual tracking see <a href=../user/user.php>Users</a> tool.";
  4341. $PathNeverOpenedByAnybody = "This path was never opened by anybody.";
  4342. $SynthesisView = "Synthesis view";
  4343. $Visited = "Visited";
  4344. $FirstAccess = "First access";
  4345. $LastAccess = "Latest access";
  4346. $Probationers = "Learner";
  4347. $MoyenneTest = "Tests score";
  4348. $MoyCourse = "Course average";
  4349. $MoyenneExamen = "Exam average";
  4350. $MoySession = "Session average";
  4351. $TakenSessions = "Taken sessions";
  4352. $FollowUp = "Follow-up";
  4353. $Trainers = "Teachers";
  4354. $Administrators = "Administrators";
  4355. $Tracks = "Tracks";
  4356. $Success = "Success";
  4357. $ExcelFormat = "Excel format";
  4358. $MyLearnpath = "My learnpath";
  4359. $LastConnexion = "Latest login";
  4360. $ConnectionTime = "Connection time";
  4361. $ConnectionsToThisCourse = "Connections to this course";
  4362. $StudentTutors = "Learner's coaches";
  4363. $StudentSessions = "Learner's sessions";
  4364. $StudentCourses = "Learner's courses";
  4365. $NoLearnpath = "No learning path";
  4366. $Correction = "Correction";
  4367. $NoExercise = "No tests";
  4368. $LimitDate = "Limit date";
  4369. $SentDate = "Sent date";
  4370. $Annotate = "Notify";
  4371. $DayOfDelay = "Day of delay";
  4372. $NoProduction = "No production";
  4373. $NoComment = "No comment";
  4374. $LatestLogin = "Latest login";
  4375. $TimeSpentOnThePlatform = "Time spent in portal";
  4376. $AveragePostsInForum = "Posts in forum";
  4377. $AverageAssignments = "Average assignments per learner";
  4378. $StudentDetails = "Learner details";
  4379. $StudentDetailsInCourse = "Learner details in course";
  4380. $OtherTools = "OTI (Online Training Interaction) settings report";
  4381. $DetailsStudentInCourse = "Learner details in course";
  4382. $CourseTitle = "Course title";
  4383. $NbStudents = "Learners";
  4384. $TimeSpentInTheCourse = "Time spent in the course";
  4385. $AvgStudentsProgress = "Progress";
  4386. $AvgCourseScore = "Average score in learning paths";
  4387. $AvgMessages = "Messages per learner";
  4388. $AvgAssignments = "Assignments";
  4389. $ToolsMostUsed = "Tools most used";
  4390. $StudentsTracking = "Report on learners";
  4391. $CourseTracking = "Course report";
  4392. $LinksMostClicked = "Links most visited";
  4393. $DocumentsMostDownloaded = "Documents most downloaded";
  4394. $LearningPathDetails = "Learnpath details";
  4395. $NoConnexion = "No connection";
  4396. $TeacherInterface = "Trainer View";
  4397. $CoachInterface = "Coach interface";
  4398. $AdminInterface = "Admin view";
  4399. $NumberOfSessions = "Number of sessions";
  4400. $YourCourseList = "Your courses";
  4401. $YourStatistics = "Your statistics";
  4402. $CoachList = "Trainer list";
  4403. $CoachStudents = "Learners of trainer";
  4404. $NoLearningPath = "No learning path available";
  4405. $SessionCourses = "Courses sessions";
  4406. $NoUsersInCourseTracking = "Tracking for the learners registered to this course";
  4407. $AvgTimeSpentInTheCourse = "Time";
  4408. $RemindInactiveUser = "Remind inactive user";
  4409. $FirstLogin = "First connection";
  4410. $AccessDetails = "Access details";
  4411. $DateAndTimeOfAccess = "Date and time of access";
  4412. $WrongDatasForTimeSpentOnThePlatform = "The datas about this user were registered when the calculation of time spent on the platform wasn't possible.";
  4413. $DisplayCoaches = "Trainers Overview";
  4414. $DisplayUserOverview = "User overview";
  4415. $ExportUserOverviewOptions = "User overview export options";
  4416. $FollowingFieldsWillAlsoBeExported = "The following fields will also be exported";
  4417. $TotalExercisesScoreObtained = "Total score obtained for tests";
  4418. $TotalExercisesScorePossible = "Total possible score for tests";
  4419. $TotalExercisesAnswered = "Number of tests answered";
  4420. $TotalExercisesScorePercentage = "Total score percentage for tests";
  4421. $ForumForumsNumber = "Forums Number";
  4422. $ForumThreadsNumber = "Threads number";
  4423. $ForumPostsNumber = "Posts number";
  4424. $ChatConnectionsDuringLastXDays = "Connections to the chat during last %s days";
  4425. $ChatLastConnection = "Latest chat connection";
  4426. $CourseInformation = "Course Information";
  4427. $NoAdditionalFieldsWillBeExported = "No additional fields will be exported";
  4428. $SendNotification = "Notify";
  4429. $TimeOfActiveByTraining = "Time in course";
  4430. $AvgAllUsersInAllCourses = "Average of all learners in all courses";
  4431. $AvgExercisesScore = "Tests score";
  4432. $TrainingTime = "Time";
  4433. $CourseProgress = "Progress";
  4434. $ViewMinus = "View minus";
  4435. $ResourcesTracking = "Report on resource";
  4436. $MdCallingTool = "Documents";
  4437. $NotInDB = "no such Links category";
  4438. $ManifestSyntax = "(syntax error in manifest file...)";
  4439. $EmptyManifest = "(empty manifest file...)";
  4440. $NoManifest = "(no manifest file...)";
  4441. $NotFolder = "are not possible, it is not a folder...";
  4442. $UploadHtt = "Upload HTT file";
  4443. $HttFileNotFound = "New HTT file could not be opened (e.g. empty, too big)";
  4444. $HttOk = "New HTT file has been uploaded";
  4445. $HttNotOk = "HTT file upload has failed";
  4446. $RemoveHtt = "Remove HTT file";
  4447. $HttRmvOk = "HTT file has been removed";
  4448. $HttRmvNotOk = "HTT file remove has failed";
  4449. $AllRemovedFor = "All entries removed for category";
  4450. $Index = "Index Words";
  4451. $MainMD = "Open Main MDE";
  4452. $Lines = "lines";
  4453. $Play = "Play index.php";
  4454. $NonePossible = "No MD operations are possible";
  4455. $OrElse = "Select a Links category";
  4456. $WorkWith = "Work with SCORM Directory";
  4457. $SDI = "... SCORM Directory with SD-id (and split manifest - or leave empty)";
  4458. $Root = "root";
  4459. $SplitData = "Split manifests, and #MDe, if any:";
  4460. $MffNotOk = "Manifest file replace has failed";
  4461. $MffOk = "Manifest file has been replaced";
  4462. $MffFileNotFound = "New manifest file could not be opened (e.g. empty, too big)";
  4463. $UploadMff = "Replace manifest file";
  4464. $GroupSpaceLink = "Group area";
  4465. $CreationSucces = "Table of contents successfully created.";
  4466. $CanViewOrganisation = "You can view your organisation";
  4467. $ViewDocument = "View";
  4468. $HtmlTitle = "Table of contents";
  4469. $AddToTOC = "Add to contents";
  4470. $AddChapter = "Add section";
  4471. $Ready = "Generate table of contents";
  4472. $StoreDocuments = "Store documents";
  4473. $TocDown = "Down";
  4474. $TocUp = "Up";
  4475. $CutPasteLink = "No frames";
  4476. $CreatePath = "Create a course (authoring tool)";
  4477. $SendDocument = "Upload file";
  4478. $ThisFolderCannotBeDeleted = "This folder cannot be deleted";
  4479. $ChangeVisibility = "Change visibility";
  4480. $VisibilityCannotBeChanged = "The visibility cannot be changed";
  4481. $DocumentCannotBeMoved = "The document cannot be moved";
  4482. $OogieConversionPowerPoint = "Chamilo RAPID : PowerPoint conversion";
  4483. $WelcomeOogieSubtitle = "A PowerPoint to SCORM Courses converter";
  4484. $GoMetadata = "Go";
  4485. $QuotaForThisCourseIs = "The quota for this course is";
  4486. $Del = "delete";
  4487. $ShowCourseQuotaUse = "Space Available";
  4488. $CourseCurrentlyUses = "This course currently uses";
  4489. $MaximumAllowedQuota = "Your storage limit is";
  4490. $PercentageQuotaInUse = "Percentage of your quota that is in use";
  4491. $PercentageQuotaFree = "Percentage of your quota that is still free";
  4492. $CurrentDirectory = "Current folder";
  4493. $UplUploadDocument = "Upload documents";
  4494. $UplPartialUpload = "The uploaded file was only partially uploaded.";
  4495. $UplExceedMaxPostSize = "The file size exceeds the maximum allowed setting:";
  4496. $UplExceedMaxServerUpload = "The uploaded file exceeds the maximum filesize allowed by the server:";
  4497. $UplUploadFailed = "The file upload has failed.";
  4498. $UplNotEnoughSpace = "There is not enough space to upload this file.";
  4499. $UplNoSCORMContent = "No SCORM content was found.";
  4500. $UplZipExtractSuccess = "The zipfile was successfully extracted.";
  4501. $UplZipCorrupt = "Unable to extract zip file (corrupt file?).";
  4502. $UplFileSavedAs = "File saved as";
  4503. $UplFileOverwritten = " was overwritten.";
  4504. $CannotCreateDir = "Unable to create the folder.";
  4505. $UplUpload = "Upload";
  4506. $UplWhatIfFileExists = "If file exists:";
  4507. $UplDoNothing = "Do nothing";
  4508. $UplDoNothingLong = "Don't upload if file exists";
  4509. $UplOverwrite = "Overwrite";
  4510. $UplOverwriteLong = "Overwrite the existing file";
  4511. $UplRename = "Rename";
  4512. $UplRenameLong = "Rename the uploaded file if it exists";
  4513. $DocumentQuota = "Space Available";
  4514. $NoDocsInFolder = "There are no documents to be displayed.";
  4515. $UploadTo = "Upload to";
  4516. $fileModified = "The file has been modified";
  4517. $DocumentsOverview = "Documents overview";
  4518. $Options = "Options";
  4519. $WelcomeOogieConverter = "Welcome to Chamilo RAPID<ul type=\"1\"><li>Browse your hard disk to find any .ppt or .odp file<li>Upload it to Oogie. It will convert it into a SCORM course.<li>You will then be allowed to add audio comments on each slide and insert test and activities between slides.";
  4520. $ConvertToLP = "Convert to course";
  4521. $AdvancedSettings = "Advanced settings";
  4522. $File = "File";
  4523. $DocDeleteError = "Error during the delete of document";
  4524. $ViModProb = "A problem occured while updating visibility";
  4525. $DirDeleted = "Folder deleted";
  4526. $TemplateName = "Template name";
  4527. $TemplateDescription = "Template description";
  4528. $DocumentSetAsTemplate = "Document set as a new template";
  4529. $DocumentUnsetAsTemplate = "Document unset as template";
  4530. $AddAsTemplate = "Add as a template";
  4531. $RemoveAsTemplate = "Remove template";
  4532. $ReadOnlyFile = "The file is read only";
  4533. $FileNotFound = "The file was not found";
  4534. $TemplateTitleFirstPage = "First page";
  4535. $TemplateTitleFirstPageDescription = "It's the cover page of your course";
  4536. $TemplateTitleDedicatory = "Dedication";
  4537. $TemplateTitleDedicatoryDescription = "Make your own dedication";
  4538. $TemplateTitlePreface = "Course preface";
  4539. $TemplateTitlePrefaceDescription = "Preface";
  4540. $TemplateTitleIntroduction = "Introduction";
  4541. $TemplateTitleIntroductionDescription = "Insert the introduction text";
  4542. $TemplateTitlePlan = "Plan";
  4543. $TemplateTitlePlanDescription = "It's the table of content";
  4544. $TemplateTitleTeacher = "Your instructor";
  4545. $TemplateTitleTeacherDescription = "Dialog on the bottom with a trainer";
  4546. $TemplateTitleProduction = "Production";
  4547. $TemplateTitleProductionDescription = "Attended production description";
  4548. $TemplateTitleAnalyze = "Analyze";
  4549. $TemplateTitleAnalyzeDescription = "Analyze description";
  4550. $TemplateTitleSynthetize = "Synthetize";
  4551. $TemplateTitleSynthetizeDescription = "Synthetize description";
  4552. $TemplateTitleText = "Text page";
  4553. $TemplateTitleTextDescription = "Plain text page";
  4554. $TemplateTitleLeftImage = "Left image";
  4555. $TemplateTitleLeftImageDescription = "Left image";
  4556. $TemplateTitleTextCentered = "Text and image centered";
  4557. $TemplateTitleTextCenteredDescription = "It's a text with an image centered and legend";
  4558. $TemplateTitleComparison = "Compare";
  4559. $TemplateTitleComparisonDescription = "2 columns text page";
  4560. $TemplateTitleDiagram = "Diagram explained";
  4561. $TemplateTitleDiagramDescription = "Image on the left, comment on the right";
  4562. $TemplateTitleImage = "Image alone";
  4563. $TemplateTitleImageDescription = "Image alone";
  4564. $TemplateTitleFlash = "Flash animation";
  4565. $TemplateTitleFlashDescription = "Animation + introduction text";
  4566. $TemplateTitleAudio = "Audio comment";
  4567. $TemplateTitleAudioDescription = "Audio + image + text : listening comprehension";
  4568. $TemplateTitleSchema = "Schema with audio explain";
  4569. $TemplateTitleSchemaDescription = "A schema explain by a trainer";
  4570. $TemplateTitleVideo = "Video page";
  4571. $TemplateTitleVideoDescription = "On demand video + text";
  4572. $TemplateTitleVideoFullscreen = "Video page fullscreen";
  4573. $TemplateTitleVideoFullscreenDescription = "On demand video in fullscreen";
  4574. $TemplateTitleTable = "Table page";
  4575. $TemplateTitleTableDescription = "Spreadsheet-like page";
  4576. $TemplateTitleAssigment = "Assignment description";
  4577. $TemplateTitleAssigmentDescription = "Explain goals, roles, agenda";
  4578. $TemplateTitleResources = "Resources";
  4579. $TemplateTitleResourcesDescription = "Books, links, tools";
  4580. $TemplateTitleBibliography = "Bibliography";
  4581. $TemplateTitleBibliographyDescription = "Books, links, tools";
  4582. $TemplateTitleFAQ = "Frequently asked questions";
  4583. $TemplateTitleFAQDescription = "List of questions and answers";
  4584. $TemplateTitleGlossary = "Glossary";
  4585. $TemplateTitleGlossaryDescription = "List of term of the section";
  4586. $TemplateTitleEvaluation = "Evaluation";
  4587. $TemplateTitleEvaluationDescription = "Evaluation";
  4588. $TemplateTitleCertificate = "Certificate of completion";
  4589. $TemplateTitleCertificateDescription = "To appear at the end of a course";
  4590. $TemplateTitleCheckList = "Checklist";
  4591. $TemplateTitleCourseTitle = "Course title";
  4592. $TemplateTitleLeftList = "Left list";
  4593. $TemplateTitleLeftListDescription = "Left list with an instructor";
  4594. $TemplateTitleCheckListDescription = "List of resources";
  4595. $TemplateTitleCourseTitleDescription = "Course title with a logo";
  4596. $TemplateTitleRightList = "Right list";
  4597. $TemplateTitleRightListDescription = "Right list with an instructor";
  4598. $TemplateTitleLeftRightList = "Left & right list";
  4599. $TemplateTitleLeftRightListDescription = "Left & right list with an instructor";
  4600. $TemplateTitleDesc = "Description";
  4601. $TemplateTitleDescDescription = "Describe a resource";
  4602. $TemplateTitleObjectives = "Course objectives";
  4603. $TemplateTitleObjectivesDescription = "Describe the objectives of the course";
  4604. $TemplateTitleCycle = "Cycle chart";
  4605. $TemplateTitleCycleDescription = "2 list with cycle arrows";
  4606. $TemplateTitleLearnerWonder = "Learner wonder";
  4607. $TemplateTitleLearnerWonderDescription = "Learner wonder description";
  4608. $TemplateTitleTimeline = "Phase timeline";
  4609. $TemplateTitleTimelineDescription = "3 lists with an relational arrow";
  4610. $TemplateTitleStopAndThink = "Stop and think";
  4611. $TemplateTitleListLeftListDescription = "Left list with an instructor";
  4612. $TemplateTitleStopAndThinkDescription = "Layout encouraging to stop and think";
  4613. $CreateTemplate = "Create template";
  4614. $SharedFolder = "Shared folder";
  4615. $CreateFolder = "Create the folder";
  4616. $HelpDefaultDirDocuments = "INFORMATION VISIBLE TO THE TEACHER ONLY:\nThis folder contains the default archives. You can clear files or add new ones, but if a file is hidden when it is inserted in a web document, the students will not be able to see it in this document. When inserting a file in a web document, first make sure it is visible. The folders can remain hidden.";
  4617. $HelpSharedFolder = "This folder contains the files that other learners (or yourself) sent into a course through the editor (if they didn't do it from the groups tool). By default, they will be visible by any trainer, but will be hidden from other learners (unless they access the files directly). If you make one user folder visible, other users will see all its content.";
  4618. $TemplateImage = "Template's icon";
  4619. $MailingFileRecipDup = "multiple users have";
  4620. $MailingFileRecipNotFound = "no such learner with";
  4621. $MailingFileNoRecip = "name does not contain any recipient-id";
  4622. $MailingFileNoPostfix = "name does not end with";
  4623. $MailingFileNoPrefix = "name does not start with";
  4624. $MailingFileFunny = "no name, or extension not 1-4 letters or digits";
  4625. $MailingZipDups = "Mailing zipfile must not contain duplicate files - it will not be sent";
  4626. $MailingZipPhp = "Mailing zipfile must not contain php files - it will not be sent";
  4627. $MailingZipEmptyOrCorrupt = "Mailing zipfile is empty or not a valid zipfile";
  4628. $MailingWrongZipfile = "Mailing must be zipfile with STUDENTID or LOGINNAME";
  4629. $MailingConfirmSend = "Send content files to individuals?";
  4630. $MailingSend = "Validate";
  4631. $MailingNotYetSent = "Mailing content files have not yet been sent out...";
  4632. $MailingInSelect = "---Mailing---";
  4633. $MailingAsUsername = "Mailing";
  4634. $Sender = "sender";
  4635. $FileSize = "filesize";
  4636. $PlatformUnsubscribeTitle = "Allow unsubscription from platform";
  4637. $OverwriteFile = "Overwrite previous versions of same document?";
  4638. $SentOn = "on";
  4639. $DragAndDropAnElementHere = "Drag and drop an element here";
  4640. $SendTo = "Send to";
  4641. $ErrorCreatingDir = "Can't create the directory. Please contact your system administrator.";
  4642. $NoFileSpecified = "You didn't specify a file to upload.";
  4643. $NoUserSelected = "Please select a user to send the file to.";
  4644. $BadFormData = "Submit failed: bad form data. Please contact your system administrator.";
  4645. $GeneralError = "An error has occured. Please contact your system administrator.";
  4646. $ToPlayTheMediaYouWillNeedToUpdateYourBrowserToARecentVersionYouCanAlsoDownloadTheFile = "To play the media you will need to either update your browser to a recent version or update your <a href=\"http://get.adobe.com/flashplayer/\" target=\"_blank\">Flash plugin</a>. Check if the file has a correct extension.";
  4647. $UpdateRequire = "Update require";
  4648. $ThereAreNoRegisteredDatetimeYet = "There is no date/time registered yet";
  4649. $CalendarList = "Calendar list of attendances";
  4650. $AttendanceCalendarDescription = "The attendance calendar allows you to register attendance lists (one per real session the students need to attend). Add new attendance lists here.";
  4651. $CleanCalendar = "Clean the calendar of all lists";
  4652. $AddDateAndTime = "Add a date and time";
  4653. $AttendanceSheet = "Attendance sheet";
  4654. $GoToAttendanceCalendar = "Go to the attendance calendar";
  4655. $AttendanceCalendar = "Attendance calendar";
  4656. $QualifyAttendanceGradebook = "Grade the attendance list in the assessment tool";
  4657. $CreateANewAttendance = "Create a new attendance list";
  4658. $Attendance = "Attendance";
  4659. $XResultsCleaned = "%d results cleaned";
  4660. $AreYouSureToDeleteResults = "Are you sure to delete results";
  4661. $CouldNotResetPassword = "Could not reset password";
  4662. $ExerciseCopied = "Exercise copied";
  4663. $AreYouSureToCopy = "Are you sure to copy";
  4664. $ReceivedFiles = "Received Files";
  4665. $SentFiles = "Sent Files";
  4666. $ReceivedTitle = "Title";
  4667. $SentTitle = "Sent Files";
  4668. $Size = "Size";
  4669. $LastResent = "Latest sent on";
  4670. $kB = "kB";
  4671. $UnsubscribeFromPlatformSuccess = "Your account %s has been completely removed from this portal. Thank you for staying with us for a while. We hope to see you again later.";
  4672. $UploadNewFile = "Share a new file";
  4673. $Feedback = "Feedback";
  4674. $CloseFeedback = "Close feedback";
  4675. $AddNewFeedback = "Add feedback";
  4676. $DropboxFeedbackStored = "The feedback message has been stored";
  4677. $AllUsersHaveDeletedTheFileAndWillNotSeeFeedback = "All users have deleted the file so nobody will see the feedback you are adding.";
  4678. $FeedbackError = "Feedback error";
  4679. $PleaseTypeText = "Please type some text.";
  4680. $YouAreNotAllowedToDownloadThisFile = "You are not allowed to download this file.";
  4681. $CheckAtLeastOneFile = "Check at least one file.";
  4682. $ReceivedFileDeleted = "The received file has been deleted.";
  4683. $SentFileDeleted = "The sent file has been deleted.";
  4684. $FilesMoved = "The selected files have been moved.";
  4685. $ReceivedFileMoved = "The received file has been moved.";
  4686. $SentFileMoved = "The sent file has been moved";
  4687. $NotMovedError = "The file(s) can not be moved.";
  4688. $AddNewCategory = "Add a new folder";
  4689. $EditCategory = "Edit this category";
  4690. $ErrorPleaseGiveCategoryName = "Please give a category name";
  4691. $CategoryAlreadyExistsEditIt = "This category already exists, please use a different name";
  4692. $CurrentlySeeing = "You are in folder";
  4693. $CategoryStored = "The folder has been created";
  4694. $CategoryModified = "The category has been modified.";
  4695. $AuthorFieldCannotBeEmpty = "The author field cannot be empty";
  4696. $YouMustSelectAtLeastOneDestinee = "You must select at least one destinee";
  4697. $DropboxFileTooBig = "This file's volume is too big.";
  4698. $TheFileIsNotUploaded = "The file is not uploaded.";
  4699. $MailingNonMailingError = "Mailing cannot be overwritten by non-mailing and vice-versa";
  4700. $MailingSelectNoOther = "Mailing cannot be combined with other recipients";
  4701. $MailingJustUploadSelectNoOther = "Just Upload cannot be combined with other recipients";
  4702. $PlatformUnsubscribeComment = "By enabling this option, you allow any user to definitively remove his own account and all data related to it from the platform. This is quite a radical action, but it is necessary for portals opened to the public where users can auto-register. An additional entry will appear in the user profile to unsubscribe after confirmation.";
  4703. $NewDropboxFileUploaded = "A new file has been sent in the dropbox";
  4704. $NewDropboxFileUploadedContent = "A new file has been sent to the Dropbox";
  4705. $AddEdit = "Add / Edit";
  4706. $ErrorNoFilesInFolder = "This folder is empty";
  4707. $EditingExerciseCauseProblemsInLP = "Editing exercise cause problems in Learning Path";
  4708. $SentCatgoryDeleted = "The folder has been deleted";
  4709. $ReceivedCatgoryDeleted = "The folder has been deleted";
  4710. $MdTitle = "Learning Object Title";
  4711. $MdDescription = "To store this information, press Store";
  4712. $MdCoverage = "e.g. Bachelor of ...";
  4713. $MdCopyright = "e.g. provided the source is acknowledged";
  4714. $NoScript = "Script is not enabled in your browser, please ignore the screen part below this text, it won't work...";
  4715. $LanguageTip = "the language in which this learning object was made";
  4716. $Identifier = "Identifier";
  4717. $IdentifierTip = "unique identification for this learning object, composed of letters, digits, _-.()'!*";
  4718. $TitleTip = "title or name, and language of that title or name";
  4719. $DescriptionTip = "description or comment, and language used for describing this learning object";
  4720. $Keyword = "Keyword";
  4721. $KeywordTip = "comma-separated (letters, digits, -.)";
  4722. $Coverage = "Coverage";
  4723. $CoverageTip = "for example bachelor of xxx: yyy";
  4724. $KwNote = "If you change the description language, do not add keywords at the same time.";
  4725. $Location = "URL/URI";
  4726. $LocationTip = "click to open object";
  4727. $Store = "Store";
  4728. $DeleteAll = "Delete all";
  4729. $ConfirmDelete = "Do you *really* want to delete all metadata?";
  4730. $WorkOn = "on";
  4731. $Continue = "Continue";
  4732. $Create = "Create";
  4733. $RemainingFor = "obsolete entries removed for category";
  4734. $WarningDups = " - duplicate categorynames were removed from the list!";
  4735. $SLC = "Work with Links category named";
  4736. $TermAddNew = "Add new glossary term";
  4737. $TermName = "Term";
  4738. $TermDefinition = "Term definition";
  4739. $TermDeleted = "Term removed";
  4740. $TermUpdated = "Term updated";
  4741. $TermConfirmDelete = "Do you really want to delete this term";
  4742. $TermAddButton = "Save term";
  4743. $TermUpdateButton = "Update term";
  4744. $TermEdit = "Edit term";
  4745. $TermDeleteAction = "Delete term";
  4746. $PreSelectedOrder = "Pre-defined";
  4747. $TermAdded = "Term added";
  4748. $YouMustEnterATermName = "You must enter a term";
  4749. $YouMustEnterATermDefinition = "You must enter a term definition";
  4750. $TableView = "Table view";
  4751. $GlossaryTermAlreadyExistsYouShouldEditIt = "This glossary term already exists. Please change the term name.";
  4752. $GlossaryManagement = "Glossary management";
  4753. $TermMoved = "The term has moved";
  4754. $HFor = "Forums Help";
  4755. $ForContent = "<p> The forum is an discussion tool for asynchronous written work. In contrast to e-mail, a forum is for public, or semi-public, group discussion. </p>To use the Chamilo forum, members can simply use their browser - they do not require any distinct client software. </p>To organize forums, click on the Forums tool. Discussions are organized hierarchically according to the following structure: </ p><b> Category> Forum> Topic> Post</ b> </ p> To ensure members can participate in the forum tidily and effectively, it is essential in the first instance to create categories and forums; it's then up to the participants to create topics and posts. By default, the forum contains a single (public) category, an example topic and an example post. You can add forums to the category, change its title or create other categories within which you could then create new forums. (Don't confuse categories and forums, and remember that a category that contains no forum is useless and is not displayed.)</p>\n<p>The forum description might include a list of its members, a definition of its purpose, a target a task, a theme etc.</p><p>Group forums should not be created via the Forum tool but instead via the Groups tool, where you can determine whether your group forums should be private or public, at the same time providing a location for sharing groups of documents.</p><b> Teaching Tips</ b></ p> A learning forum is not quite the same as the forums you are used to seeing on the internet. For one thing, it is not possible for learners to alter their posts once they have been published as the course is logically archived to allow tracking of what has been said in the past. Furthermore, Chamilo forums allow for specific uses relevant to teaching. For example, some teachers/trainers publish corrections directly within forums in the following way: <li> A learner is asked to post a report directly into the forum, </ li> The teacher corrects it by clicking Edit (yellow pencil) and marking it using the graphics editor (color, underlining, etc.) </ li> Finally, other learners benefit from viewing the corrections was made on the production of one of of them, </ li> Note that the same principle can be applied between learners, but will require his copying/pasting the message of his fellow student because students / trainees can not edit one another's posts. <. li> </ ul>";
  4756. $HDropbox = "Dropbox Help";
  4757. $DropboxContent = "<p>The dropbox tool is a Content Management Tool facilitating peer-to-peer data exchange. It accepts any filetype (Word, Excel, PDF etc.) It will overwrite existing files with the same name only if directed to do so.<br /> <br /> Learners can can only send a file to their teacher, unless the system administrator has enabled sharing between users. A course manager, however, can opt to to send a file to all course users. <br /> <br />The system administrator can configure the dropbox so that a user can receive but not send files.<br /> <br /> If the file list gets too long, some or all files can be deleted from the list, although the file itself remaims available to other users until all users have deleted it.<br /> </p><p>In the received folder, the dropbox tool displays files that have been sent to you and in the sent folder it shows files sent to other course members.</p><p>To send a document to more than one person, you need to hold CTRLand check the multiple select box(i.e.the field showing the list of members).</p>";
  4758. $HHome = "Homepage Help";
  4759. $HomeContent = "<p>The Course Homepage displays a range of tools (introductory text, description, documents manager etc.) This page is modular in the sense that you can hide or show any of the tools in learner view with a single click on the 'eye' icon (hidden tools can be reactivated any time. </p><b>Navigation</b><p>In order to browse the course, you can simply click on the icons; a 'breadcrumb' navigation tool at the top of the page allows you to retrace your steps back to the course homepage.</p><b>Best practice</b><p>To help motivate learners, it is helpful to make you course appear 'alive' by suggesting that there is always someone present 'behind the screen'. An effective way to make this impression is to update the introductory text (just click on the yellow pencil) at least once a week with the latest news, deadlines etc.</p><p>When you construct your course, try the following steps:<ol><li>In the Course Settings, make course acccess private and subscription available only to trainers. That way, nobody can enter your course area during construction,</li><li>Use whatever tools you need to 'fill' your area with content, activities, guidelines, tests etc.,</li><li>Now hide all tools so your home page is empty in learner view by clicking on the eyes to make the icons grey. </li><li>Use the Learning Path tool to create a learning path to structure the way learners will follow it and learn within it. That way, although you will be using the other tools, you don't initially need to show them on the homepage. </li><li>Click on the eye icon beside the path you created to show it on your home page.</li><li>your course is ready to view. Its homepage will display an introductory text followed by a single link to lead learners into and through the course. Click on the Learner View button (top right) to see the course from the learner's point of view.<I></I></li></ol>";
  4760. $HOnline = "Chamilo LIVE Help";
  4761. $YouNeedToActivateTheGoogleMapsPluginInAdminPlatformToSeeTheMap = "The GoogleMaps plugin needs to be enabled by the platform administrator in order to show the map.";
  4762. $HClar = "Chamilo Help";
  4763. $HDoc = "Documents Help";
  4764. $HUser = "Users Help";
  4765. $HExercise = "Tests Help";
  4766. $HPath = "Learning Path Help";
  4767. $HDescription = "Description Help";
  4768. $HLinks = "Links Help";
  4769. $HMycourses = "My Courses Help";
  4770. $HAgenda = "Agenda Help";
  4771. $HAnnouncements = "Announcements Help";
  4772. $HChat = "Chat Help";
  4773. $HWork = "Assignments Help";
  4774. $HTracking = "Reporting Help";
  4775. $IsInductionSession = "Induction-type session";
  4776. $PublishSurvey = "Publish survey";
  4777. $CompareQuestions = "Compare questions";
  4778. $InformationUpdated = "Information updated";
  4779. $SurveyTitle = "Survey title";
  4780. $SurveyIntroduction = "Survey introduction";
  4781. $CreateNewSurvey = "Create survey";
  4782. $SurveyTemplate = "Survey template";
  4783. $PleaseEnterSurveyTitle = "Please enter survey title";
  4784. $PleaseEnterValidDate = "Please Enter Valid Date";
  4785. $NotPublished = "Not published";
  4786. $AdvancedReportDetails = "Advanced report allows to choose the user and the questions to see more precis informations";
  4787. $AdvancedReport = "Advanced report";
  4788. $CompleteReportDetails = "Complete report allows to see all the results given by the people questioned, and export it in csv (for Excel)";
  4789. $CompleteReport = "Complete report";
  4790. $OnlyThoseAddresses = "Send the survey to these addresses only";
  4791. $BackToQuestions = "Back to the questions";
  4792. $SelectWhichLanguage = "Select in which language should be created the survey";
  4793. $CreateInAnotherLanguage = "Create this survey in another language";
  4794. $ExportInExcel = "Export in Excel format";
  4795. $ComparativeResults = "Comparative results";
  4796. $SelectDataYouWantToCompare = "Select the data you want to compare";
  4797. $OrCopyPasteUrl = "Or copy paste the link into the url bar of your browser :";
  4798. $ClickHereToOpenSurvey = "Click here to take the survey";
  4799. $SurveyNotShared = "No Surveys have been shared yet";
  4800. $ViewSurvey = "View survey";
  4801. $SelectDisplayType = "Select Display Type :";
  4802. $Thanks = "Feedback message";
  4803. $SurveyReporting = "Survey reporting";
  4804. $NoSurveyAvailable = "No survey available";
  4805. $YourSurveyHasBeenPublished = "has been published";
  4806. $CreateFromExistingSurvey = "Create from existing survey";
  4807. $SearchASurvey = "Search a survey";
  4808. $SurveysOfAllCourses = "Survey(s) of all courses";
  4809. $PleaseSelectAChoice = "Please make a choice";
  4810. $ThereAreNoQuestionsInTheDatabase = "There are no questions in the database";
  4811. $UpdateQuestionType = "Update Question Type :";
  4812. $AddAnotherQuestion = "Add new question";
  4813. $IsShareSurvey = "Share survey with others";
  4814. $Proceed = "Proceed";
  4815. $PleaseFillNumber = "Please fill numeric values for points.";
  4816. $PleaseFillAllPoints = "Please fill points from 1-5";
  4817. $PleasFillAllAnswer = "Please fill all the answer fields.";
  4818. $PleaseSelectFourTrue = "Please select at least Four true answers.";
  4819. $PleaseSelectFourDefault = "Please Select at least Four Default Answers.";
  4820. $PleaseFillDefaultText = "Please fill default text";
  4821. $ModifySurveyInformation = "Edit survey information";
  4822. $ViewQuestions = "View questions";
  4823. $CreateSurvey = "Create survey";
  4824. $FinishSurvey = "Finish survey";
  4825. $QuestionsAdded = "Questions are added";
  4826. $DeleteSurvey = "Delete survey";
  4827. $SurveyCode = "Code";
  4828. $SurveyList = "Survey list";
  4829. $SurveyAttached = "Survey attached";
  4830. $QuestionByType = "Question by type";
  4831. $SelectQuestionByType = "Select question by type";
  4832. $PleaseEnterAQuestion = "Please enter a question";
  4833. $NoOfQuestions = "Number of question";
  4834. $ThisCodeAlradyExists = "This code already exist";
  4835. $SaveAndExit = "Save and exit";
  4836. $ViewAnswers = "View answers";
  4837. $CreateExistingSurvey = "Create from an existing survey";
  4838. $SurveyName = "Survey name";
  4839. $SurveySubTitle = "Survey subtitle";
  4840. $ShareSurvey = "Share survey";
  4841. $SurveyThanks = "Final thanks";
  4842. $EditSurvey = "Edit survey";
  4843. $OrReturnToSurveyOverview = "Or return to survey overview";
  4844. $SurveyParametersMissingUseCopyPaste = "There is a parameter missing in the link. Please use copy and past";
  4845. $WrongInvitationCode = "Wrong invitation code";
  4846. $SurveyFinished = "You have finished this survey.";
  4847. $SurveyPreview = "Survey preview";
  4848. $InvallidSurvey = "Invalid survey";
  4849. $AddQuestion = "Add a question";
  4850. $EditQuestion = "Edit question";
  4851. $TypeDoesNotExist = "This type does not exist";
  4852. $SurveyCreatedSuccesfully = "The survey has been created succesfully";
  4853. $YouCanNowAddQuestionToYourSurvey = "You can now add questions to your survey";
  4854. $SurveyUpdatedSuccesfully = "The survey has been updated succesfully";
  4855. $QuestionAdded = "The question has been added.";
  4856. $QuestionUpdated = "The question has been updated.";
  4857. $RemoveAnswer = "Remove option";
  4858. $AddAnswer = "Add option";
  4859. $DisplayAnswersHorVert = "Display";
  4860. $AnswerOptions = "Answer options";
  4861. $MultipleResponse = "Multiple answers";
  4862. $Dropdown = "Dropdown";
  4863. $Pagebreak = "Page end (distinct questions)";
  4864. $QuestionNumber = "N°";
  4865. $NumberOfOptions = "Options";
  4866. $SurveyInvitations = "Survey invitations";
  4867. $InvitationCode = "Invitation code";
  4868. $InvitationDate = "Invitation date";
  4869. $Answered = "Answered";
  4870. $AdditonalUsersComment = "You can invite additional users to fill the survey. To do so you can type their e-mail addresses here separated by either , (comma) or ; (semi-column)";
  4871. $MailTitle = "Mail subject";
  4872. $InvitationsSend = "invitations sent.";
  4873. $SurveyDeleted = "The survey has been deleted.";
  4874. $NoSurveysSelected = "No surveys have been selected.";
  4875. $NumberOfQuestions = "Questions";
  4876. $Invited = "Invited";
  4877. $SubmitQuestionFilter = "Filter";
  4878. $ResetQuestionFilter = "Reset filter";
  4879. $ExportCurrentReport = "Export current report";
  4880. $OnlyQuestionsWithPredefinedAnswers = "Only questions with predefined answers can be used";
  4881. $SelectXAxis = "Select the question on the X axis";
  4882. $SelectYAxis = "Select the question on the Y axis";
  4883. $ComparativeReport = "Comparative report";
  4884. $AllQuestionsOnOnePage = "This screen displays an exact copy of the form as it was filled by the user";
  4885. $SelectUserWhoFilledSurvey = "Select user who filled the survey";
  4886. $userreport = "User report";
  4887. $VisualRepresentation = "Graphic";
  4888. $AbsoluteTotal = "Absolute total";
  4889. $NextQuestion = "Next question";
  4890. $PreviousQuestion = "Previous question";
  4891. $PeopleWhoAnswered = "People who have chosen this answer";
  4892. $SurveyPublication = "Publication of the survey";
  4893. $AdditonalUsers = "Additional users";
  4894. $MailText = "E-mail message";
  4895. $UseLinkSyntax = "The selected users will receive an email with the text above and a unique link that they have to click to fill the survey. If you want to put the link somewhere in your text you have to put the following text wherever you want in your text: **link** (star star link star star). This will then automatically be replaced by the unique link. If you do not add **link** to your text then the email link will be added to the end of the mail";
  4896. $DetailedReportByUser = "Detailed report by user";
  4897. $DetailedReportByQuestion = "Detailed report by question";
  4898. $ComparativeReportDetail = "In this report you can compare two questions.";
  4899. $CompleteReportDetail = "In this report you get an overview of all the answers of all users on all questions. You also have the option to see only a selection of questions. You can export the results in CSV format and use this for processing in a statistical application";
  4900. $DetailedReportByUserDetail = "In this report you can see all the answers a specific user has given.";
  4901. $DetailedReportByQuestionDetail = "In this report you see the results question by question. Basic statistical analysis and graphics are provided";
  4902. $ReminderResendToAllUsers = "Remind all users of the survey. If you do not check this checkbox only the newly-added users will receive an e-mail.";
  4903. $Multiplechoice = "Multiple choice";
  4904. $Score = "Score";
  4905. $Invite = "Invite";
  4906. $MaximumScore = "Score";
  4907. $ViewInvited = "View invited";
  4908. $ViewAnswered = "View people who answered";
  4909. $ViewUnanswered = "View people who didn't answer";
  4910. $DeleteSurveyQuestion = "Are you sure you want to delete the question?";
  4911. $YouAlreadyFilledThisSurvey = "You already filled this survey";
  4912. $ClickHereToAnswerTheSurvey = "Click here to answer the survey";
  4913. $UnknowUser = "Unknow user";
  4914. $HaveAnswered = "have answered";
  4915. $WereInvited = "were invited";
  4916. $PagebreakNotFirst = "The page break cannot be the first";
  4917. $PagebreakNotLast = "The page break cannot be the last one";
  4918. $SurveyNotAvailableAnymore = "Sorry, this survey is not available anymore. Thank you for trying.";
  4919. $DuplicateSurvey = "Duplicate survey";
  4920. $EmptySurvey = "Empty survey";
  4921. $SurveyEmptied = "Answers to survey successfully deleted";
  4922. $SurveyNotAvailableYet = "This survey is not yet available. Please try again later. Thank you.";
  4923. $PeopleAnswered = "people answered";
  4924. $AnonymousSurveyCannotKnowWhoAnswered = "This survey is anonymous. You can't see who answered.";
  4925. $IllegalSurveyId = "Unknown survey id";
  4926. $SurveyQuestionMoved = "The question has been moved";
  4927. $IdenticalSurveycodeWarning = "This survey code already exists. That probably means the survey exists in other languages. Invited people will choose between different languages.";
  4928. $ThisSurveyCodeSoonExistsInThisLanguage = "This survey code soon exists in this language";
  4929. $SurveyUserAnswersHaveBeenRemovedSuccessfully = "The user's answers to the survey have been succesfully removed.";
  4930. $DeleteSurveyByUser = "Delete this user's answers";
  4931. $SelectType = "Select type";
  4932. $Conditional = "Conditional";
  4933. $ParentSurvey = "Parent Survey";
  4934. $OneQuestionPerPage = "One question per page";
  4935. $ActivateShuffle = "Enable shuffle mode";
  4936. $ShowFormProfile = "Show profile form";
  4937. $PersonalityQuestion = "Edit question";
  4938. $YouNeedToCreateGroups = "You need to create groups";
  4939. $ManageGroups = "Manage groups";
  4940. $GroupCreatedSuccessfully = "Group created successfully";
  4941. $GroupNeedName = "Group need name";
  4942. $Personality = "Personalize";
  4943. $Primary = "Primary";
  4944. $Secondary = "Secondary";
  4945. $PleaseChooseACondition = "Please choose a condition";
  4946. $ChooseDifferentCategories = "Choose different categories";
  4947. $Normal = "Normal";
  4948. $NoLogOfDuration = "No log of duration";
  4949. $AutoInviteLink = "Users who are not invited can use this link to take the survey:";
  4950. $CompleteTheSurveysQuestions = "Complete the survey's questions";
  4951. $SurveysDeleted = "Surveys deleted";
  4952. $RemindUnanswered = "Remind only users who didn't answer";
  4953. $ModifySurvey = "Edit survey";
  4954. $CreateQuestionSurvey = "Create question";
  4955. $ModifyQuestionSurvey = "Edit question";
  4956. $BackToSurvey = "Back to survey";
  4957. $UpdateInformation = "Update information";
  4958. $PleaseFillSurvey = "Please fill survey";
  4959. $ReportingOverview = "Reporting overview";
  4960. $GeneralDescription = "Description";
  4961. $GeneralDescriptionQuestions = "What is the goal of the course? Are there prerequisites? How is this training connected to other courses?";
  4962. $GeneralDescriptionInformation = "Describe the course (number of hours, serial number, location) and teacher (name, office, Tel., e-mail, office hours . . . .).";
  4963. $Objectives = "Objectives";
  4964. $ObjectivesInformation = "What are the objectives of the course (competences, skills, outcomes)?";
  4965. $ObjectivesQuestions = "What should the end results be when the learner has completed the course? What are the activities performed during the course?";
  4966. $Topics = "Topics";
  4967. $TopicsInformation = "List of topics included in the training. Importance of each topic. Level of difficulty. Structure and inter-dependence of the different parts.";
  4968. $TopicsQuestions = "How does the course progress? Where should the learner pay special care? Are there identifiable problems in understanding different areas? How much time should one dedicate to the different areas of the course?";
  4969. $Methodology = "Methodology";
  4970. $MethodologyQuestions = "What methods and activities help achieve the objectives of the course? What would the schedule be?";
  4971. $MethodologyInformation = "Presentation of the activities (conference, papers, group research, labs...).";
  4972. $CourseMaterial = "Course material";
  4973. $CourseMaterialQuestions = "Is there a course book, a collection of papers, a bibliography, a list of links on the internet?";
  4974. $CourseMaterialInformation = "Short description of the course materials.";
  4975. $HumanAndTechnicalResources = "Resources";
  4976. $HumanAndTechnicalResourcesQuestions = "Consider the cpirses, coaches, a technical helpdesk, course managers, and/or materials available.";
  4977. $HumanAndTechnicalResourcesInformation = "Identify and describe the different contact persons and technical devices available.";
  4978. $Assessment = "Assessment";
  4979. $AssessmentQuestions = "How will learners be assessed? Are there strategies to develop in order to master the topic?";
  4980. $AssessmentInformation = "Criteria for skills acquisition.";
  4981. $Height = "Height";
  4982. $ResizingComment = "Resize the image to the following dimensions (in pixels)";
  4983. $Width = "Width";
  4984. $Resizing = "RESIZE";
  4985. $NoResizingComment = "Show all images in their original size. No resizing is done. Scrollbars will automatically appear if the image is larger than your monitor size.";
  4986. $ShowThumbnails = "Show Thumbnails";
  4987. $SetSlideshowOptions = "Gallery settings";
  4988. $SlideshowOptions = "Slideshow Options";
  4989. $NoResizing = "NO RESIZING";
  4990. $Brochure = "Brochure";
  4991. $SlideShow = "Slideshow";
  4992. $PublicationEndDate = "Published end date";
  4993. $ViewSlideshow = "View Slideshow";
  4994. $MyTasks = "My tasks";
  4995. $FavoriteBlogs = "My projects";
  4996. $Navigation = "Navigation";
  4997. $TopTen = "Top ten";
  4998. $ThisBlog = "This project";
  4999. $NewPost = "New task";
  5000. $TaskManager = "Roles management";
  5001. $MemberManager = "Users management";
  5002. $PostFullText = "Task";
  5003. $ReadPost = "Read this post";
  5004. $FirstPostText = "This is the first task in the project. Everybody subscribed to this project is able to participate";
  5005. $AddNewComment = "Add a new comment";
  5006. $ReplyToThisComment = "Reply to this comment";
  5007. $ManageTasks = "Manage roles";
  5008. $ManageMembers = "Subscribe / Unsubscribe users in this project";
  5009. $Register = "Register";
  5010. $UnRegister = "Unregister";
  5011. $SubscribeMembers = "Subscribe users";
  5012. $UnsubscribeMembers = "Unsubscribe users";
  5013. $RightsManager = "Users rights management";
  5014. $ManageRights = "Manage roles and rights of user in this project";
  5015. $Task = "Task";
  5016. $Tasks = "Tasks";
  5017. $Member = "Member";
  5018. $Members = "Members";
  5019. $Role = "Role";
  5020. $Rate = "Rate";
  5021. $AddTask = "Add a new role";
  5022. $AddTasks = "Add a new role";
  5023. $AssignTask = "Assign a role";
  5024. $AssignTasks = "Assign roles";
  5025. $EditTask = "Edit this task";
  5026. $DeleteTask = "Delete this task";
  5027. $DeleteSystemTask = "This is a preset task. You can't delete a preset task.";
  5028. $SelectUser = "User";
  5029. $SelectTask = "Task";
  5030. $SelectTargetDate = "Date";
  5031. $TargetDate = "Date";
  5032. $Color = "Colour";
  5033. $TaskList = "Roles in this project";
  5034. $AssignedTasks = "Assigned tasks";
  5035. $ArticleManager = "Tasks manager";
  5036. $CommentManager = "Comment manager";
  5037. $BlogManager = "Project manager";
  5038. $ReadMore = "Read more...";
  5039. $DeleteThisArticle = "Delete this task";
  5040. $EditThisPost = "Edit this task";
  5041. $DeleteThisComment = "Delete this comment";
  5042. $NoArticles = "There are no tasks in this project. If you are the manager of this project, click on link 'New task' to write an task.";
  5043. $NoTasks = "No tasks";
  5044. $Rating = "Rating";
  5045. $RateThis = "Rate this task";
  5046. $SelectTaskArticle = "Select a task for this role";
  5047. $ExecuteThisTask = "A task for me";
  5048. $WrittenBy = "Written by";
  5049. $InBlog = "in the project";
  5050. $ViewPostsOfThisDay = "View tasks for today";
  5051. $PostsOf = "Tasks by";
  5052. $NoArticleMatches = "No tasks have been found. Check the word spelling or try another search.";
  5053. $SaveProject = "Save blog";
  5054. $Task1 = "Task 1";
  5055. $Task2 = "Task 2";
  5056. $Task3 = "Task 3";
  5057. $Task1Desc = "Task 1 description";
  5058. $Task2Desc = "Task 2 description";
  5059. $Task3Desc = "Task 3 description";
  5060. $blog_management = "Project management";
  5061. $Welcome = "Welcome !";
  5062. $Module = "Module";
  5063. $UserHasPermissionNot = "The user hasn't rights";
  5064. $UserHasPermission = "The user has rights";
  5065. $UserHasPermissionByRoleGroup = "The user has rights of its group";
  5066. $PromotionUpdated = "Promotion updated successfully";
  5067. $AddBlog = "Create a new project";
  5068. $EditBlog = "Edit a project";
  5069. $DeleteBlog = "Delete this project";
  5070. $Shared = "Shared";
  5071. $PermissionGrantedByGroupOrRole = "Permission granted by group or role";
  5072. $Reader = "Reader";
  5073. $BlogDeleted = "The project has been deleted.";
  5074. $BlogEdited = "The project has been edited.";
  5075. $BlogStored = "The project has been added.";
  5076. $CommentCreated = "The comment has been saved.";
  5077. $BlogAdded = "The article has been added.";
  5078. $TaskCreated = "The task has been created";
  5079. $TaskEdited = "The task has been edited.";
  5080. $TaskAssigned = "The task has been assigned.";
  5081. $AssignedTaskEdited = "The assigned task has been edited";
  5082. $UserRegistered = "The user has been registered";
  5083. $TaskDeleted = "The task has been deleted.";
  5084. $TaskAssignmentDeleted = "The task assignment has been deleted.";
  5085. $CommentDeleted = "The comment has been deleted.";
  5086. $RatingAdded = "A rating has been added.";
  5087. $ResourceAdded = "Resource added";
  5088. $LearningPath = "Learning paths";
  5089. $LevelUp = "level up";
  5090. $AddIt = "Add it";
  5091. $MainCategory = "main category";
  5092. $AddToLinks = "Add to the course links";
  5093. $DontAdd = "do not add";
  5094. $ResourcesAdded = "Resources added";
  5095. $ExternalResources = "External resources";
  5096. $CourseResources = "Course resources";
  5097. $ExternalLink = "External link";
  5098. $DropboxAdd = "Add the dropbox to this section.";
  5099. $AddAssignmentPage = "Add the Assignments tool to the course";
  5100. $ShowDelete = "Show / Delete";
  5101. $IntroductionText = "Introduction text";
  5102. $CourseDescription = "Course Description";
  5103. $IntroductionTextAdd = "Add a page containing the introduction text to this section.";
  5104. $CourseDescriptionAdd = "Add a page containing the course description to this section.";
  5105. $GroupsAdd = "Add the Groups tool to this section.";
  5106. $UsersAdd = "Add the Users tool to this section.";
  5107. $ExportableCourseResources = "Exportable course resources";
  5108. $LMSRelatedCourseMaterial = "Chamilo related course resources";
  5109. $LinkTarget = "Link's target";
  5110. $SameWindow = "In the same window";
  5111. $NewWindow = "In a new window";
  5112. $StepDeleted1 = "This";
  5113. $StepDeleted2 = "item was deleted in that tool.";
  5114. $Chapter = "Section";
  5115. $AgendaAdd = "Add event";
  5116. $UserGroupFilter = "Filter on groups/users";
  5117. $AgendaSortChronologicallyUp = "Ascending";
  5118. $ShowCurrent = "Current month";
  5119. $ModifyCalendarItem = "Edit event";
  5120. $Detail = "Detail";
  5121. $EditSuccess = "Event edited";
  5122. $AddCalendarItem = "Add event to agenda";
  5123. $AddAnn = "Add announcement";
  5124. $ForumAddNewTopic = "Forum: add new topic";
  5125. $ForumEditTopic = "Forum: edit topic";
  5126. $ExerciseAnswers = "Test : Answers";
  5127. $ForumReply = "Forum: reply";
  5128. $AgendaSortChronologicallyDown = "Descending";
  5129. $SendWork = "Upload paper";
  5130. $TooBig = "You didn't choose any file to send, or it is too big";
  5131. $DocModif = "paper title modified";
  5132. $DocAdd = "The file has been added to the list of publications.";
  5133. $DocDel = "File deleted";
  5134. $TitleWork = "Paper title";
  5135. $Authors = "Authors";
  5136. $WorkDelete = "Delete";
  5137. $WorkModify = "Edit";
  5138. $WorkConfirmDelete = "Do you really want to delete this file";
  5139. $AllFiles = "Actions on all files";
  5140. $DefaultUpload = "Default setting for the visibility of newly posted files";
  5141. $NewVisible = "New documents are visible for all users";
  5142. $NewUnvisible = "New documents are only visible for the teacher(s)";
  5143. $MustBeRegisteredUser = "Only registered users of this course can publish documents.";
  5144. $ListDel = "Delete list";
  5145. $CreateDirectory = "Validate";
  5146. $CurrentDir = "current folder";
  5147. $UploadADocument = "Upload a document";
  5148. $EditToolOptions = "Assignments settings";
  5149. $DocumentDeleted = "Document deleted";
  5150. $SendMailBody = "A user posted a document in the Assignments tool";
  5151. $DirDelete = "Delete directory";
  5152. $ValidateChanges = "Validate changes";
  5153. $FolderUpdated = "Folder updated";
  5154. $EndsAt = "Ends at (completely closed)";
  5155. $QualificationOfAssignment = "Assignment scoring";
  5156. $MakeQualifiable = "Add to gradebook";
  5157. $QualificationNumberOver = "Score";
  5158. $WeightInTheGradebook = "Weight inside assessment";
  5159. $DatesAvailables = "Date limits";
  5160. $ExpiresAt = "Posted sending deadline";
  5161. $DirectoryCreated = "Directory created";
  5162. $Assignment = "Assignments";
  5163. $ExpiryDateToSendWorkIs = "Deadline for assignments";
  5164. $EnableExpiryDate = "Enable handing over deadline (visible to learners)";
  5165. $EnableEndDate = "Enable final acceptance date (invisible to learners)";
  5166. $ImpossibleToSaveTheDocument = "Impossible to save the document";
  5167. $EndDateCannotBeBeforeTheExpireDate = "End date cannot be before the expiry date";
  5168. $SelectAFilter = "Select a filter";
  5169. $FilterByNotExpired = "Filter by not expired";
  5170. $FilterAssignments = "Filter assignments";
  5171. $WeightNecessary = "Minimum score expected";
  5172. $QualificationOver = "Score";
  5173. $ExpiryDateAlreadyPassed = "Expiry date already passed";
  5174. $EndDateAlreadyPassed = "End date already passed";
  5175. $MoveXTo = "Move %s to";
  5176. $QualificationMustNotBeMoreThanQualificationOver = "The mark cannot exceed maximum score";
  5177. $ModifyDirectory = "Validate";
  5178. $DeleteAllFiles = "Delete all papers";
  5179. $BackToWorksList = "Back to Assignments list";
  5180. $EditMedia = "Edit and mark paper";
  5181. $AllFilesInvisible = "All papers are now invisible";
  5182. $FileInvisible = "The file is now invisible";
  5183. $AllFilesVisible = "All papers are now visible";
  5184. $FileVisible = "The file is now visible";
  5185. $ButtonCreateAssignment = "Create assignment";
  5186. $AssignmentName = "Assignment name";
  5187. $CreateAssignment = "Create assignment";
  5188. $FolderEdited = "Folder edited";
  5189. $UpdateWork = "Update this task";
  5190. $MakeAllPapersInvisible = "Make all papers invisible";
  5191. $MakeAllPapersVisible = "Make all papers visible";
  5192. $AdminFirstName = "Administrator first name";
  5193. $InstituteURL = "URL of this company";
  5194. $UserDB = "User DB";
  5195. $PleaseWait = "Continue";
  5196. $PleaseCheckTheseValues = "Please check these values";
  5197. $PleasGoBackToStep1 = "Please go back to step 1";
  5198. $UserContent = "<p><b>Adding users</b></p> <p>You can subscribe existing learners one by one to your course, by clicking on the link 'Subscribe users to this course'. Usually however it's better to open your course to self-registration and let learners register themselves. </p> <p><b>Description</b></p> <p>The description has no computer related function and does not indicate any particular rights or privileges within the system. It simply indicates who is who, in human terms. You can therefore modify this by clicking on the pencil, then typing whatever you want: professor, assistant, student, visitor, expert etc.</p><p><b>Admin rights</b></p><p>Admin rights, on the other hand, provide technical authorization to modify the content and organization of this course area. You can choose between allowing full admin rights or none.</p><p>To allow an assistant, for instance, to co-admin the area, you need to be sure he/she is already registered, then click on the pencil, then check 'Teacher', then 'Ok'.</p><p><b>Co-Trainers</b></p><p>To mention the name of a co-teacher in the heading (co-chairman, etc.), use the 'Course settings' tool. This modification does not automatically register your co-Trainer as a course member. The 'Teachers' field is completely independent of the 'Users' list.</p> <p><b>Tracking and Personal Home Pages</b></p> <p>In addition to showing the users list and modifying their rights, the Users tool also shows individual tracking and allows the teacher to define headings for personal home pages to be completed by users.</p>";
  5199. $GroupContent = "<p><b>Introduction</b></p><p>This tool allows you to create and manage workgroups. On first creation (Create groups), groups are 'empty'. There are many ways to fill them:<ul><li>automatically ('Fill groups (random)'),</li><li>manually ('Edit'),</li><li>self-registration by users (Groups settings: 'Self registration allowed...').</li></ul>These three ways can be combined. You can, for instance, first ask users to self-register.Then if you find some of them didn't register, decide to fill groups automatically (random) in order to complete them. You can also edit each group to determine membership, user by user, after or before self-registration and/or automatically on registration.</p><p>Filling groups, whether automatically or manually, is possible only for users registered on the course. The users list is visible in <b>Users</b> tool. </p><hr noshade size=1><p><b>Create groups</b></p><p>To create new groups, click on 'Create new group(s)' and decide the number of groups to create.</p><hr noshade size=1><p><b>Group settings</b></p><p>You can determine Group settings globally (for all groups).<b>Users may self-register in groups</b>:<p>You create empty groups, users self-register.If you have defined a maximum number, full groups do not accept new members.This method is handy for trainers unfamiliar with the users list when creating groups.</p><b>Tools</b>:</p><p>Every group is assigned either a forum (private or public) or a Documents area(a shared file manager) or (in most cases) both.</p><hr noshade size=1><p><b>Manual editing</b></p><p>Once groups have been created (Create groups), you will see, at the bottom of the page, a list of groups along with with several options:<ul><li><b>Edit</b>Manually modify group name, description, tutor, members list.</li><li><b>Delete</b> Delete a group.</li></ul><hr noshade size=1>";
  5200. $ExerciseContent = "<p>The tests tool allows you to create tests containing as many questions as you like.<br><br> You can choose from a range of question formats clearly displayed at the top of the page when you create a test including (for example):<br><br><ul> <li>Multiple choice (single or multiple answers)</li> <li>Matching</li> <li>Fill in the blanks etc.</li></ul>A test can include any number and combination of questions and question formats.</p><hr><b>Test creation</b><p>To create a test, click on the \"New test\" link.<br><br>Type a name for the test, as well as an optional description.<br><br>You can add various elements to this, including audio or video files, e.g. for listening comprehension, but take care to make such files as small as possible to optimise download time (e.g. use mp3 rather than wav files - they're far smaller but perfectly good quality). <br><br>You can also choose between two modes of presentation:<br><br><ul> <li>Questions on an single page</li> <li>One question per page (sequentially)</li></ul>and opt for questions to be randomly organised when the test is run.<br><br>Finally, save your test. You will be taken to the question administration.</p><hr><b>Adding a question</b><p>You can now add a question to the newly created test. You can if you wish include a description and/or an image. To create the test types mentioned above, follow the following steps: </p><hr><b>Multiple choice</b><p>In order to create a MAQ / MCQ :<br><br><ul> <li>Define the answers for your question. You can add or delete an answer by clicking on the right-hand button</li> <li>Check the left box for the correct answer(s)</li> <li>Add an optional comment. This comment won't be seen by the user until he/she has answered the question</li> <li>Give a weighting to each answer. The weighting can be any positive or negative integer (or zero)</li> <li>Save your answers</li></ul></p><hr><b>Fill in the blanks</b><p>This allows you to create a cloze passage. The purpose is to prompt the user to find words that you have removed from the text.<br><br>To remove a word from the text, and thus create a blank, put brackets [like this] around it.<br><br>Once the text has been typed and blanks defined, you can add a comment that will be seen by the learner depending on the reply to the question.<br><br>Save your text, and you will be taken to the next step allowing you to assign a weighting to each blank. For example, if the question is worth 10 points and you have 5 blanks, you can give a weighting of 2 points to each blank.</p><hr><b>Matching</b><p>This answer type can be chosen so as to create a question where the user will have to connect elements from list A with elements from list B.<br><br>It can also be used to ask the user to arrange elements in a given order.<br><br>First, define the options from which the user will be able to choose the best answer. Then, define the questions which will have to be linked to one of the options previously defined. Finally, connect elements from the first list with those of the second list via the drop-down menu.<br><br>Note: Several elements from the first unit might point to the same element in the second unit.<br><br>Assign a weighting to each correct match, and save your answer.</p><hr><b>Modifying a test</b><p>In order to modify a test, the principle is the same as for creating a test. Just click on the picture <img src=\"../img/edit.gif\" border=\"0\" align=\"absmiddle\"> beside the test to modify, and follow the instructions above.</p><hr><b>Deleting a test</b><p>In order to delete a test, click on the picture <img src=\"../img/delete.gif\" border=\"0\" align=\"absmiddle\"> beside the test to delete it.</p><hr><b>Enabling a test</b><p>For a test can be used, you have to enable it by clicking on the picture <img src=\"../img/invisible.gif\" border=\"0\" align=\"absmiddle\"> beside the test name.</p><hr><b>Running the test</b><p>You can try out your test by clicking on its name in the tests list.</p><hr><b>Random questions</b><p>Whenever you create/modify a test, you can decide if you want questions to be drawn in a random order from amongst all test questions.<br><br>By enabling this option, questions will be drawn in a different order every time a user runs the test.<br><br>If you have got a large number of questions, you can opt to randomly draw only x-number of questions from the questions available.</p><hr><b>Questions pool</b><p>When you delete a test, its questions are not removed from the database, so they can be recycled back into another test via the questions pool.<br><br>The questions pool also allows you to re-use the same question in several tests.<br><br>By default, all the questions pertaining to your course are hidden. You can display the questions related to a test, by chosing 'filter' in the drop-down menu.<br><br>Orphan questions are questions that don not belong to any test.</p><hr><b>HotPotatoes Tests</b><p>You can import HotPotatoes tests into a Chamilo portal, to use in the Tests tool. The results of these tests are stored the same way as the results of Chamilo tests and as such can be readily monitored using the Reporting tool. In the case of simple tests, we recommend you use html or htm format; if your test contains pictures, a zip file upload is the most convenient way.</p><p>Note: You can also include HotPotatoes Tests as a step in the Learning Path.</p><b>Method of import</b><ul> <li>Select the file on your computer using the Browse button <input type=submit value=Browse name=submit2>\ton the right of your screen.</li>\t\t<li>\t\t\tLaunch the upload with the Upload Button <input type=submit value=Upload name=submit2>.\t\t</li>\t\t<li>\t\t\tYou can open the test by clicking onto its name.\t\t</li>\t</ul>\t<br><b>Useful link</b><br><ul><li>Hot Potatoes home page : <ahref=\"http://web.uvic.ca/hrd/halfbaked/\">http://web.uvic.ca/hrd/halfbaked/</a></li></li></ul>";
  5201. $PathContent = "The Course tool supports two approaches :<ul><li>Create a new course (allowing you to author your own content)</li><li>Import SCORM course</li></ul><img src=\"../img/path_help.gif\"><p><b>What is a Learning Path?</b></p><p>A Learning Path allows for the presentation of a sequence of learning experiences or activities arranged in distinct sections (in this sense, the Learning Path is what distinguishes a 'course' from a mere repository of random documents). It can be content-based (serving as a table of contents) or activities-based, serving as an agenda or program of action necessary to understand and apply a particular area of knowledge or skill.</p><p>In addition to being structured, a Learning Path can also be <i>sequential</i>, meaning that the completion of certain steps constitute pre-requisites for accessing others (i.e. 'you cannot go to learning object 2 before learning object 1'). Your sequence can be <i>suggestive</i> (simply displaying steps one after the other) or <i>prescriptive</i> (involving pre-requisites so that learners are required to follow steps in a particular order).</p><p><b>How do I create my own Learning Path (Course)?</b></p><p>Proceed to the 'Learning Path' section. There you can create as many courses/paths as you wish by clicking the <i>Create a new course</i> tool. You will need to choose a name for the course/path (e.g. <i>Unit 1</i> if you plan to create several units within the overall course). To begin with, the course is empty, waiting for you to add sections and learning objects to it.<br>If you set a course to Visible, it will appear as a new tool on the course homepage. This makes it easier and clearer for students to access.</p><p><b>What learning objects can I add?</b></p><p>All Chamilo tools, activities and content that you consider useful and relevant to your course can be added :<br><ul><li>Separate documents (texts, pictures, Office docs, ...)</li><li>Forums as a whole</li><li>Topics</li><li>Links</li><li>Chamilo Tests</li><li>HotPotatoes Tests<br />(note :tests made invisible on the homepage, but included in a path, become visible for learners only as they work through the course.)</li><li>Assignments</li><li>External links</li></ul></p><p><b>Other features</b></p><p>Learners can be asked to follow your course in a given order, as you can set <u>pre-requisites</u>. This means for example that learners cannot go to e.g. Quiz 2 until they have read e.g. Document 1. All learning objects have a status:<i>completed</i> or <i>incomplete</i>, so the progress of learners is clearly reported.</p><p>If you alter the original title of a learning object, the new name will appear in the course, but the original title will not be deleted. So if you want test8.doc to appear as 'Final Exam' in the path, you do not have to rename the file, you can use the new title in the path. It is also useful to give new titles to links which are too long.</p><p>When you're finished, don't forget to check Display mode, (showing, as in learner view, the table of contents on the left and the learning objects on the right,one at a time.)</p><br><p><b>What is a SCORM course and how do I import one?</b></p><p>The learning path tool allows you to upload SCORM-compliant courses.</p><p>SCORM (<i>Sharable Content Object Reference Model</i>) is a public standard followed by major e-Learning companies like NETg, Macromedia, Microsoft, Skillsoft, etc. They act at three levels:</p><ul><li><b>Economy</b> : SCORM renders whole courses or small content units reusable on different Learning Management Systems (LMS) through the separation of content and context,</li><li><b>Pedagogy</b> : SCORM integrates the notion of pre-requisite or <i>sequencing</i> (<i>e.g. </i>\"You cannot go to chapter 2 before passing Quiz 1\"),</li><li><b>Technology</b> : SCORM generates a table of contents as an abstraction layer located outside the content and the LMS. It helps both communicate with each other. Mainly communicated are <i>bookmarks</i>(\"Where is John in the course?\"), <i>scoring</i> (\"How did John pass the test?\") and <i>time</i> (\"How much time did John spent in chapter 1?\").</li></ul><b>How can I create a SCORM-compliant Learning Path?</b><br><br>The obvious way is to use the Chamilo Authoring tool. However, you may prefer to create complete SCORM compliant websites locally on your own computer before uploading it onto your Chamilo platform. In this case, we recommend the use of a sophisticated tool such as Lectora®, eXe Learning® or Reload®<br></p><p>";
  5202. $DescriptionContent = "<p>The Course Description tool prompts you to comprehensively describe your course in a systematic way. This description can be used to provide learners with an overview of what awaits them, and can be helpful when you review and evaluate your course. </p> The items merely offer suggestions. If you want to write your own course description, simply create your own headings and descriptions by selecting the 'Other' tool. </p> Otherwise, to complete a description of the course, click on each image, fill it with your text/content and submit. </p>";
  5203. $LinksContent = "<p>The Links tool allows you to create a library of resources for your students, particularly of resources that you have not created yourself.</p><p>As the list grows, it might prove useful to organise it into categories to help your students find the right information at the right place. You can edit every link to re-assign it to a new category (you will need to create this category first).</p><p>The Description field can be used to provide advance-information on the target web pages but also to describe what you expect the student to do with the link. If, for instance, you point to a website on Aristotle, the description field may ask the student to study the difference between synthesis and analysis.";
  5204. $MycoursesContent = "<p> As soon as you log in to the system, you will be taken to your own main page. Here you will see the following: <li> <b> My Courses </b> in the centre of the page, lists the courses in which you are enrolled, with an option for you to create new courses (using the button in the right menu) </li> In the header section, <b> My Profile </b> allows you to change your password, upload your photo to the system or change your username, </li> <b> My Calendar </b>: contains the events within the courses for which you are registered, </li> in the right menu: <b> Edit my list of courses </b> allows you to enroll in courses as learner, (provided the trainer/teacher has authorized entry. here you can also unsubscribe from a course, </li> Links <b> Support Forum </b> and <b> Documentation </b> refer you to the main Chamilo site, where you can ask questions or find up to date information about Chamilo. </li> </ ul> To enter a course (left side of the screen), click on its title. Your profile may vary from course to course. It could be that you are a teacher in one course and a learner in another. In courses for which you are responsible, you have access to the editing tools designed for authoring and managing students, while in courses where you learn, you access a more limited range of tools appropriate for undertaking the course.</p> The form your own main page takes can vary from one platform to another depending on the options enabled by the system administrator. Thus, for example, there may be some cases where you do not have access to course creation even as a teacher, because this particular function is managed by others within your institution. </p>";
  5205. $AgendaContent = "<p> The Agenda tool appears both as a calendar within each course and as a personal diary tool for each student providing an overview of events in the courses in which they are enrolled. (Groups can also have their own Agenda.) </ p> Users can use the Agenda, which displays course content and activites, as a reference tool to organise their day to day or week to week learning.<p>In addition to being visible in the agenda, new events are indicated to the learner whenever he/she logs in. The system sees what has been added since his/her last visit and icons appear on the portal home page beside the courses indicating new events and announcements.</p> </p> If you want to organize students' work in a time-related way, it is best to use the Learning Paths tool as a way of charting a logical progression through various activites and content through the presentation of a formal table of contents.</p>";
  5206. $AnnouncementsContent = "<p> The Announcements tool allows you to send an e-mail to some or all of your students, or to specific groups. to might want to alert them to the addition of a new document, to remind them of a deadline for submission of an assignment or to highlight and share a particularly good piece of work. Sending such e-mail announcements can also serve as a useful prompt to re-engage students who have not visited the site for some time (as long as it's not overdone!). </p> <b> Contacting specific users </b> <p> In addition to sending a general one to all members of the course, you can send an e-mail to one or more individuals/groups groups. When you create a new announcement, just click <i>Visible to</i> and select users from the left hand lists and and add them as recipients using the arrows.</p>";
  5207. $ChatContent = "<p>The Chat tool allows you to chat 'live' with your students in real time. </p> In contrast to most commercial chat tools, the chat in Chamilo is web based and does not require any additional install (e.g. MSN® Yahoo Messenger®. Skype® etc.) A key advantage of this solution is therefore it's immediate availablilty for students, allowing chat to be easily integrated into the course. Moreover, the Chamilo chat tool will automatically archive discussions and save them for ready access later via the Documents tool. (Be warned that the message may take from 1 to 5 seconds to refresh with each exchange - this doesn't mean anything is wrong!!). </p> If learners have uploaded a profile picture it will appear (reduced in size) in the left column - otherwise, it will show a default image. </p> It is the responsibility of the teacher to delete threads whenever he/she deems relevant. </p> <b>Educational Use</b> <p>Adding Chat to your course is not always a good idea. To make best use of this tool, you need to ensure discussions remains focussed on course content. You might, for example, decide to keep the chat facility hidden until it is time for a 'formal' scheduled session. That way,while the freedom of discussions may admittedly be curbed, you are able to better guarantee thatsuch live meetings will be beneficial .</p>";
  5208. $WorkContent = "<p>The assignments tool is a very simple tool that allows your students to upload documents to the course.It can be used to accept responses to open questions from individuals or groups, or for uploading any other form of document</p><p>You can make files visible to all students by default, or only visible to yourself according to the requirements of your course. Making all files visible is useful when, for instance, you want to ask students to share opinions on each others papers, or when you want to give them experience in publishing texts globally. Keep files invisible if, for example, you want ask everybody the same question but to avoid 'cheating'. Making the documents invisible will also allow you to have some form of control over when a document is available to all the other students. </p><p>If you want students to hand in a document for grading you're best, from within the tool, to assign submissions to a folder.</p> <p>You can use the the tool to set deadlines and instructions for delivery, as well as a maximum grade/score.</p>";
  5209. $TrackingContent = "<p>The Reporting tool helps you track your students' attendance and progress: Did they connect to the system, When? How many times? How much do they score in tests? Did they already upload their assignment paper? When? If you use SCORM courses, you can even track how much time a student spent on a particular module or chapter. Reporting provides two levels of information:<ul><li><b>Global</b>: How many students have accessed the course? What are the most frequently visited pages and links?</i><li><b>Specific</b>: What pages has John Doe visited? What score does he get in tests? When did he last connect to the platform?</li></ul>";
  5210. $HSettings = "Course settings Help";
  5211. $SettingsContent = "<p>The Course Settings allows you to manage the global parameters of your course: Title, code, language, name of trainer etc.</p><p>The options situated in the centre of the page deal with confidentiality settings : is the course public or private? Can users register to it? You can use these settings dynamically e.g. allow self-registration for one week > ask your students to register > close access to self-registration > remove possible intruders through the Users list. This way you keep control of who is registered while avoiding the administrative hassle of registering them yourself.</p>(Note - some organizations prefer not to use this method and opt to centralise registration. In this case, participants cannot enrol in your course at all, even if you, as a trainer / teacher, wish to give them access. To check this, look at the home page of your campus (as opposed to your course homepage) to see if the 'Register' link is present.) </p> <p>At the bottom of the page, you can back up the course and delete it. Backup will create a file on the server and allow you to copy it on your own Hard Disk locally so that there will be two backups each in different places. If you back up a course and then delete it you will not be be able to restore it yourself, but the system administrator can do this for you if you give him/her the code of your course. Backing up a course is also a good way to get all your documents transferred to your own computer. You will need a tool, like Winzip® to UNZIP the archive. Note that backing up a course does not automatically remove it.</p>";
  5212. $HExternal = "Add a Link help";
  5213. $ExternalContent = "<p>Chamilo is a modular tool. You can hide and show tools whenever you want, according to the requirements of your project or to a particular chronological part of it. But you can also add tools or pages to your home page that you have created yourself or that come from outwith your Chamilo portal. That way, you can customise your course home page to make it your own.</p><p>In so doing, you will doubtless want to add your own links to the page. Links can be of two types:<ul><li><b>External link</b>: you create a link on your home page to a website situated outside your course area. In this case, you will select 'Target= In a new window' because you don't want that website to replace your Chamilo environment.</li><li><b>Internal link</b>: you link to a page or a tool inside your Chamilo course. To do this, first go to the relevant page (or document, or tool), copy its URL from the address bar of your browser (CTRL+C), then you go to 'Add link' and paste this URL in the URL field, giving it whatever name you want. In this case, you will select 'Target=Same window' because you want to keep the Chamilo banner on top and the link page in the same environment.</li></ul>Once created, links cannot be edited. To modify them, the only solution is to deactivate and delete them, then start over.</p>";
  5214. $ClarContent3 = "Clear content";
  5215. $ClarContent4 = "Clear content";
  5216. $ClarContent1 = "Clear content";
  5217. $ClarContent2 = "Clear content";
  5218. $HGroups = "Groups Help";
  5219. $GroupsContent = "Content of the groups";
  5220. $Guide = "Manual";
  5221. $YouShouldWriteAMessage = "You should write a message";
  5222. $MessageOfNewCourseToAdmin = "This message is to inform you that has created a new course on platform";
  5223. $NewCourseCreatedIn = "New course created in";
  5224. $ExplicationTrainers = "The teacher is set as you for now. You can change this setting later in the course configuration settings";
  5225. $InstallationLanguage = "Installation Language";
  5226. $ReadThoroughly = "Please read the following requirements thoroughly.";
  5227. $WarningExistingLMSInstallationDetected = "Warning!<br />The installer has detected an existing Chamilo platform on your system.";
  5228. $NewInstallation = "New installation";
  5229. $CheckDatabaseConnection = "Check database connection";
  5230. $PrintOverview = "Show Overview";
  5231. $Installing = "Install";
  5232. $of = "of";
  5233. $MoreDetails = "For more details";
  5234. $ServerRequirements = "Server requirements";
  5235. $ServerRequirementsInfo = "Your server must provide the following libraries to enable all features of Chamilo. The missing libraries shown in orange letters are optional, but some features of Chamilo might be disabled if they are not installed. You can still install those libraries later on to enable the missing features.";
  5236. $PHPVersion = "PHP version";
  5237. $Support = "Support";
  5238. $PHPVersionOK = "Your PHP version matches the minimum requirement:";
  5239. $RecommendedSettings = "Recommended settings";
  5240. $RecommendedSettingsInfo = "Recommended settings for your server configuration. These settings are set in the php.ini configuration file on your server.";
  5241. $Actual = "Currently";
  5242. $DirectoryAndFilePermissions = "Directory and files permissions";
  5243. $DirectoryAndFilePermissionsInfo = "Some directories and the files they include must be writable by the web server in order for Chamilo to run (user uploaded files, homepage html files, ...). This might imply a manual change on your server (outside of this interface).";
  5244. $NotWritable = "Not writable";
  5245. $Writable = "Writable";
  5246. $ExtensionLDAPNotAvailable = "LDAP Extension not available";
  5247. $ExtensionGDNotAvailable = "GD Extension not available";
  5248. $LMSLicenseInfo = "Chamilo is free software distributed under the GNU General Public licence (GPL).";
  5249. $IAccept = "I Accept";
  5250. $ConfigSettingsInfo = "The following values will be written into your configuration file";
  5251. $GoToYourNewlyCreatedPortal = "Go to your newly created portal.";
  5252. $FirstUseTip = "When you enter your portal for the first time, the best way to understand it is to create a course with the 'Create course' link in the menu and play around a little.";
  5253. $Version_ = "Version";
  5254. $UpdateFromLMSVersion = "Update from Chamilo";
  5255. $PleaseSelectInstallationProcessLanguage = "Please select the language you'd like to use when installing";
  5256. $AsciiSvgComment = "Enable the AsciiSVG plugin in the WYSIWYG editor to draw charts from mathematical functions.";
  5257. $HereAreTheValuesYouEntered = "Here are the values you entered";
  5258. $PrintThisPageToRememberPassAndOthers = "Print this page to remember your password and other settings";
  5259. $TheInstallScriptWillEraseAllTables = "The install script will erase all tables of the selected database. We heavily recommend you do a full backup of them before confirming this last install step.";
  5260. $Published = "Published";
  5261. $ReadWarningBelow = "read warning below";
  5262. $SecurityAdvice = "Security advice";
  5263. $YouHaveMoreThanXCourses = "You have more than %d courses on your Chamilo platform ! Only %d courses have been updated. To update the other courses, %sclick here %s";
  5264. $ToProtectYourSiteMakeXAndYReadOnly = "To protect your site, make %s and %s (but not their directories) read-only (CHMOD 444).";
  5265. $HasNotBeenFound = "has not been found";
  5266. $PleaseGoBackToStep1 = "Please go back to Step 1";
  5267. $HasNotBeenFoundInThatDir = "has not been found in that directory";
  5268. $OldVersionRootPath = "Old version's root path";
  5269. $NoWritePermissionPleaseReadInstallGuide = "Some files or folders don't have writing permission. To be able to install Chamilo you should first change their permissions (using CHMOD). Please read the %s installation guide %s";
  5270. $DBServerDoesntWorkOrLoginPassIsWrong = "The database server doesn't work or login / pass is bad";
  5271. $PleaseGoBackToStep = "Please go back to Step";
  5272. $DBSettingUpgradeIntro = "The upgrade script will recover and update the Chamilo database(s). In order to do this, this script will use the databases and settings defined below. Because our software runs on a wide range of systems and because all of them might not have been tested, we strongly recommend you do a full backup of your databases before you proceed with the upgrade!";
  5273. $ExtensionMBStringNotAvailable = "MBString extension not available";
  5274. $ExtensionMySQLNotAvailable = "MySQL extension not available";
  5275. $LMSMediaLicense = "The images and media galleries of Chamilo use images from Nuvola, Crystal Clear and Tango icon galleries. Other images and media like diagrams and Flash animations are borrowed from Wikimedia and Ali Pakdel's and Denis Hoa's courses with their agreement and released under BY-SA Creative Commons license. You may find the license details at <a href=\"http://creativecommons.org/licenses/by-sa/3.0/\">the CC website</a>, where a link to the full text of the license is provided at the bottom of the page.";
  5276. $OptionalParameters = "Optional parameters";
  5277. $FailedConectionDatabase = "The database connection has failed. This is generally due to the wrong user, the wrong password or the wrong database prefix being set above. Please review these settings and try again.";
  5278. $UpgradeFromLMS16x = "Upgrade from Chamilo 1.6.x";
  5279. $UpgradeFromLMS18x = "Upgrade from Chamilo 1.8.x";
  5280. $GroupPendingInvitations = "Group pending invitations";
  5281. $Compose = "Compose";
  5282. $BabyOrange = "Baby Orange";
  5283. $BlueLagoon = "Blue lagoon";
  5284. $CoolBlue = "Cool blue";
  5285. $Corporate = "Corporate";
  5286. $CosmicCampus = "Cosmic campus";
  5287. $DeliciousBordeaux = "Delicious Bordeaux";
  5288. $EmpireGreen = "Empire green";
  5289. $FruityOrange = "Fruity orange";
  5290. $Medical = "Medical";
  5291. $RoyalPurple = "Royal purple";
  5292. $SilverLine = "Silver line";
  5293. $SoberBrown = "Sober brown";
  5294. $SteelGrey = "Steel grey";
  5295. $TastyOlive = "Tasty olive";
  5296. $QuestionsOverallReportDetail = "In this report you see the results of all questions";
  5297. $QuestionsOverallReport = "Questions' overall report";
  5298. $NameOfLang['bosnian'] = "bosnian";
  5299. $NameOfLang['czech'] = "czech";
  5300. $NameOfLang['dari'] = "dari";
  5301. $NameOfLang['dutch_corporate'] = "dutch corporate";
  5302. $NameOfLang['english_org'] = "english for organisations";
  5303. $NameOfLang['friulian'] = "friulian";
  5304. $NameOfLang['georgian'] = "georgian";
  5305. $NameOfLang['hebrew'] = "hebrew";
  5306. $NameOfLang['korean'] = "korean";
  5307. $NameOfLang['latvian'] = "latvian";
  5308. $NameOfLang['lithuanian'] = "lithuanian";
  5309. $NameOfLang['macedonian'] = "macedonian";
  5310. $NameOfLang['norwegian'] = "norwegian";
  5311. $NameOfLang['pashto'] = "pashto";
  5312. $NameOfLang['persian'] = "persian";
  5313. $NameOfLang['quechua_cusco'] = "quechua from Cusco";
  5314. $NameOfLang['romanian'] = "romanian";
  5315. $NameOfLang['serbian'] = "serbian";
  5316. $NameOfLang['slovak'] = "slovak";
  5317. $NameOfLang['swahili'] = "swahili";
  5318. $NameOfLang['trad_chinese'] = "traditional chinese";
  5319. $ChamiloInstallation = "Chamilo installation";
  5320. $PendingInvitations = "Pending invitations";
  5321. $SessionData = "Session's data";
  5322. $SelectFieldToAdd = "Select user profile field to add";
  5323. $MoveElement = "Move element";
  5324. $ShowGlossaryInExtraToolsTitle = "Show the glossary terms in extra tools";
  5325. $ShowGlossaryInExtraToolsComment = "From here you can configure how to add the glossary terms in extra tools as learning path and exercice tool";
  5326. $HSurvey = "Survey Help";
  5327. $SurveyContent = "<p>Getting proper feedback on your courses is extremely important. You will find the dedicated Survey tool invaluable for getting effective feedback from users. </p> <p><b>Creating a new survey</b></p> <p> Click on the link 'Create a new survey' and fill in the fields 'Survey code' and 'Survey title'. With the help of the calendar, you can control the duration of your survey. There's no need to keep it open for a whole year; allow access for a few days at the end of the course program. Filling in the text fields 'Survey introduction' and 'Survey thanks' is also good practice; this will add clarity and a certain friendliness to your survey.</p> <p><b>Adding questions to the survey</b></p> <p>Once the survey outline is created, it is up to you to create the questions. The 'Survey' tool has many question types: open/closed questions, percentage, QCM, multiple responses... You should certainly find everything you need for your (ever increasing) feedback requirements.</p> <p><b>Previewing the survey</b></p><p>Once you have created questions, you may want to check what the survey will look like to learners. Click on the 'Preview' icon and the preview screen will show you exactly this.</p> <p><b>Publishing the survey</b></p> <p>Happy with the preview? Any modifications to be made? No? Then click on the icon 'Publish survey' to send the survey to the selected list of recipients. As with creating groups, use the list 'Users of this course' on the left and the one for 'receivers' on its right to arrange this. Next, fill in the e-mail subject 'Title of the e-mail' and the content, 'Text of the e-mail'. Potential surveyees will be alerted by e-mail of the availability of a survey. Think carefully about the wording of the e-mail because it will play a big part in motivating users to take the survey.</p> <p><b>Survey reports</b></p> Analysing surveys is a tedious task. The survey Reporting tool will help with analysis as it sorts reports according to question, user, comparisons etc... <p><b>Managing surveys</b></p> When managing surveys you will see some new icons, apart from the usual 'Edit' and 'Delete' options. You can preview, publish and keep track of your surveys and responses using these.</p>";
  5328. $HBlogs = "Project help";
  5329. $BlogsContent = "<p> The Project tool facilitates collaborative project work. </p> One way to use the tool is to use it to assign authors charged with keeping written reports on activities throughout the day/week. </p> Coupled with this is a task management tool through which you can assign a relevant task to any of the designated authors (eg to report on the evolution of safety standards in the business). </p> An item representing new content is called an <i> article </i>. To create a new article, just follow the link in the menu prompting you to do. To edit (if you are the author of the article) or add a comment to an article, just click on the title of this article. </p>";
  5330. $FirstSlide = "First slide";
  5331. $LastSlide = "Last slide";
  5332. $TheDocumentHasBeenDeleted = "The document has been deleted.";
  5333. $YouAreNotAllowedToDeleteThisDocument = "You are not allowed to delete this document";
  5334. $AdditionalProfileField = "Add user profile field";
  5335. $ExportCourses = "Export courses";
  5336. $IsAdministrator = "Is administrator";
  5337. $IsNotAdministrator = "Is not administrator";
  5338. $AddTimeLimit = "Add time limit";
  5339. $EditTimeLimit = "Edit time limit";
  5340. $TheTimeLimitsAreReferential = "The time limit of a category is referential, will not affect the boundaries of a training session";
  5341. $FieldTypeTag = "User tag";
  5342. $SendEmailToAdminTitle = "E-mail alert on course creation";
  5343. $SendEmailToAdminComment = "Send an email to the platform administrator each time a teacher creates a new course";
  5344. $UserTag = "User tag";
  5345. $SelectSession = "Select session";
  5346. $SpecialCourse = "Special course";
  5347. $DurationInWords = "Duration in words";
  5348. $UploadCorrection = "Upload correction";
  5349. $MathASCIImathMLTitle = "ASCIIMathML mathematical editor";
  5350. $MathASCIImathMLComment = "Enable ASCIIMathML mathematical editor";
  5351. $YoutubeForStudentsTitle = "Allow learners to insert videos from YouTube";
  5352. $YoutubeForStudentsComment = "Enable the possibility that learners can insert Youtube videos";
  5353. $BlockCopyPasteForStudentsTitle = "Block learners copy and paste";
  5354. $BlockCopyPasteForStudentsComment = "Block learners the ability to copy and paste into the WYSIWYG editor";
  5355. $MoreButtonsForMaximizedModeTitle = "Buttons bar extended";
  5356. $MoreButtonsForMaximizedModeComment = "Enable button bars extended when the WYSIWYG editor is maximized";
  5357. $Editor = "HTML Editor";
  5358. $GoToCourseAfterLoginTitle = "Go directly to the course after login";
  5359. $GoToCourseAfterLoginComment = "When a user is registered in one course, go directly to the course after login";
  5360. $AllowStudentsDownloadFoldersTitle = "Allow learners to download directories";
  5361. $AllowStudentsDownloadFoldersComment = "Allow learners to pack and download a complete directory from the document tool";
  5362. $AllowStudentsToCreateGroupsInSocialTitle = "Allow learners to create groups in social network";
  5363. $AllowStudentsToCreateGroupsInSocialComment = "Allow learners to create groups in social network";
  5364. $AllowSendMessageToAllPlatformUsersTitle = "Allow sending messages to any platform user";
  5365. $AllowSendMessageToAllPlatformUsersComment = "Allows you to send messages to any user of the platform, not just your friends or the people currently online.";
  5366. $TabsSocial = "Social network tab";
  5367. $MessageMaxUploadFilesizeTitle = "Max upload file size in messages";
  5368. $MessageMaxUploadFilesizeComment = "Maximum size for file uploads in the messaging tool (in Bytes)";
  5369. $ChamiloHomepage = "Chamilo homepage";
  5370. $ChamiloForum = "Chamilo forum";
  5371. $ChamiloExtensions = "Chamilo extensions";
  5372. $ChamiloGreen = "Chamilo Green";
  5373. $ChamiloRed = "Chamilo red";
  5374. $MessagesSent = "Number of messages sent";
  5375. $MessagesReceived = "Number of messages received";
  5376. $CountFriends = "Contacts count";
  5377. $ToChangeYourEmailMustTypeYourPassword = "In order to change your e-mail address, you are required to confirm your password";
  5378. $Invitations = "Invitations";
  5379. $MyGroups = "My groups";
  5380. $ExerciseWithFeedbackWithoutCorrectionComment = "Note: This test has been setup to hide the expected answers.";
  5381. $Social = "Social";
  5382. $MyFriends = "My friends";
  5383. $CreateAgroup = "Create a group";
  5384. $UsersGroups = "Users, Groups";
  5385. $SorryNoResults = "Sorry no results";
  5386. $GroupPermissions = "Group Permissions";
  5387. $Closed = "Closed";
  5388. $AddGroup = "Add group";
  5389. $Privacy = "Privacy";
  5390. $ThisIsAnOpenGroup = "This is an open group";
  5391. $YouShouldCreateATopic = "You should create a topic";
  5392. $IAmAnAdmin = "I am an admin";
  5393. $MessageList = "Messages list";
  5394. $MemberList = "Members list";
  5395. $WaitingList = "Waiting list";
  5396. $InviteFriends = "Invite friends";
  5397. $AttachmentFiles = "Attachments";
  5398. $AddOneMoreFile = "Add one more file";
  5399. $MaximunFileSizeX = "Maximun file size: %s";
  5400. $ModifyInformation = "Edit information";
  5401. $GroupEdit = "Edit group";
  5402. $ThereAreNotUsersInTheWaitingList = "There are no users in the waiting list";
  5403. $SendInvitationTo = "Send invitation to";
  5404. $InviteUsersToGroup = "Invite users to group";
  5405. $PostIn = "Posted";
  5406. $Newest = "Newest";
  5407. $Popular = "Popular";
  5408. $DeleteModerator = "Remove moderator";
  5409. $UserChangeToModerator = "User updated to moderator";
  5410. $IAmAModerator = "I am a moderator";
  5411. $ThisIsACloseGroup = "This is a closed group";
  5412. $IAmAReader = "I am a reader";
  5413. $UserChangeToReader = "User updated to reader";
  5414. $AddModerator = "Add as moderator";
  5415. $JoinGroup = "Join group";
  5416. $YouShouldJoinTheGroup = "You should join the group";
  5417. $WaitingForAdminResponse = "Waiting for admin response";
  5418. $Re = "Re";
  5419. $FilesAttachment = "Files attachments";
  5420. $GroupWaitingList = "Group waiting list";
  5421. $UsersAlreadyInvited = "Users already invited";
  5422. $SubscribeUsersToGroup = "Subscribe users to group";
  5423. $YouHaveBeenInvitedJoinNow = "You have been invited to join now";
  5424. $DenyInvitation = "Deny invitation";
  5425. $AcceptInvitation = "Accept invitation";
  5426. $GroupsWaitingApproval = "Groups waiting for approval";
  5427. $GroupInvitationWasDeny = "Group invitation was denied";
  5428. $UserIsSubscribedToThisGroup = "User is subscribed to this group";
  5429. $DeleteFromGroup = "Delete from group";
  5430. $YouAreInvitedToGroupContent = "You are invited to access a group content";
  5431. $YouAreInvitedToGroup = "You are invited to group";
  5432. $ToSubscribeClickInTheLinkBelow = "To subscribe, click the link below";
  5433. $ReturnToInbox = "Return to inbox";
  5434. $ReturnToOutbox = "Return to outbox";
  5435. $EditNormalProfile = "Edit normal profile";
  5436. $LeaveGroup = "Leave group";
  5437. $UserIsNotSubscribedToThisGroup = "User is not subscribed to this group";
  5438. $InvitationReceived = "Invitation received";
  5439. $InvitationSent = "Invitation sent";
  5440. $YouAlreadySentAnInvitation = "You already sent an invitation";
  5441. $Step7 = "Step 7";
  5442. $FilesSizeExceedsX = "Files size exceeds";
  5443. $YouShouldWriteASubject = "You should write a subject";
  5444. $StatusInThisGroup = "Status in this group";
  5445. $FriendsOnline = "Friends online";
  5446. $MyProductions = "My productions";
  5447. $YouHaveReceivedANewMessageInTheGroupX = "You have received a new message in group %s";
  5448. $ClickHereToSeeMessageGroup = "Click here to see group message";
  5449. $OrCopyPasteTheFollowingUrl = "or copy paste the following url :";
  5450. $ThereIsANewMessageInTheGroupX = "There is a new message in group %s";
  5451. $UserIsAlreadySubscribedToThisGroup = "User is already subscribed to this group";
  5452. $AddNormalUser = "Add as simple user";
  5453. $DenyEntry = "Deny access";
  5454. $YouNeedToHaveFriendsInYourSocialNetwork = "You need to have friends in your social network";
  5455. $SeeAllMyGroups = "See all my groups";
  5456. $EditGroupCategory = "Edit group category";
  5457. $ModifyHotPotatoes = "Modify hotpotatoes";
  5458. $SaveHotpotatoes = "Save hotpotatoes";
  5459. $SessionIsReadOnly = "The session is read only";
  5460. $EnableTimerControl = "Enable time control";
  5461. $ExerciseTotalDurationInMinutes = "Total duration in minutes of the test";
  5462. $ToContinueUseMenu = "To continue this course, please use the side-menu.";
  5463. $RandomAnswers = "Shuffle answers";
  5464. $NotMarkActivity = "This activity cannot be graded";
  5465. $YouHaveToCreateAtLeastOneAnswer = "You have to create at least one answer";
  5466. $ExerciseAttempted = "A learner attempted an exercise";
  5467. $MultipleSelectCombination = "Exact Selection";
  5468. $MultipleAnswerCombination = "Exact answers combination";
  5469. $ExerciseExpiredTimeMessage = "The exercise time limit has expired";
  5470. $NameOfLang['ukrainian'] = "ukrainian";
  5471. $NameOfLang['yoruba'] = "yoruba";
  5472. $New = "New";
  5473. $YouMustToInstallTheExtensionLDAP = "You must install the extension LDAP";
  5474. $AddAdditionalProfileField = "Add user profile field";
  5475. $InvitationDenied = "Invitation denied";
  5476. $UserAdded = "The user has been added";
  5477. $UpdatedIn = "Updated on";
  5478. $Metadata = "Metadata";
  5479. $AddMetadata = "View/Edit Metadata";
  5480. $SendMessage = "Send message";
  5481. $SeeForum = "See forum";
  5482. $SeeMore = "See more";
  5483. $NoDataAvailable = "No data available";
  5484. $Created = "Created";
  5485. $LastUpdate = "Last update";
  5486. $UserNonRegisteredAtTheCourse = "User not registered in course";
  5487. $EditMyProfile = "Edit my profile";
  5488. $Announcements = "Announcements";
  5489. $Password = "Password";
  5490. $DescriptionGroup = "Groupe description";
  5491. $Installation = "Installation";
  5492. $ReadTheInstallationGuide = "Read the installation guide";
  5493. $SeeBlog = "See blog";
  5494. $Blog = "Blog";
  5495. $BlogPosts = "Blog Posts";
  5496. $BlogComments = "Blog comments";
  5497. $ThereAreNotExtrafieldsAvailable = "There are not extra fields available";
  5498. $StartToType = "Start to type, then click on this bar to validate tag";
  5499. $InstallChamilo = "Install chamilo";
  5500. $ChamiloURL = "Chamilo URL";
  5501. $YouDoNotHaveAnySessionInItsHistory = "You have no session in your sessions history";
  5502. $PortalHomepageDefaultIntroduction = "<h2>Congratulations! You have successfully installed your e-learning portal!</h2> <p>You can now complete the installation by following three easy steps:<br /> <ol> <li>Configure you portal by going to the administration section, and select the Portal -> <a href=\"main/admin/settings.php\">Configuration settings</a> entry.</li> <li>Add some life to your portal by creating users and/or training. You can do that by inviting new people to create their accounts or creating them yourself through the <a href=\"main/admin/\">administration</a>'s Users and Training sections.</li> <li>Edit this page through the <a href=\"main/admin/configure_homepage.php\">Edit portal homepage</a> entry in the administration section.</li> </ol> <p>You can always find more information about this software on our website: <a href=\"http://www.chamilo.org\">http://www.chamilo.org</a>.</p> <p>Have fun, and don't hesitate to join the community and give us feedback through <a href=\"http://www.chamilo.org/forum\">our forum</a>.</p>";
  5503. $WithTheFollowingSettings = "with the following settings:";
  5504. $ThePageHasBeenExportedToDocArea = "The page has been exported to the document tool";
  5505. $TitleColumnGradebook = "Column header in Competences Report";
  5506. $QualifyWeight = "Weight in Report";
  5507. $ConfigureExtensions = "Configure extensions";
  5508. $ThereAreNotQuestionsForthisSurvey = "There are not questions for this survey";
  5509. $StudentAllowedToDeleteOwnPublication = "Allow learners to delete their own publications";
  5510. $ConfirmYourChoiceDeleteAllfiles = "Please confirm your choice. This will delete all files without possibility of recovery";
  5511. $WorkName = "Assignment name";
  5512. $ReminderToSubmitPendingTask = "Please remember you still have to send an assignment";
  5513. $MessageConfirmSendingOfTask = "This is a message confirming the good reception of the task";
  5514. $DataSent = "Data sent";
  5515. $DownloadLink = "Download link";
  5516. $ViewUsersWithTask = "Assignments received";
  5517. $ReminderMessage = "Send a reminder";
  5518. $DateSent = "Date sent";
  5519. $ViewUsersWithoutTask = "View missing assignments";
  5520. $AsciiSvgTitle = "Enable AsciiSVG";
  5521. $SuggestionOnlyToEnableSubLanguageFeatureOrUpgradeProcess = "Only required by the sub-languages feature or version upgrade process";
  5522. $ThematicAdvance = "Thematic advance";
  5523. $EditProfile = "Edit profile";
  5524. $TabsDashboard = "Dashboard";
  5525. $DashboardBlocks = "Dashboard blocks";
  5526. $DashboardList = "Dashboard list";
  5527. $YouHaveNotEnabledBlocks = "You haven't enabled any block";
  5528. $BlocksHaveBeenUpdatedSuccessfully = "The blocks have been updated";
  5529. $Dashboard = "Dashboard";
  5530. $DashboardPlugins = "Dashboard plugins";
  5531. $ThisPluginHasbeenDeletedFromDashboardPluginDirectory = "This plugin has been deleted from the dashboard plugin directory";
  5532. $EnableDashboardPlugins = "Enable dashboard plugins";
  5533. $SelectBlockForDisplayingInsideBlocksDashboardView = "Select blocks to display in the dashboard blocks view";
  5534. $ColumnPosition = "Position (column)";
  5535. $EnableDashboardBlock = "Enable dashboard block";
  5536. $ThereAreNoEnabledDashboardPlugins = "There is no enabled dashboard plugin";
  5537. $Enabled = "Enabled";
  5538. $ThematicAdvanceQuestions = "What is the current progress you have reached with your learners inside your course? How much do you think is remaining in comparison to the complete program?";
  5539. $ThematicAdvanceHistory = "Advance history";
  5540. $Homepage = "Homepage";
  5541. $Attendances = "Attendances";
  5542. $CountDoneAttendance = "# attended";
  5543. $AssignUsers = "Assign users";
  5544. $AssignCourses = "Assign courses";
  5545. $AssignSessions = "Assign sessions";
  5546. $CoursesListInPlatform = "Platform courses list";
  5547. $AssignedCoursesListToHumanResourceManager = "Courses assigned to HR manager";
  5548. $AssignedCoursesTo = "Courses assigned to";
  5549. $AssignCoursesToHumanResourcesManager = "Assign courses to HR manager";
  5550. $TimezoneValueTitle = "Timezone value";
  5551. $TimezoneValueComment = "The timezone for this portal should be set to the same timezone as the organization's headquarter. If left empty, it will use the server's timezone.<br />If configured, all times on the system will be printed based on this timezone. This setting has a lower priority than the user's timezone, if enabled and selected by the user himself through his extended profile.";
  5552. $UseUsersTimezoneTitle = "Enable users timezones";
  5553. $UseUsersTimezoneComment = "Enable the possibility for users to select their own timezone. The timezone field should be set to visible and changeable in the Profiling menu in the administration section before users can choose their own. Once configured, users will be able to see assignment deadlines and other time references in their own timezone, which will reduce errors at delivery time.";
  5554. $FieldTypeTimezone = "Timezone";
  5555. $Timezone = "Timezone";
  5556. $AssignedSessionsHaveBeenUpdatedSuccessfully = "The assigned sessions have been updated";
  5557. $AssignedCoursesHaveBeenUpdatedSuccessfully = "The assigned courses have been updated";
  5558. $AssignedUsersHaveBeenUpdatedSuccessfully = "The assigned users have been updated";
  5559. $AssignUsersToX = "Assign users to %s";
  5560. $AssignUsersToHumanResourcesManager = "Assign users to Human Resources manager";
  5561. $AssignedUsersListToHumanResourcesManager = "List of users assigned to Human Resources manager";
  5562. $AssignCoursesToX = "Assign courses to %s";
  5563. $SessionsListInPlatform = "List of sessions on the platform";
  5564. $AssignSessionsToHumanResourcesManager = "Assign sessions to Human Resources manager";
  5565. $AssignedSessionsListToHumanResourcesManager = "List of sessions assigned to the Human Resources manager";
  5566. $SessionsInformation = "Sessions report";
  5567. $YourSessionsList = "Your sessions";
  5568. $TeachersInformationsList = "Teachers report";
  5569. $YourTeachers = "Your teachers";
  5570. $StudentsInformationsList = "Learners report";
  5571. $YourStudents = "Your learners";
  5572. $GoToThematicAdvance = "Go to thematic advance";
  5573. $TeachersInformationsGraph = "Teachers report chart";
  5574. $StudentsInformationsGraph = "Learners report chart";
  5575. $Timezones = "Timezones";
  5576. $TimeSpentOnThePlatformLastWeekByDay = "Time spent on the platform last week, by day";
  5577. $AttendancesFaults = "Not attended";
  5578. $AttendanceSheetReport = "Report of attendance sheets";
  5579. $YouDoNotHaveDoneAttendances = "You do not have attendances";
  5580. $DashboardPluginsHaveBeenUpdatedSuccessfully = "The dashboard plugins have been updated successfully";
  5581. $ThereIsNoInformationAboutYourCourses = "There is no available information about your courses";
  5582. $ThereIsNoInformationAboutYourSessions = "There is no available information about your sessions";
  5583. $ThereIsNoInformationAboutYourTeachers = "There is no available information about your teachers";
  5584. $ThereIsNoInformationAboutYourStudents = "There is no available information about your learners";
  5585. $TimeSpentLastWeek = "Time spent last week";
  5586. $SystemStatus = "System status";
  5587. $IsWritable = "Is writable";
  5588. $DirectoryExists = "The directory exists";
  5589. $DirectoryMustBeWritable = "The directory must be writable by the web server";
  5590. $DirectoryShouldBeRemoved = "The directory should be removed (it is no longer necessary)";
  5591. $Section = "Section";
  5592. $Expected = "Expected";
  5593. $Setting = "Setting";
  5594. $Current = "Current";
  5595. $SessionGCMaxLifetimeInfo = "The session garbage collector maximum lifetime indicates which maximum time is given between two runs of the garbage collector.";
  5596. $PHPVersionInfo = "PHP version";
  5597. $FileUploadsInfo = "File uploads indicate whether file uploads are authorized at all";
  5598. $UploadMaxFilesizeInfo = "Maximum volume of an uploaded file. This setting should, most of the time, be matched with the post_max_size variable.";
  5599. $MagicQuotesRuntimeInfo = "This is a highly unrecommended feature which converts values returned by all functions that returned external values to slash-escaped values. This feature should *not* be enabled.";
  5600. $PostMaxSizeInfo = "This is the maximum size of uploads through forms using the POST method (i.e. classical file upload forms)";
  5601. $SafeModeInfo = "Safe mode is a deprecated PHP feature which (badly) limits the access of PHP scripts to other resources. It is recommended to leave it off.";
  5602. $DisplayErrorsInfo = "Show errors on screen. Turn this on on development servers, off on production servers.";
  5603. $MaxInputTimeInfo = "The maximum time allowed for a form to be processed by the server. If it takes longer, the process is abandonned and a blank page is returned.";
  5604. $DefaultCharsetInfo = "The default character set to be sent when returning pages";
  5605. $RegisterGlobalsInfo = "Whether to use the register globals feature or not. Using it represents potential security risks with this software.";
  5606. $ShortOpenTagInfo = "Whether to allow for short open tags to be used or not. This feature should not be used.";
  5607. $MemoryLimitInfo = "Maximum memory limit for one single script run. If the memory needed is higher, the process will stop to avoid consuming all the server's available memory and thus slowing down other users.";
  5608. $MagicQuotesGpcInfo = "Whether to automatically escape values from GET, POST and COOKIES arrays. A similar feature is provided for the required data inside this software, so using it provokes double slash-escaping of values.";
  5609. $VariablesOrderInfo = "The order of precedence of Environment, GET, POST, COOKIES and SESSION variables";
  5610. $MaxExecutionTimeInfo = "Maximum time a script can take to execute. If using more than that, the script is abandoned to avoid slowing down other users.";
  5611. $ExtensionMustBeLoaded = "This extension must be loaded.";
  5612. $MysqlProtoInfo = "MySQL protocol";
  5613. $MysqlHostInfo = "MySQL server host";
  5614. $MysqlServerInfo = "MySQL server information";
  5615. $MysqlClientInfo = "MySQL client";
  5616. $ServerProtocolInfo = "Protocol used by this server";
  5617. $ServerRemoteInfo = "Remote address (your address as received by the server)";
  5618. $ServerAddessInfo = "Server address";
  5619. $ServerNameInfo = "Server name (as used in your request)";
  5620. $ServerPortInfo = "Server port";
  5621. $ServerUserAgentInfo = "Your user agent as received by the server";
  5622. $ServerSoftwareInfo = "Software running as a web server";
  5623. $UnameInfo = "Information on the system the current server is running on";
  5624. $EmptyHeaderLine = "There are empty lines in the header of selected file";
  5625. $AdminsCanChangeUsersPassComment = "This feature is useful for the multi-URL scenario, where there is a difference between the global admin and the normal admins. In this case, selecting \"No\" will prevent normal admins to set other users' passwords, and will only allow them to ask for a password regeneration (thus sent by e-mail to the user). The global admin can still do it.";
  5626. $AdminsCanChangeUsersPassTitle = "Admins can change users' passwords";
  5627. $AdminLoginAsAllowedComment = "Allow users with the corresponding privileges to use the \"login as\" feature to connect using other users' account? This setting is most useful for multi-url configuration, where you don't think an administrator from a secondary URL should be able to connect as any user. Note that another setting is available in the configuration file to block all possibility for anyone to use this feature.";
  5628. $AdminLoginAsAllowedTitle = "\"Login as\" feature";
  5629. $FilterByUser = "Filter by user";
  5630. $FilterByGroup = "Filter by group";
  5631. $FilterAll = "Filter: Everyone";
  5632. $AllQuestionsMustHaveACategory = "All questions must have a category to use the random-by-category mode.";
  5633. $PaginationXofY = "%s of %s";
  5634. $SelectedMessagesUnRead = "Selected messages have been marked as unread";
  5635. $SelectedMessagesRead = "Selected messages have been marked as read";
  5636. $YouHaveToAddXAsAFriendFirst = "You have to add %s as a friend first";
  5637. $Company = "Company";
  5638. $GradebookExcellent = "Excellent";
  5639. $GradebookOutstanding = "Outstanding";
  5640. $GradebookGood = "Good";
  5641. $GradebookFair = "Fair";
  5642. $GradebookPoor = "Poor";
  5643. $GradebookFailed = "Failed";
  5644. $NoMedia = "Not linked to media";
  5645. $AttachToMedia = "Attach to media";
  5646. $ExamModeWithFinalScoreShowOnlyFinalScoreWithCategoriesIfAvailable = "Show only final score, with categories if available";
  5647. $Media = "Media";
  5648. $ForceEditingExerciseInLPWarning = "You are authorized to edit this exercise, although already used in the learning path. If you edit it, try to avoid changing the score and focus on editing content, not values nor categorization, to avoid affecting the results of previous users having taken this test.";
  5649. $UploadedDate = "Date of upload";
  5650. $Filename = "Filename";
  5651. $Recover = "Recover";
  5652. $Recovered = "Recovered";
  5653. $RecoverDropboxFiles = "Recover dropbox files";
  5654. $ForumCategory = "Forum category";
  5655. $YouCanAccessTheExercise = "Go to the test";
  5656. $YouHaveBeenRegisteredToCourseX = "You have been registered to course %s";
  5657. $DashboardPluginsUpdatedSuccessfully = "Dashboard plugins successfully updated";
  5658. $LoginEnter = "Login";
  5659. $AssignSessionsToX = "Assign sessions to %s";
  5660. $CopyExercise = "Copy this exercise as a new one";
  5661. $CleanStudentResults = "Clear all learners results for this exercise";
  5662. $AttendanceSheetDescription = "The attendance sheets allow you to specify a list of dates in which you will report attendance to your courses";
  5663. $ThereAreNoRegisteredLearnersInsidetheCourse = "There are no registered learners inside the course";
  5664. $GoToAttendanceCalendarList = "Go to the calendar list of attendance dates";
  5665. $AssignCoursesToSessionsAdministrator = "Assign courses to session's administrator";
  5666. $AssignCoursesToPlatformAdministrator = "Assign courses to platform's administrator";
  5667. $AssignedCoursesListToPlatformAdministrator = "Assigned courses list to platform administrator";
  5668. $AssignedCoursesListToSessionsAdministrator = "Assigned courses list to sessions administrator";
  5669. $AssignSessionsToPlatformAdministrator = "Assign sessions to platform administrator";
  5670. $AssignSessionsToSessionsAdministrator = "assign sessions to sessions administrator";
  5671. $AssignedSessionsListToPlatformAdministrator = "Assigned sessions list to platform administrator";
  5672. $AssignedSessionsListToSessionsAdministrator = "Assigned sessions list to sessions administrator";
  5673. $EvaluationsGraph = "Graph of evaluations";
  5674. $Url = "URL";
  5675. $ToolCourseDescription = "Course description";
  5676. $ToolDocument = "Documents";
  5677. $ToolLearnpath = "Learning path";
  5678. $ToolLink = "Links";
  5679. $ToolQuiz = "Tests";
  5680. $ToolAnnouncement = "Announcements";
  5681. $ToolGradebook = "Assessments";
  5682. $ToolGlossary = "Glossary";
  5683. $ToolAttendance = "Attendances";
  5684. $ToolCalendarEvent = "Agenda";
  5685. $ToolForum = "Forums";
  5686. $ToolDropbox = "Dropbox";
  5687. $ToolUser = "Users";
  5688. $ToolGroup = "Groups";
  5689. $ToolChat = "Chat";
  5690. $ToolStudentPublication = "Assignments";
  5691. $ToolSurvey = "Surveys";
  5692. $ToolWiki = "Wiki";
  5693. $ToolNotebook = "Notebook";
  5694. $ToolBlogManagement = "Projects";
  5695. $ToolTracking = "Reporting";
  5696. $ToolCourseSetting = "Settings";
  5697. $ToolCourseMaintenance = "Backup";
  5698. $AreYouSureToDeleteAllDates = "Are you sure you want to delete all dates?";
  5699. $ImportQtiQuiz = "Import exercises Qti2";
  5700. $ISOCode = "ISO code";
  5701. $TheSubLanguageForThisLanguageHasBeenAdded = "The sub-language of this language has been added";
  5702. $ReturnToLanguagesList = "Return to the languages list";
  5703. $AddADateTime = "Add a date time";
  5704. $ActivityCoach = "The coach of the session, shall have all rights and privileges on all the courses that belong to the session.";
  5705. $AllowUserViewUserList = "Allow user view user list";
  5706. $AllowUserViewUserListActivate = "Enable user list";
  5707. $AllowUserViewUserListDeactivate = "Disable user list";
  5708. $ThematicControl = "Thematic control";
  5709. $ThematicDetails = "Thematic view with details";
  5710. $ThematicList = "Thematic view as list";
  5711. $Thematic = "Thematic";
  5712. $ThematicPlan = "Thematic plan";
  5713. $EditThematicPlan = "Edit tematic advance";
  5714. $EditThematicAdvance = "Edit thematic advance";
  5715. $ThereIsNoStillAthematicSection = "There is not still a thematic section";
  5716. $NewThematicSection = "New thematic section";
  5717. $DeleteAllThematics = "Delete all thematics";
  5718. $ThematicDetailsDescription = "Details of topics and their respective plan and progress. To indicate a topic as completed, select its date following the chronological order and the system will display all previous dates as completed.";
  5719. $SkillToAcquireQuestions = "What skills are to be acquired bu the end of this thematic section?";
  5720. $SkillToAcquire = "Skills to acquire";
  5721. $InfrastructureQuestions = "What infrastructure is necessary to achieve the goals of this topic normally?";
  5722. $Infrastructure = "Infrastructure";
  5723. $AditionalNotesQuestions = "Which other elements are necessary?";
  5724. $DurationInHours = "Duration in hours";
  5725. $ThereAreNoAttendancesInsideCourse = "There is no attendance sheet in this course";
  5726. $YouMustSelectAtleastAStartDate = "You must select a start date";
  5727. $ReturnToLPList = "Return to list";
  5728. $EditTematicAdvance = "Edit tematic advance";
  5729. $AditionalNotes = "Additional notes";
  5730. $StartDateFromAnAttendance = "Start date taken from an attendance date";
  5731. $StartDateCustom = "Custom start date";
  5732. $StartDateOptions = "Start date options";
  5733. $ThematicAdvanceConfiguration = "Thematic advance configuration";
  5734. $InfoAboutAdvanceInsideHomeCourse = "Information on thematic advance on course homepage";
  5735. $DisplayAboutLastDoneAdvance = "Display information about the last completed topic";
  5736. $DisplayAboutNextAdvanceNotDone = "Display information about the next uncompleted topic";
  5737. $InfoAboutLastDoneAdvance = "Information about the last completed topic";
  5738. $InfoAboutNextAdvanceNotDone = "Information about the next uncompleted topic";
  5739. $ThereIsNoAThematicSection = "There is no thematic section";
  5740. $ThereIsNoAThematicAdvance = "There is no thematic advance";
  5741. $StillDoNotHaveAThematicPlan = "There is no thematic plan for now";
  5742. $NewThematicAdvance = "New thematic advance";
  5743. $DurationInHoursMustBeNumeric = "Duration must be numeric";
  5744. $DoNotDisplayAnyAdvance = "Do not display progress";
  5745. $CreateAThematicSection = "Create a thematic section";
  5746. $EditThematicSection = "Edit thematic section";
  5747. $ToolCourseProgress = "Course progress";
  5748. $SelectAnAttendance = "Select an attendance";
  5749. $ReUseACopyInCurrentTest = "Re-use a copy inside the current test";
  5750. $YouAlreadyInviteAllYourContacts = "You already invite all your contacts";
  5751. $CategoriesNumber = "Categories";
  5752. $ResultsHiddenByExerciseSetting = "Results hidden by the exercise setting";
  5753. $NotAttended = "Not attended";
  5754. $Attended = "Attended";
  5755. $IPAddress = "IP address";
  5756. $FileImportedJustSkillsThatAreNotRegistered = "Only skills that were not registered were imported";
  5757. $SkillImportNoName = "The skill had no name set";
  5758. $SkillImportNoParent = "The parent skill was not set";
  5759. $SkillImportNoID = "The skill ID was not set";
  5760. $CourseAdvance = "Course progress";
  5761. $CertificateGenerated = "Generated certificate";
  5762. $CountOfUsers = "Users count";
  5763. $CountOfSubscriptions = "Subscriptions count";
  5764. $EnrollToCourseXSuccessful = "You have been registered to course: %s";
  5765. $TheExerciseAutoLaunchSettingIsONStudentsWillBeRedirectToAnSpecificExercise = "The exercises auto-launch feature configuration is enabled. Learners will be automatically redirected to the selected exercise.";
  5766. $RedirectToTheExerciseList = "Redirect to the exercises list";
  5767. $RedirectToExercise = "Redirect to the selected exercise";
  5768. $ConfigExercise = "Configure exercises tool";
  5769. $QuestionGlobalCategory = "Global category";
  5770. $CheckThatYouHaveEnoughQuestionsInYourCategories = "Make sure you have enough questions in your categories.";
  5771. $PortalCoursesLimitReached = "Sorry, this installation has a courses limit, which has now been reached. To increase the number of courses allowed on this Chamilo installation, please contact your hosting provider or, if available, upgrade to a superior hosting plan.";
  5772. $PortalTeachersLimitReached = "Sorry, this installation has a teachers limit, which has now been reached. To increase the number of teachers allowed on this Chamilo installation, please contact your hosting provider or, if available, upgrade to a superior hosting plan.";
  5773. $PortalUsersLimitReached = "Sorry, this installation has a users limit, which has now been reached. To increase the number of users allowed on this Chamilo installation, please contact your hosting provider or, if available, upgrade to a superior hosting plan.";
  5774. $GenerateSurveyAccessLinkExplanation = "By copying the link below and pasting it in an e-mail or on a website, you will allow any anonymous person to enter and answer this survey.
  5775. You can test this feature by clicking the link above and answering the survey.
  5776. This is particularly useful if you want to allow anyone on a forum to answer you survey and you don't know their e-mail addresses.";
  5777. $LinkOpenSelf = "Open self";
  5778. $LinkOpenBlank = "Open blank";
  5779. $LinkOpenParent = "Open parent";
  5780. $LinkOpenTop = "Open top";
  5781. $ThematicSectionHasBeenCreatedSuccessfull = "Thematic section has been created successfully";
  5782. $NowYouShouldAddThematicPlanXAndThematicAdvanceX = "Now you should add thematic plan %s and thematic advance %s";
  5783. $LpPrerequisiteDescription = "Selecting another learning path as a prerequisite will hide the current prerequisite until the one in prerequisite is fully completed (100%)";
  5784. $QualificationNumeric = "Maximum score";
  5785. $ScoreAverageFromAllAttempts = "Score average from all attempts";
  5786. $ExportAllCoursesList = "Export all courses";
  5787. $ExportSelectedCoursesFromCoursesList = "Export selected courses from the following list";
  5788. $CoursesListHasBeenExported = "The list of courses has been exported";
  5789. $WhichCoursesToExport = "Courses to export";
  5790. $AssignUsersToPlatformAdministrator = "Assign users to the platform administrator";
  5791. $AssignedUsersListToPlatformAdministrator = "Users assigned to the platform administrator";
  5792. $AssignedCoursesListToHumanResourcesManager = "Courses assigned to the HR manager";
  5793. $ThereAreNotCreatedCourses = "There are no courses to select";
  5794. $HomepageViewVerticalActivity = "Vertical activity view";
  5795. $GenerateSurveyAccessLink = "Generate survey access link";
  5796. $CoursesInformation = "Courses information";
  5797. $LearnpathVisible = "Learning path made visible";
  5798. $LinkInvisible = "Link made invisible";
  5799. $SpecialExportsIntroduction = "The special exports feature is meant to help an instructional controller to export all courses documents in one unique step. Another option lets you choose the courses you want to export, and will export documents present in these courses' sessions as well. This is a very heavy operation, and we recommend you do not start it during normal usage hours of your portal. Do it in a quieter period. If you don't need all the contents at once, try to export courses documents directly from the course maintenance tool inside the course itself.";
  5800. $Literal0 = "zero";
  5801. $Literal1 = "one";
  5802. $Literal2 = "two";
  5803. $Literal3 = "three";
  5804. $Literal4 = "four";
  5805. $Literal5 = "five";
  5806. $Literal6 = "six";
  5807. $Literal7 = "seven";
  5808. $Literal8 = "eight";
  5809. $Literal9 = "nine";
  5810. $Literal10 = "ten";
  5811. $Literal11 = "eleven";
  5812. $Literal12 = "twelve";
  5813. $Literal13 = "thirteen";
  5814. $Literal14 = "fourteen";
  5815. $Literal15 = "fifteen";
  5816. $Literal16 = "sixteen";
  5817. $Literal17 = "seventeen";
  5818. $Literal18 = "eighteen";
  5819. $Literal19 = "nineteen";
  5820. $Literal20 = "twenty";
  5821. $AllowUserCourseSubscriptionByCourseAdminTitle = "Allow User Course Subscription By Course Admininistrator";
  5822. $AllowUserCourseSubscriptionByCourseAdminComment = "Activate this option will allow course administrator to subscribe users inside a course";
  5823. $DateTime = "Date & time";
  5824. $Item = "Item";
  5825. $ConfigureDashboardPlugin = "Configure Dashboard Plugin";
  5826. $EditBlocks = "Edit blocks";
  5827. $Never = "Never";
  5828. $YourAccountIsActiveYouCanLoginAndCheckYourCourses = "Dear user,
  5829. Your account has now been activated on the platform. Please login and enjoy your courses.";
  5830. $SessionFields = "Session fields";
  5831. $CopyLabelSuffix = "Copy";
  5832. $SessionCoachEndDateComment = "Date on which the session is closed to coaches. The additional delay will allow them to export all relevant tracking information";
  5833. $SessionCoachStartDateComment = "Date on which the session is made available to coaches, so they can prepare it before the students get connected";
  5834. $SessionEndDateComment = "Date on which the session is closed";
  5835. $SessionStartDateComment = "Date on which the session is made available to all";
  5836. $SessionDisplayEndDateComment = "Date that will be shown in the session information as the date on which the session ends";
  5837. $SessionDisplayStartDateComment = "Date that will be shown in the session information as the date on which the session starts";
  5838. $SessionCoachEndDate = "Access end date for coaches";
  5839. $SessionCoachStartDate = "Access start date for coaches";
  5840. $SessionEndDate = "Access end date";
  5841. $SessionStartDate = "Access start date";
  5842. $SessionDisplayEndDate = "End date to display";
  5843. $SessionDisplayStartDate = "Start date to display";
  5844. $UserHasNoCourse = "This user is not subscribed to any course";
  5845. $SkillsRanking = "Skills ranking";
  5846. $ImportSkillsListCSV = "Import skills from a CSV file";
  5847. $SkillsImport = "Skills import";
  5848. $SkillsWheel = "Skills wheel";
  5849. $SkillsYouAcquired = "Skills you acquired";
  5850. $SkillsSearchedFor = "Skills searched for";
  5851. $SkillsYouCanLearn = "Skills you can learn";
  5852. $Legend = "Legend";
  5853. $ClickToZoom = "Click to zoom";
  5854. $SkillXWithCourseX = "%s with %s";
  5855. $ToGetToLearnXYouWillNeedToTakeOneOfTheFollowingCourses = "To get to learn %s you will need to take one of the following courses:";
  5856. $YourSkillRankingX = "Your skill ranking: %s";
  5857. $ManageSkills = "Manage skills";
  5858. $OralQuestionsAttemptedAreX = "The attempted oral questions are %s";
  5859. $OralQuestionsAttempted = "A learner has attempted one or more oral question";
  5860. $RelativeScore = "Relative score";
  5861. $AbsoluteScore = "Absolute score";
  5862. $Categories = "Categories";
  5863. $PrerequisitesOptions = "Prerequisites options";
  5864. $ClearAllPrerequisites = "Clear all prerequisites";
  5865. $SetPrerequisiteForEachItem = "Set previous step as prerequisite for each step";
  5866. $StartDateMustBeBeforeTheEndDate = "Start date must be before the end date";
  5867. $SessionPageEnabledComment = "When this option is enabled, the session title is a link to a special session page. When disabled, it is only a text title, without link. The session page linked to might be confusing for some users, which is why you might want to disable it.";
  5868. $SessionPageEnabledTitle = "Enable session link in courses list";
  5869. $SkillRoot = "Root";
  5870. $SkillInfo = "Skill information";
  5871. $GetNewSkills = "Get new skills";
  5872. $ViewSkillsWheel = "View skills wheel";
  5873. $MissingOneStepToMatch = "Missing <b>one</b> step to match";
  5874. $CompleteMatch = "Complete match";
  5875. $MissingXStepsToMatch = "Missing <b>%s</b> steps";
  5876. $Rank = "Rank";
  5877. $CurrentlyLearning = "Currently learning";
  5878. $SkillsAcquired = "Skills acquired";
  5879. $AddSkillToProfileSearch = "Add skill to profile search";
  5880. $ShortCode = "Short code";
  5881. $CreateChildSkill = "Create child skill";
  5882. $SearchProfileMatches = "Search profile matches";
  5883. $IsThisWhatYouWereLookingFor = "Is this what you were looking for?";
  5884. $WhatSkillsAreYouLookingFor = "What skills are you looking for?";
  5885. $ProfileSearch = "Profile search";
  5886. $CourseSettingsRegisterDirectLink = "If your course is public or open, you can use the direct link below to send an invitation to new users, so after registration, they will be sent directly to the course. Also, you can add the e=1 parameter to the URL, replacing \"1\" by an exercise ID to send them directly to a specific exam. The exercise ID can be discovered in the URL when clicking on an exercise to open it.<br/>%s";
  5887. $DirectLink = "Direct link";
  5888. $here = "here";
  5889. $GoAheadAndBrowseOurCourseCatalogXOnceRegisteredYouWillSeeTheCourseHereX = "<p>Go ahead and browse our course catalog %s to register to any course you like. Once registered, you will see the course appear right %s, instead of this message.</p>";
  5890. $HelloXAsYouCanSeeYourCourseListIsEmpty = "<p>Hello <strong>%s</strong> and welcome,</p>
  5891. <p>As you can see, your courses list is still empty. That's because you are not registered to any course yet! </p>";
  5892. $UnsubscribeUsersAlreadyAddedInCourse = "Unsubscribe users already added";
  5893. $ImportUsers = "Import users";
  5894. $HelpFolderLearningPaths = "INFORMATION VISIBLE TO THE TEACHER ONLY:\nThis folder contains documents which are created by the Learning Path tool. Inside this folder you can edit the HTML file which are generated by importing content from the Learning Path, as the ones imported by Chamilo Rapid, for example. We recommend hiding this folder to your students.";
  5895. $YouWillBeRedirectedInXSeconds = "Just a moment, please. You will be redirected in %s seconds...";
  5896. $ToProtectYourSiteMakeXReadOnlyAndDeleteY = "To protect your site, make the whole %s directory read-only (chmod -R 0555 on Linux) and delete the %s directory.";
  5897. $NumberOfCoursesPublic = "Number of public courses";
  5898. $NumberOfCoursesOpen = "Number of open courses";
  5899. $NumberOfCoursesPrivate = "Number of private courses";
  5900. $NumberOfCoursesClosed = "Number of closed courses";
  5901. $NumberOfCoursesTotal = "Total number of courses";
  5902. $NumberOfUsersActive = "Number of active users";
  5903. $CountCertificates = "Certificates count";
  5904. $AverageHoursPerStudent = "Avg hours/student";
  5905. $CountOfSubscribedUsers = "Subscribed users count";
  5906. $TrainingHoursAccumulated = "Hours of accumulated training";
  5907. $Approved = "Approved";
  5908. $EditQuestions = "Edit questions";
  5909. $EditSettings = "Edit settings";
  5910. $ManHours = "Man hours";
  5911. $NotesObtained = "Notes obtained";
  5912. $ClickOnTheLearnerViewToSeeYourLearningPath = "Click on the [Learner view] button to see your learning path";
  5913. $ThisValueCantBeChanged = "This value can't be changed.";
  5914. $ThisValueIsUsedInTheCourseURL = "This value is used in the course URL";
  5915. $TotalAvailableUsers = "Total available users";
  5916. $LowerCaseUser = "user";
  5917. $GenerateCertificates = "Generate certificates";
  5918. $ExportAllCertificatesToPDF = "Export all certificates to PDF";
  5919. $DeleteAllCertificates = "Delete all certificates";
  5920. $ThereAreUsersUsingThisLanguageYouWantToDisableThisLanguageAndSetUsersWithTheDefaultPortalLanguage = "There are users using this language. Do you want to disable this language and set all this users with the default portal language?";
  5921. $dateFormatLongNoDay = "%d %B %Y";
  5922. $dateFormatOnlyDayName = "%A";
  5923. $ReturnToCourseList = "Return to the course list";
  5924. $dateFormatShortNumberNoYear = "%d/%m";
  5925. $CourseTutor = "Course tutor";
  5926. $StudentInSessionCourse = "Student in session course";
  5927. $StudentInCourse = "Student in course";
  5928. $SessionGeneralCoach = "Session general coach";
  5929. $SessionCourseCoach = "Session course coach";
  5930. $Admin = "Admin";
  5931. $SessionTutorsCanSeeExpiredSessionsResultsComment = "Can session tutors see the reports for their session after it has expired?";
  5932. $SessionTutorsCanSeeExpiredSessionsResultsTitle = "Session tutors reports visibility";
  5933. $UserNotAttendedSymbol = "NP";
  5934. $UserAttendedSymbol = "P";
  5935. $SessionCalendar = "Session calendar";
  5936. $Order = "Order";
  5937. $GlobalPlatformInformation = "Global platform information";
  5938. $TheXMLImportLetYouAddMoreInfoAndCreateResources = "The XML import lets you add more info and create resources (courses, users). The CSV import will only create sessions and let you assign existing resources to them.";
  5939. $ShowLinkBugNotificationTitle = "Show link to report bug";
  5940. $ShowLinkBugNotificationComment = "Show a link in the header to report a bug inside of our support platform (http://support.chamilo.org). When clicking on the link, the user is sent to the support platform, on a wiki page that describes the bug reporting process.";
  5941. $ReportABug = "Report a bug";
  5942. $Letters = "Letters";
  5943. $NewHomeworkEmailAlert = "E-mail students on assignment creation";
  5944. $NewHomeworkEmailAlertEnable = "E-mail students on assignments creation";
  5945. $NewHomeworkEmailAlertDisable = "Disable e-mail notification on assignment creation";
  5946. $MaximumOfParticipants = "Maximum number of members";
  5947. $HomeworkCreated = "An assignment was created";
  5948. $HomeworkHasBeenCreatedForTheCourse = "An assignment has been added to course";
  5949. $PleaseCheckHomeworkPage = "Please check the assignments page.";
  5950. $ScormNotEnoughSpaceInCourseToInstallPackage = "There is not enough space left in this course to uncompress the current package.";
  5951. $ScormPackageFormatNotScorm = "The package you are uploading doesn't seem to be in SCORM format. Please check that the imsmanifest.xml is inside the ZIP file you are trying to upload.";
  5952. $DataFiller = "Data filler";
  5953. $GradebookActivateScoreDisplayCustom = "Enable competence level labelling in order to set custom score information";
  5954. $GradebookScoreDisplayCustomValues = "Competence levels custom values";
  5955. $GradebookNumberDecimals = "Number of decimals";
  5956. $GradebookNumberDecimalsComment = "Allows you to set the number of decimals allowed in a score";
  5957. $ContactInformation = "Contact information";
  5958. $PersonName = "Your name";
  5959. $CompanyName = "Your company's name";
  5960. $PersonRole = "Your job's description";
  5961. $HaveYouThePowerToTakeFinancialDecisions = "Do you have the power to take financial decisions on behalf of your company?";
  5962. $CompanyCountry = "Your company's home country";
  5963. $CompanyCity = "Company city";
  5964. $WhichLanguageWouldYouLikeToUseWhenContactingYou = "Preferred contact language";
  5965. $SendInformation = "Send information";
  5966. $YouMustAcceptLicence = "You must accept the licence";
  5967. $SelectOne = "Select one";
  5968. $ContactInformationHasBeenSent = "Contact information has been sent";
  5969. $EditExtraFieldOptions = "Edit extra field options";
  5970. $ExerciseDescriptionLabel = "Description";
  5971. $UserInactivedSinceX = "User inactive since %s";
  5972. $ContactInformationDescription = "Dear user,<br />\n<br />You are about to start using one of the best open-source e-learning platform on the market. Like many other open-source project, this project is backed up by a large community of students, teachers, developers and content creators who would like to promote the project better.<br />\n<br />\nBy knowing a little bit more about you, one of our most important users, who will manage this e-learning system, we will be able to let people know that our software is used and let you know when we organize events that might be relevant to you.<br />\n<br />\nBy filling this form, you accept that the Chamilo association or its members might send you information by e-mail about important events or updates in the Chamilo software or community. This will help the community grow as an organized entity where information flow, with a permanent respect of your time and your privacy.<br />\n<br />\nPlease note that you are <b>not required</b> to fill this form. If you want to remain anonymous, we will loose the opportunity to offer you all the privileges of being a registered portal administrator, but we will respect your decision. Simply leave this form empty and click \"Next\".<br /><br />";
  5973. $CompanyActivity = "Your company's activity";
  5974. $PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses = "Please allow us a little time to subscribe you to one of our courses. If you think we forgot you, contact the portal administrators. You can usually find their contact details in the footer of this page.";
  5975. $ManageSessionFields = "Manage session fields";
  5976. $DateUnLock = "Unlock date";
  5977. $DateLock = "Lock date";
  5978. $EditSessionsToURL = "Edit sessions for a URL";
  5979. $AddSessionsToURL = "Add sessions to URL";
  5980. $SessionListIn = "List of sessions in";
  5981. $GoToStudentDetails = "Go to learner details";
  5982. $DisplayAboutNextAdvanceNotDoneAndLastDoneAdvance = "Display the last executed step and the next unfinished step";
  5983. $FillUsers = "Fill users";
  5984. $ThisSectionIsOnlyVisibleOnSourceInstalls = "This section is only visible on installations from source code, not in packaged versions of the platform. It will allow you to quickly populate your platform with test data. Use with care (data is really inserted) and only on development or testing installations.";
  5985. $UsersFillingReport = "Users filling report";
  5986. $RepeatDate = "Repeat date";
  5987. $EndDateMustBeMoreThanStartDate = "End date must be more than the start date";
  5988. $ToAttend = "To attend";
  5989. $AllUsersAreAutomaticallyRegistered = "All users are automatically registered";
  5990. $AssignCoach = "Assign coach";
  5991. $YourAccountOnXHasJustBeenApprovedByOneOfOurAdministrators = "Your account on %s has just been approved by one of our administrators.";
  5992. $StudentHadEnoughSkills = "A student has obtained the number of sub-skills needed to validate the mother skill.";
  5993. $Off = "Off";
  5994. $WebServer = "Web server";
  5995. $NotInserted = "Not inserted";
  5996. $StudentBoss = "Superior (n+1)";
  5997. $EnableMathJaxComment = "Enable the MathJax library to visualize mathematical formulas. This is only useful if either ASCIIMathML or ASCIISVG settings are enabled.";
  5998. $YouCanNowLoginAtXUsingTheLoginAndThePasswordYouHaveProvided = "You can now login at %s using the login and the password you have provided.";
  5999. $HaveFun = "Have fun,";
  6000. $AreYouSureToEditTheUserStatus = "Are you sure to edit the user status?";
  6001. $YouShouldCreateAGroup = "You should create a group";
  6002. $ResetLP = "Reset Learning path";
  6003. $LPWasReset = "Learning path was reset for the learner";
  6004. $AnnouncementVisible = "Announcement visible";
  6005. $AnnouncementInvisible = "Announcement invisible";
  6006. $GlossaryDeleted = "Glossary deleted";
  6007. $CalendarYear = "Calendar year";
  6008. $SessionReadOnly = "Read only";
  6009. $SessionAccessible = "Accessible";
  6010. $SessionNotAccessible = "Not accessible";
  6011. $GroupAdded = "Group added";
  6012. $AddUsersToGroup = "Add users to group";
  6013. $ErrorReadingZip = "Error reading ZIP file";
  6014. $ErrorStylesheetFilesExtensionsInsideZip = "The only accepted extensions in the ZIP file are .jp(e)g, .png, .gif and .css.";
  6015. $ClearSearchResults = "Clear search results";
  6016. $DisplayCourseOverview = "Courses overview";
  6017. $DisplaySessionOverview = "Sessions overview";
  6018. $TotalNumberOfMessages = "Total number of messages";
  6019. $TotalNumberOfAssignments = "Total number of assignments";
  6020. $TestServerMode = "Test server mode";
  6021. $PageExecutionTimeWas = "Page execution time was";
  6022. $MemoryUsage = "Memory usage";
  6023. $MemoryUsagePeak = "Memory usage peak";
  6024. $Seconds = "seconds";
  6025. $QualifyInGradebook = "Grade in the assessment tool";
  6026. $TheTutorOnlyCanKeepTrackOfStudentsRegisteredInTheCourse = "The assistant can only keep track of all progress of learners registered to the course.";
  6027. $TheTeacherCanQualifyEvaluateAndKeepTrackOfAllStudentsEnrolledInTheCourse = "The teacher can grade, evaluate and keep track of all learners enrolled in the course.";
  6028. $IncludedInEvaluation = "Included in the evaluation";
  6029. $ExerciseEditionNotAvailableInSession = "You can't edit this course exercise from inside a session";
  6030. $SessionSpecificResource = "Session-specific resource";
  6031. $EditionNotAvailableFromSession = "Edition not available from the session, please edit from the basic course.";
  6032. $FieldTypeSocialProfile = "Social network link";
  6033. $HandingOverOfTaskX = "Handing over of task %s";
  6034. $CopyToMyFiles = "Copy to my private file area";
  6035. $Export2PDF = "Export to PDF format";
  6036. $ResourceShared = "Resource shared";
  6037. $CopyAlreadyDone = "There are a file with the same name in your private user file area. Do you want replace it?";
  6038. $CopyFailed = "Copy failed";
  6039. $CopyMade = "The copy has been made";
  6040. $OverwritenFile = "File replaced";
  6041. $MyFiles = "My files";
  6042. $AllowUsersCopyFilesTitle = "Allow users to copy files from a course in your personal file area";
  6043. $AllowUsersCopyFilesComment = "Allows users to copy files from a course in your personal file area, visible through the Social Network or through the HTML editor when they are out of a course";
  6044. $PreviewImage = "Preview image";
  6045. $UpdateImage = "Update Image";
  6046. $EnableTimeLimits = "Enable time limits";
  6047. $ProtectedDocument = "Protected Document";
  6048. $LastLogins = "Last logins";
  6049. $AllLogins = "All logins";
  6050. $Draw = "Draw";
  6051. $ThereAreNoCoursesInThisCategory = "No course at this category level";
  6052. $ConnectionsLastMonth = "Connections last month";
  6053. $TotalStudents = "Total learners";
  6054. $FilteringWithScoreX = "Filtering with score %s";
  6055. $ExamTaken = "Taken";
  6056. $ExamNotTaken = "Not taken";
  6057. $ExamPassX = "Pass minimum %s";
  6058. $ExamFail = "Fail";
  6059. $ExamTracking = "Exam tracking";
  6060. $NoAttempt = "No attempts";
  6061. $PassExam = "Pass";
  6062. $CreateCourseRequest = "Create a course request";
  6063. $TermsAndConditions = "Terms and Conditions";
  6064. $ReadTermsAndConditions = "Read the Terms and Conditions";
  6065. $IAcceptTermsAndConditions = "I have read and I accept the Terms and Conditions";
  6066. $YouHaveToAcceptTermsAndConditions = "You have to accept our Terms and Conditions to proceed.";
  6067. $CourseRequestCreated = "Your request for a new course has been sent successfully. You may receive a reply soon, within one or two days.";
  6068. $ReviewCourseRequests = "Review incoming course requests";
  6069. $AcceptedCourseRequests = "Accepted course requests";
  6070. $RejectedCourseRequests = "Rejected course requests";
  6071. $CreateThisCourseRequest = "Create this course request";
  6072. $CourseRequestDate = "Request date";
  6073. $AcceptThisCourseRequest = "Accept this course";
  6074. $ANewCourseWillBeCreated = "A new course %s is going to be created. Is it OK to proceed?";
  6075. $AdditionalInfoWillBeAsked = "Additional information about %s course request is going to be asked through an e-mail message. Is it OK to proceed?";
  6076. $AskAdditionalInfo = "Ask for additional information";
  6077. $BrowserDontSupportsSVG = "Your browser does not support SVG files. To use the drawing tool you must have an advanced browser such as Firefox or Chrome";
  6078. $BrowscapInfo = "Browscap loading browscap.ini file that contains a large amount of data on the browser and its capabilities, so it can be used by the function get_browser () PHP";
  6079. $DeleteThisCourseRequest = "Delete this course request";
  6080. $ACourseRequestWillBeDeleted = "The course request %s is going to be deleted. Is it OK to proceed?";
  6081. $RejectThisCourseRequest = "Reject this course request";
  6082. $ACourseRequestWillBeRejected = "The course request %s is going to be rejected. Is it OK to proceed?";
  6083. $CourseRequestAccepted = "The course request %s has been accepted. A new course %s has been created.";
  6084. $CourseRequestAcceptanceFailed = "The course request %s has not been accepted due to internal error.";
  6085. $CourseRequestRejected = "The course request %s has been rejected.";
  6086. $CourseRequestRejectionFailed = "The course request %s has not been rejected due to internal error.";
  6087. $CourseRequestInfoAsked = "Additional information about the course request %s has been asked.";
  6088. $CourseRequestInfoFailed = "Additional information about the course request %s has not been asked due to internal error.";
  6089. $CourseRequestDeleted = "The course request %s has been deleted.";
  6090. $CourseRequestDeletionFailed = "The course request %s has not been deleted due to internal error.";
  6091. $DeleteCourseRequests = "Delete selected course request(s)";
  6092. $SelectedCourseRequestsDeleted = "The selected course requests have been deleted.";
  6093. $SomeCourseRequestsNotDeleted = "Some of the selected course requests have not been deleted due to internal error.";
  6094. $CourseRequestEmailSubject = "%s A request for a new course %s";
  6095. $CourseRequestMailOpening = "We registered the following request for a new course:";
  6096. $CourseRequestPageForApproval = "This course request can be approved on the following page:";
  6097. $PleaseActivateCourseValidationFeature = "The \"Course validation\" feature is not enabled at the moment. In order to use this feature, please, enable it by using the %s setting.";
  6098. $CourseRequestLegalNote = "The information about this course request is considered protected; it can be used only to open a new course within our e-learning portal; it should not be revealed to third parties.";
  6099. $EnableCourseValidation = "Courses validation";
  6100. $EnableCourseValidationComment = "When the \"Courses validation\" feature is enabled, a teacher is not able to create a course alone. He/she fills a course request. The platform administrator reviews the request and approves it or rejects it.<br />This feature relies on automated e-mail messaging; set Chamilo to access an e-mail server and to use a dedicated an e-mail account.";
  6101. $CourseRequestAskInfoEmailSubject = "%s A request for additional information about the course request %s";
  6102. $CourseRequestAskInfoEmailText = "We have received your request for a new course with code %s. Before we consider it for approval, we need some additional information.\n\nPlease, provide brief information about the course content (description), the objectives, the learners or the users that are to be involved in the proposed course. If it is applicable, mention the name of the institution or the unit on which behalf you made the course request.";
  6103. $CourseRequestAcceptedEmailSubject = "%s The course request %s has been approved";
  6104. $CourseRequestAcceptedEmailText = "Your course request %s has been approved. A new course %s has been created and you are registered in it as a teacher.\n\nYou can access your newly created course from: %s";
  6105. $CourseRequestRejectedEmailSubject = "%s The course request %s has been rejected";
  6106. $CourseRequestRejectedEmailText = "To our regret we have to inform you that your course request %s has been rejected due to not fulfilling the requirements of our Terms and Conditions.";
  6107. $CourseValidationTermsAndConditionsLink = "Course validation - a link to the terms and conditions";
  6108. $CourseValidationTermsAndConditionsLinkComment = "This is the URL to the \"Terms and Conditions\" document that is valid for making a course request. If the address is set here, the user should read and agree with these terms and conditions before sending a course request.<br />If you enable Chamilo's \"Terms and Conditions\" module and if you want its URL to be used, then leave this setting empty.";
  6109. $CourseCreationFailed = "The course has not been created due to an internal error.";
  6110. $CourseRequestCreationFailed = "The course request has not been created due to an internal error.";
  6111. $CourseRequestEdit = "Edit a course request";
  6112. $CourseRequestHasNotBeenFound = "The course request you wanted to access has not been found or it does not exist.";
  6113. $FileExistsChangeToSave = "This file name already exists, choose another to save your image.";
  6114. $CourseRequestUpdateFailed = "The course request %s has not been updated due to internal error.";
  6115. $CourseRequestUpdated = "The course request %s has been updated.";
  6116. $FillWithExemplaryContent = "Fill with demo content";
  6117. $EnableSSOTitle = "Single Sign On";
  6118. $EnableSSOComment = "Enabling Single Sign On allows you to connect this platform as a slave of an authentication master, for example a Drupal website with the Drupal-Chamilo plugin or any other similar master setup.";
  6119. $SSOServerDomainTitle = "Domain of the Single Sign On server";
  6120. $SSOServerDomainComment = "The domain of the Single Sign On server (the web address of the other server that will allow automatic registration to Chamilo). This should generally be the address of the other server without any trailing slash and without the protocol, e.g. www.example.com";
  6121. $SSOServerAuthURITitle = "Single Sign On server authentication URL";
  6122. $SSOServerAuthURIComment = "The address of the page that deals with the authentication verification. For example /?q=user in Drupal's case.";
  6123. $SSOServerUnAuthURITitle = "Single Sign On server's logout URL";
  6124. $SSOServerUnAuthURIComment = "The address of the page on the server that logs the user out. This option is useful if you want users logging out of Chamilo to be automatically logged out of the authentication server.";
  6125. $SSOServerProtocolTitle = "Single Sign On server's protocol";
  6126. $SSOServerProtocolComment = "The protocol string to prefix the Single Sign On server's domain (we recommend you use https:// if your server is able to provide this feature, as all non-secure protocols are dangerous for authentication matters)";
  6127. $EnabledWirisTitle = "WIRIS mathematical editor";
  6128. $EnabledWirisComment = "Enable WIRIS mathematical editor. Installing this plugin you get WIRIS editor and WIRIS CAS.<br/>This activation is not fully realized unless it has been previously downloaded the <a href=\"http://www.wiris.com/es/plugins3/ckeditor/download\" target=\"_blank\">PHP plugin for CKeditor WIRIS</a> and unzipped its contents in the Chamilo's directory main/inc/lib/javascript/ckeditor/plugins/.<br/>This is necessary because Wiris is proprietary software and his services are <a href=\"http://www.wiris.com/store/who-pays\" target=\"_blank\">commercial</a>. To make adjustments to the plugin, edit configuration.ini file or replace his content by the file configuration.ini.default shipped with Chamilo.";
  6129. $FileSavedAs = "File saved as";
  6130. $FileExportAs = "File export as";
  6131. $AllowSpellCheckTitle = "Spell check";
  6132. $AllowSpellCheckComment = "Enable spell check";
  6133. $EnabledSVGTitle = "Create and edit SVG files";
  6134. $EnabledSVGComment = "This option allows you to create and edit SVG (Scalable Vector Graphics) multilayer online, as well as export them to png format images.";
  6135. $ForceWikiPasteAsPlainTextTitle = "Forcing pasting as plain text in the wiki";
  6136. $ForceWikiPasteAsPlainTextComment = "This will prevent many hidden tags, incorrect or non-standard, copied from other texts to stop corrupting the text of the Wiki after many issues; but will lose some features while editing.";
  6137. $EnabledGooglemapsTitle = "Activate Google maps";
  6138. $EnabledGooglemapsComment = "Activate the button to insert Google maps. Activation is not fully realized if not previously edited the file main/inc/lib/fckeditor/myconfig.php and added a Google maps API key.";
  6139. $EnabledImageMapsTitle = "Activate Image maps";
  6140. $EnabledImageMapsComment = "Activate the button to insert Image maps. This allows you to associate URLs to areas of an image, creating hotspots.";
  6141. $RemoveSearchResults = "Clean search results";
  6142. $ExerciseCantBeEditedAfterAddingToTheLP = "Exercise can't be edited after being added to the Learning Path";
  6143. $CourseTool = "Course tool";
  6144. $LPExerciseResultsBySession = "Results of learning paths exercises by session";
  6145. $LPQuestionListResults = "Learning paths exercises results list";
  6146. $PleaseSelectACourse = "Please select a course";
  6147. $StudentScoreAverageIsCalculatedBaseInAllLPsAndAllAttempts = "Learner score average is calculated bases on all learning paths and all attempts";
  6148. $AverageScore = "Average score";
  6149. $LastConnexionDate = "Last connexion date";
  6150. $ToolVideoconference = "Videoconference";
  6151. $BigBlueButtonEnableTitle = "BigBlueButton videoconference tool";
  6152. $BigBlueButtonEnableComment = "Choose whether you want to enable the BigBlueButton videoconference tool. Once enabled, it will show as an additional course tool in all courses' homepage, and teachers will be able to launch a conference at any time. Learners will not be able to launch a conference, only join one. If you don't have a BigBlueButton server, please <a href=\"http://bigbluebutton.org/\" target=\"_blank\">set one up</a> or ask the <a href=\"http://www.chamilo.org/en/providers\" target=\"_blank\">Chamilo official providers</a> for a quote.
  6153. BigBlueButton is a free (as in freedom *and* beer), but its installation requires a set of technical skills that might not be immediately available to all. You can install it on your own or seek professional help to assist you or do it for you. This help, however, will generate a certain cost. In the pure logic of the free software, we offer you the tools to make your work easier and recommend professionals (the Chamilo Official Providers) that will be able to help you if this were too difficult.";
  6154. $BigBlueButtonHostTitle = "BigBlueButton server host";
  6155. $BigBlueButtonHostComment = "This is the name of the server where your BigBlueButton server is running. Might be <i>localhost</i>, an IP address (e.g. 192.168.13.54) or a domain name (e.g. my.video.com).";
  6156. $BigBlueButtonSecuritySaltTitle = "Security key of the BigBlueButton server";
  6157. $BigBlueButtonSecuritySaltComment = "This is the security key of your BigBlueButton server, which will allow your server to authentify the Chamilo installation. Refer to the BigBlueButton documentation to locate it.";
  6158. $SelectSVGEditImage = "Select a picture (SVG, PNG)";
  6159. $OnlyAccessFromYourGroup = "Only accessible from your group";
  6160. $CreateAssignmentPage = "This will create a special wiki page in which the teacher can describe the task and which will be automatically linked to the wiki pages where learners perform the task. Both the teacher's and the learners' pages are created automatically. In these tasks, learners can only edit and view theirs pages, but this can be changed easily if you need to.";
  6161. $UserFolders = "Folders of users";
  6162. $UserFolder = "User folder";
  6163. $HelpUsersFolder = "INFORMATION VISIBLE TO THE TEACHER ONLY:\nThe users folder contains a folder for each user who has accessed it through the documents tool, or when any file has been sent in the course through the online editor. If neither circumstances has occurred, then no user folder will have been created. In the case of groups, files that are sent through the editor will be added in the folder of each group, which is only accessible by students from this group.
  6164. <br /><br />
  6165. The users folder and each of the included folders will be hidden by default in for all students, but each student can see the contents of his/her directory through the online editor. However, if a student knows the address of a file or folder of another student, he may be able to access it.
  6166. <br /><br />
  6167. If the folder of a student is visible, other students can see what it contains. In this case, the student that owns the folder can also (from the documents tool and only in his/her folder): create and edit web documents, convert a document into a template for personal use, create and edit drawings in SVG and PNG formats, record audio files in WAV format, make audio files in MP3 from a text, make snapshops from a webcam, send documents, create folders, move folders and files, delete folders and files, and download backup of his/her folder.
  6168. <br /><br />
  6169. Moreover, the documents tool is synchronized with the file manager of the online editor, so changes in the documents triggered in any one of these will affect both.
  6170. <br /><br />
  6171. As such, the user folder is not only a place to deposit files, it becomes a complete manager of the documents students use during the course. Also, remember that any user can copy a file that is visible from any folder in the documents tool (whether or not he is the owner) to his/her portfolios or personal documents area of social network, which will be available to him/her for use in other courses.";
  6172. $HelpFolderChat = "INFORMATION VISIBLE TO THE TEACHER ONLY:\nThis folder contains all sessions that have been opened in the chat. Although the chat sessions can often be trivial, others can be really interesting and worthy of being incorporated as an additional work document. To do this without changing the visibility of this folder, make the file visible and link it from where you deem appropriate. It is not recommended to make this folder visible to all.";
  6173. $HelpFolderCertificates = "INFORMATION VISIBLE TO THE TEACHER ONLY:\nThis folder contains the various certificates templates that have been created for the rating tool. It is not recommended to make this folder visible to all.";
  6174. $DestinationDirectory = "Destination folder";
  6175. $CertificatesFiles = "Certificates";
  6176. $ChatFiles = "Chat conversations history";
  6177. $Flash = "Flash";
  6178. $Video = "Video";
  6179. $Images = "Images";
  6180. $UploadCorrections = "Upload corrections";
  6181. $Text2AudioTitle = "Enable online services for text to speech conversion";
  6182. $Text2AudioComment = "Online tool to convert text to speech. Uses speech synthesis technology to generate audio files saved into your course.";
  6183. $ShowUsersFoldersTitle = "Show users folders in the documents tool";
  6184. $ShowUsersFoldersComment = "This option allows you to show or hide to teachers the folders that the system generates for each user who visits the tool documents or send a file through the web editor. If you display these folders to the teachers, they may make visible or not the learners and allow each learner to have a specific place on the course where not only store documents, but where they can also create and edit web pages and to export to pdf, make drawings, make personal web templates, send files, as well as create, move and delete directories and files and make security copies from their folders. Each user of course have a complete document manager. Also, remember that any user can copy a file that is visible from any folder in the documents tool (whether or not the owner) to his/her portfolios or personal documents area of social network, which will be available for his/her can use it in other courses.";
  6185. $ShowDefaultFoldersTitle = "Show in documents tool all folders containing multimedia resources supplied by default";
  6186. $ShowDefaultFoldersComment = "Multimedia file folders containing files supplied by default organized in categories of video, audio, image and flash animations to use in their courses. Although you make it invisible into the document tool, you can still use these resources in the platform web editor.";
  6187. $ShowChatFolderTitle = "Show the history folder of chat conversations";
  6188. $ShowChatFolderComment = "This will show to theacher the folder that contains all sessions that have been made in the chat, the teacher can make them visible or not learners and use them as a resource";
  6189. $EnabledStudentExport2PDFTitle = "Allow learners to export web documents to PDF format in the documents and wiki tools";
  6190. $EnabledStudentExport2PDFComment = "This feature is enabled by default, but in case of server overload abuse it, or specific learning environments, might want to disable it for all courses.";
  6191. $EnabledInsertHtmlTitle = "Allow insertion of widgets";
  6192. $EnabledInsertHtmlComment = "This allows you to embed on your webpages your favorite videos and applications such as vimeo or slideshare and all sorts of widgets and gadgets";
  6193. $CreateAudio = "Create audio";
  6194. $InsertText2Audio = "Enter the text you want to convert to an audio file";
  6195. $HelpText2Audio = "Convert your text to speech";
  6196. $BuildMP3 = "Build mp3";
  6197. $Voice = "Voice";
  6198. $Female = "Female";
  6199. $Male = "Male";
  6200. $IncludeAsciiMathMlTitle = "Load the Mathjax library in all the system pages";
  6201. $IncludeAsciiMathMlComment = "Activate this setting if you want to show MathML-based mathematical formulas and ASCIIsvg-based mathematical graphics not only in the \"Documents\" tool, but elsewhere in the system.";
  6202. $CourseHideToolsTitle = "Hide tools from teachers";
  6203. $CourseHideToolsComment = "Check the tools you want to hide from teachers. This will prohibit access to the tool.";
  6204. $GoogleAudio = "Use Google audio services";
  6205. $vozMe = "Use vozMe audio services";
  6206. $HelpGoogleAudio = "Supports up to 100 characters in a wide variety of languages. The files are generated and automatically saved into the Chamilo directory where you currently are.";
  6207. $HelpvozMe = "Supports text of several thousands characters, you can also select the type of voice, male or female. It works with fewer languages, however, and the audio quality is lower. Finally, you'll have to download the files manually from a new window.";
  6208. $SaveMP3 = "Save mp3";
  6209. $OpenInANewWindow = "Open in a new window";
  6210. $Speed = "Speed";
  6211. $GoFaster = "Faster";
  6212. $Fast = "Fast";
  6213. $Slow = "Slow";
  6214. $SlowDown = "Slower";
  6215. $Pediaphon = "Use Pediaphon audio services";
  6216. $HelpPediaphon = "Supports text with several thousands characters, in various types of male and female voices (depending on the language). Audio files will be generated and automatically saved to the Chamilo directory in which you are.";
  6217. $FirstSelectALanguage = "Please select a language";
  6218. $MoveUserStats = "Move users results from/to a session";
  6219. $CompareUserResultsBetweenCoursesAndCoursesInASession = "This advanced tool allows you to manually improve the tracking of users results when moving from courses methodology to sessions methodology. In most cases, you won't need to use it.<br />
  6220. On this screen, you can compare results of users between the context of a standalone course, and the context of the same course inside a session.<br />
  6221. Once you are sure about what to do, you can choose to move the tracking data of the students (exercises results and learning paths tracking) from a course to a session.";
  6222. $PDFExportWatermarkEnableTitle = "Enable watermark in PDF export";
  6223. $PDFExportWatermarkEnableComment = "By enabling this option, you can upload an image or a text that will be automatically added as watermark to all PDF exports of documents on the system.";
  6224. $AddWaterMark = "Upload a watermark image";
  6225. $PDFExportWatermarkByCourseTitle = "Enable watermark definition by course";
  6226. $PDFExportWatermarkByCourseComment = "When this option is enabled, teachers can define their own watermark for the documents in their courses.";
  6227. $PDFExportWatermarkTextTitle = "PDF watermark text";
  6228. $PDFExportWatermarkTextComment = "This text will be added as a watermark to the documents exports as PDF.";
  6229. $ExerciseMinScoreTitle = "Minimum score of exercises";
  6230. $ExerciseMinScoreComment = "Define a minimum score (generally 0) for all the exercises on the platform. This will define how final results are shown to users and teachers.";
  6231. $ExerciseMaxScoreTitle = "Maximum score of exercises";
  6232. $ExerciseMaxScoreComment = "Define a maximum score (generally 10,20 or 100) for all the exercises on the platform. This will define how final results are shown to users and teachers.";
  6233. $AddPicture = "Add a picture";
  6234. $LPAutoLaunch = "Enable learning path auto-launch";
  6235. $UseMaxScore100 = "Use default maximum score of 100";
  6236. $EnableLPAutoLaunch = "Enable learning path auto-launch";
  6237. $DisableLPAutoLaunch = "Disable learning path auto-launch";
  6238. $TheLPAutoLaunchSettingIsONStudentsWillBeRedirectToAnSpecificLP = "The learning path auto-launch setting is ON. When learners enter this course, they will be automatically redirected to the learning path marked as auto-launch.";
  6239. $UniqueAnswerNoOption = "Unique answer with unknown";
  6240. $MultipleAnswerTrueFalse = "Multiple answer true/false/don't know";
  6241. $MultipleAnswerCombinationTrueFalse = "Combination true/false/don't-know";
  6242. $DontKnow = "Don't know";
  6243. $ExamNotAvailableAtThisTime = "Exam not available at this time";
  6244. $LoginOrEmailAddress = "Username or e-mail address";
  6245. $EnableMathJaxTitle = "Enable MathJax";
  6246. $Activate = "Activate";
  6247. $Deactivate = "Deactivate";
  6248. $ConfigLearnpath = "Learning path settings";
  6249. $CareersAndPromotions = "Careers and promotions";
  6250. $Careers = "Careers";
  6251. $Promotions = "Promotions";
  6252. $Updated = "Update successful";
  6253. $Career = "Career";
  6254. $SubscribeSessionsToPromotions = "Subscribe sessions to promotions";
  6255. $SessionsInPlatform = "Sessions not subscribed";
  6256. $FirstLetterSessions = "First letter of session name";
  6257. $SessionsInPromotion = "Sessions in this promotion";
  6258. $SubscribeSessionsToPromotion = "Subscribe sessions to promotion";
  6259. $NoEndTime = "No end time";
  6260. $SubscribeUsersToClass = "Subscribe users to class";
  6261. $SubscribeClassToCourses = "Subscribe class to courses";
  6262. $SubscribeClassToSessions = "Subscribe class to sessions";
  6263. $SessionsInGroup = "Sessions in group";
  6264. $CoursesInGroup = "Courses in group";
  6265. $UsersInGroup = "Users in group";
  6266. $UsersInPlatform = "Users on platform";
  6267. $Profile = "Profile";
  6268. $CreatedAt = "Created at";
  6269. $UpdatedAt = "Updated at";
  6270. $CreatedOn = "Created on";
  6271. $UpdatedOn = "Updated on";
  6272. $Paint = "Paint";
  6273. $MyResults = "My results";
  6274. $LearningPaths = "Learning paths";
  6275. $AllLearningPaths = "All learning paths";
  6276. $ByCourse = "By course";
  6277. $MyQCM = "My MCQ";
  6278. $LearnpathUpdated = "Learning path updated";
  6279. $YouNeedToCreateACareerFirst = "You will have to create a career before you can add promotions (promotions are sub-elements of a career)";
  6280. $OutputBufferingInfo = "Output buffering setting is \"On\" for being enabled or \"Off\" for being disabled. This setting also may be enabled through an integer value (4096 for example) which is the output buffer size.";
  6281. $LoadedExtension = "Extension loaded";
  6282. $AddACourse = "Add a course";
  6283. $PerWeek = "Per week";
  6284. $SubscribeGroupToSessions = "Subscribe group to sessions";
  6285. $SubscribeGroupToCourses = "Subscribe group to courses";
  6286. $CompareStats = "Compare stats";
  6287. $RenameAndComment = "Rename and comment";
  6288. $PhotoRetouching = "Photo retouching";
  6289. $EnabledPixlrTitle = "Enable external Pixlr services";
  6290. $EnabledPixlrComment = "Pixlr allow you to edit, adjust and filter your photos with features similar to Photoshop. It is the ideal complement to process images based on bitmaps";
  6291. $PromotionXArchived = "The <i>%s</i> promotion has been archived. This action has the consequence of making invisible all sessions registered into this promotion. You can undo this by unarchiving this promotion.";
  6292. $PromotionXUnarchived = "The <i>%s</i> promotion has been unarchived. This action has the consequence of making visible all sessions registered into this promotion. You can undo this by archiving the promotion.";
  6293. $CareerXArchived = "The <i>%s</i> career has been archived. This action has the consequence of making invisible the career, its promotions and all the sessions registered into this promotion. You can undo this by unarchiving the career.";
  6294. $CareerXUnarchived = "The <i>%s</i> career has been unarchived. This action has the consequence of making visible the career, its promotions and all the sessions registered into this promotion. You can undo this by archiving the career.";
  6295. $SeeAll = "See all";
  6296. $SeeOnlyArchived = "See only archived";
  6297. $SeeOnlyUnarchived = "See only unarchived";
  6298. $LatestAttempt = "Latest attempt";
  6299. $PDFWaterMarkHeader = "Watermark header in PDF exports";
  6300. $False = "False";
  6301. $DoubtScore = "Don't know";
  6302. $RegistrationByUsersGroups = "Enrolment by classes";
  6303. $ContactInformationHasNotBeenSent = "Your contact information could not be sent. This is probably due to a temporary network problem. Please try again in a few seconds. If the problem remains, ignore this registration process and simply click the button to go to the next step.";
  6304. $FillCourses = "Fill courses";
  6305. $FillSessions = "Fill sessions";
  6306. $FileDeleted = "File deleted";
  6307. $MyClasses = "My classes";
  6308. $Archived = "Archived";
  6309. $Unarchived = "Unarchived";
  6310. $PublicationDate = "Publication date";
  6311. $MySocialGroups = "My social groups";
  6312. $SocialGroups = "Social groups";
  6313. $CreateASocialGroup = "Create a social group";
  6314. $StatsUsersDidNotLoginInLastPeriods = "Not logged in for some time";
  6315. $LastXMonths = "Last %i months";
  6316. $NeverConnected = "Never connected";
  6317. $EnableAccessibilityFontResizeTitle = "Font resize accessibility feature";
  6318. $EnableAccessibilityFontResizeComment = "Enable this option to show a set of font resize options on the top-right side of your campus. This will allow visually impaired to read their course contents more easily.";
  6319. $HotSpotDelineation = "Hotspot delineation";
  6320. $CorrectAndRate = "Correct and rate";
  6321. $AtOnce = "Upon reception";
  6322. $Daily = "Once a day";
  6323. $QuestionsAreTakenFromLPExercises = "These questions have been taken from the learning paths";
  6324. $AllStudentsAttemptsAreConsidered = "All learners attempts are considered";
  6325. $ViewModeEmbedFrame = "Current view mode: external embed. Use only for embedding in external sites.";
  6326. $ItemAdded = "Item added";
  6327. $ItemDeleted = "Item deleted";
  6328. $ItemUpdated = "Item updated";
  6329. $ItemCopied = "Item copied";
  6330. $MyStatistics = "My statistics";
  6331. $PublishedExercises = "Exercises available";
  6332. $DoneExercises = "Exercises taken";
  6333. $AverageExerciseResult = "Average exercise result";
  6334. $LPProgress = "Learning path progress";
  6335. $Ranking = "Ranking";
  6336. $BestResultInCourse = "Best result in course";
  6337. $ExerciseStartDate = "Publication date";
  6338. $FromDateXToDateY = "From %s to %s";
  6339. $RedirectToALearningPath = "Redirect to a selected learning path";
  6340. $RedirectToTheLearningPathList = "Redirect to the learning paths list";
  6341. $PropagateNegativeResults = "Propagate negative results between questions";
  6342. $LPNotVisibleToStudent = "Learners cannot see this learning path";
  6343. $InsertALinkToThisQuestionInTheExercise = "Use this question in the test as a link (not a copy)";
  6344. $CourseThematicAdvance = "Course progress";
  6345. $OnlyShowScore = "Practice mode: Show score only, by category if at least one is used";
  6346. $Clean = "Clean";
  6347. $OnlyBestResultsPerStudent = "In case of multiple attempts, only shows the best result of each learner";
  6348. $EditMembersList = "Edit members list";
  6349. $BestAttempt = "Best attempt";
  6350. $ExercisesInTimeProgressChart = "Progress of own exercises results over time, against learners average";
  6351. $MailNotifyInvitation = "Notify by mail on new invitation received";
  6352. $MailNotifyMessage = "Notify by mail on new personal message received";
  6353. $MailNotifyGroupMessage = "Notify by mail on new message received in group";
  6354. $SearchEnabledTitle = "Fulltext search";
  6355. $SearchEnabledComment = "This feature allows you to index most of the documents uploaded to your portal, then provide a search feature for users.<br />This feature will not index documents that have already been uploaded, so it is important to enable (if wanted) at the beginning of your implementation.<br />Once enabled, a search box will appear in the courses list of every user. Searching for a specific term will bring a list of corresponding documents, exercises or forum topics, filtered depending on the availability of these contents to the user.";
  6356. $SpecificSearchFieldsAvailable = "Available custom search fields";
  6357. $XapianModuleInstalled = "Xapian module installed";
  6358. $ClickToSelectOrDragAndDropMultipleFilesOnTheUploadField = "Click on the box below to select files from your computer (you can use CTRL + clic to select various files at a time), or drag and drop some files from your desktop directly over the box below. The system will handle the rest!";
  6359. $Simple = "Simple";
  6360. $Multiple = "Multiple";
  6361. $UploadFiles = "Click or drag and drop files here to upload them";
  6362. $ImportExcelQuiz = "Import quiz from Excel";
  6363. $DownloadExcelTemplate = "Download the Excel Template";
  6364. $YouAreCurrentlyUsingXOfYourX = "You are currently using %s MB (%s) of your %s MB.";
  6365. $AverageIsCalculatedBasedInAllAttempts = "Average is calculated based on all test attempts";
  6366. $AverageIsCalculatedBasedInTheLatestAttempts = "Average is calculated based on the latest attempts";
  6367. $LatestAttemptAverageScore = "Latest attempt average score";
  6368. $SupportedFormatsForIndex = "Supported formats for index";
  6369. $Installed = "Installed";
  6370. $NotInstalled = "Not installed";
  6371. $Settings = "Settings";
  6372. $ProgramsNeededToConvertFiles = "Programs needed to convert files";
  6373. $YouAreUsingChamiloInAWindowsPlatformSadlyYouCantConvertDocumentsInOrderToSearchTheContentUsingThisTool = "You are using Chamilo in a Windows platform, sadly you can't convert documents in order to search the content using this tool";
  6374. $OnlyLettersAndNumbers = "Only letters (a-z) and numbers (0-9)";
  6375. $HideCoursesInSessionsTitle = "Hide courses list in sessions";
  6376. $HideCoursesInSessionsComment = "When showing the session block in your courses page, hide the list of courses inside that session (only show them inside the specific session screen).";
  6377. $ShowGroupsToUsersTitle = "Show classes to users";
  6378. $ShowGroupsToUsersComment = "Show the classes to users. Classes are a feature that allow you to register/unregister groups of users into a session or a course directly, reducing the administrative hassle. When you pick this option, learners will be able to see in which class they are through their social network interface.";
  6379. $ExerciseWillBeActivatedFromXToY = "Exercise will be activated from %s to %s";
  6380. $ExerciseAvailableFromX = "Exercise available from %s";
  6381. $ExerciseAvailableUntilX = "Exercise available until %s";
  6382. $HomepageViewActivityBig = "Big icons view";
  6383. $CheckFilePermissions = "Check file permissions";
  6384. $AddedToALP = "Added to a LP";
  6385. $NotAvailable = "Not available";
  6386. $ToolSearch = "Search";
  6387. $EnableQuizScenarioTitle = "Enable Quiz scenario";
  6388. $EnableQuizScenarioComment = "From here you will be able to create exercises that propose different questions depending in the user's answers.";
  6389. $NanogongNoApplet = "Can't find the applet Nanogong";
  6390. $NanogongRecordBeforeSave = "Before try to send the file you should make the recording";
  6391. $NanogongGiveTitle = "You did not give a name to file";
  6392. $NanogongFailledToSubmit = "Failed to submit the voice recording";
  6393. $NanogongSubmitted = "Voice recording has been submitted";
  6394. $RecordMyVoice = "Record my voice";
  6395. $PressRecordButton = "To start recording press the red button";
  6396. $VoiceRecord = "Voice record";
  6397. $BrowserNotSupportNanogongSend = "Your browser does not send your recording to the platform, although you can save on your computer disk and send it later. To have all the features, we recommend using advanced browsers such as Firefox or Chrome.";
  6398. $FileExistRename = "Already exist a file with the same name. Please, rename the file.";
  6399. $EnableNanogongTitle = "Activate recorder - voice player Nanogong";
  6400. $EnableNanogongComment = "Nanongong is a recorder - voice player that allows you to record your voice and send it to the platform or download it into your hard drive. It also lets you play what you recorded. The learners only need a microphone and speakers, and accept the load applet when first loaded. It is very useful for language learners to hear his voice after listening the correct pronunciation proposed by teacher in a wav voice file.";
  6401. $GradebookAndAttendances = "Assessments and attendances";
  6402. $ExerciseAndLPsAreInvisibleInTheNewCourse = "Exercises and learning paths are invisible in the new course";
  6403. $SelectADateRange = "Select a date range";
  6404. $AreYouSureToLockedTheEvaluation = "Are you sure you want to lock the evaluation?";
  6405. $AreYouSureToUnLockedTheEvaluation = "Are you sure you want to unlock the evaluation?";
  6406. $EvaluationHasBeenUnLocked = "Evaluation has been unlocked";
  6407. $EvaluationHasBeenLocked = "Evaluation has been locked";
  6408. $AllDone = "All done";
  6409. $AllNotDone = "All not done";
  6410. $IfYourLPsHaveAudioFilesIncludedYouShouldSelectThemFromTheDocuments = "If your Learning paths have audio files included, you should select them from the documents";
  6411. $IfYouPlanToUpgradeFromOlderVersionYouMightWantToHaveAlookAtTheChangelog = "If you plan to upgrade from an older version of Chamilo, you might want to <a href=\"../../documentation/changelog.html\" target=\"_blank\">have a look at the changelog</a> to know what's new and what has been changed";
  6412. $UplUploadFailedSizeIsZero = "There was a problem uploading your document: the received file had a 0 bytes size on the server. Please, review your local file for any corruption or damage, then try again.";
  6413. $YouMustChooseARelationType = "You have to choose a relation type";
  6414. $SelectARelationType = "Relation type selection";
  6415. $AddUserToURL = "Add user to this URL";
  6416. $CourseBelongURL = "Course registered to the URL";
  6417. $AtLeastOneSessionAndOneURL = "You have to select at least one session and one URL";
  6418. $SelectURL = "Select a URL";
  6419. $SessionsWereEdited = "The sessions have been updated.";
  6420. $URLDeleted = "URL deleted.";
  6421. $CannotDeleteURL = "Cannot delete this URL.";
  6422. $CoursesInPlatform = "Courses on the platform.";
  6423. $UsersEdited = "Users updated.";
  6424. $CourseHome = "Course homepage";
  6425. $ComingSoon = "Coming soon...";
  6426. $DummyCourseOnlyOnTestServer = "Dummy course content - only available on test platforms.";
  6427. $ThereAreNotSelectedCoursesOrCoursesListIsEmpty = "There are no selected courses or the courses list is empty.";
  6428. $CodeTwiceInFile = "A code has been used twice in the file. This is not authorized. Courses codes should be unique.";
  6429. $CodeExists = "This code exists";
  6430. $UnkownCategoryCourseCode = "The category could not be found";
  6431. $LinkedCourseTitle = "Title of related course";
  6432. $LinkedCourseCode = "Linked course's code";
  6433. $AssignUsersToSessionsAdministrator = "Assign users to sessions administrator";
  6434. $AssignedUsersListToSessionsAdministrator = "Assign a users list to the sessions administrator";
  6435. $GroupUpdated = "Class updated.";
  6436. $GroupDeleted = "Class deleted.";
  6437. $CannotDeleteGroup = "The class could not be deleted.";
  6438. $SomeGroupsNotDeleted = "Some of the classes could not be deleted.";
  6439. $DontUnchek = "Don't uncheck";
  6440. $Modified = "Modified";
  6441. $SessionsList = "Sessions list";
  6442. $Promotion = "Promotion";
  6443. $UpdateSession = "Update session";
  6444. $Path = "Path";
  6445. $Over100 = "Over 100";
  6446. $UnderMin = "Under the minimum.";
  6447. $SelectOptionExport = "Select export option";
  6448. $FieldEdited = "Field added.";
  6449. $LanguageParentNotExist = "The parent language does not exist.";
  6450. $TheSubLanguageHasNotBeenRemoved = "The sub-language has not been removed.";
  6451. $ShowOrHide = "Show/Hide";
  6452. $StatusCanNotBeChangedToHumanResourcesManager = "The status of this user cannot be changed to human resources manager.";
  6453. $FieldTaken = "Field taken";
  6454. $AuthSourceNotAvailable = "Authentication source unavailable.";
  6455. $UsersSubscribedToSeveralCoursesBecauseOfVirtualCourses = "Users subscribed to several courses through the use of virtual courses.";
  6456. $NoUrlForThisUser = "This user doesn't have a related URL.";
  6457. $ExtraData = "Extra data";
  6458. $ExercisesInLp = "Exercises in learning paths";
  6459. $Id = "Id";
  6460. $ThereWasAnError = "There was an error.";
  6461. $CantMoveToTheSameSession = "Cannot move this to the same session.";
  6462. $StatsMoved = "Stats moved.";
  6463. $UserInformationOfThisCourse = "User information for this course";
  6464. $OriginCourse = "Original course";
  6465. $OriginSession = "Original session";
  6466. $DestinyCourse = "Destination course";
  6467. $DestinySession = "Destination session";
  6468. $CourseDoesNotExistInThisSession = "The course does not exist in this session. The copy will work only from one course in one session to the same course in another session.";
  6469. $UserNotRegistered = "User not registered.";
  6470. $ViewStats = "View stats";
  6471. $Responsable = "Responsible";
  6472. $TheAttendanceSheetIsLocked = "The attendance sheet is locked.";
  6473. $Presence = "Assistance";
  6474. $ACourseCategoryWithThisNameAlreadyExists = "A course category with the same name already exists.";
  6475. $OpenIDRedirect = "OpenID redirect";
  6476. $Blogs = "Blogs";
  6477. $SelectACourse = "Select a course";
  6478. $PleaseSelectACourseOrASessionInTheLeftColumn = "Please select a course or a session in the sidebar.";
  6479. $Others = "Others";
  6480. $BackToCourseDesriptionList = "Back to the course description";
  6481. $Postpone = "Postpone";
  6482. $NotHavePermission = "The user doesn't have permissions to do the requested operation.";
  6483. $CourseCodeAlreadyExistExplained = "When a course code is duplicated, the database system detects a course code that already exists and prevents the creation of a duplicate. Please ensure no course code is duplicated.";
  6484. $NewImage = "New image";
  6485. $Untitled = "Untitled";
  6486. $CantDeleteReadonlyFiles = "Cannot delete files that are configured in read-only mode.";
  6487. $InvalideUserDetected = "Invalid user detected.";
  6488. $InvalideGroupDetected = "Invalid group detected.";
  6489. $OverviewOfFilesInThisZip = "Overview of diles in this Zip";
  6490. $TestLimitsAdded = "Tests limits added";
  6491. $AddLimits = "Add limits";
  6492. $Unlimited = "Unlimited";
  6493. $LimitedTime = "Limited time";
  6494. $LimitedAttempts = "Limited attempts";
  6495. $Times = "Times";
  6496. $Random = "Random";
  6497. $ExerciseTimerControlMinutes = "Enable exercise timer controller.";
  6498. $Numeric = "Numerical";
  6499. $Acceptable = "Acceptable";
  6500. $Hotspot = "Hotspot";
  6501. $ChangeTheVisibilityOfTheCurrentImage = "Change the visibility of the current image";
  6502. $Steps = "Steps";
  6503. $OriginalValue = "Original value";
  6504. $ChooseAnAnswer = "Choose an answer";
  6505. $ImportExercise = "Import exercise";
  6506. $MultipleChoiceMultipleAnswers = "Multiple choice, multiple answers";
  6507. $MultipleChoiceUniqueAnswer = "Multiple choice, unique answer";
  6508. $HotPotatoesFiles = "HotPotatoes files";
  6509. $OAR = "Area to avoid";
  6510. $TotalScoreTooBig = "Total score is too big";
  6511. $InvalidQuestionType = "Invalid question type";
  6512. $InsertQualificationCorrespondingToMaxScore = "Insert qualification corresponding to max score";
  6513. $ThreadMoved = "Thread moved";
  6514. $MigrateForum = "Migrate forum";
  6515. $YouWillBeNotified = "You will be notified";
  6516. $MoveWarning = "Warning: moving gradebook elements can be dangerous for the data inside your gradebook.";
  6517. $CategoryMoved = "The gradebook has been moved.";
  6518. $EvaluationMoved = "The gradebook component has been moved.";
  6519. $NoLinkItems = "There are not linked components.";
  6520. $NoUniqueScoreRanges = "There is no unique score range possibility.";
  6521. $DidNotTakeTheExamAcronym = "The user did not take the exam.";
  6522. $DidNotTakeTheExam = "The user did not take the exam.";
  6523. $DeleteUser = "Delete user";
  6524. $ResultDeleted = "Result deleted.";
  6525. $ResultsDeleted = "Results deleted.";
  6526. $OverWriteMax = "Overwrite the maximum.";
  6527. $ImportOverWriteScore = "The import should overwrite the score.";
  6528. $NoDecimals = "No decimals";
  6529. $NegativeValue = "Negative value";
  6530. $ToExportMustLockEvaluation = "To export, you must lock the evaluation.";
  6531. $ShowLinks = "Show links";
  6532. $TotalForThisCategory = "Total for this category.";
  6533. $OpenDocument = "Open document";
  6534. $LockEvaluation = "Lock evaluation";
  6535. $UnLockEvaluation = "Unlock evaluation.";
  6536. $TheEvaluationIsLocked = "The evaluation is locked.";
  6537. $BackToEvaluation = "Back to evaluation.";
  6538. $Uploaded = "Uploaded.";
  6539. $Saved = "Saved.";
  6540. $Reset = "Reset";
  6541. $EmailSentFromLMS = "E-mail sent from the platform";
  6542. $InfoAboutLastDoneAdvanceAndNextAdvanceNotDone = "Information about the last finished step and the next unfinished one.";
  6543. $LatexCode = "LaTeX code";
  6544. $LatexFormula = "LaTeX formula";
  6545. $AreYouSureToLockTheAttendance = "Are you sure you want to lock the attendance?";
  6546. $UnlockMessageInformation = "The attendance is not locked, which means your teacher is still able to modify it.";
  6547. $LockAttendance = "Lock attendance";
  6548. $AreYouSureToUnlockTheAttendance = "Are you sure you want to unlock the attendance?";
  6549. $UnlockAttendance = "Unlock attendance";
  6550. $LockedAttendance = "Locked attendance";
  6551. $DecreaseFontSize = "Decrease the font size";
  6552. $ResetFontSize = "Reset the font size";
  6553. $IncreaseFontSize = "Increase the font size";
  6554. $LoggedInAsX = "Logged in as %s";
  6555. $Quantity = "Quantity";
  6556. $AttachmentUpload = "Attachment upload";
  6557. $CourseAutoRegister = "Auto-registration course";
  6558. $ThematicAdvanceInformation = "The thematic advance tool allows you to organize your course through time.";
  6559. $RequestURIInfo = "The URL requested to get to this page, without the domain definition.";
  6560. $DiskFreeSpace = "Free space on disk";
  6561. $ProtectFolder = "Protected folder";
  6562. $SomeHTMLNotAllowed = "Some HTML attributed are not allowed.";
  6563. $MyOtherGroups = "My other classes";
  6564. $XLSFileNotValid = "The provided XLS file is not valid.";
  6565. $YouAreRegisterToSessionX = "You are registered to session: %s.";
  6566. $NextBis = "Next";
  6567. $Prev = "Prev";
  6568. $Configuration = "Configuration";
  6569. $WelcomeToTheChamiloInstaller = "Welcome to the Chamilo installer";
  6570. $PHPVersionError = "Your PHP version does not match the requirements for this software. Please check you have the latest version, then try again.";
  6571. $ExtensionSessionsNotAvailable = "Sessions extension not available";
  6572. $ExtensionZlibNotAvailable = "Zlib extension not available";
  6573. $ExtensionPCRENotAvailable = "PCRE extension not available";
  6574. $ToGroup = "To social group";
  6575. $XWroteY = "%s wrote: <br /><i>%s</i>";
  6576. $BackToGroup = "Back to the group";
  6577. $GoAttendance = "Go to attendances";
  6578. $GoAssessments = "Go assessments";
  6579. $EditCurrentModule = "Edit current module";
  6580. $SearchFeatureTerms = "Terms for the search feature";
  6581. $UserRoles = "User roles";
  6582. $GroupRoles = "Group roles";
  6583. $StorePermissions = "Store permissions";
  6584. $PendingInvitation = "Pending invitation";
  6585. $MaximunFileSizeXMB = "Maximum file size: %sMB.";
  6586. $MessageHasBeenSent = "Your message has been sent.";
  6587. $Tags = "Tags";
  6588. $ErrorSurveyTypeUnknown = "Survey type unknown";
  6589. $SurveyUndetermined = "Survey undefined";
  6590. $QuestionComment = "Question comment";
  6591. $UnknowQuestion = "Unknown question";
  6592. $DeleteSurveyGroup = "Delete a survey group";
  6593. $ErrorOccurred = "An error occurred.";
  6594. $ClassesUnSubscribed = "Classes unsubscribed.";
  6595. $NotAddedToCourse = "Not added to course";
  6596. $UsersNotRegistered = "Users who did not register.";
  6597. $ClearFilterResults = "Clear filter results";
  6598. $SelectFilter = "Select filter";
  6599. $MostLinkedPages = "Pages most linked";
  6600. $DeadEndPages = "Dead end pages";
  6601. $MostNewPages = "Newest pages";
  6602. $MostLongPages = "Longest pages";
  6603. $HiddenPages = "Hidden pages";
  6604. $MostDiscussPages = "Most discussed pages";
  6605. $BestScoredPages = "Best scores pages";
  6606. $MProgressPages = "Highest progress pages";
  6607. $MostDiscussUsers = "Most discussed users";
  6608. $RandomPage = "Random page";
  6609. $DateExpiredNotBeLessDeadLine = "The date of effective blocking of sending the work can not be before the displayed posting deadline.";
  6610. $NotRevised = "Not reviewed";
  6611. $DirExists = "The operation is impossible, a directory with this name already exists.";
  6612. $DocMv = "Document moved";
  6613. $ThereIsNoClassScheduledTodayTryPickingAnotherDay = "There is no class scheduled today, try picking another day or add your attendance entry yourself using the action icons.";
  6614. $AddToCalendar = "Add to calendar";
  6615. $TotalWeight = "Total weight";
  6616. $RandomPick = "Random pick";
  6617. $SumOfActivitiesWeightMustBeEqualToTotalWeight = "The sum of all activity weights must be equal to the total weight indicated in your assessment settings, otherwise the learners will not be able to reach the sufficient score to achieve their certification.";
  6618. $TotalSumOfWeights = "The sum of all weights of activities inside this assessment has to be equivalent to this number.";
  6619. $ShowScoreAndRightAnswer = "Auto-evaluation mode: show score and expected answers";
  6620. $DoNotShowScoreNorRightAnswer = "Exam mode: Do not show score nor answers";
  6621. $YouNeedToAddASessionCategoryFirst = "You need to add a session category first";
  6622. $YouHaveANewInvitationFromX = "You have a new invitation from %s";
  6623. $YouHaveANewMessageFromGroupX = "You have a new message from group %s";
  6624. $YouHaveANewMessageFromX = "You have a new message from %s";
  6625. $SeeMessage = "See message";
  6626. $SeeInvitation = "See invitation";
  6627. $YouHaveReceivedThisNotificationBecauseYouAreSubscribedOrInvolvedInItToChangeYourNotificationPreferencesPleaseClickHereX = "You have received this notification because you are subscribed or involved in it to change your notification preferences please click here: %s";
  6628. $Replies = "Replies";
  6629. $Reply = "Reply";
  6630. $InstallationGuide = "Installation guide";
  6631. $ChangesInLastVersion = "Changes in last version";
  6632. $ContributorsList = "Contributors list";
  6633. $SecurityGuide = "Security guide";
  6634. $OptimizationGuide = "Optimization guide";
  6635. $FreeBusyCalendar = "Free/Busy calendar";
  6636. $LoadUsersExtraData = "Load users' extra data";
  6637. $Broken = "Broken";
  6638. $CheckURL = "Check link";
  6639. $PrerequisiteDeletedError = "Error: the element defined as prerequisite has been deleted.";
  6640. $NoItem = "No item yet";
  6641. $ProtectedPages = "Protected pages";
  6642. $LoadExtraData = "Load extra user fields data (have to be marked as 'Filter' to appear).";
  6643. $CourseAssistant = "Assistant";
  6644. $TotalWeightMustBeX = "The sum of all weights of activities must be %s";
  6645. $MaxWeightNeedToBeProvided = "Max weight need to be provided";
  6646. $ExtensionCouldBeLoaded = "Extension could be loaded";
  6647. $SupportedScormContentMakers = "SCORM Authoring tools supported";
  6648. $DisableEndDate = "Disable end date";
  6649. $ForumCategories = "Forum Categories";
  6650. $Copy = "Copy";
  6651. $ArchiveDirCleanup = "Cleanup of cache and temporary files";
  6652. $ArchiveDirCleanupDescr = "Chamilo keeps a copy of most of the temporary files it generates (for backups, exports, copies, etc) into its app/cache/ directory. After a while, this can add up to a very large amount of disk space being used for nothing. Click the button below to clean your archive directory up. This operation should be automated by a cron process, but if this is not possible, you can come to this page regularly to remove all temporary files from the directory.
  6653. This feature also cleans up the theme cache files.";
  6654. $ArchiveDirCleanupProceedButton = "Proceed with cleanup";
  6655. $ArchiveDirCleanupSucceeded = "The app/cache/ directory cleanup has been executed successfully.";
  6656. $ArchiveDirCleanupFailed = "For some reason, the app/cache/ directory could not be cleaned up. Please clean it up by manually connecting to the server and delete all files and symbolic links under the chamilo/app/cache/ directory, except the .htaccess file. On Linux: # find app/cache/ \( -type f -or -type l \) -not -name .htaccess -exec echo rm -v \{} \;";
  6657. $EnableStartTime = "Enable start time";
  6658. $EnableEndTime = "Enable end time";
  6659. $LocalTimeUsingPortalTimezoneXIsY = "The local time in the portal timezone (%s) is %s";
  6660. $AllEvents = "All events";
  6661. $StartTest = "Start test";
  6662. $ExportAsDOC = "Export as .doc";
  6663. $Wrong = "Wrong";
  6664. $Certification = "Certification";
  6665. $CertificateOnlineLink = "Online link to certificate";
  6666. $NewExercises = "New exercises";
  6667. $MyAverage = "My average";
  6668. $AllAttempts = "All attempts";
  6669. $QuestionsToReview = "Questions to be reviewed";
  6670. $QuestionWithNoAnswer = "Questions without answer";
  6671. $ValidateAnswers = "Validate answers";
  6672. $ReviewQuestions = "Review selected questions";
  6673. $YouTriedToResolveThisExerciseEarlier = "You have tried to resolve this exercise earlier";
  6674. $NoCookies = "You do not have cookies support enabled in your browser. Chamilo relies on the feature called \"cookies\" to store your connection details. This means you will not be able to login if cookies are not enabled. Please change your browser configuration (generally in the Edit -> Preferences menu) and reload this page.";
  6675. $NoJavascript = "Your do not have JavaScript support enabled in your browser. Chamilo relies heavily on JavaScript to provide you with a more dynamic interface. It is likely that most feature will work, but you might not benefit from the latest improvements in usability. We recommend you change your browser configuration (generally under the Edit -> Preferences menu) and reload this page.";
  6676. $NoFlash = "You do not seem to have Flash support enabled in your browser. Chamilo only relies on Flash for a few features and will not lock you out in any way if you don't have it, but if you want to benefit from the complete set of tools from Chamilo, we recommend you install the Flash Plugin and restart your browser.";
  6677. $ThereAreNoQuestionsForThisExercise = "There are no questions for this exercise";
  6678. $Attempt = "Attempt";
  6679. $SaveForNow = "Save and continue";
  6680. $ContinueTest = "Proceed with the test";
  6681. $NoQuicktime = "Your browser does not have the QuickTime plugin installed. You can still use the platform, but to run a larger number of media file types, we suggest you might want to install it.";
  6682. $NoJavaSun = "Your browser doesn't seem to have the Sun Java plugin installed. You can still use the platform, but you will lose a few of its capabilities.";
  6683. $NoJava = "Your browser does not support Java";
  6684. $JavaSun24 = "Your browser has a Java version not supported by this tool.\nTo use it you have to install a Java Sun version higher than 24";
  6685. $NoMessageAnywere = "If you do not want to see this message again during this session, click here";
  6686. $IncludeAllVersions = "Also search in older versions of each page";
  6687. $TotalHiddenPages = "Total hidden pages";
  6688. $TotalPagesEditedAtThisTime = "Total pages edited at this time";
  6689. $TotalWikiUsers = "Total users that have participated in this Wiki";
  6690. $StudentAddNewPages = "Learners can add new pages to the Wiki";
  6691. $DateCreateOldestWikiPage = "Creation date of the oldest Wiki page";
  6692. $DateEditLatestWikiVersion = "Date of most recent edition of Wiki";
  6693. $AverageScoreAllPages = "Average rating of all pages";
  6694. $AverageMediaUserProgress = "Mean estimated progress by users on their pages";
  6695. $TotalIpAdress = "Total different IP addresses that have contributed to Wiki";
  6696. $Pages = "Pages";
  6697. $Versions = "Versions";
  6698. $EmptyPages = "Total of empty pages";
  6699. $LockedDiscussPages = "Number of discussion pages blocked";
  6700. $HiddenDiscussPages = "Number of discussion pages hidden";
  6701. $TotalComments = "Total comments on various versions of the pages";
  6702. $TotalOnlyRatingByTeacher = "Total pages can only be scored by a teacher";
  6703. $TotalRatingPeers = "Total pages that can be scored by other learners";
  6704. $TotalTeacherAssignments = "Number of assignments pages proposed by a teacher";
  6705. $TotalStudentAssignments = "Number of individual assignments learner pages";
  6706. $TotalTask = "Number of tasks";
  6707. $PortfolioMode = "Portfolio mode";
  6708. $StandardMode = "Standard Task mode";
  6709. $ContentPagesInfo = "Information about the content of the pages";
  6710. $InTheLastVersion = "In the last version";
  6711. $InAllVersions = "In all versions";
  6712. $NumContributions = "Number of contributions";
  6713. $NumAccess = "Number of visits";
  6714. $NumWords = "Number of words";
  6715. $NumlinksHtmlImagMedia = "Number of external html links inserted (text, images, ...).";
  6716. $NumWikilinks = "Number of wiki links";
  6717. $NumImages = "Number of inserted images";
  6718. $NumFlash = "Number of inserted flash files";
  6719. $NumMp3 = "Number of mp3 audio files inserted";
  6720. $NumFlvVideo = "Number of FLV video files inserted";
  6721. $NumYoutubeVideo = "Number of Youtube video embedded";
  6722. $NumOtherAudioVideo = "Number of audio and video files inserted (except mp3 and flv)";
  6723. $NumTables = "Number of tables inserted";
  6724. $Anchors = "Anchors";
  6725. $NumProtectedPages = "Number of protected pages";
  6726. $Attempts = "Attempts";
  6727. $SeeResults = "See results";
  6728. $Loading = "Loading";
  6729. $AreYouSureToRestore = "Are you sure you want to restore this element?";
  6730. $XQuestionsWithTotalScoreY = "%d questions, for a total score (all questions) of %s.";
  6731. $ThisIsAutomaticEmailNoReply = "This is an automatic email message. Please do not reply to it.";
  6732. $UploadedDocuments = "Uploaded documents";
  6733. $QuestionLowerCase = "question";
  6734. $QuestionsLowerCase = "questions";
  6735. $BackToTestList = "Back to test list";
  6736. $CategoryDescription = "Category description";
  6737. $BackToCategoryList = "Back to category list";
  6738. $AddCategoryNameAlreadyExists = "This category name already exists. Please use another name.";
  6739. $CannotDeleteCategory = "Can't delete category";
  6740. $CannotDeleteCategoryError = "Error: could not delete category";
  6741. $CannotEditCategory = "Could not edit category";
  6742. $ModifyCategoryError = "Could not update category";
  6743. $AllCategories = "All categories";
  6744. $CreateQuestionOutsideExercice = "Create question outside exercise";
  6745. $ChoiceQuestionType = "Choose question type";
  6746. $YesWithCategoriesSorted = "Yes, with categories ordered";
  6747. $YesWithCategoriesShuffled = "Yes, with categories shuffled";
  6748. $ManageAllQuestions = "Manage all questions";
  6749. $MustBeInATest = "Must be in a test";
  6750. $PleaseSelectSomeRandomQuestion = "Please select some random question";
  6751. $RemoveFromTest = "Remove from test";
  6752. $AddQuestionToTest = "Add question to test";
  6753. $QuestionByCategory = "Question by category";
  6754. $QuestionUpperCaseFirstLetter = "Question";
  6755. $QuestionCategory = "Questions category";
  6756. $AddACategory = "Add category";
  6757. $AddTestCategory = "Add test category";
  6758. $AddCategoryDone = "Category added";
  6759. $NbCategory = "Nb categories";
  6760. $DeleteCategoryAreYouSure = "Are you sure you want to delete this category?";
  6761. $DeleteCategoryDone = "Category deleted";
  6762. $ModifyCategoryDone = "Category updated";
  6763. $NotInAGroup = "Not in a group";
  6764. $DoFilter = "Filter";
  6765. $ByCategory = "By category";
  6766. $PersonalCalendar = "Personal Calendar";
  6767. $SkillsTree = "Skills Tree";
  6768. $Skills = "Skills";
  6769. $SkillsProfile = "Skills Profile";
  6770. $WithCertificate = "With Certificate";
  6771. $AdminCalendar = "Admin Calendar";
  6772. $CourseCalendar = "Course Calendar";
  6773. $Reports = "Reports";
  6774. $ResultsNotRevised = "Results not reviewed";
  6775. $ResultNotRevised = "Result not reviewed";
  6776. $dateFormatShortNumber = "%m/%d/%Y";
  6777. $dateTimeFormatLong24H = "%B %d, %Y at %H:%M";
  6778. $ActivateLegal = "Enable legal terms";
  6779. $ShowALegalNoticeWhenEnteringTheCourse = "Show a legal notice when entering the course";
  6780. $GradingModelTitle = "Grading model";
  6781. $AllowTeacherChangeGradebookGradingModelTitle = "Allow teachers to change the assessments grading model";
  6782. $AllowTeacherChangeGradebookGradingModelComment = "Enabling this option, you will allow each teacher to choose the grading model which will be used in his/her course. This change will have to be made by the teacher from inside the assessments tool of the course.";
  6783. $NumberOfSubEvaluations = "Number of sub evaluations";
  6784. $AddNewModel = "Add new model";
  6785. $NumberOfStudentsWhoTryTheExercise = "Number of learners who attempted the exercise";
  6786. $LowestScore = "Lowest score";
  6787. $HighestScore = "Highest score";
  6788. $ContainsAfile = "Contains a file";
  6789. $Discussions = "Discussions";
  6790. $ExerciseProgress = "Exercise progress";
  6791. $GradeModel = "Grading model";
  6792. $SelectGradebook = "Select assessment";
  6793. $ViewSkillsTree = "View skills tree";
  6794. $MySkills = "My skills";
  6795. $GroupParentship = "Group parentship";
  6796. $NoParentship = "No parentship";
  6797. $NoCertificate = "No certificate";
  6798. $AllowTextAssignments = "Allow assignments handing through online editor";
  6799. $SeeFile = "See file";
  6800. $ShowDocumentPreviewTitle = "Show document preview";
  6801. $ShowDocumentPreviewComment = "Showing previews of the documents in the documents tool will avoid loading a new page just to show a document, but can result unstable with some older browsers or smaller width screens.";
  6802. $YouAlreadySentAPaperYouCantUpload = "You already sent an assignment, you can't upload a new one";
  6803. $CasMainActivateTitle = "Enable CAS authentication";
  6804. $CasMainServerTitle = "Main CAS server";
  6805. $CasMainServerComment = "This is the main CAS server which will be used for the authentication (IP address or hostname)";
  6806. $CasMainServerURITitle = "Main CAS server URI";
  6807. $CasMainServerURIComment = "The path to the CAS service";
  6808. $CasMainPortTitle = "Main CAS server port";
  6809. $CasMainPortComment = "The port on which to connect to the main CAS server";
  6810. $CasMainProtocolTitle = "Main CAS server protocol";
  6811. $CAS1Text = "CAS 1";
  6812. $CAS2Text = "CAS 2";
  6813. $SAMLText = "SAML";
  6814. $CasMainProtocolComment = "The protocol with which we connect to the CAS server";
  6815. $CasUserAddActivateTitle = "Enable CAS user addition";
  6816. $CasUserAddActivateComment = "Enable CAS user addition";
  6817. $CasUserAddLoginAttributeTitle = "Add CAS user login";
  6818. $CasUserAddLoginAttributeComment = "Add CAS user login details when registering a new user";
  6819. $CasUserAddEmailAttributeTitle = "Add CAS user e-mail";
  6820. $CasUserAddEmailAttributeComment = "Add CAS user e-mail details when registering a new user";
  6821. $CasUserAddFirstnameAttributeTitle = "Add CAS user first name";
  6822. $CasUserAddFirstnameAttributeComment = "Add CAS user first name when registering a new user";
  6823. $CasUserAddLastnameAttributeTitle = "Add CAS user last name";
  6824. $CasUserAddLastnameAttributeComment = "Add CAS user last name details when registering a new user";
  6825. $UserList = "User list";
  6826. $SearchUsers = "Search users";
  6827. $Administration = "Administration";
  6828. $AddAsAnnouncement = "Add as an announcement";
  6829. $SkillsAndGradebooks = "Skills and assessments";
  6830. $AddSkill = "Add skill";
  6831. $ShowAdminToolbarTitle = "Show admin toolbar";
  6832. $AcceptLegal = "Accept legal agreement";
  6833. $CourseLegalAgreement = "Legal agreement for this course";
  6834. $RandomQuestionByCategory = "Random questions by category";
  6835. $QuestionDisplayCategoryName = "Display questions category";
  6836. $ReviewAnswers = "Review my answers";
  6837. $TextWhenFinished = "Text appearing at the end of the test";
  6838. $Validated = "Validated";
  6839. $NotValidated = "Not validated";
  6840. $Revised = "Revised";
  6841. $SelectAQuestionToReview = "Select a question to revise";
  6842. $ReviewQuestionLater = "Revise question later";
  6843. $NumberStudentWhoSelectedIt = "Number of learners who selected it";
  6844. $QuestionsAlreadyAnswered = "Questions already answered";
  6845. $SkillDoesNotExist = "There is no such skill";
  6846. $CheckYourGradingModelValues = "Please check your grading model values";
  6847. $SkillsAchievedWhenAchievingThisGradebook = "Skills obtained when achieving this assessment";
  6848. $AddGradebook = "Add assessment";
  6849. $NoStudents = "No learner";
  6850. $NoData = "No data available";
  6851. $IAmAHRM = "I am a human resources manager";
  6852. $SkillRootName = "Absolute skill";
  6853. $Option = "Option";
  6854. $NoSVGImagesInImagesGalleryPath = "There are no SVG images in your images gallery directory";
  6855. $NoSVGImages = "No SVG image";
  6856. $NumberOfStudents = "Number of learners";
  6857. $NumberStudentsAccessingCourse = "Number of learners accessing the course";
  6858. $PercentageStudentsAccessingCourse = "Percentage of learners accessing the course";
  6859. $NumberStudentsCompleteAllActivities = "Number of learners who completed all activities (100% progress)";
  6860. $PercentageStudentsCompleteAllActivities = "Percentage of learners who completed all activities (100% progress)";
  6861. $AverageOfActivitiesCompletedPerStudent = "Average number of activities completed per learner";
  6862. $TotalTimeSpentInTheCourse = "Total time spent in the course";
  6863. $AverageTimePerStudentInCourse = "Average time spent per learner in the course";
  6864. $NumberOfDocumentsInLearnpath = "Number of documents in learning path";
  6865. $NumberOfExercisesInLearnpath = "Number of exercises in learning path";
  6866. $NumberOfLinksInLearnpath = "Number of links in learning path";
  6867. $NumberOfForumsInLearnpath = "Number of forums in learning path";
  6868. $NumberOfAssignmentsInLearnpath = "Number of assignments in learning path";
  6869. $NumberOfAnnouncementsInCourse = "Number of announcements in course";
  6870. $CurrentCoursesReport = "Current courses report";
  6871. $HideTocFrame = "Hide table of contents frame";
  6872. $Updates = "Updates";
  6873. $Teaching = "Teaching";
  6874. $CoursesReporting = "Courses reporting";
  6875. $AdminReports = "Admin reports";
  6876. $ExamsReporting = "Exams reports";
  6877. $MyReporting = "My reporting";
  6878. $SearchSkills = "Search skills";
  6879. $SaveThisSearch = "Save this search";
  6880. $SkillProfiles = "Stored skills profiles";
  6881. $Matches = "Matches";
  6882. $WelcomeUserXToTheSiteX = "%s, welcome to %s";
  6883. $CheckUsersWithId = "Use user's IDs from the file to subscribe them";
  6884. $WhoAndWhere = "Who and where";
  6885. $CantUploadDeleteYourPaperFirst = "You cannot upload this assignment. Please delete the previous one first.";
  6886. $MB = "MB";
  6887. $ShowAdminToolbarComment = "Shows a global toolbar on top of the page to the designated user roles. This toolbar, very similar to Wordpress and Google's black toolbars, can really speed up complicated actions and improve the space you have available for the learning content, but it might be confusing for some users";
  6888. $SessionList = "Session list";
  6889. $StudentList = "Learners list";
  6890. $StudentsWhoAreTakingTheExerciseRightNow = "Learners who're taking the exercise right now";
  6891. $GroupReply = "Reply";
  6892. $GroupReplies = "Replies";
  6893. $ReportByQuestion = "Report by question";
  6894. $LiveResults = "Live results";
  6895. $SkillNotFound = "Skill not found";
  6896. $IHaveThisSkill = "I have this skill";
  6897. $Me = "Me";
  6898. $Vote = "Vote";
  6899. $Votes = "Votes";
  6900. $XStarsOutOf5 = "%s stars out of 5";
  6901. $Visit = "Visit";
  6902. $Visits = "Visits";
  6903. $YourVote = "Your vote";
  6904. $HottestCourses = "Most popular courses";
  6905. $SentAtX = "Sent at: %s";
  6906. $dateTimeFormatShort = "%b %d, %Y at %I:%M %p";
  6907. $dateTimeFormatShortTimeFirst = "%I:%M %p, %b %d %Y";
  6908. $LoginToVote = "Login to vote";
  6909. $AddInMenu = "Add in menu";
  6910. $AllowUsersToChangeEmailWithNoPasswordTitle = "Allow users to change e-mail without password";
  6911. $AllowUsersToChangeEmailWithNoPasswordComment = "When changing the account information";
  6912. $EnableHelpLinkTitle = "Enable help link";
  6913. $EnableHelpLinkComment = "The Help link is located in the top right part of the screen";
  6914. $BackToAdmin = "Back to administration";
  6915. $AllowGlobalChatTitle = "Allow global chat";
  6916. $HeaderExtraContentTitle = "Extra content in header";
  6917. $HeaderExtraContentComment = "You can add HTML code like meta tags";
  6918. $FooterExtraContentTitle = "Extra content in footer";
  6919. $AllowGlobalChatComment = "Users can chat with each other";
  6920. $FooterExtraContentComment = "You can add HTML code like meta tags";
  6921. $DoNotShow = "Do not show";
  6922. $ShowToAdminsOnly = "Show to admins only";
  6923. $ShowToAdminsAndTeachers = "Show to admins and teachers";
  6924. $ShowToAllUsers = "Show to all users";
  6925. $ImportGlossary = "Import glossary";
  6926. $ReplaceGlossary = "Replace glossary";
  6927. $CannotDeleteGlossary = "Cannot delete glossary";
  6928. $TermsImported = "Terms imported";
  6929. $TermsNotImported = "Terms not imported";
  6930. $ExportGlossaryAsCSV = "Export glossary as a CSV file";
  6931. $SelectAnAction = "Select an action";
  6932. $LoginX = "Login: %s";
  6933. $DatabaseXWillBeCreated = "Database <b>%s</b> will be created";
  6934. $ADatabaseWithTheSameNameAlreadyExists = "A database with the same name <b>already exists</b>.";
  6935. $UserXCantHaveAccessInTheDatabaseX = "User <b>%s</b> doesn't have access in the database <b>%s</b>";
  6936. $DatabaseXCantBeCreatedUserXDoestHaveEnoughPermissions = "Database <b>%s</b> can't be created, user <b>%s</b> doesn't have enough permissions";
  6937. $CopyOnlySessionItems = "Copy only session items";
  6938. $FirstLetterCourseTitle = "First letter of course title";
  6939. $NumberOfPublishedExercises = "# of published exercises";
  6940. $NumberOfPublishedLps = "# of published Learning Paths";
  6941. $ChatConnected = "Chat (Connected)";
  6942. $ChatDisconnected = "Chat (Disconnected)";
  6943. $AddCourseDescription = "Add course description";
  6944. $ThingsToDo = "Suggested steps to take next";
  6945. $RecordAnswer = "Record answer";
  6946. $UseTheMessageBelowToAddSomeComments = "Use the message below to add a comment";
  6947. $SendRecord = "Send record";
  6948. $DownloadLatestRecord = "Download record";
  6949. $OralExpression = "Oral expression";
  6950. $UsersFoundInOtherPortals = "Users found in other portals";
  6951. $AddUserToMyURL = "Add user to my portal";
  6952. $UsersDeleted = "Users deleted";
  6953. $UsersAdded = "Users added";
  6954. $PluginArea = "Plugin area";
  6955. $NoConfigurationSettingsForThisPlugin = "No configuration settings found for this plugin";
  6956. $CoursesDefaultCreationVisibilityTitle = "Default course visibility";
  6957. $CoursesDefaultCreationVisibilityComment = "Default course visibility while creating a new course";
  6958. $YouHaveEnteredTheCourseXInY = "You have entered the course <b>%s</b> in <b>%s</b>";
  6959. $LoginIsEmailTitle = "Use the email as username";
  6960. $LoginIsEmailComment = "Use the email in order to login to the system";
  6961. $CongratulationsYouPassedTheTest = "Congratulations you passed the test!";
  6962. $YouDidNotReachTheMinimumScore = "You didn't reach the minimum score";
  6963. $AllowBrowserSnifferTitle = "Activate the browser sniffer";
  6964. $AllowBrowserSnifferComment = "This will enable an investigator of the capabilities that support browsers that connect to Chamilo. Therefore will improve user experience by adapting responses to the type of browser platform that connects, but will slow initial page load of users every time that they enter to the platform.";
  6965. $EndTest = "End test";
  6966. $EnableWamiRecordTitle = "Activate Wami-recorder";
  6967. $EnableWamiRecordComment = "Wami-recorder is a voice record tool on Flash";
  6968. $EventType = "Event type";
  6969. $WamiFlashDialog = "It will display a dialog box which asks for your permission to access the microphone, answer yes and close the dialog box (if you do not want to appear again, before closing check remember)";
  6970. $WamiStartRecorder = "Start recording by pressing the microphone and stop it by pressing again. Each time you do this will generate a file.";
  6971. $WamiNeedFilename = "Before you activate recording it is necessary a file name.";
  6972. $InputNameHere = "Enter filename here";
  6973. $Reload = "Reload";
  6974. $SelectGradeModel = "Select a calification model";
  6975. $AllMustWeight100 = "The sum of all values must be 100";
  6976. $Components = "Components";
  6977. $ChangeSharedSetting = "Change setting visibility for the other portals";
  6978. $OnlyActiveWhenThereAreAnyComponents = "This option is enabled if you have any evaluations or categories";
  6979. $AllowHRSkillsManagementTitle = "Allow HR skills management";
  6980. $AllowHRSkillsManagementComment = "Allows HR to manage skills";
  6981. $GradebookDefaultWeightTitle = "Default weight in Gradebook";
  6982. $GradebookDefaultWeightComment = "This weight will be use in all courses by default";
  6983. $TimeSpentLastXDays = "Time spent the last %s days";
  6984. $TimeSpentBetweenXAndY = "Time spent between %s and %s";
  6985. $GoToCourse = "Go to the course";
  6986. $TeachersCanChangeScoreSettingsTitle = "Teachers can change the Gradebook score settings";
  6987. $TeachersCanChangeScoreSettingsComment = "When editing the Gradebook settings";
  6988. $SubTotal = "Subtotal";
  6989. $Configure = "Configure";
  6990. $Regions = "Regions";
  6991. $CourseList = "Course list";
  6992. $NumberAbbreviation = "N°";
  6993. $FirstnameAndLastname = "First Name and Last Name";
  6994. $LastnameAndFirstname = "Last Name and First Name";
  6995. $Plugins = "Plugins";
  6996. $Detailed = "Detailed";
  6997. $ResourceLockedByGradebook = "This option is not available because this activity is contained by an assessment, which is currently locked. To unlock the assessment, ask your platform administrator.";
  6998. $GradebookLockedAlert = "This assessment has been locked. You cannot unlock it. If you really need to unlock it, please contact the platform administrator, explaining the reason why you would need to do that (it might otherwise be considered as fraud attempt).";
  6999. $GradebookEnableLockingTitle = "Enable locking of assessments by teachers";
  7000. $GradebookEnableLockingComment = "Once enabled, this option will enable locking of any assessment by the teachers of the corresponding course. This, in turn, will prevent any modification of results by the teacher inside the resources used in the assessment: exams, learning paths, tasks, etc. The only role authorized to unlock a locked assessment is the administrator. The teacher will be informed of this possibility. The locking and unlocking of gradebooks will be registered in the system's report of important activities";
  7001. $LdapDescriptionComment = " <div class=\"alert alert-info\">
  7002. <ul>
  7003. <li>LDAP authentication : <br>
  7004. See I. below to configure LDAP <br>
  7005. See II. below to activate LDAP authentication
  7006. </li>
  7007. <li>Update user attributes, with LDAP data, after CAS authentication(see <a href=\"settings.php?category=CAS\">CAS configuration </a>) : <br>
  7008. See I. below to configure LDAP <br>
  7009. CAS manage user authentication, LDAP activation isn't required.
  7010. </li>
  7011. </ul>
  7012. </div>
  7013. <h4>I. LDAP configuration</h4>
  7014. <h5>Edit file app/config/auth.conf.php </h5>
  7015. <p>-&gt; Edit values of array <code>\$extldap_config</code></p>
  7016. <ul>
  7017. <li>base domain string (ex : 'base_dn' =&gt; 'DC=cblue,DC=be')</li>
  7018. <li>admin distinguished name (ex : 'admin_dn' =&gt;'CN=admin,dc=cblue,dc=be')</li>
  7019. <li>admin password (ex : 'admin_password' =&gt; '123456') </li>
  7020. <li>ldap host (ex : 'host' =&gt; array('1.2.3.4', '2.3.4.5', '3.4.5.6'))</li>
  7021. <li>filter (ex : 'filter' =&gt; '') </li>
  7022. <li>port (ex : 'port' =&gt; 389) </li>
  7023. <li>protocol version (2 or 3) (ex : 'protocol_version' =&gt; 3)</li>
  7024. <li>user_search (ex : 'user_search' =&gt; 'sAMAccountName=%username%') </li>
  7025. <li>encoding (ex : 'encoding' =&gt; 'UTF-8')</li>
  7026. <li>update_userinfo (ex : 'update_userinfo' =&gt; true) </li>
  7027. </ul>
  7028. <p>-&gt; To update correspondences between user and LDAP attributes, edit array <code>\$extldap_user_correspondance</code></p>
  7029. <p>Array values are &lt;chamilo_field&gt; =&gt; &gt;ldap_field&gt;</p><p>
  7030. </p>
  7031. <h4>II. Activate LDAP authentication </h4>
  7032. <h5>Edit file app/config/configuration.php </h5>
  7033. <p>-&gt; Uncomment lines:</p>
  7034. <ul>
  7035. <li>
  7036. \$extAuthSource[\"extldap\"][\"login\"] = \$_configuration['root_sys'].\"main/auth/external_login/login.ldap.php\";</li>
  7037. <li>\$extAuthSource[\"extldap\"][\"newUser\"] = \$_configuration['root_sys'].\"main/auth/external_login/newUser.ldap.php\";</li>
  7038. </ul>
  7039. <p>N.B.: LDAP users use same fields than platform users to login. <br>
  7040. N.B.: LDAP activation adds a menu External authentication [LDAP] in \"add or modify\" user pages.</p>";
  7041. $ShibbolethMainActivateTitle = "<h3>Shibboleth authentication</h3>";
  7042. $ShibbolethMainActivateComment = "<p>First of all, you have to configure Shibboleth for your web server.</p>To configure it for Chamilo<h5>edit file main/auth/shibboleth/config/aai.class.php</h5><p>Modify object &#36;result values with the name of your Shibboleth attributes</p><ul><li>&#36;result-&gt;unique_id = 'mail';</li><li>&#36;result-&gt;firstname = 'cn';</li><li>&#36;result-&gt;lastname = 'uid';</li><li>&#36;result-&gt;email = 'mail';</li><li>&#36;result-&gt;language = '-';</li><li>&#36;result-&gt;gender = '-';</li><li>&#36;result-&gt;address = '-';</li><li>&#36;result-&gt;staff_category = '-';</li><li>&#36;result-&gt;home_organization_type = '-'; </li><li>&#36;result-&gt;home_organization = '-';</li><li>&#36;result-&gt;affiliation = '-';</li><li>&#36;result-&gt;persistent_id = '-';</li><li>...</li></ul><br/>Go to <a href='settings.php?category=Shibboleth'>Plugin</a> to add a configurable 'Shibboleth Login' button for your Chamilo campus.";
  7043. $LdapDescriptionTitle = "<h3>LDAP autentication</h3>";
  7044. $FacebookMainActivateTitle = "<h3>Facebook authentication</h3>";
  7045. $FacebookMainActivateComment = "<p><h5>Create your Facebook Application</h5>First of all, you have to create a Facebook Application (see <a href='https://developers.facebook.com/apps'>https://developers.facebook.com/apps</a>) with your Facebook account. In the Facebook Apps settings, the site URL value should be the URL of this campus. Enable the Web OAuth Login option. And add the site URL of your campus to the Valid OAuth redirect URIs field</p><p>Uncomment the line <code>&#36;_configuration['facebook_auth'] = 1;</code> to enable the Facebook Auth.</p><p>Then, edit the <code>app/config/auth.conf.php</code> file and enter '<code>appId</code>' and '<code>secret</code>' values for <code>&#36;facebook_config</code>.</p><p>Go to <a href='settings.php?category=Plugins'>Plugins</a> to add a configurable <em>Facebook Login</em> button for your Chamilo campus.</p>";
  7046. $AnnouncementForGroup = "Announcement for a group";
  7047. $AllGroups = "All groups";
  7048. $LanguagePriority1Title = "Language priority 1";
  7049. $LanguagePriority2Title = "Language priority 2";
  7050. $LanguagePriority3Title = "Language priority 3";
  7051. $LanguagePriority4Title = "Language priority 4";
  7052. $LanguagePriority5Title = "Language priority 5";
  7053. $LanguagePriority1Comment = "The language with the highest priority";
  7054. $LanguagePriority2Comment = "The second language priority";
  7055. $LanguagePriority3Comment = "The third language priority";
  7056. $LanguagePriority4Comment = "The fourth language priority";
  7057. $LanguagePriority5Comment = "The lowest language priority";
  7058. $UserLanguage = "User language";
  7059. $UserSelectedLanguage = "User selected language";
  7060. $TeachersCanChangeGradeModelSettingsTitle = "Teachers can change the Gradebook model settings";
  7061. $TeachersCanChangeGradeModelSettingsComment = "When editing a Gradebook";
  7062. $GradebookDefaultGradeModelTitle = "Default grade model";
  7063. $GradebookDefaultGradeModelComment = "This value will be selected by default when creating a course";
  7064. $GradebookEnableGradeModelTitle = "Enable Gradebook model";
  7065. $GradebookEnableGradeModelComment = "Enables the auto creation of gradebook categories inside a course depending of the gradebook models.";
  7066. $ConfirmToLockElement = "Are you sure you want to lock this item? After locking this item you can't edit the user results. To unlock it, you need to contact the platform administrator.";
  7067. $ConfirmToUnlockElement = "Are you sure you want to unlock this element?";
  7068. $AllowSessionAdminsToSeeAllSessionsTitle = "Allow session administrators to see all sessions";
  7069. $AllowSessionAdminsToSeeAllSessionsComment = "When this option is not enabled (default), session administrators can only see the sessions they have created. This is confusing in an open environment where session administrators might need to share support time between two sessions.";
  7070. $PassPercentage = "Pass percentage";
  7071. $AllowSkillsToolTitle = "Allow Skills tool";
  7072. $AllowSkillsToolComment = "Users can see their skills in the social network and in a block in the homepage.";
  7073. $UnsubscribeFromPlatform = "If you want to unsubscribe completely from this campus and have all your information removed from our database, please click the button below and confirm.";
  7074. $UnsubscribeFromPlatformConfirm = "Yes, I want to remove this account completely. No data will remain on the server and I will be unable to login again, unless I create a completely new account.";
  7075. $AllowPublicCertificatesTitle = "Allow public certificates";
  7076. $AllowPublicCertificatesComment = "User certificates can be view by unregistered users.";
  7077. $DontForgetToSelectTheMediaFilesIfYourResourceNeedIt = "Don't forget to select the media files if your resource need it";
  7078. $NoStudentCertificatesAvailableYet = "No learner certificate available yet. Please note that, to generate his certificate, a learner has to go to the assessments tool and click the certificate icon, which will only appear when he reached the course objectives.";
  7079. $CertificateExistsButNotPublic = "The requested certificate exists on this portal, but it has not been made public. Please login to view it.";
  7080. $Default = "Default";
  7081. $CourseTestWasCreated = "A test course has been created successfully";
  7082. $NoCategorySelected = "No category selected";
  7083. $ReturnToCourseHomepage = "Return to Course Homepage";
  7084. $ExerciseAverage = "Exercise average";
  7085. $WebCamClip = "Webcam Clip";
  7086. $Snapshot = "Snapshot";
  7087. $TakeYourPhotos = "Take your photos";
  7088. $LocalInputImage = "Local input image";
  7089. $ClipSent = "Clip sent";
  7090. $Auto = "Auto";
  7091. $Stop = "Stop";
  7092. $EnableWebCamClipTitle = "Enable Webcam Clip";
  7093. $EnableWebCamClipComment = "Webcam Clip allow to users capture images from his webcam and send them to server in JPEG (.jpg or .jpeg) format";
  7094. $ResizingAuto = "AUTO RESIZE (default)";
  7095. $ResizingAutoComment = "This slideshow will resize automatically to your screen size. This is the default option.";
  7096. $YouShouldCreateTermAndConditionsForAllAvailableLanguages = "You should create the \"Term and Conditions\" for all the available languages.";
  7097. $SelectAnAudioFileFromDocuments = "Select an audio file from documents";
  7098. $ActivateEmailTemplateTitle = "Enable e-mail alerts templates";
  7099. $ActivateEmailTemplateComment = "Define home-made e-mail alerts to be fired on specific events (and to specific users)";
  7100. $SystemManagement = "System Management";
  7101. $RemoveOldDatabaseMessage = "Remove old database";
  7102. $RemoveOldTables = "Remove old tables";
  7103. $TotalSpaceUsedByPortalXLimitIsYMB = "Total space used by portal %s limit is %s MB";
  7104. $EventMessageManagement = "Event message management";
  7105. $ToBeWarnedUserList = "To be warned user list";
  7106. $YouHaveSomeUnsavedChanges = "You have some unsaved changes. Do you want to abandon them ?";
  7107. $ActivateEvent = "Activate event";
  7108. $AvailableEventKeys = "Available event keys. Use them between (( )).";
  7109. $Events = "Events";
  7110. $EventTypeName = "Event type name";
  7111. $HideCampusFromPublicPlatformsList = "Hide campus from public platforms list";
  7112. $ChamiloOfficialServicesProviders = "Chamilo official services providers";
  7113. $NoNegativeScore = "No negative score";
  7114. $GlobalMultipleAnswer = "Global multiple answer";
  7115. $Zombies = "Zombies";
  7116. $ActiveOnly = "Active only";
  7117. $AuthenticationSource = "Authentication source";
  7118. $RegisteredDate = "Registered date";
  7119. $NbInactiveSessions = "Number of inactive sessions";
  7120. $AllQuestionsShort = "All";
  7121. $FollowedSessions = "Followed sessions";
  7122. $FollowedCourses = "Followed courses";
  7123. $FollowedUsers = "Followed users";
  7124. $Timeline = "Timeline";
  7125. $ExportToPDFOnlyHTMLAndImages = "Export to PDF web pages and images";
  7126. $CourseCatalog = "Course catalog";
  7127. $Go = "Go";
  7128. $ProblemsRecordingUploadYourOwnAudioFile = "Problem recording? Upload your own audio file.";
  7129. $ImportThematic = "Import course progress";
  7130. $ExportThematic = "Export course progress";
  7131. $DeleteAllThematic = "Delete all course progress";
  7132. $FilterTermsTitle = "Filter terms";
  7133. $FilterTermsComment = "Give a list of terms, one by line, to be filtered out of web pages and e-mails. These terms will be replaced by ***.";
  7134. $UseCustomPagesTitle = "Use custom pages";
  7135. $UseCustomPagesComment = "Enable this feature to configure specific login pages by role";
  7136. $StudentPageAfterLoginTitle = "Learner page after login";
  7137. $StudentPageAfterLoginComment = "This page will appear to all learners after they login";
  7138. $TeacherPageAfterLoginTitle = "Teacher page after login";
  7139. $TeacherPageAfterLoginComment = "This page will be loaded after login for all teachers";
  7140. $DRHPageAfterLoginTitle = "Human resources manager page after login";
  7141. $DRHPageAfterLoginComment = "This page will load after login for all human resources managers";
  7142. $StudentAutosubscribeTitle = "Learner autosubscribe";
  7143. $StudentAutosubscribeComment = "Learner autosubscribe - not yet available";
  7144. $TeacherAutosubscribeTitle = "Teacher autosubscribe";
  7145. $TeacherAutosubscribeComment = "Teacher autosubscribe - not yet available";
  7146. $DRHAutosubscribeTitle = "Human resources director autosubscribe";
  7147. $DRHAutosubscribeComment = "Human resources director autosubscribe - not yet available";
  7148. $ScormCumulativeSessionTimeTitle = "Cumulative session time for SCORM";
  7149. $ScormCumulativeSessionTimeComment = "When enabled, the session time for SCORM Learning Paths will be cumulative, otherwise, it will only be counted from the last update time. This is a global setting. It is used when creating a new Learning Path but can then be redefined for each one.";
  7150. $SessionAdminPageAfterLoginTitle = "Session admin page after login";
  7151. $SessionAdminPageAfterLoginComment = "Page to load after login for the session administrators";
  7152. $SessionadminAutosubscribeTitle = "Session admin autosubscribe";
  7153. $SessionadminAutosubscribeComment = "Session administrator autosubscribe - not available yet";
  7154. $ToolVisibleByDefaultAtCreationTitle = "Tool visible at course creation";
  7155. $ToolVisibleByDefaultAtCreationComment = "Select the tools that will be visible when creating the courses - not yet available";
  7156. $casAddUserActivatePlatform = "CAS internal setting";
  7157. $casAddUserActivateLDAP = "CAS internal setting";
  7158. $UpdateUserInfoCasWithLdapTitle = "CAS internal setting";
  7159. $UpdateUserInfoCasWithLdapComment = "CAS internal setting";
  7160. $InstallExecution = "Installation process execution";
  7161. $UpdateExecution = "Update process execution";
  7162. $PleaseWaitThisCouldTakeAWhile = "Please wait. This could take a while...";
  7163. $ThisPlatformWasUnableToSendTheEmailPleaseContactXForMoreInformation = "This platform was unable to send the email. Please contact %s for more information.";
  7164. $FirstLoginChangePassword = "This is your first login. Please update your password to something you will remember.";
  7165. $NeedContactAdmin = "Click here to contact the administrator";
  7166. $ShowAllUsers = "Show all users";
  7167. $ShowUsersNotAddedInTheURL = "Show users not added to the URL";
  7168. $UserNotAddedInURL = "Users not added to the URL";
  7169. $UsersRegisteredInNoSession = "Users not registered in any session";
  7170. $CommandLineInterpreter = "Command line interpreter (CLI)";
  7171. $PleaseVisitOurWebsite = "Please visit our website: http://www.chamilo.org";
  7172. $SpaceUsedOnSystemCannotBeMeasuredOnWindows = "The space used on disk cannot be measured properly on Windows-based systems.";
  7173. $XOldTablesDeleted = "%d old tables deleted";
  7174. $XOldDatabasesDeleted = "%d old databases deleted";
  7175. $List = "List";
  7176. $MarkAll = "Select all";
  7177. $UnmarkAll = "Unselect all";
  7178. $NotAuthorized = "Not authorized";
  7179. $UnknownAction = "Unknown action";
  7180. $First = "First";
  7181. $Last = "Last";
  7182. $YouAreNotAuthorized = "You are not authorized to do this";
  7183. $NoImplementation = "No implementation available yet for this action";
  7184. $CourseDescriptions = "Course descriptions";
  7185. $ReplaceExistingEntries = "Replace existing entries";
  7186. $AddItems = "Add items";
  7187. $NotFound = "Not found";
  7188. $SentSuccessfully = "Successfully sent";
  7189. $SentFailed = "Sending failed";
  7190. $PortalSessionsLimitReached = "The number of sessions limit for this portal has been reached";
  7191. $ANewSessionWasCreated = "A new session has been created";
  7192. $Online = "Online";
  7193. $Offline = "Offline";
  7194. $TimelineItemText = "Text";
  7195. $TimelineItemMedia = "Media";
  7196. $TimelineItemMediaCaption = "Caption";
  7197. $TimelineItemMediaCredit = "Credits";
  7198. $TimelineItemTitleSlide = "Slider title";
  7199. $SSOError = "Single Sign On error";
  7200. $Sent = "Sent";
  7201. $TimelineItem = "Item";
  7202. $Listing = "Listing";
  7203. $CourseRssTitle = "Course RSS";
  7204. $CourseRssDescription = "RSS feed for all course notifications";
  7205. $AllowPublicCertificates = "Learner certificates are public";
  7206. $GlossaryTermUpdated = "Term updated";
  7207. $DeleteAllGlossaryTerms = "Delete all terms before import.";
  7208. $PortalHomepageEdited = "Portal homepage updated";
  7209. $UserRegistrationTitle = "User registration";
  7210. $UserRegistrationComment = "Actions to be fired when a user registers to the platform";
  7211. $ExtensionShouldBeLoaded = "This extension should be loaded.";
  7212. $Disabled = "Disabled";
  7213. $Required = "Required";
  7214. $CategorySaved = "Category saved";
  7215. $CategoryRemoved = "Category removed";
  7216. $BrowserDoesNotSupportNanogongPlayer = "Your browser doesn't support the Nanogong player";
  7217. $ImportCSV = "Import CSV";
  7218. $DataTableLengthMenu = "Table length";
  7219. $DataTableZeroRecords = "No record found";
  7220. $MalformedUrl = "Badly formed URL";
  7221. $DataTableInfo = "Info";
  7222. $DataTableInfoEmpty = "Empty";
  7223. $DataTableInfoFiltered = "Filtered";
  7224. $DataTableSearch = "Search";
  7225. $HideColumn = "Hide column";
  7226. $DisplayColumn = "Show column";
  7227. $LegalAgreementAccepted = "Legal agreement accepted";
  7228. $WorkEmailAlertActivateOnlyForTeachers = "E-mail teachers only on new assignments submission by students";
  7229. $WorkEmailAlertActivateOnlyForStudents = "E-mail students only on new assignment submission (confirmation e-mail)";
  7230. $Uncategorized = "Uncategorized";
  7231. $NaturalYear = "Natural year";
  7232. $AutoWeight = "Automatic weight";
  7233. $AutoWeightExplanation = "Use the automatic weight distribution to speed things up. The system will then distribute the total weight evenly between the evaluation items below.";
  7234. $EditWeight = "Edit weight";
  7235. $TheSkillHasBeenCreated = "The skill has been created";
  7236. $CreateSkill = "Create skill";
  7237. $CannotCreateSkill = "Cannot create skill";
  7238. $SkillEdit = "Edit skill";
  7239. $TheSkillHasBeenUpdated = "The skill has been updated";
  7240. $CannotUpdateSkill = "Cannot update skill";
  7241. $BadgesManagement = "Badges management";
  7242. $CurrentBadges = "Current badges";
  7243. $SaveBadge = "Save badge";
  7244. $BadgeMeasuresXPixelsInPNG = "Badge measures 200x200 pixels in PNG";
  7245. $SetTutor = "Set as coach";
  7246. $UniqueAnswerImage = "Unique answer image";
  7247. $TimeSpentByStudentsInCoursesGroupedByCode = "Time spent by students in courses, grouped by code";
  7248. $TestResultsByStudentsGroupesByCode = "Tests results by student groups, by code";
  7249. $TestResultsByStudents = "Tests results by student";
  7250. $SystemCouldNotLogYouIn = "The system was unable to log you in. Please contact your administrator.";
  7251. $ShibbolethLogin = "Shibboleth Login";
  7252. $NewStatus = "New status";
  7253. $Reason = "Reason";
  7254. $RequestStatus = "Request new status";
  7255. $StatusRequestMessage = "You have been logged-in with default permissions. You can request more permissions by submitting the following request.";
  7256. $ReasonIsMandatory = "The 'reason' field is mandatory. Please fill it in before submitting.";
  7257. $RequestSubmitted = "Your request has been submitted.";
  7258. $RequestFailed = "We are not able to fulfill your request at this time. Please contact your administrator.";
  7259. $InternalLogin = "Internal login";
  7260. $AlreadyLoggedIn = "You are already logged in";
  7261. $Draggable = "Sequence ordering";
  7262. $Incorrect = "Incorrect";
  7263. $YouNotYetAchievedCertificates = "You have not achieved any certificate just yet. Continue on your learning path to get one!";
  7264. $SearchCertificates = "Search certificates";
  7265. $TheUserXNotYetAchievedCertificates = "User %s hast not acquired any certificate yet";
  7266. $CertificatesNotPublic = "Certificates are not publicly available";
  7267. $MatchingDraggable = "Match by dragging";
  7268. $ForumThreadPeerScoring = "Thread scored by peers";
  7269. $ForumThreadPeerScoringComment = "If selected, this option will require each student to qualify at least 2 other students in order to get his score greater than 0 in the gradebook.";
  7270. $ForumThreadPeerScoringStudentComment = "To get the expected score in this forum, your contribution will have to be scored by another student, and you will have to score at least 2 other students' contributions. Until you reach this objective, even if scored, your contribution will show as a 0 score in the global grades for this course.";
  7271. $Readable = "Readable";
  7272. $NotReadable = "Not readable";
  7273. $DefaultInstallAdminFirstname = "John";
  7274. $DefaultInstallAdminLastname = "Doe";
  7275. $AttendanceUpdated = "Attendances updated";
  7276. $HideHomeTopContentWhenLoggedInText = "Hide top content on homepage when logged in";
  7277. $HideHomeTopContentWhenLoggedInComment = "On the platform homepage, this option allows you to hide the introduction block (to leave only the announcements, for example), for all users that are already logged in. The general introduction block will still appear to users not already logged in.";
  7278. $HideGlobalAnnouncementsWhenNotLoggedInText = "Hide global announcements for anonymous";
  7279. $HideGlobalAnnouncementsWhenNotLoggedInComment = "Hide platform announcements from anonymous users, and only show them to authenticated users.";
  7280. $CourseCreationUsesTemplateText = "Use template course for new courses";
  7281. $CourseCreationUsesTemplateComment = "Set this to use the same template course (identified by its course numeric ID in the database) for all new courses that will be created on the platform. Please note that, if not properly planned, this setting might have a massive impact on space usage. The template course will be used as if the teacher did a copy of the course with the course backup tools, so no user content is copied, only teacher material. All other course-backup rules apply. Leave empty (or set to 0) to disable.";
  7282. $EnablePasswordStrengthCheckerText = "Password strength checker";
  7283. $EnablePasswordStrengthCheckerComment = "Enable this option to add a visual indicator of password strength, when the user changes his/her password. This will NOT prevent bad passwords to be added, it only acts as a visual helper.";
  7284. $EnableCaptchaText = "CAPTCHA";
  7285. $EnableCaptchaComment = "Enable a CAPTCHA on the login form to avoid password hammering";
  7286. $CaptchaNumberOfMistakesBeforeBlockingAccountText = "CAPTCHA mistakes allowance";
  7287. $CaptchaNumberOfMistakesBeforeBlockingAccountComment = "The number of times a user can make a mistake on the CAPTCHA box before his account is locked out.";
  7288. $CaptchaTimeAccountIsLockedText = "CAPTCHA account locking time";
  7289. $CaptchaTimeAccountIsLockedComment = "If the user reaches the maximum allowance for login mistakes (when using the CAPTCHA), his/her account will be locked for this number of minutes.";
  7290. $DRHAccessToAllSessionContentText = "HR directors access all session content";
  7291. $DRHAccessToAllSessionContentComment = "If enabled, human resources directors will get access to all content and users from the sessions (s)he follows.";
  7292. $ShowGroupForaInGeneralToolText = "Display group forums in general forum";
  7293. $ShowGroupForaInGeneralToolComment = "Display group forums in the forum tool at the course level. This option is enabled by default (in this case, group forum individual visibilities still act as an additional criteria). If disabled, group forums will only be visible through the group tool, be them public or not.";
  7294. $TutorsCanAssignStudentsToSessionsText = "Tutors can assign students to sessions";
  7295. $TutorsCanAssignStudentsToSessionsComment = "When enabled, course coaches/tutors in sessions can subscribe new users to their session. This option is otherwise only available to administrators and session administrators.";
  7296. $UniqueAnswerImagePreferredSize200x150 = "Images will be resized (up or down) to 200x150 pixels. For a better rendering of the question, we recommend you upload only images of this size.";
  7297. $AllowLearningPathReturnLinkTitle = "Show learning paths return link";
  7298. $AllowLearningPathReturnLinkComment = "Disable this option to hide the 'Return to homepage' button in the learning paths";
  7299. $HideScormExportLinkTitle = "Hide SCORM Export";
  7300. $HideScormExportLinkComment = "Hide the SCORM Export icon from the Learning Paths list";
  7301. $HideScormCopyLinkTitle = "Hide SCORM Copy";
  7302. $HideScormCopyLinkComment = "Hide the Learning Path Copy icon from the Learning Paths list";
  7303. $HideScormPdfLinkTitle = "Hide Learning Path PDF export";
  7304. $HideScormPdfLinkComment = "Hide the Learning Path PDF Export icon from the Learning Paths list";
  7305. $SessionDaysBeforeCoachAccessTitle = "Default coach access days before session";
  7306. $SessionDaysBeforeCoachAccessComment = "Default number of days a coach can access his session before the official session start date";
  7307. $SessionDaysAfterCoachAccessTitle = "Default coach access days after session";
  7308. $SessionDaysAfterCoachAccessComment = "Default number of days a coach can access his session after the official session end date";
  7309. $PdfLogoHeaderTitle = "PDF header logo";
  7310. $PdfLogoHeaderComment = "Whether to use the image at css/themes/[your-css]/images/pdf_logo_header.png as the PDF header logo for all PDF exports (instead of the normal portal logo)";
  7311. $OrderUserListByOfficialCodeTitle = "Order users by official code";
  7312. $OrderUserListByOfficialCodeComment = "Use the 'official code' to sort most students list on the platform, instead of their lastname or firstname.";
  7313. $AlertManagerOnNewQuizTitle = "Default e-mail alert setting on new quiz";
  7314. $AlertManagerOnNewQuizComment = "Whether you want course managers (teachers) to be notified by e-mail when a quiz is answered by a student. This is the default value to be given to all new courses, but each teacher can still change this setting in his/her own course.";
  7315. $ShowOfficialCodeInExerciseResultListTitle = "Display official code in exercises results";
  7316. $ShowOfficialCodeInExerciseResultListComment = "Whether to show the students' official code in the exercises results reports";
  7317. $HidePrivateCoursesFromCourseCatalogTitle = "Hide private courses from catalogue";
  7318. $HidePrivateCoursesFromCourseCatalogComment = "Whether to hide the private courses from the courses catalogue. This makes sense when you use the course catalogue mainly to allow students to auto-subscribe to the courses.";
  7319. $CoursesCatalogueShowSessionsTitle = "Sessions and courses catalogue";
  7320. $CoursesCatalogueShowSessionsComment = "Whether you want to show only courses, only sessions or both courses *and* sessions in the courses catalogue.";
  7321. $AutoDetectLanguageCustomPagesTitle = "Enable language auto-detect in custom pages";
  7322. $AutoDetectLanguageCustomPagesComment = "If you use custom pages, enable this if you want to have a language detector there present the page in the user's browser language, or disable to force the language to be the default platform language.";
  7323. $LearningPathShowReducedReportTitle = "Learning paths: show reduced report";
  7324. $LearningPathShowReducedReportComment = "Inside the learning paths tool, when a user reviews his own progress (through the stats icon), show a shorten (less detailed) version of the progress report.";
  7325. $AllowSessionCourseCopyForTeachersTitle = "Allow session-to-session copy for teachers";
  7326. $AllowSessionCourseCopyForTeachersComment = "Enable this option to let teachers copy their content from one course in a session to a course in another session. By default, this option is only available to platform administrators.";
  7327. $HideLogoutButtonTitle = "Hide logout button";
  7328. $HideLogoutButtonComment = "Hide the logout button. This is usually only interesting when using an external login/logout method, for example when using Single Sign On of some sort.";
  7329. $RedirectAdminToCoursesListTitle = "Redirect admin to courses list";
  7330. $RedirectAdminToCoursesListComment = "The default behaviour is to send administrators directly to the administration panel (while teachers and students are sent to the courses list or the platform homepage). Enable to redirect the administrator also to his/her courses list.";
  7331. $CourseImagesInCoursesListTitle = "Courses custom icons";
  7332. $CourseImagesInCoursesListComment = "Use course images as the course icon in courses lists (instead of the default green blackboard icon).";
  7333. $StudentPublicationSelectionForGradebookTitle = "Assignment considered for gradebook";
  7334. $StudentPublicationSelectionForGradebookComment = "In the assignments tool, students can upload more than one file. In case there is more than one for a single assignment, which one should be considered when ranking them in the gradebook? This depends on your methodology. Use 'first' to put the accent on attention to detail (like handling in time and handling the right work first). Use 'last' to highlight collaborative and adaptative work.";
  7335. $FilterCertificateByOfficialCodeTitle = "Certificates filter by official code";
  7336. $FilterCertificateByOfficialCodeComment = "Add a filter on the students official code to the certificates list.";
  7337. $MaxCKeditorsOnExerciseResultsPageTitle = "Max editors in exercise result screen";
  7338. $MaxCKeditorsOnExerciseResultsPageComment = "Because of the sheer number of questions that might appear in an exercise, the correction screen, allowing the teacher to add comments to each answer, might be very slow to load. Set this number to 5 to ask the platform to only show WYSIWYG editors up to a certain number of answers on the screen. This will speed up the correction page loading time considerably, but will remove WYSIWYG editors and leave only a plain text editor.";
  7339. $DocumentDefaultOptionIfFileExistsTitle = "Default document upload mode";
  7340. $DocumentDefaultOptionIfFileExistsComment = "Default upload method in the courses documents. This setting can be changed at upload time for all users. It only represents a default setting.";
  7341. $GradebookCronTaskGenerationTitle = "Certificates auto-generation on WS call";
  7342. $GradebookCronTaskGenerationComment = "When enabled, and when using the WSCertificatesList webservice, this option will make sure that all certificates have been generated by users if they reached the sufficient score in all items defined in gradebooks for all courses and sessions (this might consume considerable processing resources on your server).";
  7343. $OpenBadgesBackpackUrlTitle = "OpenBadges backpack URL";
  7344. $OpenBadgesBackpackUrlComment = "The URL of the OpenBadges backpack server that will be used by default for all users wanting to export their badges. This defaults to the open and free Mozilla Foundation backpack repository: https://backpack.openbadges.org/";
  7345. $CookieWarningTitle = "Cookie privacy notification";
  7346. $CookieWarningComment = "If enabled, this option shows a banner on top of your platform that asks users to acknowledge that the platform is using cookies necessary to provide the user experience. The banner can easily be acknowledged and hidden by the user. This allows Chamilo to comply with EU web cookies regulations.";
  7347. $CatalogueAllowSessionAutoSubscriptionComment = "If enabled *and* the sessions catalogue is enabled, users will be able to subscribe to active sessions by themselves using the 'Subscribe' button, without any type of restriction.";
  7348. $HideCourseGroupIfNoToolAvailableTitle = "Hide course group if no tool";
  7349. $HideCourseGroupIfNoToolAvailableComment = "If no tool is available in a group and the user is not registered to the group itself, hide the group completely in the groups list.";
  7350. $CatalogueAllowSessionAutoSubscriptionTitle = "Auto-subscription in sessions catalogue";
  7351. $SoapRegistrationDecodeUtf8Title = "Web services: decode UTF-8";
  7352. $SoapRegistrationDecodeUtf8Comment = "Decode UTF-8 from web services calls. Enable this option (passed to the SOAP parser) if you have issues with the encoding of titles and names when inserted through web services.";
  7353. $AttendanceDeletionEnableTitle = "Attendances: enable deletion";
  7354. $AttendanceDeletionEnableComment = "The default behaviour in Chamilo is to hide attendance sheets instead of deleting them, just in case the teacher would do it by mistake. Enable this option to allow teachers to *really* delete attendance sheets.";
  7355. $GravatarPicturesTitle = "Gravatar user pictures";
  7356. $GravatarPicturesComment = "Enable this option to search into the Gravatar repository for pictures of the current user, if the user hasn't defined a picture locally. This is great to auto-fill pictures on your site, in particular if your users are active internet users. Gravatar pictures can be configured easily, based on the e-mail address of a user, at http://en.gravatar.com/";
  7357. $GravatarPicturesTypeTitle = "Gravatar avatar type";
  7358. $GravatarPicturesTypeComment = "If the Gravatar option is enabled and the user doesn't have a picture configured on Gravatar, this option allows you to choose the type of avatar that Gravatar will generate for each user. Check <a href='http://en.gravatar.com/site/implement/images#default-image'>http://en.gravatar.com/site/implement/images#default-image</a> for avatar types examples.";
  7359. $SessionAdminPermissionsLimitTitle = "Limit session admins permissions";
  7360. $SessionAdminPermissionsLimitComment = "If enabled, the session administrators will only see the User block with the 'Add user' option and the Sessions block with the 'Sessions list' option.";
  7361. $ShowSessionDescriptionTitle = "Show session description";
  7362. $ShowSessionDescriptionComment = "Show the session description wherever this option is implemented (sessions tracking pages, etc)";
  7363. $CertificateHideExportLinkStudentTitle = "Certificates: hide export link from students";
  7364. $CertificateHideExportLinkStudentComment = "If enabled, students won't be able to export their certificates to PDF. This option is available because, depending on the precise HTML structure of the certificate template, the PDF export might be of low quality. In this case, it is best to only show the HTML certificate to students.";
  7365. $CertificateHideExportLinkTitle = "Certificates: hide PDF export link for all";
  7366. $CertificateHideExportLinkComment = "Enable to completely remove the possibility to export certificates to PDF (for all users). If enabled, this includes hiding it from students.";
  7367. $DropboxHideCourseCoachTitle = "Dropbox: hide course coach";
  7368. $DropboxHideCourseCoachComment = "Hide session course coach in dropbox when a document is sent by the coach to students";
  7369. $SSOForceRedirectTitle = "Single Sign On: force redirect";
  7370. $SSOForceRedirectComment = "Enable this option to force users to authenticate on the master authentication portal when a Single Sign On method is enabled. Only enable once you are sure that your Single Sign On procedure is correctly set up, otherwise you might prevent yourself from logging in again (in this case, change the SSO settings in the settings_current table through direct access to the database, to unlock).";
  7371. $SessionCourseOrderingTitle = "Session courses manual ordering";
  7372. $SessionCourseOrderingComment = "Enable this option to allow the session administrators to order the courses inside a session manually. If disabled, courses are ordered alphabetically on course title.";
  7373. $AddLPCategory = "Add learning path category";
  7374. $WithOutCategory = "Without category";
  7375. $ItemsTheReferenceDependsOn = "Items the reference depends on";
  7376. $UseAsReference = "Use as reference";
  7377. $Dependencies = "Items that depend on the reference";
  7378. $SetAsRequirement = "Set as a requirement";
  7379. $AddSequence = "Add new sequence";
  7380. $ResourcesSequencing = "Resources sequencing";
  7381. $GamificationModeTitle = "Gamification mode";
  7382. $GamificationModeComment = "Activate the stars achievement in learning paths";
  7383. $LevelX = "Level %s";
  7384. $SeeCourse = "View course";
  7385. $XPoints = "%s points";
  7386. $FromXUntilY = "From %s until %s";
  7387. $SubscribeUsersToLp = "Subscribe users to learning path";
  7388. $SubscribeGroupsToLp = "Subscribe groups to learning path";
  7389. $CreateForumForThisLearningPath = "Create forum for this learning path";
  7390. $ByDate = "By date";
  7391. $ByTag = "By tag";
  7392. $GoToCourseInsideSession = "Go to course within session";
  7393. $EnableGamificationMode = "Enable gamification mode";
  7394. $MyCoursesSessionView = "My courses session view";
  7395. $DisableGamificationMode = "Disable gamification mode";
  7396. $CatalogueShowOnlyCourses = "Show only courses in the catalogue";
  7397. $CatalogueShowOnlySessions = "Show only sessions in the catalogue";
  7398. $CatalogueShowCoursesAndSessions = "Show both courses and sessions in the catalogue";
  7399. $SequenceSelection = "Sequence selection";
  7400. $SequenceConfiguration = "Sequence configuration";
  7401. $SequencePreview = "Sequence preview";
  7402. $DisplayDates = "Dates shown";
  7403. $AccessDates = "Access dates for students";
  7404. $CoachDates = "Access dates for coaches";
  7405. $ChatWithXUser = "Chat with %s";
  7406. $StartVideoChat = "Start video call";
  7407. $FieldTypeVideoUrl = "Video URL";
  7408. $InsertAValidUrl = "Insert a valid URL";
  7409. $SeeInformation = "See information";
  7410. $ShareWithYourFriends = "Share with your friends";
  7411. $ChatRoomName = "Chatroom name";
  7412. $TheVideoChatRoomXNameAlreadyExists = "The video chatroom %s already exists";
  7413. $ChatRoomNotCreated = "Chatroom could not be created";
  7414. $TheXUserBrowserDoesNotSupportWebRTC = "The browser of %s does not support native video transmission. Sorry.";
  7415. $FromDateX = "From %s";
  7416. $UntilDateX = "Until %s";
  7417. $GraphDependencyTree = "Dependency tree";
  7418. $CustomizeIcons = "Customize icons";
  7419. $ExportAllToPDF = "Export all to PDF";
  7420. $GradeGeneratedOnX = "Grade generated on %s";
  7421. $ExerciseAvailableSinceX = "Exercise available since %s";
  7422. $ExerciseIsActivatedFromXToY = "The test is enabled from %s to %s";
  7423. $SelectSomeOptions = "Select some options";
  7424. $AddCustomCourseIntro = "You may add an introduction to this course here by clicking the edition icon";
  7425. $SocialGroup = "Social group";
  7426. $RequiredSessions = "Required sessions";
  7427. $DependentSessions = "Dependent sessions";
  7428. $ByDuration = "By duration";
  7429. $ByDates = "By dates";
  7430. $SendAnnouncementCopyToDRH = "Send a copy to HR managers of selected students";
  7431. $PoweredByX = "Powered by %s";
  7432. $AnnouncementErrorNoUserSelected = "Please select at least one user. The announcement has not been saved.";
  7433. $NoDependencies = "No dependencies";
  7434. $SendMailToStudent = "Send mail to student";
  7435. $SendMailToHR = "Send mail to HR manager";
  7436. $CourseFields = "Course fields";
  7437. $FieldTypeCheckbox = "Checkbox options";
  7438. $FieldTypeInteger = "Integer value";
  7439. $FieldTypeFileImage = "Image file";
  7440. $FieldTypeFloat = "Float value";
  7441. $DocumentsDefaultVisibilityDefinedInCourseTitle = "Document visibility defined in course";
  7442. $DocumentsDefaultVisibilityDefinedInCourseComment = "The default document visibility for all courses";
  7443. $HtmlPurifierWikiTitle = "HTMLPurifier in Wiki";
  7444. $HtmlPurifierWikiComment = "Enable HTML purifier in the wiki tool (will increase security but reduce style features)";
  7445. $ClickOrDropFilesHere = "Click or drop files";
  7446. $RemoveTutorStatus = "Remove tutor status";
  7447. $ImportGradebookInCourse = "Import gradebook from base course";
  7448. $InstitutionAddressTitle = "Institution address";
  7449. $InstitutionAddressComment = "Address";
  7450. $LatestLoginInCourse = "Latest access in course";
  7451. $LatestLoginInPlatform = "Latest login in platform";
  7452. $FirstLoginInPlatform = "First login in platform";
  7453. $FirstLoginInCourse = "First access to course";
  7454. $QuotingToXUser = "Quoting to %s";
  7455. $LoadMoreComments = "Load more comments";
  7456. $ShowProgress = "Show progress";
  7457. $XPercent = "%s %%";
  7458. $CheckRequirements = "Check requirements";
  7459. $ParentLanguageX = "Parent language: %s";
  7460. $RegisterTermsOfSubLanguageForX = "Define new terms for sub-language %s by searching some term, then save each translation by clicking the save button. You will then have to switch your own user language to see the new terms appear.";
  7461. $SeeSequences = "See sequences";
  7462. $SessionRequirements = "Session requirements";
  7463. $IsRequirement = "Is requirement";
  7464. $ConsiderThisGradebookAsRequirementForASessionSequence = "Consider this gradebook as a requirement to complete the course (influences the sessions sequences)";
  7465. $DistinctUsersLogins = "Distinct users logins";
  7466. $AreYouSureToSubscribe = "Are you sure to subscribe?";
  7467. $CheckYourEmailAndFollowInstructions = "Check your e-mail and follow the instructions.";
  7468. $LinkExpired = "Link expired, please try again.";
  7469. $ResetPasswordInstructions = "Instructions for the password change procedure";
  7470. $ResetPasswordCommentWithUrl = "You are receiving this message because you (or someone pretending to be you) have requested a new password to be generated for you.<br/>
  7471. To set a the new password you need to activate it. To do this, please click this link:<br/>%s<br/>If you did not request this procedure, then please ignore this message. If you keep receiving it, please contact the portal administrator.";
  7472. $CronRemindCourseExpirationActivateTitle = "Remind Course Expiration cron";
  7473. $CronRemindCourseExpirationActivateComment = "Enable the Remind Course Expiration cron";
  7474. $CronRemindCourseExpirationFrequencyTitle = "Frequency for the Remind Course Expiration cron";
  7475. $CronRemindCourseExpirationFrequencyComment = "Number of days before the expiration of the course to consider to send reminder mail";
  7476. $CronCourseFinishedActivateText = "Course Finished cron";
  7477. $CronCourseFinishedActivateComment = "Activate the Course Finished cron";
  7478. $MailCronCourseFinishedSubject = "End of course %s";
  7479. $MailCronCourseFinishedBody = "Dear %s,<br/>Thank you for your participation to course %s. We hope you've acquired new relevant knowledge and enjoyed the course.<br/>
  7480. You can check your performance in the course through the My Progress section.<br/>Best regards,<br/>
  7481. %s Team";
  7482. $GenerateDefaultContent = "Generate default content";
  7483. $ThanksForYourSubscription = "Thanks for your subscription";
  7484. $XTeam = "%s team.";
  7485. $YouCanStartSubscribingToCoursesEnteringToXUrl = "You can start subscribing to courses entering to %s";
  7486. $VideoUrl = "Video URL";
  7487. $AddAttachment = "Add attachment";
  7488. $FieldTypeOnlyLetters = "Text only letters";
  7489. $FieldTypeAlphanumeric = "Text only alphanumeric characters";
  7490. $OnlyLetters = "Only letters";
  7491. $SelectFillTheBlankSeparator = "Select a blanks marker";
  7492. $RefreshBlanks = "Refresh terms";
  7493. $WordTofind = "Word to find";
  7494. $BlankInputSize = "Input size of box to fill";
  7495. $DateFormatLongNoDayJS = "MM dd, yy";
  7496. $TimeFormatNoSecJS = "HH:mm";
  7497. $AtTime = " at";
  7498. $SendSubscriptionNotification = "Send mail notification to students to inform of subscription";
  7499. $SendAnEmailWhenAUserBeingSubscribed = "Send an email when a user being subscribed to session";
  7500. $SelectDate = "Select date";
  7501. $OnlyLettersAndSpaces = "Only letters and spaces";
  7502. $OnlyLettersAndNumbersAndSpaces = "Only letters, numbers and spaces";
  7503. $FieldTypeLettersSpaces = "Text letters and spaces";
  7504. $CronRemindCourseFinishedActivateTitle = "Send course finished notification";
  7505. $FieldTypeAlphanumericSpaces = "Text alphanumeric characters and spaces";
  7506. $CronRemindCourseFinishedActivateComment = "Whether to send an e-mail to students when their course (session) is finished. This requires cron tasks to be configured (see main/cron/ directory).";
  7507. $ThanksForRegisteringToSite = "Thanks for registering to %s.";
  7508. $AllowCoachFeedbackExercisesTitle = "Allow coaches to comment in review of exercises";
  7509. $AllowCoachFeedbackExercisesComment = "Allow coaches to edit feedback during review of exercises";
  7510. $PreventMultipleSimultaneousLoginTitle = "Prevent simultaneous login";
  7511. $PreventMultipleSimultaneousLoginComment = "Prevent users connecting with the same account more than once. This is a good option on pay-per-access portals, but might be restrictive during testing as only one browser can connect with any given account.";
  7512. $ShowAdditionalColumnsInStudentResultsPageTitle = "Show additional columns in gradebook";
  7513. $ShowAdditionalColumnsInStudentResultsPageComment = "Show additional columns in the student view of the gradebook with the best score of all students, the relative position of the student looking at the report and the average score of the whole group of students.";
  7514. $CourseCatalogIsPublicTitle = "Publish course catalogue";
  7515. $CourseCatalogIsPublicComment = "Make the courses catalogue available to anonymous users (the general public) without the need to login.";
  7516. $ResetPasswordTokenTitle = "Enable password reset token";
  7517. $ResetPasswordTokenComment = "This option allows to generate a expiring single-use token sent by e-mail to the user to reset his/her password.";
  7518. $ResetPasswordTokenLimitTitle = "Time limit for password reset token";
  7519. $ResetPasswordTokenLimitComment = "The number of seconds before the generated token automatically expires and cannot be used anymore (a new token needs to be generated).";
  7520. $ViewMyCoursesListBySessionTitle = "View my courses by session";
  7521. $ViewMyCoursesListBySessionComment = "Enable an additional 'My courses' page where sessions appear as part of courses, rather than the opposite.";
  7522. $DownloadCertificatePdf = "Download certificate in PDF";
  7523. $EnterPassword = "Enter password";
  7524. $DownloadReportPdf = "Download report in PDF";
  7525. $SkillXEnabled = "Skill \"%s\" enabled";
  7526. $SkillXDisabled = "Skill \"%s\" disabled";
  7527. $ShowFullSkillNameOnSkillWheelTitle = "Show full skill name on skill wheel";
  7528. $ShowFullSkillNameOnSkillWheelComment = "On the wheel of skills, it shows the name of the skill when it has short code.";
  7529. $DBPort = "Port";
  7530. $CreatedBy = "Created by";
  7531. $DropboxHideGeneralCoachTitle = "Hide general coach in dropbox";
  7532. $DropboxHideGeneralCoachComment = "Hide general coach name in the dropbox tool when the general coach uploaded the file";
  7533. $UploadMyAssignment = "Upload my assignment";
  7534. $Inserted = "Inserted";
  7535. $YourBroswerDoesNotSupportWebRTC = "Your browser does not support native video transmission.";
  7536. $OtherTeachers = "Other teachers";
  7537. $CourseCategory = "Course category";
  7538. $VideoChatBetweenUserXAndUserY = "Video chat between %s and %s";
  7539. $Enable = "Enable";
  7540. $Disable = "Disable";
  7541. $AvoidChangingPageAsThisWillCutYourCurrentVideoChatSession = "Avoid changing page as this will cut your current video chat session";
  7542. $ConnectingToPeer = "Connecting to peer";
  7543. $ConnectionEstablished = "Connection established";
  7544. $ConnectionFailed = "Connection failed";
  7545. $ConnectionClosed = "Connection closed";
  7546. $LocalConnectionFailed = "Local connection failed";
  7547. $RemoteConnectionFailed = "Remote connection failed";
  7548. $ViewStudents = "View students";
  7549. $Into = "Into";
  7550. $Sequence = "Sequence";
  7551. $Invitee = "Invitee";
  7552. $DateRange = "Date range";
  7553. $EditIcon = "Edit icon";
  7554. $CustomIcon = "Custom icon";
  7555. $CurrentIcon = "Current icon";
  7556. $GroupReporting = "Group reporting";
  7557. $ConvertFormats = "Convert format";
  7558. $AreYouSureToDeleteX = "Are you sure you want to delete %s?";
  7559. $AttachmentList = "Attachments list";
  7560. $SeeCourseInformationAndRequirements = "See course information and requirements";
  7561. $DownloadAll = "Download all";
  7562. $DeletedDocuments = "Deleted documents";
  7563. $CourseListNotAvailable = "Course list not available";
  7564. $CopyOfMessageSentToXUser = "Copy of message sent to %s";
  7565. $Convert = "Convert";
  7566. $PortalLimitType = "Portal's limit type";
  7567. $PortalName = "Portal name";
  7568. $BestScore = "Best score";
  7569. $AreYouSureToDeleteJS = "Are you sure to delete";
  7570. $ConversionToSameFileFormat = "Conversion to same file format. Please choose another.";
  7571. $FileFormatNotSupported = "File format not supported";
  7572. $FileConvertedFromXToY = "File converted from %s to %s";
  7573. $XDays = "%s days";
  7574. $SkillProfile = "Skill profile";
  7575. $AchievedSkills = "Achieved skills";
  7576. $BusinessCard = "Business card";
  7577. $BadgeDetails = "Badge details";
  7578. $TheUserXNotYetAchievedTheSkillX = "The user %s has not achieved the skill \"%s\" yet";
  7579. $IssuedBadgeInformation = "Issued badge information";
  7580. $RecipientDetails = "Recipient details";
  7581. $SkillAcquiredAt = "Skill acquired at";
  7582. $BasicSkills = "Basic skills";
  7583. $TimeXThroughCourseY = "<strong>%s</strong> through <em>%s</em>";
  7584. $ExportBadge = "Export badge";
  7585. $SelectToSearch = "Select to search";
  7586. $PlaceOnTheWheel = "Place on the wheel";
  7587. $Skill = "Skill";
  7588. $Argumentation = "Argumentation";
  7589. $TheUserXHasAlreadyAchievedTheSkillY = "The user %s has already achieved the skill %s";
  7590. $SkillXAssignedToUserY = "The skill %s has been assigned to user %s";
  7591. $AssignSkill = "Assign skill";
  7592. $AddressField = "Address";
  7593. $Geolocalization = "Geolocalization";
  7594. $RateTheSkillInPractice = "On a grade of 1 to 10, how well did you observe that this person could put this skill in practice?";
  7595. $AverageRatingX = "Average rating %s";
  7596. $AverageRating = "Average rating";
  7597. $GradebookTeacherResultsNotShown = "Teachers results are not shown nor taken into account in the gradebook.";
  7598. $SocialWallWriteNewPostToFriend = "Write something on your friend's wall";
  7599. $EmptyTemplate = "Blank template";
  7600. $BaseCourse = "Base course";
  7601. $BaseCourses = "Base courses";
  7602. $Square = "Square";
  7603. $Ellipse = "Ellipse";
  7604. $Polygon = "Polygon";
  7605. $HotspotStatus1 = "Draw a hotspot";
  7606. $HotspotStatus2Polygon = "Use right-click to close the polygon";
  7607. $HotspotStatus2Other = "Release the mousebutton to save the hotspot";
  7608. $HotspotStatus3 = "Hotspot saved";
  7609. $HotspotShowUserPoints = "Show/Hide userclicks";
  7610. $ShowHotspots = "Show / Hide hotspots";
  7611. $Triesleft = "Attempts left";
  7612. $NextAnswer = "Now click on:";
  7613. $CloseDelineation = "Close delineation";
  7614. $Oar = "Area at risk";
  7615. $HotspotExerciseFinished = "Now click on the button below to validate your answers";
  7616. $ClosePolygon = "Close polygon";
  7617. $DelineationStatus1 = "Use right-click to close the delineation";
  7618. $Beta = "Beta";
  7619. $CropYourPicture = "Crop your picture";
  7620. $DownloadBadge = "Download badge";
  7621. $NoXMLFileFoundInTheZip = "No XML file found in the zip archive. This is a requirement for this type of import.";
  7622. $BakedBadgeProblem = "There was a problem embedding the badge assertion info into the badge image, but you can still use this page as a valid proof.";
  7623. $ConfirmAssociateForumToLPItem = "This action will associate a forum thread to this learning path item. Do you want to proceed?";
  7624. $ConfirmDissociateForumToLPItem = "This action will dissociate the forum thread of this learning path item. Do you want to proceed?";
  7625. $DissociateForumToLPItem = "Dissociate the forum of this learning path item";
  7626. $AssociateForumToLPItem = "Associate a forum to this learning path item";
  7627. $ForumDissociated = "Forum dissociated";
  7628. $ClickOrDropOneFileHere = "Click or drop one file here";
  7629. $ModuloPercentage = "Modulo:\t\t\t%";
  7630. $LastXDays = "Last %s days";
  7631. $ExportBadges = "Export badges";
  7632. $LanguagesDisableAllExceptDefault = "Disable all languages except the platform default";
  7633. $ThereAreUsersUsingThisLanguagesDisableItManually = "There are users currently using the following language. Please disable manually.";
  7634. $MessagingAllowSendPushNotificationTitle = "Allow Push Notifications to the Chamilo Messaging mobile app";
  7635. $MessagingAllowSendPushNotificationComment = "Send Push Notifications by Google's Firebase Console";
  7636. $MessagingGDCProjectNumberTitle = "Sender ID of Firebase Console for Cloud Messaging";
  7637. $MessagingGDCProjectNumberComment = "You need register a project on <a href=\"https://console.firebase.google.com/\">Google Firebase Console</a>";
  7638. $MessagingGDCApiKeyTitle = "Server key of Firebase Console for Cloud Messaging";
  7639. $MessagingGDCApiKeyComment = "Server key (legacy token) from project credentials";
  7640. $Overwrite = "Overwrite";
  7641. $TheLogoMustBeSizeXAndFormatY = "The logo must be of %s px in size and in %s format";
  7642. $ResetToTheOriginalLogo = "Original logo recovered";
  7643. $NewLogoUpdated = "New logo uploaded";
  7644. $CurrentLogo = "Current logo";
  7645. $UpdateLogo = "Update logo";
  7646. $FollowedStudentBosses = "Followed student bosses";
  7647. $DatabaseManager = "Database manager";
  7648. $CourseTemplate = "Course template";
  7649. $PickACourseAsATemplateForThisNewCourse = "Pick a course as template for this new course";
  7650. $TeacherCanSelectCourseTemplateTitle = "Teacher can select a course as template";
  7651. $TeacherCanSelectCourseTemplateComment = "Allow pick a course as template for the new course that teacher is creating";
  7652. $TheForumAutoLaunchSettingIsOnStudentsWillBeRedirectToTheForumTool = "The forum's auto-launch setting is on. Students will be redirected to the forum tool when entering this course.";
  7653. $RedirectToForumList = "Redirect to forums list";
  7654. $EnableForumAutoLaunch = "Enable forum auto-launch";
  7655. $NowDownloadYourCertificateClickHere = "You can now download your certificate by clicking here";
  7656. $AdditionallyYouHaveObtainedTheFollowingSkills = "Additionally, you have achieved the following skills";
  7657. $IHaveObtainedSkillXOnY = "I have achieved skill %s on %s";
  7658. $AnotherAttempt = "Another attempt";
  7659. $RemainingXAttempts = "Remaining %d attempts";
  7660. $Map = "Map";
  7661. $MyLocation = "My location";
  7662. $ShowCourseInUserLanguage = "Show course in user's language";
  7663. $AccessData = "Access data";
  7664. $InvalidImageDimensions = "Image dimensions do not match the requirements. Please check the suggestions next to the image field.";
  7665. $CouldNotResetPasswordBecauseLDAP = "Could not reset password, contact your helpdesk.";
  7666. $Quote = "Quote";
  7667. $ValueTooSmall = "Value is too small.";
  7668. $ValueTooBig = "Value is too big.";
  7669. $YouAreATeacherOfThisCourse = "You are a teacher of this course";
  7670. $StudentBossList = "Student bosses list";
  7671. $ShowScoreEveryAttemptShowAnswersLastAttempt = "Show score on every attempt, show correct answers only on last attempt (only works with an attempts limit)";
  7672. $MissingChartLibraryPleaseCheckLog = "Missing chart library. Please check the error log for details.";
  7673. $UserXIndicated = "User %s indicated:";
  7674. $AcquiredLevel = "Level acquired";
  7675. $ManageSkillsLevels = "Manage skills levels";
  7676. $AddProfile = "Add profile";
  7677. $AddLevel = "Add level";
  7678. $ChangeAcquiredLevel = "Change acquired level";
  7679. $NoLevelAcquiredYet = "No level acquired yet";
  7680. $RecordAudio = "Record audio";
  7681. $StartRecordingAudio = "Start recording";
  7682. $StopRecordingAudio = "Stop recording";
  7683. $SaveRecordedAudio = "Save recorded audio";
  7684. $GradeFromX = "Grades from course: %s";
  7685. $TitleMandatory = "A title is required";
  7686. $NoCourseCategorySupplied = "No course category was provided";
  7687. $ForumStartDate = "Publication date";
  7688. $ForumEndDate = "Closing date";
  7689. $ForumStartDateComment = "The forum will be visible starting from this date";
  7690. $ForumEndDateComment = "Once this date has passed, the forum will be closed";
  7691. $ModeratedForum = "Moderated forum";
  7692. $DiagnosisFilledSubject = "Diagnosis filled successfully";
  7693. $DiagnosisFilledDescription = "The diagnosis has been filled successfully";
  7694. $UserXHasFilledTheDiagnosis = "User %s has filled the diagnosis";
  7695. $UserXHasFilledTheDiagnosisDescription = "User %s has filled the diagnosis on the platform and it is ready for you to review.";
  7696. $SendLegal = "Send legal agreement";
  7697. $DeleteLegal = "Delete legal agreement";
  7698. $LegalAccepted = "Legal accepted";
  7699. $LoadTermConditionsSectionTitle = "Load term conditions section";
  7700. $LoadTermConditionsSectionDescription = "The legal agreement will appear during the login or when enter to a course.";
  7701. $SendTermsSubject = "Your terms and conditions are ready to be signed";
  7702. $SendTermsDescriptionToUrlX = "Hello,<br />Your tutor sent you your terms and conditions. You can sign it following this URL: %s";
  7703. $UserXSignedTheAgreement = "User %s signed the agreement.";
  7704. $UserXSignedTheAgreementTheY = "User %s signed the agreement the %s.";
  7705. $ShowTermsIfProfileCompletedTitle = "Terms and conditions only if profile complete";
  7706. $ShowTermsIfProfileCompletedComment = "By enabling this option, terms and conditions will be available to the user only when the extra profile fields that start with 'terms_' and set to visible are completed.";
  7707. $EnableProfileUsersAddressGeolocalizationTitle = "Enable user's geolocalization";
  7708. $EnableProfileUsersAddressGeolocalizationComment = "Enable user's address field and show it on a map using geolocalization features";
  7709. $ProfileIsNotCompleted = "You must first fill your profile to continue";
  7710. $TermActivatedIsNeededDescription = "The terms and conditions have not yet been validated by your tutor.";
  7711. $DiagnosisManagement = "Diagnosis management";
  7712. $TermYourProfileIsNotCompleted = "You must first fill your profile to enable the terms and conditions validation.";
  7713. $Diagnostic = "Diagnostic";
  7714. $AllowShowSkypeAccountTitle = "Allow show the user Skype account";
  7715. $AllowShowSkypeAccountComment = "Add a link on the user social block allowing start a chat by Skype";
  7716. $AllowShowLinkedInUrlTitle = "Allow show the user LinkedIn URL";
  7717. $AllowShowLinkedInUrlComment = "Add a link on the user social block, allowing visit the user's LinkedIn profile";
  7718. $LaunchVideoConferenceRoom = "Launch videoconference room";
  7719. $VideoConference = "Videoconference";
  7720. $TermsDuplicatedInFile = "Terms duplicated in file";
  7721. $GlossaryTermAlreadyExists = "Term already exists";
  7722. $LinkedInUrl = "LinkedIn profile URL";
  7723. $SaveTheCorrectAnswersForTheNextAttempt = "Save the correct answer for the next attempt";
  7724. $TranslateThisTerm = "Translate this term";
  7725. $OnlyActiveSubLanguagesAreListed = "Only active sub-languages appear in this list";
  7726. $Translation = "Translation";
  7727. $IfThisTranslationExistsThisWillReplaceTheTerm = "If this term has already been translated, this operation will replace its translation for this sub-language.";
  7728. $LastConnection = "Last connection";
  7729. $HisProfileIs = "His profile is";
  7730. $UserXWithLangXRegisteredTheSite = "User %s with language %s is registered in the site";
  7731. $YouCanAssignATutorInThisLinkX = "You can assign a tutor in this link %s";
  7732. $UpdateExistingGlossaryTerms = "Update existing terms.";
  7733. $TermsUpdated = "Terms updated";
  7734. $TermsAdded = "Terms added";
  7735. $TeacherTimeReportBySession = "Teachers time report by session";
  7736. $NumberOfWorks = "Number of works";
  7737. $LastWork = "Last work";
  7738. $WaitingModeration = "Waiting for moderation";
  7739. $WorksInSessionReport = "Works in session report";
  7740. $Files = "Files";
  7741. $AssignedTo = "Assigned to";
  7742. $UpdatedByX = "Updated by %s";
  7743. $AssignedChangeFromXToY = "Assignee changed from %s to %s";
  7744. $RequestConfirmation = "Request confirmation";
  7745. $ChangeAssign = "Change assign";
  7746. $ToBeAssigned = "To be assigned";
  7747. $StatusNew = "New";
  7748. $StatusPending = "Pending";
  7749. $StatusUnconfirmed = "Unconfirmed";
  7750. $StatusClose = "Close";
  7751. $StatusForwarded = "Forwarded";
  7752. $MyTickets = "My tickets";
  7753. $PriorityNormal = "Normal";
  7754. $PriorityHigh = "High";
  7755. $PriorityLow = "Low";
  7756. $TicketDetail = "Ticket details";
  7757. $StatusAll = "All";
  7758. $StatusUnread = "Unread";
  7759. $StatusRead = "Read";
  7760. $Projects = "Projects";
  7761. $AssignUser = "Assign user";
  7762. $TicketEnrollment = "Enrollment";
  7763. $TicketGeneralInformation = "General information";
  7764. $TicketRequestAndPapework = "Requests and paperwork";
  7765. $TicketAcademicIncidence = "Academic Incidents";
  7766. $TicketVirtualCampus = "Virtual campus";
  7767. $TicketOnlineEvaluation = "Online evaluation";
  7768. $TicketsAboutEnrollment = "Tickets about enrollment";
  7769. $TicketsAboutGeneralInformation = "Tickets about general information";
  7770. $TicketsAboutRequestAndPapework = "Tickets about requests and paperwork";
  7771. $TicketsAboutAcademicIncidence = "Tickets about academic incidents, like exams, practices, tasks, etc.";
  7772. $TicketsAboutVirtualCampus = "Tickets about virtual campus";
  7773. $TicketsAboutOnlineEvaluation = "Tickets about online evaluation";
  7774. $Assign = "Assign";
  7775. $PersonalEmail = "Personal e-mail";
  7776. $Priority = "Priority";
  7777. $Source = "Source";
  7778. $SrcPlatform = "Platform";
  7779. $SrcEmail = "E-mail";
  7780. $SrcPhone = "Phone";
  7781. $SrcPresential = "Presential";
  7782. $TicketXCreated = "Ticket %s created";
  7783. $ShowLinkTicketNotificationTitle = "Show ticket creation link";
  7784. $ShowLinkTicketNotificationComment = "Show the ticket creation link to users on the right side of the portal";
  7785. $LastSentWorkDate = "Last sent work date";
  7786. $SSOSubclassTitle = "Single Sign On sub-class";
  7787. $SSOSubclassComment = "To enable a Single Sign On method, you will have to create your own sub-class in main/auth/sso/ based on the default class. Indicate here the name of the sub-class. For example, if the file is sso.Drupal.class.php, indicate 'Drupal' in this field.";
  7788. $CourseCreationSplashScreenTitle = "Course creation splash screen";
  7789. $CourseCreationSplashScreenComment = "The course splash screen show a series of suggested options to the teacher when creating a new course. Disable it to let your teachers land directly on the course homepage.";
  7790. $WorksReport = "Assignments report";
  7791. $AccumulateScormTime = "Accumulate SCORM session time";
  7792. $AccumulateScormTimeInfo = "When enabled, the session time for SCORM Learning Paths will be cumulative, otherwise, it will only be counted from the last update time.";
  7793. $CalendarStartDate = "Start date";
  7794. $DownloadTasksPackage = "Download assignments package";
  7795. $UploadCorrectionsPackage = "Upload corrections package";
  7796. $IconsModeSVGTitle = "SVG icons mode";
  7797. $IconsModeSVGComment = "By enabling this option, all icons that have an SVG version will prefer the SVG format to PNG. This will give a much better icons quality but some icons might still have some rendering size issue, and some browsers might not support it.";
  7798. $FilterByTags = "Filter by tags";
  7799. $ImportFromMoodle = "Import from Moodle";
  7800. $ImportFromMoodleInfo = "Import a Moodle course backup file (.mbz) into this Chamilo course";
  7801. $ImportFromMoodleInstructions = "The Moodle import feature might not support all content types from Moodle, given the fact that not all features are the same, and that Moodle and Chamilo both evolve continuously and rapidly. This import feature should be considered a work in progress. Please check https://support.chamilo.org/projects/chamilo-18/wiki/Moodle_import for more information.";
  7802. $MoodleFile = "Moodle course file";
  7803. $FailedToImportThisIsNotAMoodleFile = "Failed to import: this doesn't seem to be a Moodle course backup file (.mbz)";
  7804. $ThisQuestionIsNotSupportedYet = "This question type is not supported yet";
  7805. $ProcessingImportPleaseDontCloseThisWindowThisActionMayTakeLongTimePlaseWait = "Processing the import... Please don't close this window. This process may take a considerable amount of time. Please be patient.";
  7806. $Contact = "Contact";
  7807. $WarningForDeprecatedDirectoriesForUpgrade = "Because the <code>newscorm</code> and <code>exercice</code> directories were renamed to <code>lp</code> and <code>exercise</code> respectively, is necessary to delete or rename to <code>newscorm_old</code> and <code>exercice_old</code>.";
  7808. $ExtensionNotAvailable = "Extension not available";
  7809. $EnableRecordAudioComment = "Enables the WebRTC (flashless) audio recorder at several locations inside Chamilo";
  7810. $EnableRecordAudioTitle = "Enable audio recorder";
  7811. $ShowOfficialCodeInWhoIsOnlinePageComment = "Show official code on the 'Who is online' page, below the username.";
  7812. $ShowOfficialCodeInWhoIsOnlinePage = "Official code on 'Who is online'";
  7813. $JobPublic = "Public job";
  7814. $ApplyJob = "Apply for the job";
  7815. $PublicCompany = "Public company";
  7816. $PrivateCompany = "Private company";
  7817. $NonForProfitCompany = "Non-profit company";
  7818. $Government = "Government";
  7819. $Template = "Template";
  7820. $Palette = "Palette";
  7821. $Colors = "Colors";
  7822. $Mask = "Mask";
  7823. $Icon = "Icon";
  7824. $DesignWithBadgeStudio = "Design with Badge Studio";
  7825. $UseThisBadge = "Use this badge";
  7826. $Palettes = "Palettes";
  7827. $DesignWithBadgeStudioComment = "Use the Badge Studio to create your own badge from within your platform";
  7828. $YouAlreadySentThisFile = "You have already sent this file or another file with the same name. Please make sure you only upload each file once.";
  7829. $DocumentsDefaultVisibility = "Default visibility of new documents";
  7830. $TicketAllowStudentAddTitle = "Allow users to add tickets";
  7831. $TicketAllowStudentAddComment = "Allows all users to add tickets not only the administrators.";
  7832. $TicketSendWarningToAllAdminsTitle = "Send ticket warning messages to administrators";
  7833. $TicketSendWarningToAllAdminsComment = "Send a message if a ticket was created without a category or if a category doesn't have any administrator assigned.";
  7834. $TicketWarnAdminNoUserInCategoryTitle = "Send alert to administrators if tickets category has no one in charge";
  7835. $TicketWarnAdminNoUserInCategoryComment = "Send a warning message (e-mail and Chamilo message) to all administrators if there's not a user assigned to a category.";
  7836. $TicketAllowCategoryEditionTitle = "Allow tickets categories edition";
  7837. $TicketAllowCategoryEditionComment = "Allow category edition by administrators.";
  7838. $TicketSystem = "Tickets";
  7839. $MoodleFileImportedSuccessfully = "The Moodle course file has been imported successfully.";
  7840. $ExtensionInstalledButNotEnabled = "Extension installed but not enabled";
  7841. $MailingTestSent = "E-mail sent. This procedure works in all aspects similarly to the normal e-mail sending of Chamilo, but allows for more flexibility in terms of destination e-mail and message body.";
  7842. $EMailTester = "E-mail tester";
  7843. $TicketMsgWelcome = "Welcome to YOUR tickets section. Here, you'll be able to track the state of all the tickets you created in the main tickets section.";
  7844. $TicketNoHistory = "No history";
  7845. $RecalculateResults = "Recalculate results";
  7846. $XParenthesisDeleted = "%s (deleted)";
  7847. $AvailableAlsoInMainPortal = "Available also on main portal";
  7848. $EditCourseCategoryToURL = "Edit course categories for one URL";
  7849. $VisibleToSelf = "Visible to self";
  7850. $VisibleToOthers = "Visible to others";
  7851. $UpgradeVersion = "Upgrade Chamilo LMS version";
  7852. $CRSTablesIntro = "The install script has detected tables left over from previous versions that could cause problems during the upgrade process.
  7853. Please click on the button below to delete them. We heavily recommend you do a full backup of them before confirming this last install step.";
  7854. $Removing = "Removing";
  7855. $CheckForCRSTables = "Check for tables from previous versions";
  7856. $YourPasswordCannotBeTheSameAsYourEmail = "Your password cannot be the same as your email";
  7857. $YourPasswordCannotContainYourUsername = "Your password cannot contain your username";
  7858. $WordTwoCharacterClasses = "Use different character classes";
  7859. $TooManyRepetitions = "Too many repetitions";
  7860. $YourPasswordContainsSequences = "Your password contains sequences";
  7861. $PasswordVeryWeak = "Very weak";
  7862. $UserXHasBeenAssignedToBoss = "You have been assigned the learner %s";
  7863. $UserXHasBeenAssignedToBossWithUrlX = "You have been assigned as tutor for the learner %s.<br/>
  7864. You can access his profile here: %s";
  7865. $ShortName = "Short name";
  7866. $Portal = "Portal";
  7867. $CourseUserDocument = "Course user document";
  7868. $Destination = "Destination";
  7869. $UserTestingEMailConf = "User testing of e-mail configuration";
  7870. $CMS = "CMS";
  7871. $SendLegalSubject = "Legal conditions";
  7872. $SendLegalDescriptionToUrlX = "Please accept our legal conditions here: %s";
  7873. $ExerciseInvisibleInSession = "Exercise invisible in sessions";
  7874. $YouNeedToConfirmYourAgreementCheckYourEmail = "You need to confirm your agreement to our terms first. Please check your e-mail.";
  7875. $ErrorImportingFile = "Error importing file";
  7876. $Hidden = "Hidden";
  7877. $Imported = "Imported";
  7878. $ImportAsCSV = "Import from a CSV";
  7879. $EditThread = "Edit thread";
  7880. $AddFiles = "Add files";
  7881. $GroupForums = "Group forums";
  7882. $Generate = "Generate";
  7883. $Ticket = "Ticket";
  7884. $InvalidApiKey = "Invalid API key";
  7885. $NoAnnouncement = "No announcement";
  7886. $NoForum = "No forum";
  7887. $GoToExercise = "Go to exercise";
  7888. $ForumDissociate = "Dissociate forum";
  7889. $NoLPFound = "No learning path found";
  7890. $ReportTypeLink = "Active report link";
  7891. $InviteesCantBeTutors = "Invitees cannot be tutors";
  7892. $InvalidAction = "Invalid action";
  7893. $TicketWasThisAnswerSatisfying = "Was this answer satisfactory?";
  7894. $IfYouAreSureTheTicketWillBeClosed = "If you are certain, the ticket will be closed.";
  7895. $Priorities = "Priorities";
  7896. $Tickets = "Tickets";
  7897. $ThisTextShouldBeAtLeastXCharsLong = "This text should be at least %s characters long";
  7898. $TicketXAssignedToUserX = "Ticket <b>#%s</b> assigned to user <b>%s</b>";
  7899. $ThisItemIsRelatedToOtherTickets = "This item is related to other tickets.";
  7900. $WarningCategoryXDoesntHaveUsers = "Warning: No one has been assigned to category %s";
  7901. $TicketXCreatedWithNoCategory = "Ticket %s was created without a category";
  7902. $TicketInformation = "Ticket info";
  7903. $CategoryWithNoUserNotificationSentToAdmins = "A notification was sent to the administrators to report this category has no user assigned";
  7904. $VirtualSupport = "Virtual support";
  7905. $IncidentResentToVirtualSupport = "The incident has been sent to the virtual support team again";
  7906. $YourQuestionWasSentToTheResponableAreaX = "Your question has been sent to %s, the area in charge";
  7907. $YourAnswerToTheQuestionWillBeSentToX = "Your answer to this question will be sent to %s";
  7908. $MessageResent = "Message resent";
  7909. $TicketAssignedToXCheckZAtLinkY = "Ticket assigned to %s. Follow-up at <a href='%s'>#%s</a>.";
  7910. $TicketXAssigned = "Ticket %s assigned";
  7911. $Historial = "History";
  7912. $TicketNum = "Ticket number";
  7913. $TicketClosed = "Ticket closed";
  7914. $Unassign = "Unassign";
  7915. $PleaseSelectTasks = "Please select tasks";
  7916. $PleaseSelect = "Please select";
  7917. $PleaseSelectThread = "Please select thread";
  7918. $TotalTickets = "Total tickets";
  7919. $ThereWasAnErrorRegisteringTheTicket = "There was an error registering your ticket";
  7920. $AreYouSureYouWantToUnassignTheTicket = "Are you sure you want to unassign this ticket?";
  7921. $AreYouSureYouWantToCloseTheTicket = "Are you sure you want to close this ticket?";
  7922. $Unassigned = "Unassigned";
  7923. $SelectWeeksSpan = "Select the timespan in weeks";
  7924. $CourseXAdded = "Course %s added";
  7925. $CurrentPassword = "Current password";
  7926. $DeleteCorrections = "Delete all corrections";
  7927. $AllowMyFilesTitle = "Enable 'My Files' section";
  7928. $AllowMyFilesComment = "Allow users to upload files to a personal space on the platform.";
  7929. $InstallMultiURLDetectedNotMainURL = "You are currently using the multi-URL feature and are trying to upgrade your portal using a secondary URL. Please connect to the main URL to proceed with the upgrade: %s";
  7930. $OnlyXQuestionsPickedRandomly = "Only %s questions will be picked randomly following the quiz configuration.";
  7931. $AllowDownloadDocumentsByApiKeyTitle = "Allow download course documents by API Key";
  7932. $AllowDownloadDocumentsByApiKeyComment = "Download documents verifying the REST API key for a user";
  7933. $UploadCorrectionsExplanationWithDownloadLinkX = "First you have to download the corrections <a href='%s'> here </a>.
  7934. After that you have to unzip that file and edit the files as you wanted without changing the file names.
  7935. Then create a zip file with those modified files and upload it in this form.";
  7936. $PostsPendingModeration = "Posts pending moderation";
  7937. $OnlyUsersFromCourseSession = "Only users from one course in a session";
  7938. $ServerXForwardedForInfo = "If the server is behind a proxy or firewall (and only in those cases), it might be using the X_FORWARDED_FOR HTTP header to show the remote user IP (yours, in this case).";
  7939. $GeolocalizationCoordinates = "Geolocalization by coordinates";
  7940. $ExportUsersOfACourse = "Export users of a course";
  7941. $PauseRecordingAudio = "Pause recording";
  7942. $PlayRecordingAudio = "Resume recording";
  7943. $YourSessionTimeHasExpired = "You are already registered but your allowed access time has expired.";
  7944. $ConsideredWorkingTime = "Assignment work time";
  7945. $DocumentNumber = "Document ID";
  7946. $SocialData = "Social data";
  7947. $WallMessagesPosted = "Wall messages posted by him/herself";
  7948. $SeeAccesses = "See accesses";
  7949. $PriorityChangeFromXToY = "Priority changed from %s to %s";
  7950. $StatusChangeFromXToY = "Status changed from %s to %s";
  7951. $SkillFromCourseXDeletedSinceThen = "This skill was obtained through course %s which has been removed since then.";
  7952. $SaveAndAddNewItem = "Save and add new item";
  7953. $AnnouncementChooseRecipientsDescription = "By default, this announcement will be sent to all users. But you can also select others recipients.";
  7954. $ChooseRecipients = "Choose recipients";
  7955. $StudentCourseProgressX = "Progress: %s %%";
  7956. $SessionDurationNotStartedMaxX = "This session has a maximum duration of %s days.";
  7957. $StudentCourseScoreX = "Score: %s %%";
  7958. $StudentCourseCertificateX = "Certificate: %s";
  7959. $ConfigureExerciseVisibilityInCourseTitle = "Enable to bypass the configuration of Exercise invisible in session at a base course level";
  7960. $ConfigureExerciseVisibilityInCourseComment = "To enable the configuration of the exercise invisibility in session in the base course to by pass the global configuration. If not set the global parameter is used.";
  7961. $ExerciseInvisibleInSessionTitle = "Exercise invisible in Session";
  7962. $ExerciseInvisibleInSessionComment = "If an exercise is visible in the base course then it appears invisible in the session. If an exercise is invisible in the base course then it does not appear in the session.";
  7963. $Ongoing = "Ongoing";
  7964. $Unclosed = "Unclosed";
  7965. $AttemptStillOngoingPleaseWait = "Attempt still going on. Please wait.";
  7966. $MarkAttemptAsClosed = "Mark attempt as closed";
  7967. $NewPasswordRequirementsNotMatched = "The new password does not match the minimum security requirements";
  7968. $NewPasswordRequirementMinXLowercase = "Minimum %s lowercase characters";
  7969. $NewPasswordRequirementMinXUppercase = "Minimum %s uppercase characters";
  7970. $NewPasswordRequirementMinXNumeric = "Minimum %s numerical (0-9) characters";
  7971. $NewPasswordRequirementMinXLength = "Minimum %s characters in total";
  7972. $NewPasswordRequirementMaxXLowercase = "Maximum %s lowercase characters";
  7973. $NewPasswordRequirementMaxXUppercase = "Maximum %s uppercase characters";
  7974. $NewPasswordRequirementMaxXNumeric = "Maximum %s numerical (0-9) characters";
  7975. $NewPasswordRequirementMaxXLength = "Maximum %s characters in total";
  7976. $YouCantNotEditThisQuestionBecauseAlreadyExistAnswers = "You can't edit this question because answers by students have already been registered";
  7977. $Avatar = "Avatar";
  7978. $StudyCycle = "Semester";
  7979. $ReadingComprehension = "Reading comprehension";
  7980. $ReadingQuestionCongratsSpeedXNotReachedForYWords = "Sorry, it seems like a speed of %s words/minute was too fast for this text of %s words.";
  7981. $ReadingQuestionCongratsSpeedXReachedForYWords = "Congratulations, you have reached and correctly understood, at a speed of %s words per minute, a text of a total %s words.";
  7982. $ReadingComprehensionLevelX = "%s words per minute";
  7983. $TutorXIsNotSubscribedToCourse = "Tutor %s is no subscribed to this course";
  7984. $UpdateTitleInLps = "Update this title in learning paths";
  7985. $WebRTCDialogHelp = "To enable video chat in your browser (if it supports it), make sure you click on the information icon on the left of the URL and then authorize the use of the webcam and microphone.";
  7986. $UpdateFile = "Update file";
  7987. $SendEmailToTeacherWhenStudentStartQuiz = "Paranoid: E-mail teacher when a student starts an exercise";
  7988. $SendEmailToTeacherWhenStudentEndQuiz = "Aware: E-mail teacher when a student ends an exercise";
  7989. $SendEmailToTeacherWhenStudentEndQuizOnlyIfOpenQuestion = "Relaxed open: E-mail teacher when a student ends an exercise, only if an open question is answered";
  7990. $SendEmailToTeacherWhenStudentEndQuizOnlyIfOralQuestion = "Relaxed audio: E-mail teacher when a student ends an exercise, only if an oral question is answered";
  7991. $StudentStartExercise = "Student just started an exercise";
  7992. $TempScoreXQuestionsNotCorrectedYet = "Temporary score: %s open question(s) not corrected yet.";
  7993. $Annotation = "Annotation";
  7994. $TeacherPicture = "Teacher picture";
  7995. $FeedbackIfNotCorrect = "Feedback if not correct";
  7996. $ScheduledAnnouncements = "Scheduled announcements";
  7997. $SpecificDate = "Specific dispatch date";
  7998. $BaseDate = "Dispatch based on the session's start/end dates";
  7999. $AfterOrBefore = "After or before";
  8000. $Before = "Before";
  8001. $ScheduleAnnouncementDescription = "This form allows scheduling announcements to be sent automatically to the students who are taking a course in a session.
  8002. There are two types of announcements that can be sent:
  8003. Specific date: In this case a specific day is selected to make the announcement.
  8004. Based on the start / end date of the session: in this case the number of days to pass before sending the announcement must be indicated. And those days can be associated to before or after the start / end date. For example: 3 days after the start date.";
  8005. $MandatorySurveyNoAnswered = "A mandatory survey is waiting your answer. To enter the course, you must first complete the survey.";
  8006. $ShowPreviousButton = "Show previous button";
  8007. $AllTickets = "All tickets";
  8008. $IsMandatory = "Mandatory?";
  8009. $StudentXHasBeenAssignedNewWorkInCourseY = "%s got a new assignment in course %s";
  8010. $AsHRMYouReceiveThisMailToAlertThatXHasNewWorkInCourseY = "As his/her human resources manager, you are receiving this e-mail to let you know that %s just got a new assignment in course %s";
  8011. $DearXComma = "Dear %s,";
  8012. $UserLinkingRequests = "Student linking requests";
  8013. $NewHomeworkEmailAlertToHrmEnable = "E-mail students and their Human Resources Manager on assignments creation";
  8014. $UserLinkingRequestAccepted = "Student linking request accepted";
  8015. $UserLinkingTo = "Linked to student";
  8016. $RequestLinkingToUser = "Request linking to student";
  8017. $LinkingRequestsAdded = "Linking request added";
  8018. $HrmList = "Human Resource Managers list";
  8019. $AssignHrmToUser = "Assign Human Resources Manager to user";
  8020. $AddHrmToUser = "Add Human Resources Manager to user";
  8021. $HrmAssignedUsersCourseList = "Human Resources Manager assigned users course list";
  8022. $GoToSurvey = "Go to Survey";
  8023. $NotificationCertificateSubject = "Certificate notification";
  8024. $NotificationCertificateTemplate = "((user_first_name)),
  8025. Congratulations on the completion of ((course_title)). Your final grade received for this class is ((score)). Please allow a few days for it to reflect in their system. We look forward to seeing you in future classes. If we can assist you further in any way, please feel free to contact us.
  8026. Sincerely,
  8027. ((author_first_name)), ((author_last_name))
  8028. ((portal_name))";
  8029. $SendCertificateNotifications = "Send certificate notification to all users";
  8030. $MailSubjectForwardShort = "Fwd";
  8031. $ForwardedMessage = "Forwarded message";
  8032. $ForwardMessage = "Forward message";
  8033. $MyCoursePageCategoryIntroduction = "You will find below the list of course categories.
  8034. Click on one of them to see the list of courses it has.";
  8035. $FeatureDisabledByAdministrator = "Feature disabled by administrator";
  8036. $SubscribeUsersToLpCategory = "Subscribe users to category";
  8037. $SubscribeGroupsToLpCategory = "Subscribe groups to category";
  8038. $UserLpSubscriptionDescription = "Note that if the inscription of users in a category is available, then if you have already subscribe user to the category it will override the inscription of users here in the Learning Path";
  8039. $UserLpCategorySubscriptionDescription = "Note that the inscription of users in a category will override the inscription of users in the Learning Path";
  8040. $FieldTypeSelectWithTextField = "Select with text field";
  8041. $FieldTypeTripleSelect = "Triple select";
  8042. $DoubleValidationMessage = "You confirm that you really want to subscribe to this plateform.";
  8043. $AddText = "Add text";
  8044. $OralExpressionHelpText = "When you start recording, you can pause whenever you want. If you are not satisfied, register again. This will overwrite the previous version. Satisfied? the file is automatically sent to the server so you can just continue your exercise.";
  8045. $BestScoreInLearningPath = "Best score in learning path";
  8046. $BestScoreNotInLearningPath = "Best score not in learning path";
  8047. $ReSendConfirmationMail = "Send confirmation mail again";
  8048. $UserConfirmedNowYouCanLogInThePlatform = "User confirmed. Now you can login the platform.";
  8049. $AgendaAvailableInCourseX = "Agenda available in course %s";
  8050. $YouHaveBeenSubscribedToCourseXTheStartDateXAndCommentX = "You have been subscribed to the course %s the start date is %s and %s";
  8051. $EmailToTeachersWhenNewWorkFeedback = "E-mail to teachers on new user's student publication feedback.";
  8052. $YourSessionTimeIsExpired = "Your session time is expired.";
  8053. $StudentXHadEnoughSkillsToGetSkillXToAssignClickHereX = "Learner %s has enough sub-skill to get skill %s. To assign this skill it is possible to go here : %s";
  8054. $ThisEmailWasSentViaCourseX = "This e-mail was sent via course %s";
  8055. $ThisEmailWasSentViaCourseXInSessionX = "This e-mail was sent via course %s in session %s";
  8056. $Diagram = "Diagram";
  8057. $CareerXDoesntHaveADiagram = "Career %s doesn't have a diagram.";
  8058. $ExerciseCategoryAllSessionsReport = "Exercise report by category for all sessions";
  8059. $MailConfirmation = "Require e-mail confirmation";
  8060. $RegistrationConfirmation = "Registration confirmation";
  8061. $AccountNotConfirmed = "Your account is inactive because you have not confirmed it yet. Check your email and follow the instructions or click the following link to resend the email";
  8062. $RegistrationConfirmationEmailMessage = "To complete your platform registration you need confirm your account by clicking the following link";
  8063. $ConfirmationForNewAccount = "Confirmation for new account";
  8064. $YouNeedConfirmYourAccountViaEmailToAccessThePlatform = "You need confirm your account via email to access the platform";
  8065. $EnableAddCloudFileLinkTitle = "Enable Cloud files link addition";
  8066. $EnableAddCloudFileLinkComment = "Allow users to link to a file hosted on a public cloud service as if they were documents in the Chamilo documents tool.";
  8067. $UrlAlreadyExists = "This URL already exists";
  8068. $ErrorAddCloudLink = "An error occurred while adding the link to a cloud file.";
  8069. $AddCloudLink = "Add link to Cloud file";
  8070. $CloudLinkDeleted = "Cloud link deleted";
  8071. $CloudLinkMoved = "Cloud link moved";
  8072. $CloudLinkDeleteError = "Error deleting the cloud link.";
  8073. $CloudLinkAdded = "Cloud link added";
  8074. $PleaseEnterCloudLinkName = "Please enter a name for this Cloud link";
  8075. $CloudLinkModified = "Cloud file link updated.";
  8076. $NotValidDomain = "The domain is not valid. It must be one of the following:";
  8077. $ValidDomainList = "List of valid domains";
  8078. $NotValidURL = "URL field format invalid. Example of expected format: http://dropbox.com/sh/loremipsum/loremipsum?dl=0";
  8079. $FileExtension = "File extension";
  8080. $EventsReport = "Audit report";
  8081. $GoogleTranslateApiReturnedEmptyAnswer = "The Google Translate API used by this feature returned and empty answer. Please check or ask your translate_app_google_key setting is set correctly, or kindly ask an administrator to do so.";
  8082. $LinkMeToStudent = "Link me to student";
  8083. $LinkMeToStudentComment = "Please select the student you want to request a link to, so the administrators can review and approve your request. Please note that proper administrative procedures should have been followed first to ensure the admin can legally accept your request.";
  8084. $RequestLinkToStudent = "Request linking with student";
  8085. $SendManuallyPendingAnnouncements = "Send pending announcements manually";
  8086. $UserLinkingRequestRejected = "Student linking request rejected";
  8087. $UserLinkRemoved = "Student link removed";
  8088. $SessionTemplate = "Session template";
  8089. $CloudFileLink = "Cloud file link";
  8090. $ResetFieldX = "Reset %s";
  8091. $MyGeneralCertificate = "My global certificate";
  8092. $ScoreNote = "Note";
  8093. $ScoreTest = "Test";
  8094. $MessageTracking = "Message tracking";
  8095. $MessagesExchangeBetweenXAndY = "Messages exchange between %s and %s";
  8096. $YouWillReceivedASecondEmail = "You will receive another email with your password";
  8097. $YouReceivedAnEmailWithTheUsername = "You must have received another email with your username.";
  8098. $TheScormPackageWillBeUpdatedYouMustUploadTheFileWithTheSameName = "You must upload a zip file with the same name as the original SCORM file.";
  8099. $YourChoice = "Your choice";
  8100. $YouNeedToCreateASkillProfile = "You need to create a skill profile";
  8101. $SkillLevel = "Skill level";
  8102. $Portfolio = "Portfolio";
  8103. $AddPortfolioItem = "Add item to portfolio";
  8104. $NewDocumentAddedToCourseX = "New document added to course %s";
  8105. $DocumentXHasBeenAddedToDocumentInYourCourseXByUserX = "A new document %s has been added to the document tool in your course %s by %s.";
  8106. $PendingSurveys = "Pending surveys";
  8107. $NoPendingSurveys = "No pending surveys";
  8108. $HottestSessions = "Most popular sessions";
  8109. $LPItemCanBeAccessed = "Item can be viewed - Prerequisites completed";
  8110. $ItemXBlocksThisElement = "Item %s blocks this step";
  8111. $YourResultAtXBlocksThisElement = "Your result at %s blocks this step";
  8112. $RegistrationRoleWhatDoYouWantToDo = "What do you want to do?";
  8113. $RegistrationRoleFollowCourses = "Follow courses";
  8114. $RegistrationRoleTeachCourses = "Teach courses";
  8115. $EditPortfolioItem = "Edit portfolio item";
  8116. $PortfolioItemAdded = "Portfolio item added";
  8117. $ExploreMoreCourses = "Explore more courses";
  8118. $LinksOfInterest = "Links of interest";
  8119. $ExportToChamiloFormat = "Export to Chamilo format";
  8120. $CoursesComingSoon = "Courses coming soon";
  8121. $SalePrice = "Sale price";
  8122. $BuyNow = "Buy now";
  8123. $DocumentGroupCollaborationMode = "Collaboration mode";
  8124. $DocumentGroupReadOnlyMode = "Read only mode";
  8125. $GroupDocumentAccess = "Document access";
  8126. $DocumentGroupShareMode = "Share mode";
  8127. $SessionDurationXDaysTotal = "This session has a limited duration of %s days";
  8128. $LastMonth = "Last month";
  8129. $ThisMonth = "This month";
  8130. $PortalUserSessionStats = "Portal user session stats";
  8131. $AddCustomToolsIntro = "You may add an introduction to this tool page as a helper text for your students. Simply click the edit icon to add some text. This short info text here is invisible to students and you can just leave this block empty, but what you will type will be visible to them.";
  8132. $TheDocumentAutoLaunchSettingIsOnStudentsWillBeRedirectToTheDocumentTool = "The document auto-launch feature configuration is enabled. Learners will be automatically redirected to document tool.";
  8133. $DocumentAutoLaunch = "Auto-launch for documents";
  8134. $RedirectToTheDocumentList = "Redirect to the document list";
  8135. $TheExerciseAutoLaunchSettingIsONStudentsWillBeRedirectToTheExerciseList = "The exercises auto-launch feature configuration is enabled. Learners will be automatically redirected to exercise list.";
  8136. $PostedExpirationDate = "Posted deadline for sending the work (Visible to the learner)";
  8137. $BossAlertMsgSentToUserXTitle = "Follow up message about student %s";
  8138. $BossAlertUserXSentMessageToUserYWithLinkZ = "Hi,<br/><br/>
  8139. User %s sent a follow up message about student %s.<br/><br/>
  8140. The message can be seen here %s";
  8141. $include_services = "Include services";
  8142. $culqi_enable = "Enable culqi";
  8143. $SelectedUsersDisabled = "The selected users have all been disabled";
  8144. $SomeUsersNotDisabled = "Some of the selected users have not been disabled. We recommend you confirm which, by using the advanced search.";
  8145. $SelectedUsersEnabled = "The selected users were all enabled.";
  8146. $SomeUsersNotEnabled = "Some of the selected users have not been enabled. We recommend you confirm which, by using the advanced search.";
  8147. $EncryptedData = "Encrypted data";
  8148. $RandomData = "Random data";
  8149. $PersonalDataReport = "Personal data";
  8150. $ComplexDataNotShown = "Complex data (not shown)";
  8151. $PersonalDataIntroductionTitle = "Personal data: introduction";
  8152. $PersonalDataKeptOnYou = "Personal data we keep about you";
  8153. $PersonalDataPermissionsYouGaveUs = "Permissions you gave us";
  8154. $PersonalDataResponsibleOrganizationTitle = "Organization responsible for your data treatment";
  8155. $PersonalDataTreatmentTitle = "Personal data treatment";
  8156. $PersonalDataCollectionTitle = "Personal data collection";
  8157. $PersonalDataRecordingTitle = "Personal data recording";
  8158. $PersonalDataOrganizationTitle = "Personal data organization";
  8159. $PersonalDataStructureTitle = "Personal data structure";
  8160. $PersonalDataConservationTitle = "Personal data conservation";
  8161. $PersonalDataAdaptationTitle = "Personal data adaptation or modification";
  8162. $PersonalDataExtractionTitle = "Personal data extraction";
  8163. $PersonalDataConsultationTitle = "Personal data queries";
  8164. $PersonalDataUsageTitle = "Personal data use";
  8165. $PersonalDataCommunicationTitle = "Personal data communication and sharing";
  8166. $PersonalDataInterconnectionTitle = "Personal data interconnection";
  8167. $PersonalDataLimitationTitle = "Personal data limitation";
  8168. $PersonalDataDeletionTitle = "Personal data deletion";
  8169. $PersonalDataDestructionTitle = "Personal data destruction";
  8170. $PersonalDataProfilingTitle = "Personal data profiling";
  8171. $PersonalDataIntroductionText = "We respect your privacy!
  8172. This page unites all aspects of the personal data we might be keeping on you, how we treat it, what you have authorized us to do with it and who we are, in an effort to comply with most data privacy laws available.
  8173. Please read this information carefully and, if you have any question, check the contact details below to ask us for more details.";
  8174. $YourDegreeOfCertainty = "Your degree of certainty";
  8175. $DegreeOfCertaintyThatMyAnswerIsCorrect = "Degree of certainty that my answer will be considered correct";
  8176. $IncorrectAnswersX = "Incorrect answers: %s";
  8177. $KindRegards = "Kind regards,";
  8178. $DoNotReply = "Please do not reply";
  8179. $ResultAccomplishedTest = "Results for the accomplished test";
  8180. $YourResultsByDiscipline = "Your results by discipline";
  8181. $ForComparisonYourLastResultToThisTest = "In comparison, your latest results for this test";
  8182. $YourOverallResultForTheTest = "Your overall results for the test";
  8183. $QuestionDegreeCertaintyHTMLMail = "You will find your results for test %s below.<br />
  8184. To see the details of these results:
  8185. <br /><br />
  8186. 1. Connect to the platform (login/password): <a href='%s'>To the platform</a>.
  8187. <br /><br />
  8188. 2. Click this link: <a href='%s'>See detailed results</a>.";
  8189. $DegreeOfCertaintyVerySure = "Very sure";
  8190. $DegreeOfCertaintyVerySureDescription = "Your answer was correct and you were 80% sure about it. Congratulations!";
  8191. $DegreeOfCertaintyPrettySure = "Pretty sure";
  8192. $DegreeOfCertaintyPrettySureDescription = "Your answer was correct but you were not completely sure (only 60% to 70% sure)";
  8193. $DegreeOfCertaintyDeclaredIgnorance = "Declared ignorance";
  8194. $DegreeOfCertaintyDeclaredIgnoranceDescription = "You didn't know the answer - only 50% sure";
  8195. $DegreeOfCertaintyUnsure = "Unsure";
  8196. $DegreeOfCertaintyUnsureDescription = "Your answer was incorrect, but you guessed it was (60% to 70% sure)";
  8197. $DegreeOfCertaintyVeryUnsure = "Very unsure";
  8198. $DegreeOfCertaintyVeryUnsureDescription = "Your answer was incorrect although you were about 80% (or more) sure it was wrong";
  8199. $DegreeOfCertaintyIDeclareMyIgnorance = "I don't know the answer and I've picked at random";
  8200. $DegreeOfCertaintyIAmVeryUnsure = "I am very unsure";
  8201. $DegreeOfCertaintyIAmUnsure = "I am unsure";
  8202. $DegreeOfCertaintyIAmPrettySure = "I am pretty sure";
  8203. $DegreeOfCertaintyIAmSure = "I am almost 100% sure";
  8204. $DegreeOfCertaintyIAmVerySure = "I am totally sure";
  8205. $MultipleAnswerTrueFalseDegreeCertainty = "Multiple answer true/false/degree of certainty";
  8206. $IgnoranceAnswersX = "Ignorance: %s";
  8207. $CorrectAnswersX = "Correct answers: %s";
  8208. $TotalHours = "Total hours";
  8209. $MinutesPerDay = "Minutes per day";
  8210. $ClassroomActivity = "Classroom activity";
  8211. $OneDay = "1 day";
  8212. $UserXAnonymized = "User %s's information anonymized.";
  8213. $CannotAnonymizeUserX = "We could not anonymize user %s's information. Please try again or check the logs.";
  8214. $NoPermissionToAnonymizeUserX = "You don't have permissions to anonymize user %s. You need the same permissions as to delete users.";
  8215. $Anonymize = "Anonymize";
  8216. $XQuestions = "%d questions";
  8217. $WebFolderRefreshSucceeded = "The styles and assets in the web/ folder have been refreshed.";
  8218. $WebFolderRefreshFailed = "The styles and assets in the web/ folder could not be refreshed, probably due to a permissions problem. Make sure the web/ folder is writeable by your web server.";
  8219. $CopyTextToClipboard = "Copy text";
  8220. $WeNeedYouToAcceptOurTreatmentOfYourData = "We need you to accept our treatment of your data in order to provide you with this service. If you want to register an account, please accept the terms and click Submit. If you don't accept, no personal data will be treated by us about you.";
  8221. $NoTermsAndConditionsAvailable = "No terms and conditions available";
  8222. $Skype = "Skype";
  8223. $PersonalDataOfficerName = "Personal data officer's name";
  8224. $PersonalDataOfficerRole = "Personal data officer's role";
  8225. $Assets = "Assets";
  8226. $TotalLPTime = "Total learnpath time";
  8227. $AddStatus = "Add status";
  8228. $AddProject = "Add project";
  8229. $AddPriority = "Add priority";
  8230. $NotAccepted = "Rejected";
  8231. $UserPermissions = "User permissions";
  8232. $ExportToPdf = "Export to PDF";
  8233. $GoToThread = "Go to thread";
  8234. $TimeDifference = "Time difference";
  8235. $SessionAdministrator = "Session administrator";
  8236. $ThereIsASequenceResourceLinkedToThisSessionYouNeedToDeleteItFirst = "There is a sequence resource linked to this session. You must delete this link first.";
  8237. $AddAnnotationText = "Add annotation text";
  8238. $AddAnnotationPath = "Add annotation path";
  8239. $Driver = "Driver";
  8240. $UploadTmpDirInfo = "The temporary upload directory is a space on the server where files are uploaded before being filtered and treated by PHP.";
  8241. $GenerateCustomReport = "Generate custom report";
  8242. $ToDo = "To do";
  8243. $PleaseEnterURL = "Please enter the URL";
  8244. $IfYouWantToGetTheCertificateAndOrSkillsAsociatedToThisCourseYouNeedToBuyTheCertificateServiceYouCanGoToServiceCatalogClickingHere = "If you want to get the certificate and/or skills associated with this course, you need to buy the certificate service. You can go to the services catalog by clicking this link: %s";
  8245. $SubSkill = "Sub-skill";
  8246. $AddMultipleUsersToCalendar = "Add multiple users to calendar";
  8247. $UpdateCalendar = "Update calendar";
  8248. $ControlPoint = "Control point";
  8249. $MessageQuestionCertainty = "Please follow the instructions below to check your results for test %s.<br /><br />
  8250. 1. Connect to the platform (username/password) at: %s<br />
  8251. 2. Click the following link: %s<br />";
  8252. $SessionMinDuration = "Session min duration";
  8253. $CanNotTranslate = "Could not translate";
  8254. $AddSkills = "Add skills";
  8255. $Dictionary = "Dictionary";
  8256. $CategoryExists = "Category exists";
  8257. $MinimumGradebookToValidate = "Minimum to validate";
  8258. $NumberOfGradebookToValidateInDependence = "Number of gradebooks to validate in dependencies";
  8259. $DependsOnGradebook = "Depends on gradebook";
  8260. $ThisGradebookDoesntHaveDependencies = "This gradebook has no dependency";
  8261. $CourseIntroductionsAllImportedSuccessfully = "Course introductions all imported successfully.";
  8262. $FilterSessions = "Filter sessions";
  8263. $ScoreModel = "Score model";
  8264. $SyncDatabaseWithSchema = "Synchronize the database with the schema";
  8265. $SkillRelCourses = "Courses-Skills associations";
  8266. $UserRequestWaitingForAction = "A user is waiting for an action about his/her personal data request";
  8267. $TheUserXIsWaitingForAnActionGoHereX = "The user %s is waiting for an action about it's personal data request. \n\n To manage personal data requests you can follow this link : %s";
  8268. $RequestType = "Request type";
  8269. $DeleteAccount = "Delete account";
  8270. $RequestDate = "Request date";
  8271. $RemoveTerms = "Remove legal agreement";
  8272. $InformationRightToBeForgottenLinkX = "You can find more information about the user's right to be forgotten through the following page: %s";
  8273. $ExplanationDeleteLegal = "Please tell us why you want to withdraw the rights you previously gave us, to let us make it in the smoothest way possible.";
  8274. $ExplanationDeleteAccount = "Explain in this box why you want your account deleted";
  8275. $WhyYouWantToDeleteYourLegalAgreement = "You can ask below for your legal agreement to be deleted or your account to be deleted.</br>In the case of the legal agreement, once deleted you will have to accept it again on your next login to be able to access the platform and recover your access, because we cannot reasonably at the same time give you a personal environment and not treat your personal data.</br>In the case of an account deletion, your account will be deleted along with all of your course subscriptions and all the information related to your account. Please select the corresponding option with care. In both cases, one of our administrators will review your request before it is effective, to avoid any misunderstanding and definitive loss of your data.";
  8276. $PersonalDataPrivacy = "Personal data protection";
  8277. $RequestForAccountDeletion = "Request for account removal";
  8278. $TheUserXAskedForAccountDeletionWithJustificationXGoHereX = "User %s asked for the deletion of his/her account, explaining that \"%s\". You can process the request here: %s";
  8279. $TheUserXAskedLegalConsentWithdrawalWithJustificationXGoHereX = "User %s asked for the removal of his/her consent to our legal terms, explaining that \"%s\". You can process the request here: %s";
  8280. $RequestForLegalConsentWithdrawal = "Request for consent withdrawal on legal terms";
  8281. $Terms_and_conditionFields = "Terms and condition fields";
  8282. $ContentNotAccessibleRequestFromDataPrivacyOfficer = "This content is not accessible to you directly because of course-related access rules. If you require access to that data, please contact the Data Privacy Officer as defined in our privacy terms.";
  8283. $LearningCalendar = "Learning calendar";
  8284. $ControlPointAdded = "Control point added";
  8285. $NumberDaysAccumulatedInCalendar = "Number of days accumulated in calendar";
  8286. $DifferenceOfDaysAndCalendar = "Difference between days and calendar";
  8287. $SkillUserList = "Skills and users list";
  8288. $CourseId = "Course ID";
  8289. $CareDetailView = "Student care detail view";
  8290. $MoreDataAvailableInTheDatabaseButTrunkedForEfficiencyReasons = "More data available in the database but trunked for efficiency reasons.";
  8291. $SendAnnouncementCopyToMyself = "Send a copy by email to myself.";
  8292. $CourseHoursDuration = "Course duration (h)";
  8293. $AnnouncementWillBeSentTo = "Announcement will be sent to";
  8294. $FrmReadOutTextIntro = "You need attach a audio file according to the text, clicking on the %s icon.";
  8295. $CreateReadOutText = "Create read-out text";
  8296. $OutstandingStudents = "Outstanding students";
  8297. $PercentileScoresDistribution = "Percentile scores distribution";
  8298. $ProgressObtainedFromLPProgressAndTestsAverage = "Note: This progress is obtained through a combination of progress in the learning paths and average scores in the tests";
  8299. $CreateNewSurveyDoodle = "Create a new Doodle type survey";
  8300. $RemoveMultiplicateQuestions = "Remove multiplicated questions";
  8301. $MultiplicateQuestions = "Multiplicate questions";
  8302. $QuestionTags = "You can use the tags {{class_name}} and {{student_full_name}} in the question to be able to multiplicate questions.
  8303. On the survey's list page in the action field you have a button to multiplicate question that will look for the {{class_name}} tag and duplicate the question for all the class subscribed to the course and rename it with the name of the class.
  8304. It will also add a page ending to make a new page for each class.
  8305. Then it will look for the {{student_full_name}} tag and duplicate the question for all the student in the class (for each class) and rename it with the student's full name.";
  8306. $CreateMeeting = "Create meeting poll";
  8307. $QuestionForNextClass = "Question for next class";
  8308. $NewExerciseAttemptDisabled = "The portal do not allowed to start new test for the moment, please come back later.";
  8309. $PersonalDataOfficer = "Personal data officer";
  8310. $MaxNumberSubscribedStudentsReached = "The maximum number of student has already been reached, it is not possible to subscribe more student.";
  8311. $UserXAddedToCourseX = "User %s has been registered to course %s";
  8312. $LpMinTime = "Minimum time (minutes)";
  8313. $LpMinTimeDescription = "Minimum time (in minutes) a student must remain in the learning path to get access to the next one.";
  8314. $LpMinTimeWarning = "You didn't spend the minimum time required in the learning path.";
  8315. $YouHaveSpentXTime = "You have spent %s";
  8316. $TimeSpentInLp = "Time spent in the learning path";
  8317. $StudentXFinishedLp = "Student %s has completed his/her learning paths.";
  8318. $IHaveFinishedTheLessonsNotifyTheTeacher = "I have finished the lessons, notify the teacher";
  8319. $TheStudentXHasFinishedTheCourseYLearningPaths = "The student <b>%s</b> has finished the learning paths from the course <b>%s</b>";
  8320. $ThisQuestionExistsInAnotherExercisesWarning = "This question is used in another exercises. If you continue its edition, the changes will affect all exercises that contain this question.";
  8321. $TimeSpentTimeRequired = "Time spent / Time required";
  8322. $ProgressSpentInLp = "Progress";
  8323. $InSessionXYouHadTheFollowingResults = "In session %s, you had the following results";
  8324. $TimeSpent = "Time spent";
  8325. $NumberOfVisits = "Number of visits";
  8326. $FormationUnit = "Formation unit";
  8327. $GlobalProgress = "Global progress";
  8328. $AttestationOfAttendance = "Attestation of attendance";
  8329. $DontShowScoreOnlyWhenUserFinishesAllAttemptsButShowFeedbackEachAttempt = "Do not show the score (only when user finishes all attempts) but show feedback for each attempt.";
  8330. $ExerciseRankingMode = "Ranking mode: Do not show results details question by question and show a table with the ranking of all other users.";
  8331. $BackToTop = "Back to top";
  8332. $PersonalDataTreatmentTitleHelp = "What do we consider personal data?";
  8333. $PersonalDataCollectionTitleHelp = "Why do we collect this data?";
  8334. $PersonalDataRecordingTitleHelp = "Where do we record the data? (in which system, hosted where, accessible by which company that handles the servers, etc.)";
  8335. $PersonalDataOrganizationTitleHelp = "How is the data structured? To what extent does the organization of the data protect your security? ... Do you have established processes that ensure that a hacker will not be able to collect all the personal data on the first attempt? Are they encrypted?";
  8336. $PersonalDataStructureTitleHelp = "How is the data structured in this software? (one tab for all the data, it has some categorization / label, ...)";
  8337. $PersonalDataConservationTitleHelp = "How long do we save the data? Is there data that expires even though the account is still active? How much time do we keep the data after the last use of the system?";
  8338. $PersonalDataAdaptationTitleHelp = "What changes can we make to the data? What changes can be made to the data without affecting the service?";
  8339. $PersonalDataExtractionTitleHelp = "What do we extract data for (towards other internal processes) and which data is it?";
  8340. $PersonalDataConsultationTitleHelp = "Who can consult the personal data? For what purpose?";
  8341. $PersonalDataUsageTitleHelp = "How and for what can we use the personal data?";
  8342. $PersonalDataCommunicationTitleHelp = "With whom can we share them? In what opportunities? Through what processes (safe or not)?";
  8343. $PersonalDataInterconnectionTitleHelp = "Do we have another system with which Chamilo interacts? What is the interconnection process? What are the data pieces exchanged and in what way?";
  8344. $PersonalDataLimitationTitleHelp = "What are the limits that we will always respect when using personal data? How far can we go?";
  8345. $PersonalDataDeletionTitleHelp = "After how long do we erase the data? (event, last use, contract validity, etc.) What are the elimination processes?";
  8346. $PersonalDataDestructionTitleHelp = "What happens if the data is destroyed as a result of a technical failure? (unauthorized deletion or loss of material, for example)";
  8347. $PersonalDataProfilingTitleHelp = "For what purpose do we process personal data? Do we use it to filter the access users have to certain parts of our application? (negative or positive discrimination)";
  8348. $SearchUsersByName = "By name";
  8349. $GlobalChat = "Chat";
  8350. $AskRevision = "Ask for a revision";
  8351. $FeatureDisabledBecauseOfUnmaintainedThirdPartyLibraries = "This feature has been disabled because the libraries it depends on are no longer unmaintained.";
  8352. $SearchUserByGeolocalization = "By geolocalization";
  8353. $GiveRevision = "Give revision";
  8354. $ForumPostReported = "Post reported";
  8355. $UserXReportedPostXInForumX = "User %s has reported the message %s in the forum %s";
  8356. $MyCommunities = "My communities";
  8357. $SeeAllCommunities = "See all communities";
  8358. $HideForumNotifications = "Hide forum notifications";
  8359. $Forum_categoryFields = "Forum Category fields";
  8360. $Forum_postFields = "Forum post fields";
  8361. $ExerciseShowOnlyGlobalScoreAndCorrectAnswers = "Show only global score (not question score) and show only the correct answers, do not show incorrect answers at all";
  8362. $Reported = "Reported";
  8363. $FromTimeX = "From %s";
  8364. $ToTimeX = "To %s";
  8365. $SurveyInviteLink = "Survey invitation link";
  8366. $RevisionProposed = "Revision proposed";
  8367. $SessionsPlanCalendar = "Sessions plan calendar";
  8368. $QuizQuestionsLimitPerDay = "Limit of questions per day";
  8369. $QuizQuestionsLimitPerDayComment = "If set to greater than 0, this option will prevent the learner from entering a test that has more than what remains for the daily allowance. For example, is the limit is 50 and the learner has already taken 2 tests of 20 questions, it will not let the learner enter another 20 questions test (20+20+20=60 > 50). However, it will let the learner enter a 10 questions test (20+20+10=50).";
  8370. $QuizQuestionsLimitPerDayXReached = "Sorry, you have reached the maximum number of questions (%s) for the day. Please try again tomorrow.";
  8371. $VoteLike = "Like";
  8372. $VoteDislike = "Dislike";
  8373. $GenerateStats = "Generate statistics";
  8374. $BasicCourseDocuments = "Basic course documents";
  8375. $WeekX = "Week %s";
  8376. $QuizWrongAnswerHereIsTheCorrectOne = "Wrong answer. The correct one was:";
  8377. $ThisQuizCanBeEmbeddable = "This quiz can be embeddable on videos or mobile content";
  8378. $SearchGeolocalization = "Search for this location";
  8379. $LegalTermsAgreementStatus = "Terms of use agreement status";
  8380. $HideSurveyInvitationLink = "Hide survey invitation link";
  8381. $LeaveAMessage = "Leave a message";
  8382. $OrphanQuestion = "Orphan question";
  8383. $WelcomeToPortalXInCourseSessionX = "Welcome to portal %s Course session: %s";
  8384. $WelcomeToPortalXInCourseSessionXCoursePartOfCareerX = "Welcome to portal %s in course %s, part of career %s";
  8385. $YourNextModule = "Your next module";
  8386. $FirstLesson = "First lesson";
  8387. $ImportCourseTeachersAsCourseCoach = "Import course teachers as course coach in the session";
  8388. $ResumeImport = "Resume import";
  8389. $Candidate = "Candidate";
  8390. $GeneralTotal = "General total";
  8391. $Domains = "Domains";
  8392. $ScormStartAttemptDate = "Date";
  8393. $LoginsByDate = "Logins by date";
  8394. $AllowHtaccessScormImport = "Allow htaccess in the SCORM import";
  8395. $ExerciseAutoEvaluationAndRankingMode = "Auto-evaluation mode and ranking";
  8396. $YouAreReceivingACopyBecauseYouAreACourseCoach = "You're receiving a copy because, you're a course coach";
  8397. $GenerateReport = "Generate report";
  8398. $VersionFromVersionFile = "Version from the version file";
  8399. $VersionFromConfigFile = "Version from the config file";
  8400. $TheVersionFromTheVersionFileIsUpdatedWithEachVersionIfMainInstallDirectoryIsPresent = "The version from the version.php file is updated with each version but only available if the main/install/ directory is present.";
  8401. $TheVersionFromTheConfigurationFileShowsOnTheAdminPageButHasToBeChangedManuallyOnUpgrade = "The version from the main configuration file shows on the main administration page, but has to be changed manually on upgrade.";
  8402. $ResultsConfigurationPage = "Results page configuration";
  8403. $HideExpectedAnswer = "Hide expected answers column";
  8404. $HideTotalScore = "Hide total score";
  8405. $HideQuestionScore = "Hide question score";
  8406. $SaveAnswers = "Save answers";
  8407. $SaveAllAnswers = "Pre-fill with answers from previous attempt";
  8408. $SubscribeUsersToAllForumNotifications = "Subscribe automatically all users to all forum notifications";
  8409. $ExerciseDirectPopUp = "Direct feedback as pop-up";
  8410. $MinStartDate = "First connection";
  8411. $MaxEndDate = "Last connection";
  8412. $TotalDuration = "Total time spent";
  8413. $RealisationCertificate = "Certificate of achievement";
  8414. $SurveysReport = "Surveys report";
  8415. $EnterYourNewPassword = "Enter your new password here.";
  8416. $RepeatYourNewPassword = "Type your new password once again, to reduce the likeliness of typing errors.";
  8417. $ExtractionFromX = "Extraction from %s";
  8418. $Compilatio = "Compilatio";
  8419. $CompilatioDocumentTextNotImage = "Verify that it contains text (and not only images)";
  8420. $CompilatioDocumentNotCorrupt = "and that it is not corrupted";
  8421. $CompilatioAnalysis = "Analyse";
  8422. $CompilatioAnalysisPercentage = "(Pourcentage of file analysis)";
  8423. $CompilatioWaitingAnalysis = "Pending Analysis";
  8424. $CompilatioAwaitingAnalysis = "Waiting for analysis";
  8425. $CompilatioAnalysisEnding = "Ending analysis";
  8426. $CompilatioProtectedPdfVerification = "If the file is in pdf format, check that it is not protected by modification.";
  8427. $CompilatioConnectionWithServer = "Connecting with the Compilatio server";
  8428. $CompilatioWithCompilatio = "with Compilatio";
  8429. $CompilatioStartAnalysis = "Start Compilatio analysis";
  8430. $CompilatioSeeReport = "See report";
  8431. $CompilatioNonToAnalyse = "Your selection contains no jobs to analyze. Only jobs managed by Compilatio and not already scanned can be sent.";
  8432. $CompilatioComunicationAjaxImpossible = "AJAX communication with the Compilatio server impossible. Please retry later.";
  8433. $UserClassExplanation = "Information: The list of classes below contains the list of classes you have already registered in your course. If this list is empty, use the + green above to add classes.";
  8434. ?>