Lang.Designer.cs 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace NEducation.Content.Texts {
  11. using System;
  12. /// <summary>
  13. /// A strongly-typed resource class, for looking up localized strings, etc.
  14. /// </summary>
  15. // This class was auto-generated by the StronglyTypedResourceBuilder
  16. // class via a tool like ResGen or Visual Studio.
  17. // To add or remove a member, edit your .ResX file then rerun ResGen
  18. // with the /str option, or rebuild your VS project.
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public class Lang {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal Lang() {
  27. }
  28. /// <summary>
  29. /// Returns the cached ResourceManager instance used by this class.
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NEducation.Content.Texts.Lang", typeof(Lang).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// Overrides the current thread's CurrentUICulture property for all
  43. /// resource lookups using this strongly typed resource class.
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// Looks up a localized string similar to calories in.
  56. /// </summary>
  57. public static string _in {
  58. get {
  59. return ResourceManager.GetString("in", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// Looks up a localized string similar to DESCRIPTION_LOCAL.
  64. /// </summary>
  65. public static string A01 {
  66. get {
  67. return ResourceManager.GetString("A01", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// Looks up a localized string similar to Lao Language Volume 1.
  72. /// </summary>
  73. public static string A02 {
  74. get {
  75. return ResourceManager.GetString("A02", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// Looks up a localized string similar to Mathematics 2.
  80. /// </summary>
  81. public static string A03 {
  82. get {
  83. return ResourceManager.GetString("A03", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// Looks up a localized string similar to Mathematics 1.
  88. /// </summary>
  89. public static string A04 {
  90. get {
  91. return ResourceManager.GetString("A04", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// Looks up a localized string similar to Lao Language Volume 2.
  96. /// </summary>
  97. public static string A05 {
  98. get {
  99. return ResourceManager.GetString("A05", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// Looks up a localized string similar to My identity.
  104. /// </summary>
  105. public static string A06 {
  106. get {
  107. return ResourceManager.GetString("A06", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// Looks up a localized string similar to my school.
  112. /// </summary>
  113. public static string A07 {
  114. get {
  115. return ResourceManager.GetString("A07", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// Looks up a localized string similar to My home.
  120. /// </summary>
  121. public static string A08 {
  122. get {
  123. return ResourceManager.GetString("A08", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// Looks up a localized string similar to The natural around us.
  128. /// </summary>
  129. public static string A09 {
  130. get {
  131. return ResourceManager.GetString("A09", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// Looks up a localized string similar to The environment around us.
  136. /// </summary>
  137. public static string A10 {
  138. get {
  139. return ResourceManager.GetString("A10", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// Looks up a localized string similar to Telecommunications And communication.
  144. /// </summary>
  145. public static string A11 {
  146. get {
  147. return ResourceManager.GetString("A11", resourceCulture);
  148. }
  149. }
  150. /// <summary>
  151. /// Looks up a localized string similar to Material around us.
  152. /// </summary>
  153. public static string A12 {
  154. get {
  155. return ResourceManager.GetString("A12", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// Looks up a localized string similar to Lao Language Volume 1.
  160. /// </summary>
  161. public static string A13 {
  162. get {
  163. return ResourceManager.GetString("A13", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// Looks up a localized string similar to Lao Language Volume 2.
  168. /// </summary>
  169. public static string A14 {
  170. get {
  171. return ResourceManager.GetString("A14", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// Looks up a localized string similar to Mathematics  Volume 1.
  176. /// </summary>
  177. public static string A15 {
  178. get {
  179. return ResourceManager.GetString("A15", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// Looks up a localized string similar to Mathematics  Volume 2.
  184. /// </summary>
  185. public static string A16 {
  186. get {
  187. return ResourceManager.GetString("A16", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// Looks up a localized string similar to My body.
  192. /// </summary>
  193. public static string A17 {
  194. get {
  195. return ResourceManager.GetString("A17", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// Looks up a localized string similar to My family.
  200. /// </summary>
  201. public static string A18 {
  202. get {
  203. return ResourceManager.GetString("A18", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// Looks up a localized string similar to my school.
  208. /// </summary>
  209. public static string A19 {
  210. get {
  211. return ResourceManager.GetString("A19", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// Looks up a localized string similar to My home.
  216. /// </summary>
  217. public static string A20 {
  218. get {
  219. return ResourceManager.GetString("A20", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// Looks up a localized string similar to The natural around us.
  224. /// </summary>
  225. public static string A21 {
  226. get {
  227. return ResourceManager.GetString("A21", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// Looks up a localized string similar to The environment around us.
  232. /// </summary>
  233. public static string A22 {
  234. get {
  235. return ResourceManager.GetString("A22", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// Looks up a localized string similar to Telecommunications And communication.
  240. /// </summary>
  241. public static string A23 {
  242. get {
  243. return ResourceManager.GetString("A23", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// Looks up a localized string similar to Material around us.
  248. /// </summary>
  249. public static string A24 {
  250. get {
  251. return ResourceManager.GetString("A24", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// Looks up a localized string similar to The natural around us.
  256. /// </summary>
  257. public static string A25 {
  258. get {
  259. return ResourceManager.GetString("A25", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// Looks up a localized string similar to Lao Language Volume 1.
  264. /// </summary>
  265. public static string A26 {
  266. get {
  267. return ResourceManager.GetString("A26", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// Looks up a localized string similar to Lao Language Volume 2.
  272. /// </summary>
  273. public static string A27 {
  274. get {
  275. return ResourceManager.GetString("A27", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// Looks up a localized string similar to Mathematics  Volume 1.
  280. /// </summary>
  281. public static string A28 {
  282. get {
  283. return ResourceManager.GetString("A28", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// Looks up a localized string similar to Mathematics  Volume 2.
  288. /// </summary>
  289. public static string A29 {
  290. get {
  291. return ResourceManager.GetString("A29", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// Looks up a localized string similar to Material around us.
  296. /// </summary>
  297. public static string A30 {
  298. get {
  299. return ResourceManager.GetString("A30", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// Looks up a localized string similar to My body.
  304. /// </summary>
  305. public static string A31 {
  306. get {
  307. return ResourceManager.GetString("A31", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// Looks up a localized string similar to My family.
  312. /// </summary>
  313. public static string A32 {
  314. get {
  315. return ResourceManager.GetString("A32", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// Looks up a localized string similar to my school.
  320. /// </summary>
  321. public static string A33 {
  322. get {
  323. return ResourceManager.GetString("A33", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// Looks up a localized string similar to My home.
  328. /// </summary>
  329. public static string A34 {
  330. get {
  331. return ResourceManager.GetString("A34", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// Looks up a localized string similar to The environment around us.
  336. /// </summary>
  337. public static string A35 {
  338. get {
  339. return ResourceManager.GetString("A35", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// Looks up a localized string similar to Telecommunications And communication.
  344. /// </summary>
  345. public static string A36 {
  346. get {
  347. return ResourceManager.GetString("A36", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// Looks up a localized string similar to Introduce MEDU.
  352. /// </summary>
  353. public static string About {
  354. get {
  355. return ResourceManager.GetString("About", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// Looks up a localized string similar to Activity level.
  360. /// </summary>
  361. public static string act {
  362. get {
  363. return ResourceManager.GetString("act", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// Looks up a localized string similar to No exercise or little exercise.
  368. /// </summary>
  369. public static string act_des_1 {
  370. get {
  371. return ResourceManager.GetString("act_des_1", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// Looks up a localized string similar to 1-3 sessions or 1 - 4 hours/week.
  376. /// </summary>
  377. public static string act_des_2 {
  378. get {
  379. return ResourceManager.GetString("act_des_2", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// Looks up a localized string similar to 4-5 sessions or 5 - 9 hours/week.
  384. /// </summary>
  385. public static string act_des_3 {
  386. get {
  387. return ResourceManager.GetString("act_des_3", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// Looks up a localized string similar to More than 6 sessions or more than 10 hours/week.
  392. /// </summary>
  393. public static string act_des_4 {
  394. get {
  395. return ResourceManager.GetString("act_des_4", resourceCulture);
  396. }
  397. }
  398. /// <summary>
  399. /// Looks up a localized string similar to active.
  400. /// </summary>
  401. public static string Active {
  402. get {
  403. return ResourceManager.GetString("Active", resourceCulture);
  404. }
  405. }
  406. /// <summary>
  407. /// Looks up a localized string similar to No exercise or little exercise.
  408. /// </summary>
  409. public static string actLike1 {
  410. get {
  411. return ResourceManager.GetString("actLike1", resourceCulture);
  412. }
  413. }
  414. /// <summary>
  415. /// Looks up a localized string similar to 1-3 sessions or 1 - 4 hours/week.
  416. /// </summary>
  417. public static string actLike2 {
  418. get {
  419. return ResourceManager.GetString("actLike2", resourceCulture);
  420. }
  421. }
  422. /// <summary>
  423. /// Looks up a localized string similar to 4-5 sessions or 5 - 9 hours/week.
  424. /// </summary>
  425. public static string actLike3 {
  426. get {
  427. return ResourceManager.GetString("actLike3", resourceCulture);
  428. }
  429. }
  430. /// <summary>
  431. /// Looks up a localized string similar to More than 6 sessions or more than 10 hours/week.
  432. /// </summary>
  433. public static string actLike4 {
  434. get {
  435. return ResourceManager.GetString("actLike4", resourceCulture);
  436. }
  437. }
  438. /// <summary>
  439. /// Looks up a localized string similar to Age.
  440. /// </summary>
  441. public static string age {
  442. get {
  443. return ResourceManager.GetString("age", resourceCulture);
  444. }
  445. }
  446. /// <summary>
  447. /// Looks up a localized string similar to Already a member?.
  448. /// </summary>
  449. public static string AlreadyAMember {
  450. get {
  451. return ResourceManager.GetString("AlreadyAMember", resourceCulture);
  452. }
  453. }
  454. /// <summary>
  455. /// Looks up a localized string similar to Your phone number has been registered with the service.
  456. /// </summary>
  457. public static string AlreadyRegistered {
  458. get {
  459. return ResourceManager.GetString("AlreadyRegistered", resourceCulture);
  460. }
  461. }
  462. /// <summary>
  463. /// Looks up a localized string similar to and.
  464. /// </summary>
  465. public static string and {
  466. get {
  467. return ResourceManager.GetString("and", resourceCulture);
  468. }
  469. }
  470. /// <summary>
  471. /// Looks up a localized string similar to Tất cả cách học mới.
  472. /// </summary>
  473. public static string ANewLearningMethod {
  474. get {
  475. return ResourceManager.GetString("ANewLearningMethod", resourceCulture);
  476. }
  477. }
  478. /// <summary>
  479. /// Looks up a localized string similar to MEDU will open a new lesson for you..
  480. /// </summary>
  481. public static string ANewLessonWillBeOpenedAfter6Hours {
  482. get {
  483. return ResourceManager.GetString("ANewLessonWillBeOpenedAfter6Hours", resourceCulture);
  484. }
  485. }
  486. /// <summary>
  487. /// Looks up a localized string similar to tease you.
  488. /// </summary>
  489. public static string annoy {
  490. get {
  491. return ResourceManager.GetString("annoy", resourceCulture);
  492. }
  493. }
  494. /// <summary>
  495. /// Looks up a localized string similar to Other examples.
  496. /// </summary>
  497. public static string AnotherExample {
  498. get {
  499. return ResourceManager.GetString("AnotherExample", resourceCulture);
  500. }
  501. }
  502. /// <summary>
  503. /// Looks up a localized string similar to Are you going to quit minigame? You will lost the chance to play game and get 20$. .
  504. /// </summary>
  505. public static string AreYouGoingToQuit {
  506. get {
  507. return ResourceManager.GetString("AreYouGoingToQuit", resourceCulture);
  508. }
  509. }
  510. /// <summary>
  511. /// Looks up a localized string similar to Are you ready?.
  512. /// </summary>
  513. public static string AreYouReady {
  514. get {
  515. return ResourceManager.GetString("AreYouReady", resourceCulture);
  516. }
  517. }
  518. /// <summary>
  519. /// Looks up a localized string similar to You can pronounce it like a native speaker..
  520. /// </summary>
  521. public static string ASpeakingAsANativePeople {
  522. get {
  523. return ResourceManager.GetString("ASpeakingAsANativePeople", resourceCulture);
  524. }
  525. }
  526. /// <summary>
  527. /// Looks up a localized string similar to Hunger.
  528. /// </summary>
  529. public static string Aspiration {
  530. get {
  531. return ResourceManager.GetString("Aspiration", resourceCulture);
  532. }
  533. }
  534. /// <summary>
  535. /// Looks up a localized string similar to My body.
  536. /// </summary>
  537. public static string B01 {
  538. get {
  539. return ResourceManager.GetString("B01", resourceCulture);
  540. }
  541. }
  542. /// <summary>
  543. /// Looks up a localized string similar to My Family.
  544. /// </summary>
  545. public static string B02 {
  546. get {
  547. return ResourceManager.GetString("B02", resourceCulture);
  548. }
  549. }
  550. /// <summary>
  551. /// Looks up a localized string similar to My school.
  552. /// </summary>
  553. public static string B03 {
  554. get {
  555. return ResourceManager.GetString("B03", resourceCulture);
  556. }
  557. }
  558. /// <summary>
  559. /// Looks up a localized string similar to My home.
  560. /// </summary>
  561. public static string B04 {
  562. get {
  563. return ResourceManager.GetString("B04", resourceCulture);
  564. }
  565. }
  566. /// <summary>
  567. /// Looks up a localized string similar to The natural around us.
  568. /// </summary>
  569. public static string B05 {
  570. get {
  571. return ResourceManager.GetString("B05", resourceCulture);
  572. }
  573. }
  574. /// <summary>
  575. /// Looks up a localized string similar to The environment around us.
  576. /// </summary>
  577. public static string B06 {
  578. get {
  579. return ResourceManager.GetString("B06", resourceCulture);
  580. }
  581. }
  582. /// <summary>
  583. /// Looks up a localized string similar to Telecommunications And communication.
  584. /// </summary>
  585. public static string B07 {
  586. get {
  587. return ResourceManager.GetString("B07", resourceCulture);
  588. }
  589. }
  590. /// <summary>
  591. /// Looks up a localized string similar to Material around us.
  592. /// </summary>
  593. public static string B08 {
  594. get {
  595. return ResourceManager.GetString("B08", resourceCulture);
  596. }
  597. }
  598. /// <summary>
  599. /// Looks up a localized string similar to My body.
  600. /// </summary>
  601. public static string B09 {
  602. get {
  603. return ResourceManager.GetString("B09", resourceCulture);
  604. }
  605. }
  606. /// <summary>
  607. /// Looks up a localized string similar to The natural around us.
  608. /// </summary>
  609. public static string B10 {
  610. get {
  611. return ResourceManager.GetString("B10", resourceCulture);
  612. }
  613. }
  614. /// <summary>
  615. /// Looks up a localized string similar to My home.
  616. /// </summary>
  617. public static string B11 {
  618. get {
  619. return ResourceManager.GetString("B11", resourceCulture);
  620. }
  621. }
  622. /// <summary>
  623. /// Looks up a localized string similar to My school.
  624. /// </summary>
  625. public static string B12 {
  626. get {
  627. return ResourceManager.GetString("B12", resourceCulture);
  628. }
  629. }
  630. /// <summary>
  631. /// Looks up a localized string similar to My home.
  632. /// </summary>
  633. public static string B13 {
  634. get {
  635. return ResourceManager.GetString("B13", resourceCulture);
  636. }
  637. }
  638. /// <summary>
  639. /// Looks up a localized string similar to The environment around us.
  640. /// </summary>
  641. public static string B14 {
  642. get {
  643. return ResourceManager.GetString("B14", resourceCulture);
  644. }
  645. }
  646. /// <summary>
  647. /// Looks up a localized string similar to Telecommunications And communication.
  648. /// </summary>
  649. public static string B15 {
  650. get {
  651. return ResourceManager.GetString("B15", resourceCulture);
  652. }
  653. }
  654. /// <summary>
  655. /// Looks up a localized string similar to Material around us.
  656. /// </summary>
  657. public static string B16 {
  658. get {
  659. return ResourceManager.GetString("B16", resourceCulture);
  660. }
  661. }
  662. /// <summary>
  663. /// Looks up a localized string similar to My body.
  664. /// </summary>
  665. public static string B17 {
  666. get {
  667. return ResourceManager.GetString("B17", resourceCulture);
  668. }
  669. }
  670. /// <summary>
  671. /// Looks up a localized string similar to My family.
  672. /// </summary>
  673. public static string B18 {
  674. get {
  675. return ResourceManager.GetString("B18", resourceCulture);
  676. }
  677. }
  678. /// <summary>
  679. /// Looks up a localized string similar to My school.
  680. /// </summary>
  681. public static string B19 {
  682. get {
  683. return ResourceManager.GetString("B19", resourceCulture);
  684. }
  685. }
  686. /// <summary>
  687. /// Looks up a localized string similar to My home.
  688. /// </summary>
  689. public static string B20 {
  690. get {
  691. return ResourceManager.GetString("B20", resourceCulture);
  692. }
  693. }
  694. /// <summary>
  695. /// Looks up a localized string similar to The natural around us.
  696. /// </summary>
  697. public static string B21 {
  698. get {
  699. return ResourceManager.GetString("B21", resourceCulture);
  700. }
  701. }
  702. /// <summary>
  703. /// Looks up a localized string similar to The environment around us.
  704. /// </summary>
  705. public static string B22 {
  706. get {
  707. return ResourceManager.GetString("B22", resourceCulture);
  708. }
  709. }
  710. /// <summary>
  711. /// Looks up a localized string similar to Telecommunications And communication.
  712. /// </summary>
  713. public static string B23 {
  714. get {
  715. return ResourceManager.GetString("B23", resourceCulture);
  716. }
  717. }
  718. /// <summary>
  719. /// Looks up a localized string similar to Material around us.
  720. /// </summary>
  721. public static string B24 {
  722. get {
  723. return ResourceManager.GetString("B24", resourceCulture);
  724. }
  725. }
  726. /// <summary>
  727. /// Looks up a localized string similar to Back.
  728. /// </summary>
  729. public static string Back {
  730. get {
  731. return ResourceManager.GetString("Back", resourceCulture);
  732. }
  733. }
  734. /// <summary>
  735. /// Looks up a localized string similar to MEDU will go with you everywhere, and you can never leave MEDU..
  736. /// </summary>
  737. public static string BeWithYouEverywhere {
  738. get {
  739. return ResourceManager.GetString("BeWithYouEverywhere", resourceCulture);
  740. }
  741. }
  742. /// <summary>
  743. /// Looks up a localized string similar to Date of birth.
  744. /// </summary>
  745. public static string Birthday {
  746. get {
  747. return ResourceManager.GetString("Birthday", resourceCulture);
  748. }
  749. }
  750. /// <summary>
  751. /// Looks up a localized string similar to Your BMI:.
  752. /// </summary>
  753. public static string bmiNum {
  754. get {
  755. return ResourceManager.GetString("bmiNum", resourceCulture);
  756. }
  757. }
  758. /// <summary>
  759. /// Looks up a localized string similar to BMI calculator.
  760. /// </summary>
  761. public static string bmiTool {
  762. get {
  763. return ResourceManager.GetString("bmiTool", resourceCulture);
  764. }
  765. }
  766. /// <summary>
  767. /// Looks up a localized string similar to body condition.
  768. /// </summary>
  769. public static string bodyStatus {
  770. get {
  771. return ResourceManager.GetString("bodyStatus", resourceCulture);
  772. }
  773. }
  774. /// <summary>
  775. /// Looks up a localized string similar to Buy the course.
  776. /// </summary>
  777. public static string Buy {
  778. get {
  779. return ResourceManager.GetString("Buy", resourceCulture);
  780. }
  781. }
  782. /// <summary>
  783. /// Looks up a localized string similar to Purchase the course successfully.
  784. /// </summary>
  785. public static string BuyCourseSuccess {
  786. get {
  787. return ResourceManager.GetString("BuyCourseSuccess", resourceCulture);
  788. }
  789. }
  790. /// <summary>
  791. /// Looks up a localized string similar to Names and child development records.
  792. /// </summary>
  793. public static string C01 {
  794. get {
  795. return ResourceManager.GetString("C01", resourceCulture);
  796. }
  797. }
  798. /// <summary>
  799. /// Looks up a localized string similar to Child Development Monitoring Book.
  800. /// </summary>
  801. public static string C02 {
  802. get {
  803. return ResourceManager.GetString("C02", resourceCulture);
  804. }
  805. }
  806. /// <summary>
  807. /// Looks up a localized string similar to Monthly creative worksheet.
  808. /// </summary>
  809. public static string C03 {
  810. get {
  811. return ResourceManager.GetString("C03", resourceCulture);
  812. }
  813. }
  814. /// <summary>
  815. /// Looks up a localized string similar to Teacher&apos;s Guide for Organizing Teaching and Learning Activities.
  816. /// </summary>
  817. public static string C04 {
  818. get {
  819. return ResourceManager.GetString("C04", resourceCulture);
  820. }
  821. }
  822. /// <summary>
  823. /// Looks up a localized string similar to Names and child development records.
  824. /// </summary>
  825. public static string C05 {
  826. get {
  827. return ResourceManager.GetString("C05", resourceCulture);
  828. }
  829. }
  830. /// <summary>
  831. /// Looks up a localized string similar to Child Development Monitoring Book.
  832. /// </summary>
  833. public static string C06 {
  834. get {
  835. return ResourceManager.GetString("C06", resourceCulture);
  836. }
  837. }
  838. /// <summary>
  839. /// Looks up a localized string similar to Monthly creative worksheet.
  840. /// </summary>
  841. public static string C07 {
  842. get {
  843. return ResourceManager.GetString("C07", resourceCulture);
  844. }
  845. }
  846. /// <summary>
  847. /// Looks up a localized string similar to Teacher&apos;s Guide for Organizing Teaching and Learning Activities.
  848. /// </summary>
  849. public static string C08 {
  850. get {
  851. return ResourceManager.GetString("C08", resourceCulture);
  852. }
  853. }
  854. /// <summary>
  855. /// Looks up a localized string similar to Names and child development records.
  856. /// </summary>
  857. public static string C09 {
  858. get {
  859. return ResourceManager.GetString("C09", resourceCulture);
  860. }
  861. }
  862. /// <summary>
  863. /// Looks up a localized string similar to Child Development Monitoring Book.
  864. /// </summary>
  865. public static string C10 {
  866. get {
  867. return ResourceManager.GetString("C10", resourceCulture);
  868. }
  869. }
  870. /// <summary>
  871. /// Looks up a localized string similar to Monthly creative worksheet.
  872. /// </summary>
  873. public static string C11 {
  874. get {
  875. return ResourceManager.GetString("C11", resourceCulture);
  876. }
  877. }
  878. /// <summary>
  879. /// Looks up a localized string similar to Teacher&apos;s Guide for Organizing Teaching and Learning Activities.
  880. /// </summary>
  881. public static string C12 {
  882. get {
  883. return ResourceManager.GetString("C12", resourceCulture);
  884. }
  885. }
  886. /// <summary>
  887. /// Looks up a localized string similar to calo.
  888. /// </summary>
  889. public static string calo {
  890. get {
  891. return ResourceManager.GetString("calo", resourceCulture);
  892. }
  893. }
  894. /// <summary>
  895. /// Looks up a localized string similar to Calculate Calories.
  896. /// </summary>
  897. public static string caloCal {
  898. get {
  899. return ResourceManager.GetString("caloCal", resourceCulture);
  900. }
  901. }
  902. /// <summary>
  903. /// Looks up a localized string similar to Calorie calculator.
  904. /// </summary>
  905. public static string caloTool {
  906. get {
  907. return ResourceManager.GetString("caloTool", resourceCulture);
  908. }
  909. }
  910. /// <summary>
  911. /// Looks up a localized string similar to Cancel.
  912. /// </summary>
  913. public static string Cancel {
  914. get {
  915. return ResourceManager.GetString("Cancel", resourceCulture);
  916. }
  917. }
  918. /// <summary>
  919. /// Looks up a localized string similar to Change password.
  920. /// </summary>
  921. public static string ChangePassword {
  922. get {
  923. return ResourceManager.GetString("ChangePassword", resourceCulture);
  924. }
  925. }
  926. /// <summary>
  927. /// Looks up a localized string similar to Check.
  928. /// </summary>
  929. public static string Check {
  930. get {
  931. return ResourceManager.GetString("Check", resourceCulture);
  932. }
  933. }
  934. /// <summary>
  935. /// Looks up a localized string similar to Please check your account name or password again..
  936. /// </summary>
  937. public static string CheckUserPass {
  938. get {
  939. return ResourceManager.GetString("CheckUserPass", resourceCulture);
  940. }
  941. }
  942. /// <summary>
  943. /// Looks up a localized string similar to Please go to the MEDU library and choose an English course to get started!.
  944. /// </summary>
  945. public static string ChooseACourseInLibrary {
  946. get {
  947. return ResourceManager.GetString("ChooseACourseInLibrary", resourceCulture);
  948. }
  949. }
  950. /// <summary>
  951. /// Looks up a localized string similar to Choose image.
  952. /// </summary>
  953. public static string ChooseFile {
  954. get {
  955. return ResourceManager.GetString("ChooseFile", resourceCulture);
  956. }
  957. }
  958. /// <summary>
  959. /// Looks up a localized string similar to Choose your image.
  960. /// </summary>
  961. public static string ChooseYourPicture {
  962. get {
  963. return ResourceManager.GetString("ChooseYourPicture", resourceCulture);
  964. }
  965. }
  966. /// <summary>
  967. /// Looks up a localized string similar to Smart.
  968. /// </summary>
  969. public static string Clever {
  970. get {
  971. return ResourceManager.GetString("Clever", resourceCulture);
  972. }
  973. }
  974. /// <summary>
  975. /// Looks up a localized string similar to Close.
  976. /// </summary>
  977. public static string Close {
  978. get {
  979. return ResourceManager.GetString("Close", resourceCulture);
  980. }
  981. }
  982. /// <summary>
  983. /// Looks up a localized string similar to Library of English grammar courses for everyone.
  984. /// </summary>
  985. public static string Common_course_des_1 {
  986. get {
  987. return ResourceManager.GetString("Common_course_des_1", resourceCulture);
  988. }
  989. }
  990. /// <summary>
  991. /// Looks up a localized string similar to A smart online English teaching and learning platform built with the mission of helping students eliminate barriers to English..
  992. /// </summary>
  993. public static string Common_des_2 {
  994. get {
  995. return ResourceManager.GetString("Common_des_2", resourceCulture);
  996. }
  997. }
  998. /// <summary>
  999. /// Looks up a localized string similar to Completed the course.
  1000. /// </summary>
  1001. public static string CompleteLesson {
  1002. get {
  1003. return ResourceManager.GetString("CompleteLesson", resourceCulture);
  1004. }
  1005. }
  1006. /// <summary>
  1007. /// Looks up a localized string similar to Confident.
  1008. /// </summary>
  1009. public static string Confident {
  1010. get {
  1011. return ResourceManager.GetString("Confident", resourceCulture);
  1012. }
  1013. }
  1014. /// <summary>
  1015. /// Looks up a localized string similar to Confirm.
  1016. /// </summary>
  1017. public static string Confirm {
  1018. get {
  1019. return ResourceManager.GetString("Confirm", resourceCulture);
  1020. }
  1021. }
  1022. /// <summary>
  1023. /// Looks up a localized string similar to Congratulations! You have finished studying. Now you can study again or take a test..
  1024. /// </summary>
  1025. public static string Congratulation {
  1026. get {
  1027. return ResourceManager.GetString("Congratulation", resourceCulture);
  1028. }
  1029. }
  1030. /// <summary>
  1031. /// Looks up a localized string similar to Congratulation! .
  1032. /// </summary>
  1033. public static string Congratulation1 {
  1034. get {
  1035. return ResourceManager.GetString("Congratulation1", resourceCulture);
  1036. }
  1037. }
  1038. /// <summary>
  1039. /// Looks up a localized string similar to Congratulations! You have finished studying. Now you can study again or take a test..
  1040. /// </summary>
  1041. public static string CongratulationFinishLearn {
  1042. get {
  1043. return ResourceManager.GetString("CongratulationFinishLearn", resourceCulture);
  1044. }
  1045. }
  1046. /// <summary>
  1047. /// Looks up a localized string similar to ContentQuestions.
  1048. /// </summary>
  1049. public static string ContentQuestions {
  1050. get {
  1051. return ResourceManager.GetString("ContentQuestions", resourceCulture);
  1052. }
  1053. }
  1054. /// <summary>
  1055. /// Looks up a localized string similar to Continue.
  1056. /// </summary>
  1057. public static string Continue {
  1058. get {
  1059. return ResourceManager.GetString("Continue", resourceCulture);
  1060. }
  1061. }
  1062. /// <summary>
  1063. /// Looks up a localized string similar to Learn continue.
  1064. /// </summary>
  1065. public static string ContinueLearning {
  1066. get {
  1067. return ResourceManager.GetString("ContinueLearning", resourceCulture);
  1068. }
  1069. }
  1070. /// <summary>
  1071. /// Looks up a localized string similar to Please continue with the following option.
  1072. /// </summary>
  1073. public static string ContinueWithYourChoose {
  1074. get {
  1075. return ResourceManager.GetString("ContinueWithYourChoose", resourceCulture);
  1076. }
  1077. }
  1078. /// <summary>
  1079. /// Looks up a localized string similar to Course.
  1080. /// </summary>
  1081. public static string Course {
  1082. get {
  1083. return ResourceManager.GetString("Course", resourceCulture);
  1084. }
  1085. }
  1086. /// <summary>
  1087. /// Looks up a localized string similar to Completed the course.
  1088. /// </summary>
  1089. public static string CourseComplete {
  1090. get {
  1091. return ResourceManager.GetString("CourseComplete", resourceCulture);
  1092. }
  1093. }
  1094. /// <summary>
  1095. /// Looks up a localized string similar to Course management.
  1096. /// </summary>
  1097. public static string CourseManager {
  1098. get {
  1099. return ResourceManager.GetString("CourseManager", resourceCulture);
  1100. }
  1101. }
  1102. /// <summary>
  1103. /// Looks up a localized string similar to Create new now.
  1104. /// </summary>
  1105. public static string createNow {
  1106. get {
  1107. return ResourceManager.GetString("createNow", resourceCulture);
  1108. }
  1109. }
  1110. /// <summary>
  1111. /// Looks up a localized string similar to .
  1112. /// </summary>
  1113. public static string D01 {
  1114. get {
  1115. return ResourceManager.GetString("D01", resourceCulture);
  1116. }
  1117. }
  1118. /// <summary>
  1119. /// Looks up a localized string similar to .
  1120. /// </summary>
  1121. public static string D02 {
  1122. get {
  1123. return ResourceManager.GetString("D02", resourceCulture);
  1124. }
  1125. }
  1126. /// <summary>
  1127. /// Looks up a localized string similar to .
  1128. /// </summary>
  1129. public static string D03 {
  1130. get {
  1131. return ResourceManager.GetString("D03", resourceCulture);
  1132. }
  1133. }
  1134. /// <summary>
  1135. /// Looks up a localized string similar to .
  1136. /// </summary>
  1137. public static string D04 {
  1138. get {
  1139. return ResourceManager.GetString("D04", resourceCulture);
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// Looks up a localized string similar to .
  1144. /// </summary>
  1145. public static string D05 {
  1146. get {
  1147. return ResourceManager.GetString("D05", resourceCulture);
  1148. }
  1149. }
  1150. /// <summary>
  1151. /// Looks up a localized string similar to .
  1152. /// </summary>
  1153. public static string D06 {
  1154. get {
  1155. return ResourceManager.GetString("D06", resourceCulture);
  1156. }
  1157. }
  1158. /// <summary>
  1159. /// Looks up a localized string similar to .
  1160. /// </summary>
  1161. public static string D07 {
  1162. get {
  1163. return ResourceManager.GetString("D07", resourceCulture);
  1164. }
  1165. }
  1166. /// <summary>
  1167. /// Looks up a localized string similar to .
  1168. /// </summary>
  1169. public static string D08 {
  1170. get {
  1171. return ResourceManager.GetString("D08", resourceCulture);
  1172. }
  1173. }
  1174. /// <summary>
  1175. /// Looks up a localized string similar to .
  1176. /// </summary>
  1177. public static string D09 {
  1178. get {
  1179. return ResourceManager.GetString("D09", resourceCulture);
  1180. }
  1181. }
  1182. /// <summary>
  1183. /// Looks up a localized string similar to .
  1184. /// </summary>
  1185. public static string D10 {
  1186. get {
  1187. return ResourceManager.GetString("D10", resourceCulture);
  1188. }
  1189. }
  1190. /// <summary>
  1191. /// Looks up a localized string similar to .
  1192. /// </summary>
  1193. public static string D11 {
  1194. get {
  1195. return ResourceManager.GetString("D11", resourceCulture);
  1196. }
  1197. }
  1198. /// <summary>
  1199. /// Looks up a localized string similar to .
  1200. /// </summary>
  1201. public static string D12 {
  1202. get {
  1203. return ResourceManager.GetString("D12", resourceCulture);
  1204. }
  1205. }
  1206. /// <summary>
  1207. /// Looks up a localized string similar to .
  1208. /// </summary>
  1209. public static string D13 {
  1210. get {
  1211. return ResourceManager.GetString("D13", resourceCulture);
  1212. }
  1213. }
  1214. /// <summary>
  1215. /// Looks up a localized string similar to .
  1216. /// </summary>
  1217. public static string D14 {
  1218. get {
  1219. return ResourceManager.GetString("D14", resourceCulture);
  1220. }
  1221. }
  1222. /// <summary>
  1223. /// Looks up a localized string similar to .
  1224. /// </summary>
  1225. public static string D15 {
  1226. get {
  1227. return ResourceManager.GetString("D15", resourceCulture);
  1228. }
  1229. }
  1230. /// <summary>
  1231. /// Looks up a localized string similar to .
  1232. /// </summary>
  1233. public static string D16 {
  1234. get {
  1235. return ResourceManager.GetString("D16", resourceCulture);
  1236. }
  1237. }
  1238. /// <summary>
  1239. /// Looks up a localized string similar to .
  1240. /// </summary>
  1241. public static string D17 {
  1242. get {
  1243. return ResourceManager.GetString("D17", resourceCulture);
  1244. }
  1245. }
  1246. /// <summary>
  1247. /// Looks up a localized string similar to .
  1248. /// </summary>
  1249. public static string D18 {
  1250. get {
  1251. return ResourceManager.GetString("D18", resourceCulture);
  1252. }
  1253. }
  1254. /// <summary>
  1255. /// Looks up a localized string similar to Date.
  1256. /// </summary>
  1257. public static string Date {
  1258. get {
  1259. return ResourceManager.GetString("Date", resourceCulture);
  1260. }
  1261. }
  1262. /// <summary>
  1263. /// Looks up a localized string similar to Day.
  1264. /// </summary>
  1265. public static string Day {
  1266. get {
  1267. return ResourceManager.GetString("Day", resourceCulture);
  1268. }
  1269. }
  1270. /// <summary>
  1271. /// Looks up a localized string similar to Days.
  1272. /// </summary>
  1273. public static string Days {
  1274. get {
  1275. return ResourceManager.GetString("Days", resourceCulture);
  1276. }
  1277. }
  1278. /// <summary>
  1279. /// Looks up a localized string similar to The grammar learning method built by MEDU GRAMMAR is a completely new learning method, a learner-centered method. You will no longer have the feeling of learning grammar in a dry, boring way like the traditional learning method, instead you will learn them with images, sounds, and gamified knowledge... which will help you continue. approach English grammar more vividly, effectively and interestingly. Not only that, after each lesson MEDU will test your knowledge of the grammar topic learned, give results an [rest of string was truncated]&quot;;.
  1280. /// </summary>
  1281. public static string DescriptionOfUstudyGrammar {
  1282. get {
  1283. return ResourceManager.GetString("DescriptionOfUstudyGrammar", resourceCulture);
  1284. }
  1285. }
  1286. /// <summary>
  1287. /// Looks up a localized string similar to Determination.
  1288. /// </summary>
  1289. public static string Determination {
  1290. get {
  1291. return ResourceManager.GetString("Determination", resourceCulture);
  1292. }
  1293. }
  1294. /// <summary>
  1295. /// Looks up a localized string similar to Evaluate.
  1296. /// </summary>
  1297. public static string DoTest {
  1298. get {
  1299. return ResourceManager.GetString("DoTest", resourceCulture);
  1300. }
  1301. }
  1302. /// <summary>
  1303. /// Looks up a localized string similar to Kindergarten year1.
  1304. /// </summary>
  1305. public static string down1 {
  1306. get {
  1307. return ResourceManager.GetString("down1", resourceCulture);
  1308. }
  1309. }
  1310. /// <summary>
  1311. /// Looks up a localized string similar to Primary school year 1 (starting in 2020).
  1312. /// </summary>
  1313. public static string down10 {
  1314. get {
  1315. return ResourceManager.GetString("down10", resourceCulture);
  1316. }
  1317. }
  1318. /// <summary>
  1319. /// Looks up a localized string similar to Primary school year 2 (starting in 2020).
  1320. /// </summary>
  1321. public static string down11 {
  1322. get {
  1323. return ResourceManager.GetString("down11", resourceCulture);
  1324. }
  1325. }
  1326. /// <summary>
  1327. /// Looks up a localized string similar to Primary school year 3.
  1328. /// </summary>
  1329. public static string down12 {
  1330. get {
  1331. return ResourceManager.GetString("down12", resourceCulture);
  1332. }
  1333. }
  1334. /// <summary>
  1335. /// Looks up a localized string similar to Primary school year 4.
  1336. /// </summary>
  1337. public static string down13 {
  1338. get {
  1339. return ResourceManager.GetString("down13", resourceCulture);
  1340. }
  1341. }
  1342. /// <summary>
  1343. /// Looks up a localized string similar to Primary school year 5.
  1344. /// </summary>
  1345. public static string down14 {
  1346. get {
  1347. return ResourceManager.GetString("down14", resourceCulture);
  1348. }
  1349. }
  1350. /// <summary>
  1351. /// Looks up a localized string similar to Secondary education textbook.
  1352. /// </summary>
  1353. public static string down15 {
  1354. get {
  1355. return ResourceManager.GetString("down15", resourceCulture);
  1356. }
  1357. }
  1358. /// <summary>
  1359. /// Looks up a localized string similar to Secondary school year 1.
  1360. /// </summary>
  1361. public static string down16 {
  1362. get {
  1363. return ResourceManager.GetString("down16", resourceCulture);
  1364. }
  1365. }
  1366. /// <summary>
  1367. /// Looks up a localized string similar to Secondary school year 2.
  1368. /// </summary>
  1369. public static string down17 {
  1370. get {
  1371. return ResourceManager.GetString("down17", resourceCulture);
  1372. }
  1373. }
  1374. /// <summary>
  1375. /// Looks up a localized string similar to Secondary school year 3.
  1376. /// </summary>
  1377. public static string down18 {
  1378. get {
  1379. return ResourceManager.GetString("down18", resourceCulture);
  1380. }
  1381. }
  1382. /// <summary>
  1383. /// Looks up a localized string similar to Secondary school year 4.
  1384. /// </summary>
  1385. public static string down19 {
  1386. get {
  1387. return ResourceManager.GetString("down19", resourceCulture);
  1388. }
  1389. }
  1390. /// <summary>
  1391. /// Looks up a localized string similar to Kindergarten year 2.
  1392. /// </summary>
  1393. public static string down2 {
  1394. get {
  1395. return ResourceManager.GetString("down2", resourceCulture);
  1396. }
  1397. }
  1398. /// <summary>
  1399. /// Looks up a localized string similar to Secondary school year 5.
  1400. /// </summary>
  1401. public static string down20 {
  1402. get {
  1403. return ResourceManager.GetString("down20", resourceCulture);
  1404. }
  1405. }
  1406. /// <summary>
  1407. /// Looks up a localized string similar to Secondary school year 6.
  1408. /// </summary>
  1409. public static string down21 {
  1410. get {
  1411. return ResourceManager.GetString("down21", resourceCulture);
  1412. }
  1413. }
  1414. /// <summary>
  1415. /// Looks up a localized string similar to Secondary school year 7.
  1416. /// </summary>
  1417. public static string down22 {
  1418. get {
  1419. return ResourceManager.GetString("down22", resourceCulture);
  1420. }
  1421. }
  1422. /// <summary>
  1423. /// Looks up a localized string similar to Secondary school year 1.
  1424. /// </summary>
  1425. public static string down23 {
  1426. get {
  1427. return ResourceManager.GetString("down23", resourceCulture);
  1428. }
  1429. }
  1430. /// <summary>
  1431. /// Looks up a localized string similar to Secondary school year 2.
  1432. /// </summary>
  1433. public static string down24 {
  1434. get {
  1435. return ResourceManager.GetString("down24", resourceCulture);
  1436. }
  1437. }
  1438. /// <summary>
  1439. /// Looks up a localized string similar to Secondary school year 3.
  1440. /// </summary>
  1441. public static string down25 {
  1442. get {
  1443. return ResourceManager.GetString("down25", resourceCulture);
  1444. }
  1445. }
  1446. /// <summary>
  1447. /// Looks up a localized string similar to Secondary school year 4.
  1448. /// </summary>
  1449. public static string down26 {
  1450. get {
  1451. return ResourceManager.GetString("down26", resourceCulture);
  1452. }
  1453. }
  1454. /// <summary>
  1455. /// Looks up a localized string similar to Secondary school year 5.
  1456. /// </summary>
  1457. public static string down27 {
  1458. get {
  1459. return ResourceManager.GetString("down27", resourceCulture);
  1460. }
  1461. }
  1462. /// <summary>
  1463. /// Looks up a localized string similar to Secondary school year 6.
  1464. /// </summary>
  1465. public static string down28 {
  1466. get {
  1467. return ResourceManager.GetString("down28", resourceCulture);
  1468. }
  1469. }
  1470. /// <summary>
  1471. /// Looks up a localized string similar to Secondary school year 7.
  1472. /// </summary>
  1473. public static string down29 {
  1474. get {
  1475. return ResourceManager.GetString("down29", resourceCulture);
  1476. }
  1477. }
  1478. /// <summary>
  1479. /// Looks up a localized string similar to Kindergarten year 2.
  1480. /// </summary>
  1481. public static string down3 {
  1482. get {
  1483. return ResourceManager.GetString("down3", resourceCulture);
  1484. }
  1485. }
  1486. /// <summary>
  1487. /// Looks up a localized string similar to Kindergarten year 1.
  1488. /// </summary>
  1489. public static string down4 {
  1490. get {
  1491. return ResourceManager.GetString("down4", resourceCulture);
  1492. }
  1493. }
  1494. /// <summary>
  1495. /// Looks up a localized string similar to Kindergarten year 2.
  1496. /// </summary>
  1497. public static string down5 {
  1498. get {
  1499. return ResourceManager.GetString("down5", resourceCulture);
  1500. }
  1501. }
  1502. /// <summary>
  1503. /// Looks up a localized string similar to Kindergarten year 3.
  1504. /// </summary>
  1505. public static string down6 {
  1506. get {
  1507. return ResourceManager.GetString("down6", resourceCulture);
  1508. }
  1509. }
  1510. /// <summary>
  1511. /// Looks up a localized string similar to Kindergarten year 1.
  1512. /// </summary>
  1513. public static string down7 {
  1514. get {
  1515. return ResourceManager.GetString("down7", resourceCulture);
  1516. }
  1517. }
  1518. /// <summary>
  1519. /// Looks up a localized string similar to Kindergarten year 2.
  1520. /// </summary>
  1521. public static string down8 {
  1522. get {
  1523. return ResourceManager.GetString("down8", resourceCulture);
  1524. }
  1525. }
  1526. /// <summary>
  1527. /// Looks up a localized string similar to Kindergarten year 2.
  1528. /// </summary>
  1529. public static string down9 {
  1530. get {
  1531. return ResourceManager.GetString("down9", resourceCulture);
  1532. }
  1533. }
  1534. /// <summary>
  1535. /// Looks up a localized string similar to Do you want to be good at English?.
  1536. /// </summary>
  1537. public static string DoYouWantToGoodAtEnglish {
  1538. get {
  1539. return ResourceManager.GetString("DoYouWantToGoodAtEnglish", resourceCulture);
  1540. }
  1541. }
  1542. /// <summary>
  1543. /// Looks up a localized string similar to .
  1544. /// </summary>
  1545. public static string DoYouWantToGoodAtLaos {
  1546. get {
  1547. return ResourceManager.GetString("DoYouWantToGoodAtLaos", resourceCulture);
  1548. }
  1549. }
  1550. /// <summary>
  1551. /// Looks up a localized string similar to .
  1552. /// </summary>
  1553. public static string DoYouWantToGoodAtViet {
  1554. get {
  1555. return ResourceManager.GetString("DoYouWantToGoodAtViet", resourceCulture);
  1556. }
  1557. }
  1558. /// <summary>
  1559. /// Looks up a localized string similar to Each person can only participate in the minigame once per day. If there is a system error during the minigame, the participant cannot play again, and it will be counted as one play..
  1560. /// </summary>
  1561. public static string EachPersonCanOnly {
  1562. get {
  1563. return ResourceManager.GetString("EachPersonCanOnly", resourceCulture);
  1564. }
  1565. }
  1566. /// <summary>
  1567. /// Looks up a localized string similar to Each question must be answered within 15 seconds..
  1568. /// </summary>
  1569. public static string EachQuestionMustBe {
  1570. get {
  1571. return ResourceManager.GetString("EachQuestionMustBe", resourceCulture);
  1572. }
  1573. }
  1574. /// <summary>
  1575. /// Looks up a localized string similar to Ebooks.
  1576. /// </summary>
  1577. public static string Ebook {
  1578. get {
  1579. return ResourceManager.GetString("Ebook", resourceCulture);
  1580. }
  1581. }
  1582. /// <summary>
  1583. /// Looks up a localized string similar to encourage you.
  1584. /// </summary>
  1585. public static string encourage {
  1586. get {
  1587. return ResourceManager.GetString("encourage", resourceCulture);
  1588. }
  1589. }
  1590. /// <summary>
  1591. /// Looks up a localized string similar to Term.
  1592. /// </summary>
  1593. public static string End {
  1594. get {
  1595. return ResourceManager.GetString("End", resourceCulture);
  1596. }
  1597. }
  1598. /// <summary>
  1599. /// Looks up a localized string similar to English.
  1600. /// </summary>
  1601. public static string english {
  1602. get {
  1603. return ResourceManager.GetString("english", resourceCulture);
  1604. }
  1605. }
  1606. /// <summary>
  1607. /// Looks up a localized string similar to Enter the library.
  1608. /// </summary>
  1609. public static string EnteringLibrary {
  1610. get {
  1611. return ResourceManager.GetString("EnteringLibrary", resourceCulture);
  1612. }
  1613. }
  1614. /// <summary>
  1615. /// Looks up a localized string similar to OTP.
  1616. /// </summary>
  1617. public static string EnterOTP {
  1618. get {
  1619. return ResourceManager.GetString("EnterOTP", resourceCulture);
  1620. }
  1621. }
  1622. /// <summary>
  1623. /// Looks up a localized string similar to Enter the word of the puzzle here.
  1624. /// </summary>
  1625. public static string EnterYourAnswer {
  1626. get {
  1627. return ResourceManager.GetString("EnterYourAnswer", resourceCulture);
  1628. }
  1629. }
  1630. /// <summary>
  1631. /// Looks up a localized string similar to Enter password.
  1632. /// </summary>
  1633. public static string EnterYourPassword {
  1634. get {
  1635. return ResourceManager.GetString("EnterYourPassword", resourceCulture);
  1636. }
  1637. }
  1638. /// <summary>
  1639. /// Looks up a localized string similar to Enthusiasm.
  1640. /// </summary>
  1641. public static string Enthusiasm {
  1642. get {
  1643. return ResourceManager.GetString("Enthusiasm", resourceCulture);
  1644. }
  1645. }
  1646. /// <summary>
  1647. /// Looks up a localized string similar to Evaluate.
  1648. /// </summary>
  1649. public static string Evaluation {
  1650. get {
  1651. return ResourceManager.GetString("Evaluation", resourceCulture);
  1652. }
  1653. }
  1654. /// <summary>
  1655. /// Looks up a localized string similar to Anyone can become an &apos;expert&apos; in grammar after completing English grammar courses on MEDU..
  1656. /// </summary>
  1657. public static string EveryoneWillbeProfessorOfWriting {
  1658. get {
  1659. return ResourceManager.GetString("EveryoneWillbeProfessorOfWriting", resourceCulture);
  1660. }
  1661. }
  1662. /// <summary>
  1663. /// Looks up a localized string similar to Example.
  1664. /// </summary>
  1665. public static string Example {
  1666. get {
  1667. return ResourceManager.GetString("Example", resourceCulture);
  1668. }
  1669. }
  1670. /// <summary>
  1671. /// Looks up a localized string similar to Exercises.
  1672. /// </summary>
  1673. public static string Exercises {
  1674. get {
  1675. return ResourceManager.GetString("Exercises", resourceCulture);
  1676. }
  1677. }
  1678. /// <summary>
  1679. /// Looks up a localized string similar to Experience plan.
  1680. /// </summary>
  1681. public static string Experienceplan {
  1682. get {
  1683. return ResourceManager.GetString("Experienceplan", resourceCulture);
  1684. }
  1685. }
  1686. /// <summary>
  1687. /// Looks up a localized string similar to fat.
  1688. /// </summary>
  1689. public static string fat {
  1690. get {
  1691. return ResourceManager.GetString("fat", resourceCulture);
  1692. }
  1693. }
  1694. /// <summary>
  1695. /// Looks up a localized string similar to Grade 1 obesity.
  1696. /// </summary>
  1697. public static string fat1 {
  1698. get {
  1699. return ResourceManager.GetString("fat1", resourceCulture);
  1700. }
  1701. }
  1702. /// <summary>
  1703. /// Looks up a localized string similar to Grade 2 obesity.
  1704. /// </summary>
  1705. public static string fat2 {
  1706. get {
  1707. return ResourceManager.GetString("fat2", resourceCulture);
  1708. }
  1709. }
  1710. /// <summary>
  1711. /// Looks up a localized string similar to Grade 3 obesity.
  1712. /// </summary>
  1713. public static string fat3 {
  1714. get {
  1715. return ResourceManager.GetString("fat3", resourceCulture);
  1716. }
  1717. }
  1718. /// <summary>
  1719. /// Looks up a localized string similar to Female.
  1720. /// </summary>
  1721. public static string female {
  1722. get {
  1723. return ResourceManager.GetString("female", resourceCulture);
  1724. }
  1725. }
  1726. /// <summary>
  1727. /// Looks up a localized string similar to Search by name of the grammar course you want to study.
  1728. /// </summary>
  1729. public static string FindCourse {
  1730. get {
  1731. return ResourceManager.GetString("FindCourse", resourceCulture);
  1732. }
  1733. }
  1734. /// <summary>
  1735. /// Looks up a localized string similar to Search by name of the grammar course you want to study.
  1736. /// </summary>
  1737. public static string FindingCourse {
  1738. get {
  1739. return ResourceManager.GetString("FindingCourse", resourceCulture);
  1740. }
  1741. }
  1742. /// <summary>
  1743. /// Looks up a localized string similar to Below are 5 systems developed by MEDU to help you and everyone develop your full English skills: Listening - Speaking - Reading - Writing.
  1744. /// </summary>
  1745. public static string FiveSystemsHelpYouImproveAllYourSkills {
  1746. get {
  1747. return ResourceManager.GetString("FiveSystemsHelpYouImproveAllYourSkills", resourceCulture);
  1748. }
  1749. }
  1750. /// <summary>
  1751. /// Looks up a localized string similar to Library of English grammar courses for everyone.
  1752. /// </summary>
  1753. public static string ForEveryone {
  1754. get {
  1755. return ResourceManager.GetString("ForEveryone", resourceCulture);
  1756. }
  1757. }
  1758. /// <summary>
  1759. /// Looks up a localized string similar to Listening speaking reading writing.
  1760. /// </summary>
  1761. public static string FourSkills {
  1762. get {
  1763. return ResourceManager.GetString("FourSkills", resourceCulture);
  1764. }
  1765. }
  1766. /// <summary>
  1767. /// Looks up a localized string similar to Create free account.
  1768. /// </summary>
  1769. public static string FreeAccount {
  1770. get {
  1771. return ResourceManager.GetString("FreeAccount", resourceCulture);
  1772. }
  1773. }
  1774. /// <summary>
  1775. /// Looks up a localized string similar to First and last name.
  1776. /// </summary>
  1777. public static string FullName {
  1778. get {
  1779. return ResourceManager.GetString("FullName", resourceCulture);
  1780. }
  1781. }
  1782. /// <summary>
  1783. /// Looks up a localized string similar to Start now.
  1784. /// </summary>
  1785. public static string GetStartedNow {
  1786. get {
  1787. return ResourceManager.GetString("GetStartedNow", resourceCulture);
  1788. }
  1789. }
  1790. /// <summary>
  1791. /// Looks up a localized string similar to Back.
  1792. /// </summary>
  1793. public static string GoBack {
  1794. get {
  1795. return ResourceManager.GetString("GoBack", resourceCulture);
  1796. }
  1797. }
  1798. /// <summary>
  1799. /// Looks up a localized string similar to Grammar.
  1800. /// </summary>
  1801. public static string Grammar {
  1802. get {
  1803. return ResourceManager.GetString("Grammar", resourceCulture);
  1804. }
  1805. }
  1806. /// <summary>
  1807. /// Looks up a localized string similar to The grammar learning method built by MEDU GRAMMAR is a completely new learning method, a learner-centered method. You will no longer have the feeling of learning grammar in a dry, boring way like the traditional learning method, instead you will learn them with images, sounds, and gamified knowledge... which will help you continue. approach English grammar more vividly, effectively and interestingly. Not only that, after each lesson MEDU will test your knowledge of the grammar topic learned, give results an [rest of string was truncated]&quot;;.
  1808. /// </summary>
  1809. public static string Grammar_des_1 {
  1810. get {
  1811. return ResourceManager.GetString("Grammar_des_1", resourceCulture);
  1812. }
  1813. }
  1814. /// <summary>
  1815. /// Looks up a localized string similar to MEDU will help learners apply and understand more deeply the theories of grammar topics they have learned through practice exercises..
  1816. /// </summary>
  1817. public static string Grammar_des_10 {
  1818. get {
  1819. return ResourceManager.GetString("Grammar_des_10", resourceCulture);
  1820. }
  1821. }
  1822. /// <summary>
  1823. /// Looks up a localized string similar to Your writing skills.
  1824. /// </summary>
  1825. public static string Grammar_des_11_a_1 {
  1826. get {
  1827. return ResourceManager.GetString("Grammar_des_11_a_1", resourceCulture);
  1828. }
  1829. }
  1830. /// <summary>
  1831. /// Looks up a localized string similar to Best of all, you will know how to use grammar in many different situations without having grammatically incorrect words or being afraid of using incorrect grammar..
  1832. /// </summary>
  1833. public static string Grammar_des_11_a_2 {
  1834. get {
  1835. return ResourceManager.GetString("Grammar_des_11_a_2", resourceCulture);
  1836. }
  1837. }
  1838. /// <summary>
  1839. /// Looks up a localized string similar to Greet and say the right words.
  1840. /// </summary>
  1841. public static string Grammar_des_11_b_1 {
  1842. get {
  1843. return ResourceManager.GetString("Grammar_des_11_b_1", resourceCulture);
  1844. }
  1845. }
  1846. /// <summary>
  1847. /// Looks up a localized string similar to This will help you be confident and attractive in real-life situations such as interviews and business..
  1848. /// </summary>
  1849. public static string Grammar_des_11_b_2 {
  1850. get {
  1851. return ResourceManager.GetString("Grammar_des_11_b_2", resourceCulture);
  1852. }
  1853. }
  1854. /// <summary>
  1855. /// Looks up a localized string similar to Improve your scores in class or important exams (TOEIC, IELTS, SAT...).
  1856. /// </summary>
  1857. public static string Grammar_des_11_c_1 {
  1858. get {
  1859. return ResourceManager.GetString("Grammar_des_11_c_1", resourceCulture);
  1860. }
  1861. }
  1862. /// <summary>
  1863. /// Looks up a localized string similar to MEDU will help you increase your grammar score by 20%, 30%, even 50%..
  1864. /// </summary>
  1865. public static string Grammar_des_11_c_2 {
  1866. get {
  1867. return ResourceManager.GetString("Grammar_des_11_c_2", resourceCulture);
  1868. }
  1869. }
  1870. /// <summary>
  1871. /// Looks up a localized string similar to Anyone can become an &quot;expert&quot; in grammar.
  1872. /// </summary>
  1873. public static string Grammar_des_11_d_1 {
  1874. get {
  1875. return ResourceManager.GetString("Grammar_des_11_d_1", resourceCulture);
  1876. }
  1877. }
  1878. /// <summary>
  1879. /// Looks up a localized string similar to once you have completed the course.
  1880. /// </summary>
  1881. public static string Grammar_des_11_d_2 {
  1882. get {
  1883. return ResourceManager.GetString("Grammar_des_11_d_2", resourceCulture);
  1884. }
  1885. }
  1886. /// <summary>
  1887. /// Looks up a localized string similar to English grammar at MEDU.
  1888. /// </summary>
  1889. public static string Grammar_des_11_d_3 {
  1890. get {
  1891. return ResourceManager.GetString("Grammar_des_11_d_3", resourceCulture);
  1892. }
  1893. }
  1894. /// <summary>
  1895. /// Looks up a localized string similar to English grammar has a total of 165 big and small topics, and MEDU will help you master all that grammar knowledge in just 165 days, less than 6 months..
  1896. /// </summary>
  1897. public static string Grammar_des_11_e {
  1898. get {
  1899. return ResourceManager.GetString("Grammar_des_11_e", resourceCulture);
  1900. }
  1901. }
  1902. /// <summary>
  1903. /// Looks up a localized string similar to More than anyone else, you know the importance of learning English grammar, but are powerless to find an effective learning method. You are worried because English exams are approaching, you need IELTS, TOEFL scores... to study abroad, you also need to get high results in the upcoming National exam..
  1904. /// </summary>
  1905. public static string Grammar_des_12 {
  1906. get {
  1907. return ResourceManager.GetString("Grammar_des_12", resourceCulture);
  1908. }
  1909. }
  1910. /// <summary>
  1911. /// Looks up a localized string similar to Now join MEDU for more information about this great grammar course and to learn how MEDU Grammar can help you improve your English grammar skills in just 30 days ..
  1912. /// </summary>
  1913. public static string Grammar_des_13 {
  1914. get {
  1915. return ResourceManager.GetString("Grammar_des_13", resourceCulture);
  1916. }
  1917. }
  1918. /// <summary>
  1919. /// Looks up a localized string similar to Are You Having Problems Learning English Grammar?.
  1920. /// </summary>
  1921. public static string Grammar_des_2 {
  1922. get {
  1923. return ResourceManager.GetString("Grammar_des_2", resourceCulture);
  1924. }
  1925. }
  1926. /// <summary>
  1927. /// Looks up a localized string similar to Have you studied English grammar for many years but still can&apos;t use it fluently and accurately in writing and speaking?.
  1928. /// </summary>
  1929. public static string Grammar_des_3 {
  1930. get {
  1931. return ResourceManager.GetString("Grammar_des_3", resourceCulture);
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// Looks up a localized string similar to Do you often use grammatical structures incorrectly, and you don&apos;t know how to use them in the correct situations or situations?.
  1936. /// </summary>
  1937. public static string Grammar_des_4 {
  1938. get {
  1939. return ResourceManager.GetString("Grammar_des_4", resourceCulture);
  1940. }
  1941. }
  1942. /// <summary>
  1943. /// Looks up a localized string similar to Do you have difficulty explaining English to native speakers, they can&apos;t understand you, or misunderstand your meaning just because you use wrong grammar?.
  1944. /// </summary>
  1945. public static string Grammar_des_5 {
  1946. get {
  1947. return ResourceManager.GetString("Grammar_des_5", resourceCulture);
  1948. }
  1949. }
  1950. /// <summary>
  1951. /// Looks up a localized string similar to Do you find it difficult to explain English to native speakers, they can&apos;t understand you or are misunderstood because you use wrong grammar?.
  1952. /// </summary>
  1953. public static string Grammar_des_6 {
  1954. get {
  1955. return ResourceManager.GetString("Grammar_des_6", resourceCulture);
  1956. }
  1957. }
  1958. /// <summary>
  1959. /// Looks up a localized string similar to Grammar is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers..
  1960. /// </summary>
  1961. public static string Grammar_des_7 {
  1962. get {
  1963. return ResourceManager.GetString("Grammar_des_7", resourceCulture);
  1964. }
  1965. }
  1966. /// <summary>
  1967. /// Looks up a localized string similar to MEDU GRAMMAR is the first smart online English grammar system in Vietnam, allowing learners to access and master English grammar in just six months..
  1968. /// </summary>
  1969. public static string Grammar_des_8 {
  1970. get {
  1971. return ResourceManager.GetString("Grammar_des_8", resourceCulture);
  1972. }
  1973. }
  1974. /// <summary>
  1975. /// Looks up a localized string similar to MEDU will provide learners with complete theories on grammar topics with a vivid, easy-to-remember presentation of bilingual content..
  1976. /// </summary>
  1977. public static string Grammar_des_9_a {
  1978. get {
  1979. return ResourceManager.GetString("Grammar_des_9_a", resourceCulture);
  1980. }
  1981. }
  1982. /// <summary>
  1983. /// Looks up a localized string similar to Theory.
  1984. /// </summary>
  1985. public static string Grammar_des_9_b {
  1986. get {
  1987. return ResourceManager.GetString("Grammar_des_9_b", resourceCulture);
  1988. }
  1989. }
  1990. /// <summary>
  1991. /// Looks up a localized string similar to MEDU GRAMMAR COURSES.
  1992. /// </summary>
  1993. public static string GrammarCourse {
  1994. get {
  1995. return ResourceManager.GetString("GrammarCourse", resourceCulture);
  1996. }
  1997. }
  1998. /// <summary>
  1999. /// Looks up a localized string similar to Grammar is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers..
  2000. /// </summary>
  2001. public static string GrammarIsAProductOfUstudyToHelpOvercomingAnObstacle {
  2002. get {
  2003. return ResourceManager.GetString("GrammarIsAProductOfUstudyToHelpOvercomingAnObstacle", resourceCulture);
  2004. }
  2005. }
  2006. /// <summary>
  2007. /// Looks up a localized string similar to English grammar learning system.
  2008. /// </summary>
  2009. public static string GrammarSystem {
  2010. get {
  2011. return ResourceManager.GetString("GrammarSystem", resourceCulture);
  2012. }
  2013. }
  2014. /// <summary>
  2015. /// Looks up a localized string similar to Gym exercises.
  2016. /// </summary>
  2017. public static string gym {
  2018. get {
  2019. return ResourceManager.GetString("gym", resourceCulture);
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// Looks up a localized string similar to Already have an account.
  2024. /// </summary>
  2025. public static string HaveAccount {
  2026. get {
  2027. return ResourceManager.GetString("HaveAccount", resourceCulture);
  2028. }
  2029. }
  2030. /// <summary>
  2031. /// Looks up a localized string similar to Do you already have an account?.
  2032. /// </summary>
  2033. public static string haveAccount1 {
  2034. get {
  2035. return ResourceManager.GetString("haveAccount1", resourceCulture);
  2036. }
  2037. }
  2038. /// <summary>
  2039. /// Looks up a localized string similar to Do not have an account?.
  2040. /// </summary>
  2041. public static string haveNoAccount {
  2042. get {
  2043. return ResourceManager.GetString("haveNoAccount", resourceCulture);
  2044. }
  2045. }
  2046. /// <summary>
  2047. /// Looks up a localized string similar to Are You Having Problems Learning English Grammar?.
  2048. /// </summary>
  2049. public static string HavingATroubleInLearningEnglish {
  2050. get {
  2051. return ResourceManager.GetString("HavingATroubleInLearningEnglish", resourceCulture);
  2052. }
  2053. }
  2054. /// <summary>
  2055. /// Looks up a localized string similar to Head office.
  2056. /// </summary>
  2057. public static string HeadOffice {
  2058. get {
  2059. return ResourceManager.GetString("HeadOffice", resourceCulture);
  2060. }
  2061. }
  2062. /// <summary>
  2063. /// Looks up a localized string similar to Height.
  2064. /// </summary>
  2065. public static string height {
  2066. get {
  2067. return ResourceManager.GetString("height", resourceCulture);
  2068. }
  2069. }
  2070. /// <summary>
  2071. /// Looks up a localized string similar to Hello.
  2072. /// </summary>
  2073. public static string Hi {
  2074. get {
  2075. return ResourceManager.GetString("Hi", resourceCulture);
  2076. }
  2077. }
  2078. /// <summary>
  2079. /// Looks up a localized string similar to Improve your scores in class or important exams (TOEIC, IELTS, SAT...).
  2080. /// </summary>
  2081. public static string HigherScores_1 {
  2082. get {
  2083. return ResourceManager.GetString("HigherScores_1", resourceCulture);
  2084. }
  2085. }
  2086. /// <summary>
  2087. /// Looks up a localized string similar to MEDU will help you increase your grammar score by 20%, 30%, even 50%..
  2088. /// </summary>
  2089. public static string HigherScores_2 {
  2090. get {
  2091. return ResourceManager.GetString("HigherScores_2", resourceCulture);
  2092. }
  2093. }
  2094. /// <summary>
  2095. /// Looks up a localized string similar to Home.
  2096. /// </summary>
  2097. public static string Home {
  2098. get {
  2099. return ResourceManager.GetString("Home", resourceCulture);
  2100. }
  2101. }
  2102. /// <summary>
  2103. /// Looks up a localized string similar to MEDU Together with you, eliminate English barriers.
  2104. /// </summary>
  2105. public static string Home_description_1 {
  2106. get {
  2107. return ResourceManager.GetString("Home_description_1", resourceCulture);
  2108. }
  2109. }
  2110. /// <summary>
  2111. /// Looks up a localized string similar to Hope.
  2112. /// </summary>
  2113. public static string Hope {
  2114. get {
  2115. return ResourceManager.GetString("Hope", resourceCulture);
  2116. }
  2117. }
  2118. /// <summary>
  2119. /// Looks up a localized string similar to Hours.
  2120. /// </summary>
  2121. public static string Hours {
  2122. get {
  2123. return ResourceManager.GetString("Hours", resourceCulture);
  2124. }
  2125. }
  2126. /// <summary>
  2127. /// Looks up a localized string similar to HOW CAN MEDU METHODS HELP YOU?.
  2128. /// </summary>
  2129. public static string HowDoesUSTUDYHelpYou {
  2130. get {
  2131. return ResourceManager.GetString("HowDoesUSTUDYHelpYou", resourceCulture);
  2132. }
  2133. }
  2134. /// <summary>
  2135. /// Looks up a localized string similar to How to play.
  2136. /// </summary>
  2137. public static string HowToPlay {
  2138. get {
  2139. return ResourceManager.GetString("HowToPlay", resourceCulture);
  2140. }
  2141. }
  2142. /// <summary>
  2143. /// Looks up a localized string similar to If a participant answers incorrectly, the game will immediately end, and they will not be able to play again..
  2144. /// </summary>
  2145. public static string IfaParticipantAnswers {
  2146. get {
  2147. return ResourceManager.GetString("IfaParticipantAnswers", resourceCulture);
  2148. }
  2149. }
  2150. /// <summary>
  2151. /// Looks up a localized string similar to If multiple participants answer correctly with the same time, the prize money will be evenly divided among them..
  2152. /// </summary>
  2153. public static string IfPultipleParticipantsAnswerCorrectly {
  2154. get {
  2155. return ResourceManager.GetString("IfPultipleParticipantsAnswerCorrectly", resourceCulture);
  2156. }
  2157. }
  2158. /// <summary>
  2159. /// Looks up a localized string similar to During the test, if you exit the test room without completing the remaining questions, it will be counted as WRONG..
  2160. /// </summary>
  2161. public static string IfYouOutTheRoomTest {
  2162. get {
  2163. return ResourceManager.GetString("IfYouOutTheRoomTest", resourceCulture);
  2164. }
  2165. }
  2166. /// <summary>
  2167. /// Looks up a localized string similar to Improve.
  2168. /// </summary>
  2169. public static string Improve {
  2170. get {
  2171. return ResourceManager.GetString("Improve", resourceCulture);
  2172. }
  2173. }
  2174. /// <summary>
  2175. /// Looks up a localized string similar to Improve 4 skills: listening, speaking, reading, writing and translating, develop relationships with friends, other companies....
  2176. /// </summary>
  2177. public static string Improve4Skills {
  2178. get {
  2179. return ResourceManager.GetString("Improve4Skills", resourceCulture);
  2180. }
  2181. }
  2182. /// <summary>
  2183. /// Looks up a localized string similar to TOEIC, IELTS and TOEFL scores will improve.
  2184. /// </summary>
  2185. public static string ImproveYourScores {
  2186. get {
  2187. return ResourceManager.GetString("ImproveYourScores", resourceCulture);
  2188. }
  2189. }
  2190. /// <summary>
  2191. /// Looks up a localized string similar to .
  2192. /// </summary>
  2193. public static string ImproveYourScores_2 {
  2194. get {
  2195. return ResourceManager.GetString("ImproveYourScores_2", resourceCulture);
  2196. }
  2197. }
  2198. /// <summary>
  2199. /// Looks up a localized string similar to Communicating and speaking with correct grammar will help you be more confident and convincing in real-life situations such as interviews and business work..
  2200. /// </summary>
  2201. public static string ImprovingSpeakingSkill {
  2202. get {
  2203. return ResourceManager.GetString("ImprovingSpeakingSkill", resourceCulture);
  2204. }
  2205. }
  2206. /// <summary>
  2207. /// Looks up a localized string similar to Your writing ability will improve significantly, you will know how to use grammar in many different situations without being confused or afraid of using incorrect grammar..
  2208. /// </summary>
  2209. public static string ImprovingWirtingSkill {
  2210. get {
  2211. return ResourceManager.GetString("ImprovingWirtingSkill", resourceCulture);
  2212. }
  2213. }
  2214. /// <summary>
  2215. /// Looks up a localized string similar to General information.
  2216. /// </summary>
  2217. public static string Information {
  2218. get {
  2219. return ResourceManager.GetString("Information", resourceCulture);
  2220. }
  2221. }
  2222. /// <summary>
  2223. /// Looks up a localized string similar to SMART LANGUAGE LEARNING SYSTEM.
  2224. /// </summary>
  2225. public static string intelligentSystem {
  2226. get {
  2227. return ResourceManager.GetString("intelligentSystem", resourceCulture);
  2228. }
  2229. }
  2230. /// <summary>
  2231. /// Looks up a localized string similar to MEDU is a smart English vocabulary learning system that will help you remember vocabulary easily and deeply in just a short time..
  2232. /// </summary>
  2233. public static string IntelligentSystemToHelpRememberingEasily {
  2234. get {
  2235. return ResourceManager.GetString("IntelligentSystemToHelpRememberingEasily", resourceCulture);
  2236. }
  2237. }
  2238. /// <summary>
  2239. /// Looks up a localized string similar to Introduce.
  2240. /// </summary>
  2241. public static string Introduction {
  2242. get {
  2243. return ResourceManager.GetString("Introduction", resourceCulture);
  2244. }
  2245. }
  2246. /// <summary>
  2247. /// Looks up a localized string similar to Invalid phone number!.
  2248. /// </summary>
  2249. public static string InvalidMsisdn {
  2250. get {
  2251. return ResourceManager.GetString("InvalidMsisdn", resourceCulture);
  2252. }
  2253. }
  2254. /// <summary>
  2255. /// Looks up a localized string similar to JOIN US!.
  2256. /// </summary>
  2257. public static string JoinWithUs {
  2258. get {
  2259. return ResourceManager.GetString("JoinWithUs", resourceCulture);
  2260. }
  2261. }
  2262. /// <summary>
  2263. /// Looks up a localized string similar to Kindergarten.
  2264. /// </summary>
  2265. public static string Kindergarten {
  2266. get {
  2267. return ResourceManager.GetString("Kindergarten", resourceCulture);
  2268. }
  2269. }
  2270. /// <summary>
  2271. /// Looks up a localized string similar to Kindergarten book.
  2272. /// </summary>
  2273. public static string KindergartenBook {
  2274. get {
  2275. return ResourceManager.GetString("KindergartenBook", resourceCulture);
  2276. }
  2277. }
  2278. /// <summary>
  2279. /// Looks up a localized string similar to Kindergarten Education.
  2280. /// </summary>
  2281. public static string KindergartenEducation {
  2282. get {
  2283. return ResourceManager.GetString("KindergartenEducation", resourceCulture);
  2284. }
  2285. }
  2286. /// <summary>
  2287. /// Looks up a localized string similar to Kindergarten year 1.
  2288. /// </summary>
  2289. public static string KindergartenYear1 {
  2290. get {
  2291. return ResourceManager.GetString("KindergartenYear1", resourceCulture);
  2292. }
  2293. }
  2294. /// <summary>
  2295. /// Looks up a localized string similar to Kindergarten year 2.
  2296. /// </summary>
  2297. public static string KindergartenYear2 {
  2298. get {
  2299. return ResourceManager.GetString("KindergartenYear2", resourceCulture);
  2300. }
  2301. }
  2302. /// <summary>
  2303. /// Looks up a localized string similar to Kindergarten year 3.
  2304. /// </summary>
  2305. public static string KindergartenYear3 {
  2306. get {
  2307. return ResourceManager.GetString("KindergartenYear3", resourceCulture);
  2308. }
  2309. }
  2310. /// <summary>
  2311. /// Looks up a localized string similar to Language.
  2312. /// </summary>
  2313. public static string language {
  2314. get {
  2315. return ResourceManager.GetString("language", resourceCulture);
  2316. }
  2317. }
  2318. /// <summary>
  2319. /// Looks up a localized string similar to .
  2320. /// </summary>
  2321. public static string laos {
  2322. get {
  2323. return ResourceManager.GetString("laos", resourceCulture);
  2324. }
  2325. }
  2326. /// <summary>
  2327. /// Looks up a localized string similar to Study.
  2328. /// </summary>
  2329. public static string Learn {
  2330. get {
  2331. return ResourceManager.GetString("Learn", resourceCulture);
  2332. }
  2333. }
  2334. /// <summary>
  2335. /// Looks up a localized string similar to Study again.
  2336. /// </summary>
  2337. public static string LearnAgain {
  2338. get {
  2339. return ResourceManager.GetString("LearnAgain", resourceCulture);
  2340. }
  2341. }
  2342. /// <summary>
  2343. /// Looks up a localized string similar to Learn about this method.
  2344. /// </summary>
  2345. public static string LearningAboutThisMethod {
  2346. get {
  2347. return ResourceManager.GetString("LearningAboutThisMethod", resourceCulture);
  2348. }
  2349. }
  2350. /// <summary>
  2351. /// Looks up a localized string similar to Study English.
  2352. /// </summary>
  2353. public static string LearningEnglish {
  2354. get {
  2355. return ResourceManager.GetString("LearningEnglish", resourceCulture);
  2356. }
  2357. }
  2358. /// <summary>
  2359. /// Looks up a localized string similar to Learn English anytime, anywhere (at home, on the bus, at school,...) with MEDU.
  2360. /// </summary>
  2361. public static string LearningEverywhere {
  2362. get {
  2363. return ResourceManager.GetString("LearningEverywhere", resourceCulture);
  2364. }
  2365. }
  2366. /// <summary>
  2367. /// Looks up a localized string similar to LEARN ENGLISH GRAMMAR.
  2368. /// </summary>
  2369. public static string LearningGrammar {
  2370. get {
  2371. return ResourceManager.GetString("LearningGrammar", resourceCulture);
  2372. }
  2373. }
  2374. /// <summary>
  2375. /// Looks up a localized string similar to LEARN ENGLISH VOCABULARY.
  2376. /// </summary>
  2377. public static string LearningVocabulary {
  2378. get {
  2379. return ResourceManager.GetString("LearningVocabulary", resourceCulture);
  2380. }
  2381. }
  2382. /// <summary>
  2383. /// Looks up a localized string similar to Study now.
  2384. /// </summary>
  2385. public static string LearnNow {
  2386. get {
  2387. return ResourceManager.GetString("LearnNow", resourceCulture);
  2388. }
  2389. }
  2390. /// <summary>
  2391. /// Looks up a localized string similar to Course.
  2392. /// </summary>
  2393. public static string Lesson {
  2394. get {
  2395. return ResourceManager.GetString("Lesson", resourceCulture);
  2396. }
  2397. }
  2398. /// <summary>
  2399. /// Looks up a localized string similar to Let me know your answers!.
  2400. /// </summary>
  2401. public static string LetMeKnowYourAnsWers {
  2402. get {
  2403. return ResourceManager.GetString("LetMeKnowYourAnsWers", resourceCulture);
  2404. }
  2405. }
  2406. /// <summary>
  2407. /// Looks up a localized string similar to Register as a member to immediately experience effective English learning methods with MEDU..
  2408. /// </summary>
  2409. public static string LetsRegisterToBecomeAMember {
  2410. get {
  2411. return ResourceManager.GetString("LetsRegisterToBecomeAMember", resourceCulture);
  2412. }
  2413. }
  2414. /// <summary>
  2415. /// Looks up a localized string similar to Enter the library.
  2416. /// </summary>
  2417. public static string Library {
  2418. get {
  2419. return ResourceManager.GetString("Library", resourceCulture);
  2420. }
  2421. }
  2422. /// <summary>
  2423. /// Looks up a localized string similar to The method helps you improve your English speaking ability through a completely new method, you will speak English confidently and fluently without having to study Grammar or do exercises..
  2424. /// </summary>
  2425. public static string Listen_des_1 {
  2426. get {
  2427. return ResourceManager.GetString("Listen_des_1", resourceCulture);
  2428. }
  2429. }
  2430. /// <summary>
  2431. /// Looks up a localized string similar to It&apos;s not just you, more than 80% of English learners often have this problem. That is: Can read and understand well, but cannot listen or speak. Many students and working people have spent a lot of time and money pursuing English courses at the center, or buying English courses from foreign programs but still cannot improve their ability. your English Listening skills. And the common situation is that many students have given up halfway due to lack of motivation. Some of you even feel bad, disappointed, and [rest of string was truncated]&quot;;.
  2432. /// </summary>
  2433. public static string Listen_des_2 {
  2434. get {
  2435. return ResourceManager.GetString("Listen_des_2", resourceCulture);
  2436. }
  2437. }
  2438. /// <summary>
  2439. /// Looks up a localized string similar to To overcome the above situation, MEDU has developed a COMPLETELY NEW method of learning English communication - This method is based on the process of accessing natural language (Natural Language Approach), helping learners to Speak English confidently, naturally and fluently after only 6 months. This system is called MEDU LISTENING - Learn English communication in a natural way.
  2440. /// </summary>
  2441. public static string Listen_des_3 {
  2442. get {
  2443. return ResourceManager.GetString("Listen_des_3", resourceCulture);
  2444. }
  2445. }
  2446. /// <summary>
  2447. /// Looks up a localized string similar to Listen.
  2448. /// </summary>
  2449. public static string Listening {
  2450. get {
  2451. return ResourceManager.GetString("Listening", resourceCulture);
  2452. }
  2453. }
  2454. /// <summary>
  2455. /// Looks up a localized string similar to Listen English.
  2456. /// </summary>
  2457. public static string ListeningEnglish {
  2458. get {
  2459. return ResourceManager.GetString("ListeningEnglish", resourceCulture);
  2460. }
  2461. }
  2462. /// <summary>
  2463. /// Looks up a localized string similar to .
  2464. /// </summary>
  2465. public static string ListeningLao {
  2466. get {
  2467. return ResourceManager.GetString("ListeningLao", resourceCulture);
  2468. }
  2469. }
  2470. /// <summary>
  2471. /// Looks up a localized string similar to Communication system in English.
  2472. /// </summary>
  2473. public static string ListeningSystem {
  2474. get {
  2475. return ResourceManager.GetString("ListeningSystem", resourceCulture);
  2476. }
  2477. }
  2478. /// <summary>
  2479. /// Looks up a localized string similar to .
  2480. /// </summary>
  2481. public static string ListeningViet {
  2482. get {
  2483. return ResourceManager.GetString("ListeningViet", resourceCulture);
  2484. }
  2485. }
  2486. /// <summary>
  2487. /// Looks up a localized string similar to List of special prize winners.
  2488. /// </summary>
  2489. public static string ListOfSpecialPrizeWinners {
  2490. get {
  2491. return ResourceManager.GetString("ListOfSpecialPrizeWinners", resourceCulture);
  2492. }
  2493. }
  2494. /// <summary>
  2495. /// Looks up a localized string similar to Course.
  2496. /// </summary>
  2497. public static string Locked {
  2498. get {
  2499. return ResourceManager.GetString("Locked", resourceCulture);
  2500. }
  2501. }
  2502. /// <summary>
  2503. /// Looks up a localized string similar to Log in.
  2504. /// </summary>
  2505. public static string Login {
  2506. get {
  2507. return ResourceManager.GetString("Login", resourceCulture);
  2508. }
  2509. }
  2510. /// <summary>
  2511. /// Looks up a localized string similar to Log in now.
  2512. /// </summary>
  2513. public static string LoginNow {
  2514. get {
  2515. return ResourceManager.GetString("LoginNow", resourceCulture);
  2516. }
  2517. }
  2518. /// <summary>
  2519. /// Looks up a localized string similar to Log in now.
  2520. /// </summary>
  2521. public static string loginNow1 {
  2522. get {
  2523. return ResourceManager.GetString("loginNow1", resourceCulture);
  2524. }
  2525. }
  2526. /// <summary>
  2527. /// Looks up a localized string similar to Log out.
  2528. /// </summary>
  2529. public static string Logout {
  2530. get {
  2531. return ResourceManager.GetString("Logout", resourceCulture);
  2532. }
  2533. }
  2534. /// <summary>
  2535. /// Looks up a localized string similar to Lower Secondary School education Textbook.
  2536. /// </summary>
  2537. public static string M1 {
  2538. get {
  2539. return ResourceManager.GetString("M1", resourceCulture);
  2540. }
  2541. }
  2542. /// <summary>
  2543. /// Looks up a localized string similar to Natural Science Textbook (M1).
  2544. /// </summary>
  2545. public static string M10 {
  2546. get {
  2547. return ResourceManager.GetString("M10", resourceCulture);
  2548. }
  2549. }
  2550. /// <summary>
  2551. /// Looks up a localized string similar to Civic Education Form (M7).
  2552. /// </summary>
  2553. public static string M100 {
  2554. get {
  2555. return ResourceManager.GetString("M100", resourceCulture);
  2556. }
  2557. }
  2558. /// <summary>
  2559. /// Looks up a localized string similar to History Class (M7).
  2560. /// </summary>
  2561. public static string M101 {
  2562. get {
  2563. return ResourceManager.GetString("M101", resourceCulture);
  2564. }
  2565. }
  2566. /// <summary>
  2567. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M1).
  2568. /// </summary>
  2569. public static string M102 {
  2570. get {
  2571. return ResourceManager.GetString("M102", resourceCulture);
  2572. }
  2573. }
  2574. /// <summary>
  2575. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M1).
  2576. /// </summary>
  2577. public static string M103 {
  2578. get {
  2579. return ResourceManager.GetString("M103", resourceCulture);
  2580. }
  2581. }
  2582. /// <summary>
  2583. /// Looks up a localized string similar to Information and Communication Teacher&apos;s Guide (M1).
  2584. /// </summary>
  2585. public static string M104 {
  2586. get {
  2587. return ResourceManager.GetString("M104", resourceCulture);
  2588. }
  2589. }
  2590. /// <summary>
  2591. /// Looks up a localized string similar to History Teacher&apos;s Guide (M1).
  2592. /// </summary>
  2593. public static string M105 {
  2594. get {
  2595. return ResourceManager.GetString("M105", resourceCulture);
  2596. }
  2597. }
  2598. /// <summary>
  2599. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M1).
  2600. /// </summary>
  2601. public static string M106 {
  2602. get {
  2603. return ResourceManager.GetString("M106", resourceCulture);
  2604. }
  2605. }
  2606. /// <summary>
  2607. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M1).
  2608. /// </summary>
  2609. public static string M107 {
  2610. get {
  2611. return ResourceManager.GetString("M107", resourceCulture);
  2612. }
  2613. }
  2614. /// <summary>
  2615. /// Looks up a localized string similar to Music and Music Teacher&apos;s Guide (M1).
  2616. /// </summary>
  2617. public static string M108 {
  2618. get {
  2619. return ResourceManager.GetString("M108", resourceCulture);
  2620. }
  2621. }
  2622. /// <summary>
  2623. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M1).
  2624. /// </summary>
  2625. public static string M109 {
  2626. get {
  2627. return ResourceManager.GetString("M109", resourceCulture);
  2628. }
  2629. }
  2630. /// <summary>
  2631. /// Looks up a localized string similar to Geography Textbook (M1).
  2632. /// </summary>
  2633. public static string M11 {
  2634. get {
  2635. return ResourceManager.GetString("M11", resourceCulture);
  2636. }
  2637. }
  2638. /// <summary>
  2639. /// Looks up a localized string similar to Natural Science Teacher&apos;s Guide (M1).
  2640. /// </summary>
  2641. public static string M110 {
  2642. get {
  2643. return ResourceManager.GetString("M110", resourceCulture);
  2644. }
  2645. }
  2646. /// <summary>
  2647. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M1).
  2648. /// </summary>
  2649. public static string M111 {
  2650. get {
  2651. return ResourceManager.GetString("M111", resourceCulture);
  2652. }
  2653. }
  2654. /// <summary>
  2655. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M1).
  2656. /// </summary>
  2657. public static string M112 {
  2658. get {
  2659. return ResourceManager.GetString("M112", resourceCulture);
  2660. }
  2661. }
  2662. /// <summary>
  2663. /// Looks up a localized string similar to Basic Vocational Teacher&apos;s Guide (M1).
  2664. /// </summary>
  2665. public static string M113 {
  2666. get {
  2667. return ResourceManager.GetString("M113", resourceCulture);
  2668. }
  2669. }
  2670. /// <summary>
  2671. /// Looks up a localized string similar to English Teacher&apos;s Guide (M1).
  2672. /// </summary>
  2673. public static string M114 {
  2674. get {
  2675. return ResourceManager.GetString("M114", resourceCulture);
  2676. }
  2677. }
  2678. /// <summary>
  2679. /// Looks up a localized string similar to French Teacher&apos;s Guide (M1).
  2680. /// </summary>
  2681. public static string M115 {
  2682. get {
  2683. return ResourceManager.GetString("M115", resourceCulture);
  2684. }
  2685. }
  2686. /// <summary>
  2687. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M2).
  2688. /// </summary>
  2689. public static string M116 {
  2690. get {
  2691. return ResourceManager.GetString("M116", resourceCulture);
  2692. }
  2693. }
  2694. /// <summary>
  2695. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M2).
  2696. /// </summary>
  2697. public static string M117 {
  2698. get {
  2699. return ResourceManager.GetString("M117", resourceCulture);
  2700. }
  2701. }
  2702. /// <summary>
  2703. /// Looks up a localized string similar to English Teacher&apos;s Guide (M2).
  2704. /// </summary>
  2705. public static string M118 {
  2706. get {
  2707. return ResourceManager.GetString("M118", resourceCulture);
  2708. }
  2709. }
  2710. /// <summary>
  2711. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M2).
  2712. /// </summary>
  2713. public static string M119 {
  2714. get {
  2715. return ResourceManager.GetString("M119", resourceCulture);
  2716. }
  2717. }
  2718. /// <summary>
  2719. /// Looks up a localized string similar to Basic Vocational Training (M1).
  2720. /// </summary>
  2721. public static string M12 {
  2722. get {
  2723. return ResourceManager.GetString("M12", resourceCulture);
  2724. }
  2725. }
  2726. /// <summary>
  2727. /// Looks up a localized string similar to History Teacher&apos;s Guide (M2).
  2728. /// </summary>
  2729. public static string M120 {
  2730. get {
  2731. return ResourceManager.GetString("M120", resourceCulture);
  2732. }
  2733. }
  2734. /// <summary>
  2735. /// Looks up a localized string similar to Information and Communication Teacher&apos;s Guide (M2).
  2736. /// </summary>
  2737. public static string M121 {
  2738. get {
  2739. return ResourceManager.GetString("M121", resourceCulture);
  2740. }
  2741. }
  2742. /// <summary>
  2743. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M2).
  2744. /// </summary>
  2745. public static string M122 {
  2746. get {
  2747. return ResourceManager.GetString("M122", resourceCulture);
  2748. }
  2749. }
  2750. /// <summary>
  2751. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M2).
  2752. /// </summary>
  2753. public static string M123 {
  2754. get {
  2755. return ResourceManager.GetString("M123", resourceCulture);
  2756. }
  2757. }
  2758. /// <summary>
  2759. /// Looks up a localized string similar to Natural Science Teacher&apos;s Guide (M2).
  2760. /// </summary>
  2761. public static string M124 {
  2762. get {
  2763. return ResourceManager.GetString("M124", resourceCulture);
  2764. }
  2765. }
  2766. /// <summary>
  2767. /// Looks up a localized string similar to Music and Music Teacher&apos;s Guide (M2).
  2768. /// </summary>
  2769. public static string M125 {
  2770. get {
  2771. return ResourceManager.GetString("M125", resourceCulture);
  2772. }
  2773. }
  2774. /// <summary>
  2775. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M2).
  2776. /// </summary>
  2777. public static string M126 {
  2778. get {
  2779. return ResourceManager.GetString("M126", resourceCulture);
  2780. }
  2781. }
  2782. /// <summary>
  2783. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M2).
  2784. /// </summary>
  2785. public static string M127 {
  2786. get {
  2787. return ResourceManager.GetString("M127", resourceCulture);
  2788. }
  2789. }
  2790. /// <summary>
  2791. /// Looks up a localized string similar to Basic Vocational Teacher&apos;s Guide (M2).
  2792. /// </summary>
  2793. public static string M128 {
  2794. get {
  2795. return ResourceManager.GetString("M128", resourceCulture);
  2796. }
  2797. }
  2798. /// <summary>
  2799. /// Looks up a localized string similar to French Teacher&apos;s Guide (M2).
  2800. /// </summary>
  2801. public static string M129 {
  2802. get {
  2803. return ResourceManager.GetString("M129", resourceCulture);
  2804. }
  2805. }
  2806. /// <summary>
  2807. /// Looks up a localized string similar to Information and Communication Technology (M1).
  2808. /// </summary>
  2809. public static string M13 {
  2810. get {
  2811. return ResourceManager.GetString("M13", resourceCulture);
  2812. }
  2813. }
  2814. /// <summary>
  2815. /// Looks up a localized string similar to Japanese Teacher&apos;s Guide (M2).
  2816. /// </summary>
  2817. public static string M130 {
  2818. get {
  2819. return ResourceManager.GetString("M130", resourceCulture);
  2820. }
  2821. }
  2822. /// <summary>
  2823. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M3).
  2824. /// </summary>
  2825. public static string M131 {
  2826. get {
  2827. return ResourceManager.GetString("M131", resourceCulture);
  2828. }
  2829. }
  2830. /// <summary>
  2831. /// Looks up a localized string similar to Basic Vocational Teacher&apos;s Guide (M3).
  2832. /// </summary>
  2833. public static string M132 {
  2834. get {
  2835. return ResourceManager.GetString("M132", resourceCulture);
  2836. }
  2837. }
  2838. /// <summary>
  2839. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M3).
  2840. /// </summary>
  2841. public static string M133 {
  2842. get {
  2843. return ResourceManager.GetString("M133", resourceCulture);
  2844. }
  2845. }
  2846. /// <summary>
  2847. /// Looks up a localized string similar to English Teacher&apos;s Guide (M3).
  2848. /// </summary>
  2849. public static string M134 {
  2850. get {
  2851. return ResourceManager.GetString("M134", resourceCulture);
  2852. }
  2853. }
  2854. /// <summary>
  2855. /// Looks up a localized string similar to French Teacher&apos;s Guide (M3).
  2856. /// </summary>
  2857. public static string M135 {
  2858. get {
  2859. return ResourceManager.GetString("M135", resourceCulture);
  2860. }
  2861. }
  2862. /// <summary>
  2863. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M3).
  2864. /// </summary>
  2865. public static string M136 {
  2866. get {
  2867. return ResourceManager.GetString("M136", resourceCulture);
  2868. }
  2869. }
  2870. /// <summary>
  2871. /// Looks up a localized string similar to History Teacher&apos;s Guide (M3).
  2872. /// </summary>
  2873. public static string M137 {
  2874. get {
  2875. return ResourceManager.GetString("M137", resourceCulture);
  2876. }
  2877. }
  2878. /// <summary>
  2879. /// Looks up a localized string similar to Information and Communication Teacher&apos;s Guide (M3).
  2880. /// </summary>
  2881. public static string M138 {
  2882. get {
  2883. return ResourceManager.GetString("M138", resourceCulture);
  2884. }
  2885. }
  2886. /// <summary>
  2887. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M3).
  2888. /// </summary>
  2889. public static string M139 {
  2890. get {
  2891. return ResourceManager.GetString("M139", resourceCulture);
  2892. }
  2893. }
  2894. /// <summary>
  2895. /// Looks up a localized string similar to English Language Study Form (M1).
  2896. /// </summary>
  2897. public static string M14 {
  2898. get {
  2899. return ResourceManager.GetString("M14", resourceCulture);
  2900. }
  2901. }
  2902. /// <summary>
  2903. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M3).
  2904. /// </summary>
  2905. public static string M140 {
  2906. get {
  2907. return ResourceManager.GetString("M140", resourceCulture);
  2908. }
  2909. }
  2910. /// <summary>
  2911. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M3).
  2912. /// </summary>
  2913. public static string M141 {
  2914. get {
  2915. return ResourceManager.GetString("M141", resourceCulture);
  2916. }
  2917. }
  2918. /// <summary>
  2919. /// Looks up a localized string similar to Music and Music Teacher&apos;s Guide (M3).
  2920. /// </summary>
  2921. public static string M142 {
  2922. get {
  2923. return ResourceManager.GetString("M142", resourceCulture);
  2924. }
  2925. }
  2926. /// <summary>
  2927. /// Looks up a localized string similar to Natural Science Teacher&apos;s Guide (M3).
  2928. /// </summary>
  2929. public static string M143 {
  2930. get {
  2931. return ResourceManager.GetString("M143", resourceCulture);
  2932. }
  2933. }
  2934. /// <summary>
  2935. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M3).
  2936. /// </summary>
  2937. public static string M144 {
  2938. get {
  2939. return ResourceManager.GetString("M144", resourceCulture);
  2940. }
  2941. }
  2942. /// <summary>
  2943. /// Looks up a localized string similar to Japanese Teacher&apos;s Guide (M3).
  2944. /// </summary>
  2945. public static string M145 {
  2946. get {
  2947. return ResourceManager.GetString("M145", resourceCulture);
  2948. }
  2949. }
  2950. /// <summary>
  2951. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M4).
  2952. /// </summary>
  2953. public static string M146 {
  2954. get {
  2955. return ResourceManager.GetString("M146", resourceCulture);
  2956. }
  2957. }
  2958. /// <summary>
  2959. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M4).
  2960. /// </summary>
  2961. public static string M147 {
  2962. get {
  2963. return ResourceManager.GetString("M147", resourceCulture);
  2964. }
  2965. }
  2966. /// <summary>
  2967. /// Looks up a localized string similar to English Teacher&apos;s Guide (M4).
  2968. /// </summary>
  2969. public static string M148 {
  2970. get {
  2971. return ResourceManager.GetString("M148", resourceCulture);
  2972. }
  2973. }
  2974. /// <summary>
  2975. /// Looks up a localized string similar to French Teacher&apos;s Guide (M4).
  2976. /// </summary>
  2977. public static string M149 {
  2978. get {
  2979. return ResourceManager.GetString("M149", resourceCulture);
  2980. }
  2981. }
  2982. /// <summary>
  2983. /// Looks up a localized string similar to French lessons (M2).
  2984. /// </summary>
  2985. public static string M15 {
  2986. get {
  2987. return ResourceManager.GetString("M15", resourceCulture);
  2988. }
  2989. }
  2990. /// <summary>
  2991. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M4).
  2992. /// </summary>
  2993. public static string M150 {
  2994. get {
  2995. return ResourceManager.GetString("M150", resourceCulture);
  2996. }
  2997. }
  2998. /// <summary>
  2999. /// Looks up a localized string similar to History Teacher&apos;s Guide (M4).
  3000. /// </summary>
  3001. public static string M151 {
  3002. get {
  3003. return ResourceManager.GetString("M151", resourceCulture);
  3004. }
  3005. }
  3006. /// <summary>
  3007. /// Looks up a localized string similar to Information and Communication Technology Teacher&apos;s Guide (M4).
  3008. /// </summary>
  3009. public static string M152 {
  3010. get {
  3011. return ResourceManager.GetString("M152", resourceCulture);
  3012. }
  3013. }
  3014. /// <summary>
  3015. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M4).
  3016. /// </summary>
  3017. public static string M153 {
  3018. get {
  3019. return ResourceManager.GetString("M153", resourceCulture);
  3020. }
  3021. }
  3022. /// <summary>
  3023. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M4).
  3024. /// </summary>
  3025. public static string M154 {
  3026. get {
  3027. return ResourceManager.GetString("M154", resourceCulture);
  3028. }
  3029. }
  3030. /// <summary>
  3031. /// Looks up a localized string similar to Music and Music Teacher&apos;s Guide (M4).
  3032. /// </summary>
  3033. public static string M155 {
  3034. get {
  3035. return ResourceManager.GetString("M155", resourceCulture);
  3036. }
  3037. }
  3038. /// <summary>
  3039. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M4).
  3040. /// </summary>
  3041. public static string M156 {
  3042. get {
  3043. return ResourceManager.GetString("M156", resourceCulture);
  3044. }
  3045. }
  3046. /// <summary>
  3047. /// Looks up a localized string similar to Natural Science Teacher&apos;s Guide (M4).
  3048. /// </summary>
  3049. public static string M157 {
  3050. get {
  3051. return ResourceManager.GetString("M157", resourceCulture);
  3052. }
  3053. }
  3054. /// <summary>
  3055. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M4).
  3056. /// </summary>
  3057. public static string M158 {
  3058. get {
  3059. return ResourceManager.GetString("M158", resourceCulture);
  3060. }
  3061. }
  3062. /// <summary>
  3063. /// Looks up a localized string similar to Basic Vocational Teacher&apos;s Guide (M4).
  3064. /// </summary>
  3065. public static string M159 {
  3066. get {
  3067. return ResourceManager.GetString("M159", resourceCulture);
  3068. }
  3069. }
  3070. /// <summary>
  3071. /// Looks up a localized string similar to Civic Education Form (M2).
  3072. /// </summary>
  3073. public static string M16 {
  3074. get {
  3075. return ResourceManager.GetString("M16", resourceCulture);
  3076. }
  3077. }
  3078. /// <summary>
  3079. /// Looks up a localized string similar to Farmer&apos;s Guide (M5).
  3080. /// </summary>
  3081. public static string M160 {
  3082. get {
  3083. return ResourceManager.GetString("M160", resourceCulture);
  3084. }
  3085. }
  3086. /// <summary>
  3087. /// Looks up a localized string similar to Housing Teacher Training Guide (M5).
  3088. /// </summary>
  3089. public static string M161 {
  3090. get {
  3091. return ResourceManager.GetString("M161", resourceCulture);
  3092. }
  3093. }
  3094. /// <summary>
  3095. /// Looks up a localized string similar to Automotive Teacher&apos;s Guide (M5).
  3096. /// </summary>
  3097. public static string M162 {
  3098. get {
  3099. return ResourceManager.GetString("M162", resourceCulture);
  3100. }
  3101. }
  3102. /// <summary>
  3103. /// Looks up a localized string similar to Biology Teacher&apos;s Guide (M5).
  3104. /// </summary>
  3105. public static string M163 {
  3106. get {
  3107. return ResourceManager.GetString("M163", resourceCulture);
  3108. }
  3109. }
  3110. /// <summary>
  3111. /// Looks up a localized string similar to Business Teacher&apos;s Guide for Interdisciplinary Studies (M5).
  3112. /// </summary>
  3113. public static string M164 {
  3114. get {
  3115. return ResourceManager.GetString("M164", resourceCulture);
  3116. }
  3117. }
  3118. /// <summary>
  3119. /// Looks up a localized string similar to Business Teacher&apos;s Guide (M5).
  3120. /// </summary>
  3121. public static string M165 {
  3122. get {
  3123. return ResourceManager.GetString("M165", resourceCulture);
  3124. }
  3125. }
  3126. /// <summary>
  3127. /// Looks up a localized string similar to Chemistry Teacher&apos;s Guide (M5).
  3128. /// </summary>
  3129. public static string M166 {
  3130. get {
  3131. return ResourceManager.GetString("M166", resourceCulture);
  3132. }
  3133. }
  3134. /// <summary>
  3135. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M5).
  3136. /// </summary>
  3137. public static string M167 {
  3138. get {
  3139. return ResourceManager.GetString("M167", resourceCulture);
  3140. }
  3141. }
  3142. /// <summary>
  3143. /// Looks up a localized string similar to Electrician Teacher&apos;s Guide (M5).
  3144. /// </summary>
  3145. public static string M168 {
  3146. get {
  3147. return ResourceManager.GetString("M168", resourceCulture);
  3148. }
  3149. }
  3150. /// <summary>
  3151. /// Looks up a localized string similar to English Teacher&apos;s Guide (M5).
  3152. /// </summary>
  3153. public static string M169 {
  3154. get {
  3155. return ResourceManager.GetString("M169", resourceCulture);
  3156. }
  3157. }
  3158. /// <summary>
  3159. /// Looks up a localized string similar to Lao language study form (M2).
  3160. /// </summary>
  3161. public static string M17 {
  3162. get {
  3163. return ResourceManager.GetString("M17", resourceCulture);
  3164. }
  3165. }
  3166. /// <summary>
  3167. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M5).
  3168. /// </summary>
  3169. public static string M170 {
  3170. get {
  3171. return ResourceManager.GetString("M170", resourceCulture);
  3172. }
  3173. }
  3174. /// <summary>
  3175. /// Looks up a localized string similar to French Teacher&apos;s Guide (M5).
  3176. /// </summary>
  3177. public static string M171 {
  3178. get {
  3179. return ResourceManager.GetString("M171", resourceCulture);
  3180. }
  3181. }
  3182. /// <summary>
  3183. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M5).
  3184. /// </summary>
  3185. public static string M172 {
  3186. get {
  3187. return ResourceManager.GetString("M172", resourceCulture);
  3188. }
  3189. }
  3190. /// <summary>
  3191. /// Looks up a localized string similar to History Teacher&apos;s Guide (M5).
  3192. /// </summary>
  3193. public static string M173 {
  3194. get {
  3195. return ResourceManager.GetString("M173", resourceCulture);
  3196. }
  3197. }
  3198. /// <summary>
  3199. /// Looks up a localized string similar to Homework Teacher&apos;s Guide (M5).
  3200. /// </summary>
  3201. public static string M174 {
  3202. get {
  3203. return ResourceManager.GetString("M174", resourceCulture);
  3204. }
  3205. }
  3206. /// <summary>
  3207. /// Looks up a localized string similar to Teacher and Information and Communication Teacher&apos;s Guide.
  3208. /// </summary>
  3209. public static string M175 {
  3210. get {
  3211. return ResourceManager.GetString("M175", resourceCulture);
  3212. }
  3213. }
  3214. /// <summary>
  3215. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M5).
  3216. /// </summary>
  3217. public static string M176 {
  3218. get {
  3219. return ResourceManager.GetString("M176", resourceCulture);
  3220. }
  3221. }
  3222. /// <summary>
  3223. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M5).
  3224. /// </summary>
  3225. public static string M177 {
  3226. get {
  3227. return ResourceManager.GetString("M177", resourceCulture);
  3228. }
  3229. }
  3230. /// <summary>
  3231. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M5).
  3232. /// </summary>
  3233. public static string M178 {
  3234. get {
  3235. return ResourceManager.GetString("M178", resourceCulture);
  3236. }
  3237. }
  3238. /// <summary>
  3239. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M5).
  3240. /// </summary>
  3241. public static string M179 {
  3242. get {
  3243. return ResourceManager.GetString("M179", resourceCulture);
  3244. }
  3245. }
  3246. /// <summary>
  3247. /// Looks up a localized string similar to History Class (M2).
  3248. /// </summary>
  3249. public static string M18 {
  3250. get {
  3251. return ResourceManager.GetString("M18", resourceCulture);
  3252. }
  3253. }
  3254. /// <summary>
  3255. /// Looks up a localized string similar to Physics Teacher&apos;s Guide (M5).
  3256. /// </summary>
  3257. public static string M180 {
  3258. get {
  3259. return ResourceManager.GetString("M180", resourceCulture);
  3260. }
  3261. }
  3262. /// <summary>
  3263. /// Looks up a localized string similar to Farmer&apos;s Guide (M6).
  3264. /// </summary>
  3265. public static string M181 {
  3266. get {
  3267. return ResourceManager.GetString("M181", resourceCulture);
  3268. }
  3269. }
  3270. /// <summary>
  3271. /// Looks up a localized string similar to Housing Teacher Training Guide (M6).
  3272. /// </summary>
  3273. public static string M182 {
  3274. get {
  3275. return ResourceManager.GetString("M182", resourceCulture);
  3276. }
  3277. }
  3278. /// <summary>
  3279. /// Looks up a localized string similar to Automotive Teacher&apos;s Guide (M6).
  3280. /// </summary>
  3281. public static string M183 {
  3282. get {
  3283. return ResourceManager.GetString("M183", resourceCulture);
  3284. }
  3285. }
  3286. /// <summary>
  3287. /// Looks up a localized string similar to Art Teacher&apos;s Guide (M6).
  3288. /// </summary>
  3289. public static string M184 {
  3290. get {
  3291. return ResourceManager.GetString("M184", resourceCulture);
  3292. }
  3293. }
  3294. /// <summary>
  3295. /// Looks up a localized string similar to Biology Teacher&apos;s Guide (M6).
  3296. /// </summary>
  3297. public static string M185 {
  3298. get {
  3299. return ResourceManager.GetString("M185", resourceCulture);
  3300. }
  3301. }
  3302. /// <summary>
  3303. /// Looks up a localized string similar to Chemistry Teacher&apos;s Guide (M6).
  3304. /// </summary>
  3305. public static string M186 {
  3306. get {
  3307. return ResourceManager.GetString("M186", resourceCulture);
  3308. }
  3309. }
  3310. /// <summary>
  3311. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M6).
  3312. /// </summary>
  3313. public static string M187 {
  3314. get {
  3315. return ResourceManager.GetString("M187", resourceCulture);
  3316. }
  3317. }
  3318. /// <summary>
  3319. /// Looks up a localized string similar to Electrician Teacher&apos;s Guide (M6).
  3320. /// </summary>
  3321. public static string M188 {
  3322. get {
  3323. return ResourceManager.GetString("M188", resourceCulture);
  3324. }
  3325. }
  3326. /// <summary>
  3327. /// Looks up a localized string similar to English Teacher&apos;s Guide (M6).
  3328. /// </summary>
  3329. public static string M189 {
  3330. get {
  3331. return ResourceManager.GetString("M189", resourceCulture);
  3332. }
  3333. }
  3334. /// <summary>
  3335. /// Looks up a localized string similar to Literature Textbook (M2).
  3336. /// </summary>
  3337. public static string M19 {
  3338. get {
  3339. return ResourceManager.GetString("M19", resourceCulture);
  3340. }
  3341. }
  3342. /// <summary>
  3343. /// Looks up a localized string similar to French Teacher&apos;s Guide (M6).
  3344. /// </summary>
  3345. public static string M190 {
  3346. get {
  3347. return ResourceManager.GetString("M190", resourceCulture);
  3348. }
  3349. }
  3350. /// <summary>
  3351. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M6).
  3352. /// </summary>
  3353. public static string M191 {
  3354. get {
  3355. return ResourceManager.GetString("M191", resourceCulture);
  3356. }
  3357. }
  3358. /// <summary>
  3359. /// Looks up a localized string similar to History Teacher&apos;s Guide (M6).
  3360. /// </summary>
  3361. public static string M192 {
  3362. get {
  3363. return ResourceManager.GetString("M192", resourceCulture);
  3364. }
  3365. }
  3366. /// <summary>
  3367. /// Looks up a localized string similar to Homework Teacher&apos;s Guide (M6).
  3368. /// </summary>
  3369. public static string M193 {
  3370. get {
  3371. return ResourceManager.GetString("M193", resourceCulture);
  3372. }
  3373. }
  3374. /// <summary>
  3375. /// Looks up a localized string similar to Information and Communication Teacher&apos;s Guide (M6).
  3376. /// </summary>
  3377. public static string M194 {
  3378. get {
  3379. return ResourceManager.GetString("M194", resourceCulture);
  3380. }
  3381. }
  3382. /// <summary>
  3383. /// Looks up a localized string similar to Business Teacher&apos;s Guide for Interdisciplinary Studies (M6).
  3384. /// </summary>
  3385. public static string M195 {
  3386. get {
  3387. return ResourceManager.GetString("M195", resourceCulture);
  3388. }
  3389. }
  3390. /// <summary>
  3391. /// Looks up a localized string similar to Business Teacher&apos;s Guide (M6).
  3392. /// </summary>
  3393. public static string M196 {
  3394. get {
  3395. return ResourceManager.GetString("M196", resourceCulture);
  3396. }
  3397. }
  3398. /// <summary>
  3399. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M6).
  3400. /// </summary>
  3401. public static string M197 {
  3402. get {
  3403. return ResourceManager.GetString("M197", resourceCulture);
  3404. }
  3405. }
  3406. /// <summary>
  3407. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M6).
  3408. /// </summary>
  3409. public static string M198 {
  3410. get {
  3411. return ResourceManager.GetString("M198", resourceCulture);
  3412. }
  3413. }
  3414. /// <summary>
  3415. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M6).
  3416. /// </summary>
  3417. public static string M199 {
  3418. get {
  3419. return ResourceManager.GetString("M199", resourceCulture);
  3420. }
  3421. }
  3422. /// <summary>
  3423. /// Looks up a localized string similar to High School education Textbook.
  3424. /// </summary>
  3425. public static string M2 {
  3426. get {
  3427. return ResourceManager.GetString("M2", resourceCulture);
  3428. }
  3429. }
  3430. /// <summary>
  3431. /// Looks up a localized string similar to Information and Education Model (M2).
  3432. /// </summary>
  3433. public static string M20 {
  3434. get {
  3435. return ResourceManager.GetString("M20", resourceCulture);
  3436. }
  3437. }
  3438. /// <summary>
  3439. /// Looks up a localized string similar to Methodology Teacher&apos;s Guide (M6).
  3440. /// </summary>
  3441. public static string M200 {
  3442. get {
  3443. return ResourceManager.GetString("M200", resourceCulture);
  3444. }
  3445. }
  3446. /// <summary>
  3447. /// Looks up a localized string similar to Music Art Teacher&apos;s Guide (M6).
  3448. /// </summary>
  3449. public static string M201 {
  3450. get {
  3451. return ResourceManager.GetString("M201", resourceCulture);
  3452. }
  3453. }
  3454. /// <summary>
  3455. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M6).
  3456. /// </summary>
  3457. public static string M202 {
  3458. get {
  3459. return ResourceManager.GetString("M202", resourceCulture);
  3460. }
  3461. }
  3462. /// <summary>
  3463. /// Looks up a localized string similar to Physics Teacher&apos;s Guide (M6).
  3464. /// </summary>
  3465. public static string M203 {
  3466. get {
  3467. return ResourceManager.GetString("M203", resourceCulture);
  3468. }
  3469. }
  3470. /// <summary>
  3471. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (M7).
  3472. /// </summary>
  3473. public static string M204 {
  3474. get {
  3475. return ResourceManager.GetString("M204", resourceCulture);
  3476. }
  3477. }
  3478. /// <summary>
  3479. /// Looks up a localized string similar to Geography Teacher&apos;s Guide (M7).
  3480. /// </summary>
  3481. public static string M205 {
  3482. get {
  3483. return ResourceManager.GetString("M205", resourceCulture);
  3484. }
  3485. }
  3486. /// <summary>
  3487. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide (M7).
  3488. /// </summary>
  3489. public static string M206 {
  3490. get {
  3491. return ResourceManager.GetString("M206", resourceCulture);
  3492. }
  3493. }
  3494. /// <summary>
  3495. /// Looks up a localized string similar to French Teacher&apos;s Guide (M7).
  3496. /// </summary>
  3497. public static string M207 {
  3498. get {
  3499. return ResourceManager.GetString("M207", resourceCulture);
  3500. }
  3501. }
  3502. /// <summary>
  3503. /// Looks up a localized string similar to Information and Communication Teacher&apos;s Guide (M7).
  3504. /// </summary>
  3505. public static string M208 {
  3506. get {
  3507. return ResourceManager.GetString("M208", resourceCulture);
  3508. }
  3509. }
  3510. /// <summary>
  3511. /// Looks up a localized string similar to Literary Teacher&apos;s Guide (M7).
  3512. /// </summary>
  3513. public static string M209 {
  3514. get {
  3515. return ResourceManager.GetString("M209", resourceCulture);
  3516. }
  3517. }
  3518. /// <summary>
  3519. /// Looks up a localized string similar to Mathematics Textbook (M2).
  3520. /// </summary>
  3521. public static string M21 {
  3522. get {
  3523. return ResourceManager.GetString("M21", resourceCulture);
  3524. }
  3525. }
  3526. /// <summary>
  3527. /// Looks up a localized string similar to Biology Teacher&apos;s Guide (M7).
  3528. /// </summary>
  3529. public static string M210 {
  3530. get {
  3531. return ResourceManager.GetString("M210", resourceCulture);
  3532. }
  3533. }
  3534. /// <summary>
  3535. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide (M7).
  3536. /// </summary>
  3537. public static string M211 {
  3538. get {
  3539. return ResourceManager.GetString("M211", resourceCulture);
  3540. }
  3541. }
  3542. /// <summary>
  3543. /// Looks up a localized string similar to Chemistry Teacher&apos;s Guide (M7).
  3544. /// </summary>
  3545. public static string M212 {
  3546. get {
  3547. return ResourceManager.GetString("M212", resourceCulture);
  3548. }
  3549. }
  3550. /// <summary>
  3551. /// Looks up a localized string similar to Physics Teacher&apos;s Guide (M7).
  3552. /// </summary>
  3553. public static string M213 {
  3554. get {
  3555. return ResourceManager.GetString("M213", resourceCulture);
  3556. }
  3557. }
  3558. /// <summary>
  3559. /// Looks up a localized string similar to English Teacher&apos;s Guide (M7).
  3560. /// </summary>
  3561. public static string M214 {
  3562. get {
  3563. return ResourceManager.GetString("M214", resourceCulture);
  3564. }
  3565. }
  3566. /// <summary>
  3567. /// Looks up a localized string similar to Citizen Education Teacher&apos;s Guide (M7).
  3568. /// </summary>
  3569. public static string M215 {
  3570. get {
  3571. return ResourceManager.GetString("M215", resourceCulture);
  3572. }
  3573. }
  3574. /// <summary>
  3575. /// Looks up a localized string similar to History Teacher&apos;s Guide (M7).
  3576. /// </summary>
  3577. public static string M216 {
  3578. get {
  3579. return ResourceManager.GetString("M216", resourceCulture);
  3580. }
  3581. }
  3582. /// <summary>
  3583. /// Looks up a localized string similar to Korean Literature Teacher&apos;s Guide (M7).
  3584. /// </summary>
  3585. public static string M217 {
  3586. get {
  3587. return ResourceManager.GetString("M217", resourceCulture);
  3588. }
  3589. }
  3590. /// <summary>
  3591. /// Looks up a localized string similar to Natural Science Textbook (M2).
  3592. /// </summary>
  3593. public static string M22 {
  3594. get {
  3595. return ResourceManager.GetString("M22", resourceCulture);
  3596. }
  3597. }
  3598. /// <summary>
  3599. /// Looks up a localized string similar to Geography (M2).
  3600. /// </summary>
  3601. public static string M23 {
  3602. get {
  3603. return ResourceManager.GetString("M23", resourceCulture);
  3604. }
  3605. }
  3606. /// <summary>
  3607. /// Looks up a localized string similar to Basic Vocational Training (M2).
  3608. /// </summary>
  3609. public static string M24 {
  3610. get {
  3611. return ResourceManager.GetString("M24", resourceCulture);
  3612. }
  3613. }
  3614. /// <summary>
  3615. /// Looks up a localized string similar to English Lessons (M2).
  3616. /// </summary>
  3617. public static string M25 {
  3618. get {
  3619. return ResourceManager.GetString("M25", resourceCulture);
  3620. }
  3621. }
  3622. /// <summary>
  3623. /// Looks up a localized string similar to Japanese Language Study (M2).
  3624. /// </summary>
  3625. public static string M26 {
  3626. get {
  3627. return ResourceManager.GetString("M26", resourceCulture);
  3628. }
  3629. }
  3630. /// <summary>
  3631. /// Looks up a localized string similar to Basic Vocational Form (M3).
  3632. /// </summary>
  3633. public static string M27 {
  3634. get {
  3635. return ResourceManager.GetString("M27", resourceCulture);
  3636. }
  3637. }
  3638. /// <summary>
  3639. /// Looks up a localized string similar to Civic Education Form (M3).
  3640. /// </summary>
  3641. public static string M28 {
  3642. get {
  3643. return ResourceManager.GetString("M28", resourceCulture);
  3644. }
  3645. }
  3646. /// <summary>
  3647. /// Looks up a localized string similar to English Class (M3).
  3648. /// </summary>
  3649. public static string M29 {
  3650. get {
  3651. return ResourceManager.GetString("M29", resourceCulture);
  3652. }
  3653. }
  3654. /// <summary>
  3655. /// Looks up a localized string similar to Study materials.
  3656. /// </summary>
  3657. public static string M3 {
  3658. get {
  3659. return ResourceManager.GetString("M3", resourceCulture);
  3660. }
  3661. }
  3662. /// <summary>
  3663. /// Looks up a localized string similar to French lessons (M3).
  3664. /// </summary>
  3665. public static string M30 {
  3666. get {
  3667. return ResourceManager.GetString("M30", resourceCulture);
  3668. }
  3669. }
  3670. /// <summary>
  3671. /// Looks up a localized string similar to Geography Textbook (M3).
  3672. /// </summary>
  3673. public static string M31 {
  3674. get {
  3675. return ResourceManager.GetString("M31", resourceCulture);
  3676. }
  3677. }
  3678. /// <summary>
  3679. /// Looks up a localized string similar to History Class (M3).
  3680. /// </summary>
  3681. public static string M32 {
  3682. get {
  3683. return ResourceManager.GetString("M32", resourceCulture);
  3684. }
  3685. }
  3686. /// <summary>
  3687. /// Looks up a localized string similar to Information and Communication Model (M3).
  3688. /// </summary>
  3689. public static string M33 {
  3690. get {
  3691. return ResourceManager.GetString("M33", resourceCulture);
  3692. }
  3693. }
  3694. /// <summary>
  3695. /// Looks up a localized string similar to Lao language study form (M3).
  3696. /// </summary>
  3697. public static string M34 {
  3698. get {
  3699. return ResourceManager.GetString("M34", resourceCulture);
  3700. }
  3701. }
  3702. /// <summary>
  3703. /// Looks up a localized string similar to Literature Textbook (M3).
  3704. /// </summary>
  3705. public static string M35 {
  3706. get {
  3707. return ResourceManager.GetString("M35", resourceCulture);
  3708. }
  3709. }
  3710. /// <summary>
  3711. /// Looks up a localized string similar to Mathematics Textbook (M3).
  3712. /// </summary>
  3713. public static string M36 {
  3714. get {
  3715. return ResourceManager.GetString("M36", resourceCulture);
  3716. }
  3717. }
  3718. /// <summary>
  3719. /// Looks up a localized string similar to Natural Science Textbook (M3).
  3720. /// </summary>
  3721. public static string M37 {
  3722. get {
  3723. return ResourceManager.GetString("M37", resourceCulture);
  3724. }
  3725. }
  3726. /// <summary>
  3727. /// Looks up a localized string similar to Japanese Language Study (M3).
  3728. /// </summary>
  3729. public static string M38 {
  3730. get {
  3731. return ResourceManager.GetString("M38", resourceCulture);
  3732. }
  3733. }
  3734. /// <summary>
  3735. /// Looks up a localized string similar to Civic Education Form (M4).
  3736. /// </summary>
  3737. public static string M39 {
  3738. get {
  3739. return ResourceManager.GetString("M39", resourceCulture);
  3740. }
  3741. }
  3742. /// <summary>
  3743. /// Looks up a localized string similar to French lessons (M1).
  3744. /// </summary>
  3745. public static string M4 {
  3746. get {
  3747. return ResourceManager.GetString("M4", resourceCulture);
  3748. }
  3749. }
  3750. /// <summary>
  3751. /// Looks up a localized string similar to French lessons (M4).
  3752. /// </summary>
  3753. public static string M40 {
  3754. get {
  3755. return ResourceManager.GetString("M40", resourceCulture);
  3756. }
  3757. }
  3758. /// <summary>
  3759. /// Looks up a localized string similar to Geography Textbook (M4).
  3760. /// </summary>
  3761. public static string M41 {
  3762. get {
  3763. return ResourceManager.GetString("M41", resourceCulture);
  3764. }
  3765. }
  3766. /// <summary>
  3767. /// Looks up a localized string similar to History Class (M4).
  3768. /// </summary>
  3769. public static string M42 {
  3770. get {
  3771. return ResourceManager.GetString("M42", resourceCulture);
  3772. }
  3773. }
  3774. /// <summary>
  3775. /// Looks up a localized string similar to Lao language study form (M4).
  3776. /// </summary>
  3777. public static string M43 {
  3778. get {
  3779. return ResourceManager.GetString("M43", resourceCulture);
  3780. }
  3781. }
  3782. /// <summary>
  3783. /// Looks up a localized string similar to Information and Communication Model (M4).
  3784. /// </summary>
  3785. public static string M44 {
  3786. get {
  3787. return ResourceManager.GetString("M44", resourceCulture);
  3788. }
  3789. }
  3790. /// <summary>
  3791. /// Looks up a localized string similar to Literature Textbook (M4).
  3792. /// </summary>
  3793. public static string M45 {
  3794. get {
  3795. return ResourceManager.GetString("M45", resourceCulture);
  3796. }
  3797. }
  3798. /// <summary>
  3799. /// Looks up a localized string similar to Mathematics Textbook (M4).
  3800. /// </summary>
  3801. public static string M46 {
  3802. get {
  3803. return ResourceManager.GetString("M46", resourceCulture);
  3804. }
  3805. }
  3806. /// <summary>
  3807. /// Looks up a localized string similar to Natural Science Textbook (M4).
  3808. /// </summary>
  3809. public static string M47 {
  3810. get {
  3811. return ResourceManager.GetString("M47", resourceCulture);
  3812. }
  3813. }
  3814. /// <summary>
  3815. /// Looks up a localized string similar to Basic Vocational Training (M4).
  3816. /// </summary>
  3817. public static string M48 {
  3818. get {
  3819. return ResourceManager.GetString("M48", resourceCulture);
  3820. }
  3821. }
  3822. /// <summary>
  3823. /// Looks up a localized string similar to English Lessons (M4).
  3824. /// </summary>
  3825. public static string M49 {
  3826. get {
  3827. return ResourceManager.GetString("M49", resourceCulture);
  3828. }
  3829. }
  3830. /// <summary>
  3831. /// Looks up a localized string similar to Civic Education Form (M1).
  3832. /// </summary>
  3833. public static string M5 {
  3834. get {
  3835. return ResourceManager.GetString("M5", resourceCulture);
  3836. }
  3837. }
  3838. /// <summary>
  3839. /// Looks up a localized string similar to Agricultural study form (M5).
  3840. /// </summary>
  3841. public static string M50 {
  3842. get {
  3843. return ResourceManager.GetString("M50", resourceCulture);
  3844. }
  3845. }
  3846. /// <summary>
  3847. /// Looks up a localized string similar to Housing construction model (M5).
  3848. /// </summary>
  3849. public static string M51 {
  3850. get {
  3851. return ResourceManager.GetString("M51", resourceCulture);
  3852. }
  3853. }
  3854. /// <summary>
  3855. /// Looks up a localized string similar to Automotive Technician (M5).
  3856. /// </summary>
  3857. public static string M52 {
  3858. get {
  3859. return ResourceManager.GetString("M52", resourceCulture);
  3860. }
  3861. }
  3862. /// <summary>
  3863. /// Looks up a localized string similar to Biology Textbook (M5).
  3864. /// </summary>
  3865. public static string M53 {
  3866. get {
  3867. return ResourceManager.GetString("M53", resourceCulture);
  3868. }
  3869. }
  3870. /// <summary>
  3871. /// Looks up a localized string similar to Combined study form with 6 majors (M5).
  3872. /// </summary>
  3873. public static string M54 {
  3874. get {
  3875. return ResourceManager.GetString("M54", resourceCulture);
  3876. }
  3877. }
  3878. /// <summary>
  3879. /// Looks up a localized string similar to Business Class (M5).
  3880. /// </summary>
  3881. public static string M55 {
  3882. get {
  3883. return ResourceManager.GetString("M55", resourceCulture);
  3884. }
  3885. }
  3886. /// <summary>
  3887. /// Looks up a localized string similar to Chemistry class (M5).
  3888. /// </summary>
  3889. public static string M56 {
  3890. get {
  3891. return ResourceManager.GetString("M56", resourceCulture);
  3892. }
  3893. }
  3894. /// <summary>
  3895. /// Looks up a localized string similar to Civic Education Form (M5).
  3896. /// </summary>
  3897. public static string M57 {
  3898. get {
  3899. return ResourceManager.GetString("M57", resourceCulture);
  3900. }
  3901. }
  3902. /// <summary>
  3903. /// Looks up a localized string similar to Electrician (M5).
  3904. /// </summary>
  3905. public static string M58 {
  3906. get {
  3907. return ResourceManager.GetString("M58", resourceCulture);
  3908. }
  3909. }
  3910. /// <summary>
  3911. /// Looks up a localized string similar to English Lessons (M5).
  3912. /// </summary>
  3913. public static string M59 {
  3914. get {
  3915. return ResourceManager.GetString("M59", resourceCulture);
  3916. }
  3917. }
  3918. /// <summary>
  3919. /// Looks up a localized string similar to Lao language study form (M1).
  3920. /// </summary>
  3921. public static string M6 {
  3922. get {
  3923. return ResourceManager.GetString("M6", resourceCulture);
  3924. }
  3925. }
  3926. /// <summary>
  3927. /// Looks up a localized string similar to French lessons (M5).
  3928. /// </summary>
  3929. public static string M60 {
  3930. get {
  3931. return ResourceManager.GetString("M60", resourceCulture);
  3932. }
  3933. }
  3934. /// <summary>
  3935. /// Looks up a localized string similar to Geography Form (M5).
  3936. /// </summary>
  3937. public static string M61 {
  3938. get {
  3939. return ResourceManager.GetString("M61", resourceCulture);
  3940. }
  3941. }
  3942. /// <summary>
  3943. /// Looks up a localized string similar to History Class (M5).
  3944. /// </summary>
  3945. public static string M62 {
  3946. get {
  3947. return ResourceManager.GetString("M62", resourceCulture);
  3948. }
  3949. }
  3950. /// <summary>
  3951. /// Looks up a localized string similar to Homework (M5).
  3952. /// </summary>
  3953. public static string M63 {
  3954. get {
  3955. return ResourceManager.GetString("M63", resourceCulture);
  3956. }
  3957. }
  3958. /// <summary>
  3959. /// Looks up a localized string similar to Information and Communication Model (M5).
  3960. /// </summary>
  3961. public static string M64 {
  3962. get {
  3963. return ResourceManager.GetString("M64", resourceCulture);
  3964. }
  3965. }
  3966. /// <summary>
  3967. /// Looks up a localized string similar to Lao language study form (M5).
  3968. /// </summary>
  3969. public static string M65 {
  3970. get {
  3971. return ResourceManager.GetString("M65", resourceCulture);
  3972. }
  3973. }
  3974. /// <summary>
  3975. /// Looks up a localized string similar to Literature Textbook (M5).
  3976. /// </summary>
  3977. public static string M66 {
  3978. get {
  3979. return ResourceManager.GetString("M66", resourceCulture);
  3980. }
  3981. }
  3982. /// <summary>
  3983. /// Looks up a localized string similar to Mathematics Textbook (M5).
  3984. /// </summary>
  3985. public static string M67 {
  3986. get {
  3987. return ResourceManager.GetString("M67", resourceCulture);
  3988. }
  3989. }
  3990. /// <summary>
  3991. /// Looks up a localized string similar to Metallurgy (M5).
  3992. /// </summary>
  3993. public static string M68 {
  3994. get {
  3995. return ResourceManager.GetString("M68", resourceCulture);
  3996. }
  3997. }
  3998. /// <summary>
  3999. /// Looks up a localized string similar to Physics Textbook (M5).
  4000. /// </summary>
  4001. public static string M69 {
  4002. get {
  4003. return ResourceManager.GetString("M69", resourceCulture);
  4004. }
  4005. }
  4006. /// <summary>
  4007. /// Looks up a localized string similar to History Textbook (M1).
  4008. /// </summary>
  4009. public static string M7 {
  4010. get {
  4011. return ResourceManager.GetString("M7", resourceCulture);
  4012. }
  4013. }
  4014. /// <summary>
  4015. /// Looks up a localized string similar to Agricultural study form (M6).
  4016. /// </summary>
  4017. public static string M70 {
  4018. get {
  4019. return ResourceManager.GetString("M70", resourceCulture);
  4020. }
  4021. }
  4022. /// <summary>
  4023. /// Looks up a localized string similar to Housing construction model (M6).
  4024. /// </summary>
  4025. public static string M71 {
  4026. get {
  4027. return ResourceManager.GetString("M71", resourceCulture);
  4028. }
  4029. }
  4030. /// <summary>
  4031. /// Looks up a localized string similar to Automotive Technician (M6).
  4032. /// </summary>
  4033. public static string M72 {
  4034. get {
  4035. return ResourceManager.GetString("M72", resourceCulture);
  4036. }
  4037. }
  4038. /// <summary>
  4039. /// Looks up a localized string similar to Biology Textbook (M6).
  4040. /// </summary>
  4041. public static string M73 {
  4042. get {
  4043. return ResourceManager.GetString("M73", resourceCulture);
  4044. }
  4045. }
  4046. /// <summary>
  4047. /// Looks up a localized string similar to Chemistry class (M6).
  4048. /// </summary>
  4049. public static string M74 {
  4050. get {
  4051. return ResourceManager.GetString("M74", resourceCulture);
  4052. }
  4053. }
  4054. /// <summary>
  4055. /// Looks up a localized string similar to Civic Education Form (M6).
  4056. /// </summary>
  4057. public static string M75 {
  4058. get {
  4059. return ResourceManager.GetString("M75", resourceCulture);
  4060. }
  4061. }
  4062. /// <summary>
  4063. /// Looks up a localized string similar to Electrician (M6).
  4064. /// </summary>
  4065. public static string M76 {
  4066. get {
  4067. return ResourceManager.GetString("M76", resourceCulture);
  4068. }
  4069. }
  4070. /// <summary>
  4071. /// Looks up a localized string similar to English Class (M6).
  4072. /// </summary>
  4073. public static string M77 {
  4074. get {
  4075. return ResourceManager.GetString("M77", resourceCulture);
  4076. }
  4077. }
  4078. /// <summary>
  4079. /// Looks up a localized string similar to French lessons (M6).
  4080. /// </summary>
  4081. public static string M78 {
  4082. get {
  4083. return ResourceManager.GetString("M78", resourceCulture);
  4084. }
  4085. }
  4086. /// <summary>
  4087. /// Looks up a localized string similar to Geography Textbook (M6).
  4088. /// </summary>
  4089. public static string M79 {
  4090. get {
  4091. return ResourceManager.GetString("M79", resourceCulture);
  4092. }
  4093. }
  4094. /// <summary>
  4095. /// Looks up a localized string similar to Literature Textbook (M1).
  4096. /// </summary>
  4097. public static string M8 {
  4098. get {
  4099. return ResourceManager.GetString("M8", resourceCulture);
  4100. }
  4101. }
  4102. /// <summary>
  4103. /// Looks up a localized string similar to History Class (M6).
  4104. /// </summary>
  4105. public static string M80 {
  4106. get {
  4107. return ResourceManager.GetString("M80", resourceCulture);
  4108. }
  4109. }
  4110. /// <summary>
  4111. /// Looks up a localized string similar to Homework (M6).
  4112. /// </summary>
  4113. public static string M81 {
  4114. get {
  4115. return ResourceManager.GetString("M81", resourceCulture);
  4116. }
  4117. }
  4118. /// <summary>
  4119. /// Looks up a localized string similar to Information and Communication Technology (M6).
  4120. /// </summary>
  4121. public static string M82 {
  4122. get {
  4123. return ResourceManager.GetString("M82", resourceCulture);
  4124. }
  4125. }
  4126. /// <summary>
  4127. /// Looks up a localized string similar to Business model for combination with 6 majors (M6).
  4128. /// </summary>
  4129. public static string M83 {
  4130. get {
  4131. return ResourceManager.GetString("M83", resourceCulture);
  4132. }
  4133. }
  4134. /// <summary>
  4135. /// Looks up a localized string similar to Business Class (M6).
  4136. /// </summary>
  4137. public static string M84 {
  4138. get {
  4139. return ResourceManager.GetString("M84", resourceCulture);
  4140. }
  4141. }
  4142. /// <summary>
  4143. /// Looks up a localized string similar to Lao language study form (M6).
  4144. /// </summary>
  4145. public static string M85 {
  4146. get {
  4147. return ResourceManager.GetString("M85", resourceCulture);
  4148. }
  4149. }
  4150. /// <summary>
  4151. /// Looks up a localized string similar to Literature Textbook (M6).
  4152. /// </summary>
  4153. public static string M86 {
  4154. get {
  4155. return ResourceManager.GetString("M86", resourceCulture);
  4156. }
  4157. }
  4158. /// <summary>
  4159. /// Looks up a localized string similar to Mathematics Textbook (M6).
  4160. /// </summary>
  4161. public static string M87 {
  4162. get {
  4163. return ResourceManager.GetString("M87", resourceCulture);
  4164. }
  4165. }
  4166. /// <summary>
  4167. /// Looks up a localized string similar to Metallurgy Method (M6).
  4168. /// </summary>
  4169. public static string M88 {
  4170. get {
  4171. return ResourceManager.GetString("M88", resourceCulture);
  4172. }
  4173. }
  4174. /// <summary>
  4175. /// Looks up a localized string similar to Physics Textbook (M6).
  4176. /// </summary>
  4177. public static string M89 {
  4178. get {
  4179. return ResourceManager.GetString("M89", resourceCulture);
  4180. }
  4181. }
  4182. /// <summary>
  4183. /// Looks up a localized string similar to Mathematics Textbook (M1).
  4184. /// </summary>
  4185. public static string M9 {
  4186. get {
  4187. return ResourceManager.GetString("M9", resourceCulture);
  4188. }
  4189. }
  4190. /// <summary>
  4191. /// Looks up a localized string similar to Lao language study form (M7).
  4192. /// </summary>
  4193. public static string M90 {
  4194. get {
  4195. return ResourceManager.GetString("M90", resourceCulture);
  4196. }
  4197. }
  4198. /// <summary>
  4199. /// Looks up a localized string similar to Geography Form (M7).
  4200. /// </summary>
  4201. public static string M91 {
  4202. get {
  4203. return ResourceManager.GetString("M91", resourceCulture);
  4204. }
  4205. }
  4206. /// <summary>
  4207. /// Looks up a localized string similar to French lessons (M7).
  4208. /// </summary>
  4209. public static string M92 {
  4210. get {
  4211. return ResourceManager.GetString("M92", resourceCulture);
  4212. }
  4213. }
  4214. /// <summary>
  4215. /// Looks up a localized string similar to Information and Communication Technology (M7).
  4216. /// </summary>
  4217. public static string M93 {
  4218. get {
  4219. return ResourceManager.GetString("M93", resourceCulture);
  4220. }
  4221. }
  4222. /// <summary>
  4223. /// Looks up a localized string similar to Literature Textbook (M7).
  4224. /// </summary>
  4225. public static string M94 {
  4226. get {
  4227. return ResourceManager.GetString("M94", resourceCulture);
  4228. }
  4229. }
  4230. /// <summary>
  4231. /// Looks up a localized string similar to Biology Textbook (M7).
  4232. /// </summary>
  4233. public static string M95 {
  4234. get {
  4235. return ResourceManager.GetString("M95", resourceCulture);
  4236. }
  4237. }
  4238. /// <summary>
  4239. /// Looks up a localized string similar to Mathematics Textbook (M7).
  4240. /// </summary>
  4241. public static string M96 {
  4242. get {
  4243. return ResourceManager.GetString("M96", resourceCulture);
  4244. }
  4245. }
  4246. /// <summary>
  4247. /// Looks up a localized string similar to Chemistry class (M7).
  4248. /// </summary>
  4249. public static string M97 {
  4250. get {
  4251. return ResourceManager.GetString("M97", resourceCulture);
  4252. }
  4253. }
  4254. /// <summary>
  4255. /// Looks up a localized string similar to Physics Textbook (M7).
  4256. /// </summary>
  4257. public static string M98 {
  4258. get {
  4259. return ResourceManager.GetString("M98", resourceCulture);
  4260. }
  4261. }
  4262. /// <summary>
  4263. /// Looks up a localized string similar to English lesson plan (M7).
  4264. /// </summary>
  4265. public static string M99 {
  4266. get {
  4267. return ResourceManager.GetString("M99", resourceCulture);
  4268. }
  4269. }
  4270. /// <summary>
  4271. /// Looks up a localized string similar to MEDU will make you crazy with a tiny vocabulary.
  4272. /// </summary>
  4273. public static string MakeYouCrazyWithOneWord_1 {
  4274. get {
  4275. return ResourceManager.GetString("MakeYouCrazyWithOneWord_1", resourceCulture);
  4276. }
  4277. }
  4278. /// <summary>
  4279. /// Looks up a localized string similar to MEDU will help you make your dreams come true.
  4280. /// </summary>
  4281. public static string MakeYouCrazyWithOneWord_2 {
  4282. get {
  4283. return ResourceManager.GetString("MakeYouCrazyWithOneWord_2", resourceCulture);
  4284. }
  4285. }
  4286. /// <summary>
  4287. /// Looks up a localized string similar to Do you want to be good at English?.
  4288. /// </summary>
  4289. public static string MakeYouCrazyWithOneWord_3 {
  4290. get {
  4291. return ResourceManager.GetString("MakeYouCrazyWithOneWord_3", resourceCulture);
  4292. }
  4293. }
  4294. /// <summary>
  4295. /// Looks up a localized string similar to Male.
  4296. /// </summary>
  4297. public static string male {
  4298. get {
  4299. return ResourceManager.GetString("male", resourceCulture);
  4300. }
  4301. }
  4302. /// <summary>
  4303. /// Looks up a localized string similar to It&apos;s not just you, more than 80% of English learners often have this problem. That is: Can read and understand well, but cannot listen or speak. Many students and working people have spent a lot of time and money pursuing English courses at the center, or buying English courses from foreign programs but still cannot improve their ability. your English Listening skills. And the common situation is that many students have given up halfway due to lack of motivation. Some of you even feel bad, disappointed, and [rest of string was truncated]&quot;;.
  4304. /// </summary>
  4305. public static string ManyPeopleHasTroublesLikeYou {
  4306. get {
  4307. return ResourceManager.GetString("ManyPeopleHasTroublesLikeYou", resourceCulture);
  4308. }
  4309. }
  4310. /// <summary>
  4311. /// Looks up a localized string similar to English grammar has a total of 165 big and small topics, and MEDU will help you master all that grammar knowledge in just 165 days, less than 6 months..
  4312. /// </summary>
  4313. public static string ManySubjectsHelpYouUnderstandAtAll {
  4314. get {
  4315. return ResourceManager.GetString("ManySubjectsHelpYouUnderstandAtAll", resourceCulture);
  4316. }
  4317. }
  4318. /// <summary>
  4319. /// Looks up a localized string similar to member.
  4320. /// </summary>
  4321. public static string Members {
  4322. get {
  4323. return ResourceManager.GetString("Members", resourceCulture);
  4324. }
  4325. }
  4326. /// <summary>
  4327. /// Looks up a localized string similar to menu.
  4328. /// </summary>
  4329. public static string menu {
  4330. get {
  4331. return ResourceManager.GetString("menu", resourceCulture);
  4332. }
  4333. }
  4334. /// <summary>
  4335. /// Looks up a localized string similar to MiniGame.
  4336. /// </summary>
  4337. public static string MiniGame {
  4338. get {
  4339. return ResourceManager.GetString("MiniGame", resourceCulture);
  4340. }
  4341. }
  4342. /// <summary>
  4343. /// Looks up a localized string similar to You need to achieve a minimum test result of 80% to pass the new lesson..
  4344. /// </summary>
  4345. public static string MinResultToPass {
  4346. get {
  4347. return ResourceManager.GetString("MinResultToPass", resourceCulture);
  4348. }
  4349. }
  4350. /// <summary>
  4351. /// Looks up a localized string similar to Minutes.
  4352. /// </summary>
  4353. public static string Minutes {
  4354. get {
  4355. return ResourceManager.GetString("Minutes", resourceCulture);
  4356. }
  4357. }
  4358. /// <summary>
  4359. /// Looks up a localized string similar to Some people have the opportunity to find better and better jobs, to increase their income..
  4360. /// </summary>
  4361. public static string MoreChancesToImproveYourIncome {
  4362. get {
  4363. return ResourceManager.GetString("MoreChancesToImproveYourIncome", resourceCulture);
  4364. }
  4365. }
  4366. /// <summary>
  4367. /// Looks up a localized string similar to My information.
  4368. /// </summary>
  4369. public static string MyInformation {
  4370. get {
  4371. return ResourceManager.GetString("MyInformation", resourceCulture);
  4372. }
  4373. }
  4374. /// <summary>
  4375. /// Looks up a localized string similar to First and last name.
  4376. /// </summary>
  4377. public static string Name {
  4378. get {
  4379. return ResourceManager.GetString("Name", resourceCulture);
  4380. }
  4381. }
  4382. /// <summary>
  4383. /// Looks up a localized string similar to Communicate in English using a natural approach.
  4384. /// </summary>
  4385. public static string NaturalLearning {
  4386. get {
  4387. return ResourceManager.GetString("NaturalLearning", resourceCulture);
  4388. }
  4389. }
  4390. /// <summary>
  4391. /// Looks up a localized string similar to Your TDEE index:.
  4392. /// </summary>
  4393. public static string needToEat {
  4394. get {
  4395. return ResourceManager.GetString("needToEat", resourceCulture);
  4396. }
  4397. }
  4398. /// <summary>
  4399. /// Looks up a localized string similar to Need to reduce.
  4400. /// </summary>
  4401. public static string needToLoose {
  4402. get {
  4403. return ResourceManager.GetString("needToLoose", resourceCulture);
  4404. }
  4405. }
  4406. /// <summary>
  4407. /// Looks up a localized string similar to New password.
  4408. /// </summary>
  4409. public static string NewPassword {
  4410. get {
  4411. return ResourceManager.GetString("NewPassword", resourceCulture);
  4412. }
  4413. }
  4414. /// <summary>
  4415. /// Looks up a localized string similar to Next.
  4416. /// </summary>
  4417. public static string Next {
  4418. get {
  4419. return ResourceManager.GetString("Next", resourceCulture);
  4420. }
  4421. }
  4422. /// <summary>
  4423. /// Looks up a localized string similar to Normal.
  4424. /// </summary>
  4425. public static string normal {
  4426. get {
  4427. return ResourceManager.GetString("normal", resourceCulture);
  4428. }
  4429. }
  4430. /// <summary>
  4431. /// Looks up a localized string similar to Right answer.
  4432. /// </summary>
  4433. public static string NumberOfRightAnswer {
  4434. get {
  4435. return ResourceManager.GetString("NumberOfRightAnswer", resourceCulture);
  4436. }
  4437. }
  4438. /// <summary>
  4439. /// Looks up a localized string similar to Wrong answer.
  4440. /// </summary>
  4441. public static string NumberOfWrongAnswer {
  4442. get {
  4443. return ResourceManager.GetString("NumberOfWrongAnswer", resourceCulture);
  4444. }
  4445. }
  4446. /// <summary>
  4447. /// Looks up a localized string similar to Nutritional information.
  4448. /// </summary>
  4449. public static string nutrition {
  4450. get {
  4451. return ResourceManager.GetString("nutrition", resourceCulture);
  4452. }
  4453. }
  4454. /// <summary>
  4455. /// Looks up a localized string similar to Old password.
  4456. /// </summary>
  4457. public static string OldPassword {
  4458. get {
  4459. return ResourceManager.GetString("OldPassword", resourceCulture);
  4460. }
  4461. }
  4462. /// <summary>
  4463. /// Looks up a localized string similar to Oops ..!! Your question is incorrect. But don&apos;t worry, you&apos;re doing great! Next time, join us for an exciting game and test your skills! It&apos;s a fun way to learn and win rewards..
  4464. /// </summary>
  4465. public static string Oops {
  4466. get {
  4467. return ResourceManager.GetString("Oops", resourceCulture);
  4468. }
  4469. }
  4470. /// <summary>
  4471. /// Looks up a localized string similar to Other kindergarten books.
  4472. /// </summary>
  4473. public static string OtherKindergarteBooks {
  4474. get {
  4475. return ResourceManager.GetString("OtherKindergarteBooks", resourceCulture);
  4476. }
  4477. }
  4478. /// <summary>
  4479. /// Looks up a localized string similar to Is there a problem with OTP?.
  4480. /// </summary>
  4481. public static string otpProblem {
  4482. get {
  4483. return ResourceManager.GetString("otpProblem", resourceCulture);
  4484. }
  4485. }
  4486. /// <summary>
  4487. /// Looks up a localized string similar to The OTP code has just been sent back to your phone..
  4488. /// </summary>
  4489. public static string otpSentAgain {
  4490. get {
  4491. return ResourceManager.GetString("otpSentAgain", resourceCulture);
  4492. }
  4493. }
  4494. /// <summary>
  4495. /// Looks up a localized string similar to We just sent an OTP to your phone. Please check and fill in the correct OTP..
  4496. /// </summary>
  4497. public static string otpWasSent {
  4498. get {
  4499. return ResourceManager.GetString("otpWasSent", resourceCulture);
  4500. }
  4501. }
  4502. /// <summary>
  4503. /// Looks up a localized string similar to MEDU Together with you, eliminate English barriers.
  4504. /// </summary>
  4505. public static string OvercomingAnObstacle {
  4506. get {
  4507. return ResourceManager.GetString("OvercomingAnObstacle", resourceCulture);
  4508. }
  4509. }
  4510. /// <summary>
  4511. /// Looks up a localized string similar to For you, eliminate the English barrier.
  4512. /// </summary>
  4513. public static string OvercomingAnObstacleWithYou {
  4514. get {
  4515. return ResourceManager.GetString("OvercomingAnObstacleWithYou", resourceCulture);
  4516. }
  4517. }
  4518. /// <summary>
  4519. /// Looks up a localized string similar to .
  4520. /// </summary>
  4521. public static string OvercomingAnObstacleWithYouLao {
  4522. get {
  4523. return ResourceManager.GetString("OvercomingAnObstacleWithYouLao", resourceCulture);
  4524. }
  4525. }
  4526. /// <summary>
  4527. /// Looks up a localized string similar to .
  4528. /// </summary>
  4529. public static string OvercomingAnObstacleWithYouViet {
  4530. get {
  4531. return ResourceManager.GetString("OvercomingAnObstacleWithYouViet", resourceCulture);
  4532. }
  4533. }
  4534. /// <summary>
  4535. /// Looks up a localized string similar to weight gain.
  4536. /// </summary>
  4537. public static string overWeight {
  4538. get {
  4539. return ResourceManager.GetString("overWeight", resourceCulture);
  4540. }
  4541. }
  4542. /// <summary>
  4543. /// Looks up a localized string similar to Primary school year 1 (starting in 2020).
  4544. /// </summary>
  4545. public static string P1 {
  4546. get {
  4547. return ResourceManager.GetString("P1", resourceCulture);
  4548. }
  4549. }
  4550. /// <summary>
  4551. /// Looks up a localized string similar to P10.
  4552. /// </summary>
  4553. public static string P10 {
  4554. get {
  4555. return ResourceManager.GetString("P10", resourceCulture);
  4556. }
  4557. }
  4558. /// <summary>
  4559. /// Looks up a localized string similar to P10.
  4560. /// </summary>
  4561. public static string P101 {
  4562. get {
  4563. return ResourceManager.GetString("P101", resourceCulture);
  4564. }
  4565. }
  4566. /// <summary>
  4567. /// Looks up a localized string similar to P11.
  4568. /// </summary>
  4569. public static string P11 {
  4570. get {
  4571. return ResourceManager.GetString("P11", resourceCulture);
  4572. }
  4573. }
  4574. /// <summary>
  4575. /// Looks up a localized string similar to P1.
  4576. /// </summary>
  4577. public static string P110 {
  4578. get {
  4579. return ResourceManager.GetString("P110", resourceCulture);
  4580. }
  4581. }
  4582. /// <summary>
  4583. /// Looks up a localized string similar to P11.
  4584. /// </summary>
  4585. public static string P111 {
  4586. get {
  4587. return ResourceManager.GetString("P111", resourceCulture);
  4588. }
  4589. }
  4590. /// <summary>
  4591. /// Looks up a localized string similar to P12.
  4592. /// </summary>
  4593. public static string P12 {
  4594. get {
  4595. return ResourceManager.GetString("P12", resourceCulture);
  4596. }
  4597. }
  4598. /// <summary>
  4599. /// Looks up a localized string similar to P12.
  4600. /// </summary>
  4601. public static string P121 {
  4602. get {
  4603. return ResourceManager.GetString("P121", resourceCulture);
  4604. }
  4605. }
  4606. /// <summary>
  4607. /// Looks up a localized string similar to P13.
  4608. /// </summary>
  4609. public static string P13 {
  4610. get {
  4611. return ResourceManager.GetString("P13", resourceCulture);
  4612. }
  4613. }
  4614. /// <summary>
  4615. /// Looks up a localized string similar to P13.
  4616. /// </summary>
  4617. public static string P131 {
  4618. get {
  4619. return ResourceManager.GetString("P131", resourceCulture);
  4620. }
  4621. }
  4622. /// <summary>
  4623. /// Looks up a localized string similar to P14.
  4624. /// </summary>
  4625. public static string P14 {
  4626. get {
  4627. return ResourceManager.GetString("P14", resourceCulture);
  4628. }
  4629. }
  4630. /// <summary>
  4631. /// Looks up a localized string similar to P14.
  4632. /// </summary>
  4633. public static string P141 {
  4634. get {
  4635. return ResourceManager.GetString("P141", resourceCulture);
  4636. }
  4637. }
  4638. /// <summary>
  4639. /// Looks up a localized string similar to P15.
  4640. /// </summary>
  4641. public static string P15 {
  4642. get {
  4643. return ResourceManager.GetString("P15", resourceCulture);
  4644. }
  4645. }
  4646. /// <summary>
  4647. /// Looks up a localized string similar to P15.
  4648. /// </summary>
  4649. public static string P151 {
  4650. get {
  4651. return ResourceManager.GetString("P151", resourceCulture);
  4652. }
  4653. }
  4654. /// <summary>
  4655. /// Looks up a localized string similar to P16.
  4656. /// </summary>
  4657. public static string P16 {
  4658. get {
  4659. return ResourceManager.GetString("P16", resourceCulture);
  4660. }
  4661. }
  4662. /// <summary>
  4663. /// Looks up a localized string similar to P16.
  4664. /// </summary>
  4665. public static string P161 {
  4666. get {
  4667. return ResourceManager.GetString("P161", resourceCulture);
  4668. }
  4669. }
  4670. /// <summary>
  4671. /// Looks up a localized string similar to P17.
  4672. /// </summary>
  4673. public static string P17 {
  4674. get {
  4675. return ResourceManager.GetString("P17", resourceCulture);
  4676. }
  4677. }
  4678. /// <summary>
  4679. /// Looks up a localized string similar to P17.
  4680. /// </summary>
  4681. public static string P171 {
  4682. get {
  4683. return ResourceManager.GetString("P171", resourceCulture);
  4684. }
  4685. }
  4686. /// <summary>
  4687. /// Looks up a localized string similar to P18.
  4688. /// </summary>
  4689. public static string P18 {
  4690. get {
  4691. return ResourceManager.GetString("P18", resourceCulture);
  4692. }
  4693. }
  4694. /// <summary>
  4695. /// Looks up a localized string similar to P18.
  4696. /// </summary>
  4697. public static string P181 {
  4698. get {
  4699. return ResourceManager.GetString("P181", resourceCulture);
  4700. }
  4701. }
  4702. /// <summary>
  4703. /// Looks up a localized string similar to P19.
  4704. /// </summary>
  4705. public static string P19 {
  4706. get {
  4707. return ResourceManager.GetString("P19", resourceCulture);
  4708. }
  4709. }
  4710. /// <summary>
  4711. /// Looks up a localized string similar to P19.
  4712. /// </summary>
  4713. public static string P191 {
  4714. get {
  4715. return ResourceManager.GetString("P191", resourceCulture);
  4716. }
  4717. }
  4718. /// <summary>
  4719. /// Looks up a localized string similar to P2.
  4720. /// </summary>
  4721. public static string P2 {
  4722. get {
  4723. return ResourceManager.GetString("P2", resourceCulture);
  4724. }
  4725. }
  4726. /// <summary>
  4727. /// Looks up a localized string similar to P20.
  4728. /// </summary>
  4729. public static string P20 {
  4730. get {
  4731. return ResourceManager.GetString("P20", resourceCulture);
  4732. }
  4733. }
  4734. /// <summary>
  4735. /// Looks up a localized string similar to P20.
  4736. /// </summary>
  4737. public static string P201 {
  4738. get {
  4739. return ResourceManager.GetString("P201", resourceCulture);
  4740. }
  4741. }
  4742. /// <summary>
  4743. /// Looks up a localized string similar to P21.
  4744. /// </summary>
  4745. public static string P21 {
  4746. get {
  4747. return ResourceManager.GetString("P21", resourceCulture);
  4748. }
  4749. }
  4750. /// <summary>
  4751. /// Looks up a localized string similar to P2.
  4752. /// </summary>
  4753. public static string P210 {
  4754. get {
  4755. return ResourceManager.GetString("P210", resourceCulture);
  4756. }
  4757. }
  4758. /// <summary>
  4759. /// Looks up a localized string similar to P21.
  4760. /// </summary>
  4761. public static string P211 {
  4762. get {
  4763. return ResourceManager.GetString("P211", resourceCulture);
  4764. }
  4765. }
  4766. /// <summary>
  4767. /// Looks up a localized string similar to P22.
  4768. /// </summary>
  4769. public static string P22 {
  4770. get {
  4771. return ResourceManager.GetString("P22", resourceCulture);
  4772. }
  4773. }
  4774. /// <summary>
  4775. /// Looks up a localized string similar to P22.
  4776. /// </summary>
  4777. public static string P221 {
  4778. get {
  4779. return ResourceManager.GetString("P221", resourceCulture);
  4780. }
  4781. }
  4782. /// <summary>
  4783. /// Looks up a localized string similar to Primary Education Curriculum 2010.
  4784. /// </summary>
  4785. public static string P23 {
  4786. get {
  4787. return ResourceManager.GetString("P23", resourceCulture);
  4788. }
  4789. }
  4790. /// <summary>
  4791. /// Looks up a localized string similar to Materials for learning properties and the world around us.
  4792. /// </summary>
  4793. public static string P24 {
  4794. get {
  4795. return ResourceManager.GetString("P24", resourceCulture);
  4796. }
  4797. }
  4798. /// <summary>
  4799. /// Looks up a localized string similar to Science and Environment Teacher&apos;s Guide.
  4800. /// </summary>
  4801. public static string P25 {
  4802. get {
  4803. return ResourceManager.GetString("P25", resourceCulture);
  4804. }
  4805. }
  4806. /// <summary>
  4807. /// Looks up a localized string similar to Arts and Crafts Teacher&apos;s Guide.
  4808. /// </summary>
  4809. public static string P26 {
  4810. get {
  4811. return ResourceManager.GetString("P26", resourceCulture);
  4812. }
  4813. }
  4814. /// <summary>
  4815. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (Volume 1).
  4816. /// </summary>
  4817. public static string P27 {
  4818. get {
  4819. return ResourceManager.GetString("P27", resourceCulture);
  4820. }
  4821. }
  4822. /// <summary>
  4823. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (Volume 2).
  4824. /// </summary>
  4825. public static string P28 {
  4826. get {
  4827. return ResourceManager.GetString("P28", resourceCulture);
  4828. }
  4829. }
  4830. /// <summary>
  4831. /// Looks up a localized string similar to Teacher Qualifications Guide.
  4832. /// </summary>
  4833. public static string P29 {
  4834. get {
  4835. return ResourceManager.GetString("P29", resourceCulture);
  4836. }
  4837. }
  4838. /// <summary>
  4839. /// Looks up a localized string similar to P3.
  4840. /// </summary>
  4841. public static string P3 {
  4842. get {
  4843. return ResourceManager.GetString("P3", resourceCulture);
  4844. }
  4845. }
  4846. /// <summary>
  4847. /// Looks up a localized string similar to Music Art Teacher&apos;s Guide.
  4848. /// </summary>
  4849. public static string P30 {
  4850. get {
  4851. return ResourceManager.GetString("P30", resourceCulture);
  4852. }
  4853. }
  4854. /// <summary>
  4855. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide.
  4856. /// </summary>
  4857. public static string P31 {
  4858. get {
  4859. return ResourceManager.GetString("P31", resourceCulture);
  4860. }
  4861. }
  4862. /// <summary>
  4863. /// Looks up a localized string similar to P3.
  4864. /// </summary>
  4865. public static string P310 {
  4866. get {
  4867. return ResourceManager.GetString("P310", resourceCulture);
  4868. }
  4869. }
  4870. /// <summary>
  4871. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide.
  4872. /// </summary>
  4873. public static string P32 {
  4874. get {
  4875. return ResourceManager.GetString("P32", resourceCulture);
  4876. }
  4877. }
  4878. /// <summary>
  4879. /// Looks up a localized string similar to Science Teacher&apos;s Guide.
  4880. /// </summary>
  4881. public static string P33 {
  4882. get {
  4883. return ResourceManager.GetString("P33", resourceCulture);
  4884. }
  4885. }
  4886. /// <summary>
  4887. /// Looks up a localized string similar to Arts and Crafts Teacher&apos;s Guide.
  4888. /// </summary>
  4889. public static string P34 {
  4890. get {
  4891. return ResourceManager.GetString("P34", resourceCulture);
  4892. }
  4893. }
  4894. /// <summary>
  4895. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (Volume 1).
  4896. /// </summary>
  4897. public static string P35 {
  4898. get {
  4899. return ResourceManager.GetString("P35", resourceCulture);
  4900. }
  4901. }
  4902. /// <summary>
  4903. /// Looks up a localized string similar to Lao Language Teacher&apos;s Guide (Volume 2).
  4904. /// </summary>
  4905. public static string P36 {
  4906. get {
  4907. return ResourceManager.GetString("P36", resourceCulture);
  4908. }
  4909. }
  4910. /// <summary>
  4911. /// Looks up a localized string similar to Teacher Qualifications Guide.
  4912. /// </summary>
  4913. public static string P37 {
  4914. get {
  4915. return ResourceManager.GetString("P37", resourceCulture);
  4916. }
  4917. }
  4918. /// <summary>
  4919. /// Looks up a localized string similar to Music Teacher&apos;s Guide.
  4920. /// </summary>
  4921. public static string P38 {
  4922. get {
  4923. return ResourceManager.GetString("P38", resourceCulture);
  4924. }
  4925. }
  4926. /// <summary>
  4927. /// Looks up a localized string similar to Art and Music Teacher&apos;s Guide.
  4928. /// </summary>
  4929. public static string P39 {
  4930. get {
  4931. return ResourceManager.GetString("P39", resourceCulture);
  4932. }
  4933. }
  4934. /// <summary>
  4935. /// Looks up a localized string similar to P4.
  4936. /// </summary>
  4937. public static string P4 {
  4938. get {
  4939. return ResourceManager.GetString("P4", resourceCulture);
  4940. }
  4941. }
  4942. /// <summary>
  4943. /// Looks up a localized string similar to Lao language teacher&apos;s guide.
  4944. /// </summary>
  4945. public static string P40 {
  4946. get {
  4947. return ResourceManager.GetString("P40", resourceCulture);
  4948. }
  4949. }
  4950. /// <summary>
  4951. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide.
  4952. /// </summary>
  4953. public static string P41 {
  4954. get {
  4955. return ResourceManager.GetString("P41", resourceCulture);
  4956. }
  4957. }
  4958. /// <summary>
  4959. /// Looks up a localized string similar to P4.
  4960. /// </summary>
  4961. public static string P410 {
  4962. get {
  4963. return ResourceManager.GetString("P410", resourceCulture);
  4964. }
  4965. }
  4966. /// <summary>
  4967. /// Looks up a localized string similar to Teacher Qualifications Guide.
  4968. /// </summary>
  4969. public static string P42 {
  4970. get {
  4971. return ResourceManager.GetString("P42", resourceCulture);
  4972. }
  4973. }
  4974. /// <summary>
  4975. /// Looks up a localized string similar to Physical education and handicraft teacher&apos;s guide.
  4976. /// </summary>
  4977. public static string P43 {
  4978. get {
  4979. return ResourceManager.GetString("P43", resourceCulture);
  4980. }
  4981. }
  4982. /// <summary>
  4983. /// Looks up a localized string similar to Around the World Teacher Guide.
  4984. /// </summary>
  4985. public static string P44 {
  4986. get {
  4987. return ResourceManager.GetString("P44", resourceCulture);
  4988. }
  4989. }
  4990. /// <summary>
  4991. /// Looks up a localized string similar to English Teacher&apos;s Guide.
  4992. /// </summary>
  4993. public static string P45 {
  4994. get {
  4995. return ResourceManager.GetString("P45", resourceCulture);
  4996. }
  4997. }
  4998. /// <summary>
  4999. /// Looks up a localized string similar to Art and Music Teacher&apos;s Guide.
  5000. /// </summary>
  5001. public static string P46 {
  5002. get {
  5003. return ResourceManager.GetString("P46", resourceCulture);
  5004. }
  5005. }
  5006. /// <summary>
  5007. /// Looks up a localized string similar to Lao language teacher&apos;s guide.
  5008. /// </summary>
  5009. public static string P47 {
  5010. get {
  5011. return ResourceManager.GetString("P47", resourceCulture);
  5012. }
  5013. }
  5014. /// <summary>
  5015. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide.
  5016. /// </summary>
  5017. public static string P48 {
  5018. get {
  5019. return ResourceManager.GetString("P48", resourceCulture);
  5020. }
  5021. }
  5022. /// <summary>
  5023. /// Looks up a localized string similar to Teacher Qualifications Guide.
  5024. /// </summary>
  5025. public static string P49 {
  5026. get {
  5027. return ResourceManager.GetString("P49", resourceCulture);
  5028. }
  5029. }
  5030. /// <summary>
  5031. /// Looks up a localized string similar to P5.
  5032. /// </summary>
  5033. public static string P5 {
  5034. get {
  5035. return ResourceManager.GetString("P5", resourceCulture);
  5036. }
  5037. }
  5038. /// <summary>
  5039. /// Looks up a localized string similar to Physical education and handicraft teacher&apos;s guide.
  5040. /// </summary>
  5041. public static string P50 {
  5042. get {
  5043. return ResourceManager.GetString("P50", resourceCulture);
  5044. }
  5045. }
  5046. /// <summary>
  5047. /// Looks up a localized string similar to Around the World Teacher Guide.
  5048. /// </summary>
  5049. public static string P51 {
  5050. get {
  5051. return ResourceManager.GetString("P51", resourceCulture);
  5052. }
  5053. }
  5054. /// <summary>
  5055. /// Looks up a localized string similar to P5.
  5056. /// </summary>
  5057. public static string P510 {
  5058. get {
  5059. return ResourceManager.GetString("P510", resourceCulture);
  5060. }
  5061. }
  5062. /// <summary>
  5063. /// Looks up a localized string similar to English Teacher&apos;s Guide.
  5064. /// </summary>
  5065. public static string P52 {
  5066. get {
  5067. return ResourceManager.GetString("P52", resourceCulture);
  5068. }
  5069. }
  5070. /// <summary>
  5071. /// Looks up a localized string similar to Art and Music Teacher&apos;s Guide.
  5072. /// </summary>
  5073. public static string P53 {
  5074. get {
  5075. return ResourceManager.GetString("P53", resourceCulture);
  5076. }
  5077. }
  5078. /// <summary>
  5079. /// Looks up a localized string similar to Lao language teacher&apos;s guide.
  5080. /// </summary>
  5081. public static string P54 {
  5082. get {
  5083. return ResourceManager.GetString("P54", resourceCulture);
  5084. }
  5085. }
  5086. /// <summary>
  5087. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide.
  5088. /// </summary>
  5089. public static string P55 {
  5090. get {
  5091. return ResourceManager.GetString("P55", resourceCulture);
  5092. }
  5093. }
  5094. /// <summary>
  5095. /// Looks up a localized string similar to Teacher Qualifications Guide.
  5096. /// </summary>
  5097. public static string P56 {
  5098. get {
  5099. return ResourceManager.GetString("P56", resourceCulture);
  5100. }
  5101. }
  5102. /// <summary>
  5103. /// Looks up a localized string similar to Physical education and handicraft teacher&apos;s guide.
  5104. /// </summary>
  5105. public static string P57 {
  5106. get {
  5107. return ResourceManager.GetString("P57", resourceCulture);
  5108. }
  5109. }
  5110. /// <summary>
  5111. /// Looks up a localized string similar to Around the World Teacher Guide.
  5112. /// </summary>
  5113. public static string P58 {
  5114. get {
  5115. return ResourceManager.GetString("P58", resourceCulture);
  5116. }
  5117. }
  5118. /// <summary>
  5119. /// Looks up a localized string similar to Physical Education Teacher&apos;s Guide.
  5120. /// </summary>
  5121. public static string P59 {
  5122. get {
  5123. return ResourceManager.GetString("P59", resourceCulture);
  5124. }
  5125. }
  5126. /// <summary>
  5127. /// Looks up a localized string similar to Primary school year 2 (starting in 2020).
  5128. /// </summary>
  5129. public static string P6 {
  5130. get {
  5131. return ResourceManager.GetString("P6", resourceCulture);
  5132. }
  5133. }
  5134. /// <summary>
  5135. /// Looks up a localized string similar to Mathematics Teacher&apos;s Guide.
  5136. /// </summary>
  5137. public static string P60 {
  5138. get {
  5139. return ResourceManager.GetString("P60", resourceCulture);
  5140. }
  5141. }
  5142. /// <summary>
  5143. /// Looks up a localized string similar to English Teacher&apos;s Guide.
  5144. /// </summary>
  5145. public static string P61 {
  5146. get {
  5147. return ResourceManager.GetString("P61", resourceCulture);
  5148. }
  5149. }
  5150. /// <summary>
  5151. /// Looks up a localized string similar to P6.
  5152. /// </summary>
  5153. public static string P62 {
  5154. get {
  5155. return ResourceManager.GetString("P62", resourceCulture);
  5156. }
  5157. }
  5158. /// <summary>
  5159. /// Looks up a localized string similar to P7.
  5160. /// </summary>
  5161. public static string P7 {
  5162. get {
  5163. return ResourceManager.GetString("P7", resourceCulture);
  5164. }
  5165. }
  5166. /// <summary>
  5167. /// Looks up a localized string similar to P7.
  5168. /// </summary>
  5169. public static string P71 {
  5170. get {
  5171. return ResourceManager.GetString("P71", resourceCulture);
  5172. }
  5173. }
  5174. /// <summary>
  5175. /// Looks up a localized string similar to P7.
  5176. /// </summary>
  5177. public static string P8 {
  5178. get {
  5179. return ResourceManager.GetString("P8", resourceCulture);
  5180. }
  5181. }
  5182. /// <summary>
  5183. /// Looks up a localized string similar to P8.
  5184. /// </summary>
  5185. public static string P81 {
  5186. get {
  5187. return ResourceManager.GetString("P81", resourceCulture);
  5188. }
  5189. }
  5190. /// <summary>
  5191. /// Looks up a localized string similar to P9.
  5192. /// </summary>
  5193. public static string P9 {
  5194. get {
  5195. return ResourceManager.GetString("P9", resourceCulture);
  5196. }
  5197. }
  5198. /// <summary>
  5199. /// Looks up a localized string similar to P9.
  5200. /// </summary>
  5201. public static string P91 {
  5202. get {
  5203. return ResourceManager.GetString("P91", resourceCulture);
  5204. }
  5205. }
  5206. /// <summary>
  5207. /// Looks up a localized string similar to Participants must be subscribers of the service..
  5208. /// </summary>
  5209. public static string ParticipantsMustBe {
  5210. get {
  5211. return ResourceManager.GetString("ParticipantsMustBe", resourceCulture);
  5212. }
  5213. }
  5214. /// <summary>
  5215. /// Looks up a localized string similar to Passion.
  5216. /// </summary>
  5217. public static string Passion {
  5218. get {
  5219. return ResourceManager.GetString("Passion", resourceCulture);
  5220. }
  5221. }
  5222. /// <summary>
  5223. /// Looks up a localized string similar to Password.
  5224. /// </summary>
  5225. public static string Password {
  5226. get {
  5227. return ResourceManager.GetString("Password", resourceCulture);
  5228. }
  5229. }
  5230. /// <summary>
  5231. /// Looks up a localized string similar to A new password has been sent to your phone..
  5232. /// </summary>
  5233. public static string PasswordSent {
  5234. get {
  5235. return ResourceManager.GetString("PasswordSent", resourceCulture);
  5236. }
  5237. }
  5238. /// <summary>
  5239. /// Looks up a localized string similar to Personal.
  5240. /// </summary>
  5241. public static string Personal {
  5242. get {
  5243. return ResourceManager.GetString("Personal", resourceCulture);
  5244. }
  5245. }
  5246. /// <summary>
  5247. /// Looks up a localized string similar to Phone number.
  5248. /// </summary>
  5249. public static string Phone_number {
  5250. get {
  5251. return ResourceManager.GetString("Phone_number", resourceCulture);
  5252. }
  5253. }
  5254. /// <summary>
  5255. /// Looks up a localized string similar to Phone Number.
  5256. /// </summary>
  5257. public static string PhoneNumber {
  5258. get {
  5259. return ResourceManager.GetString("PhoneNumber", resourceCulture);
  5260. }
  5261. }
  5262. /// <summary>
  5263. /// Looks up a localized string similar to Play now.
  5264. /// </summary>
  5265. public static string PlayNow {
  5266. get {
  5267. return ResourceManager.GetString("PlayNow", resourceCulture);
  5268. }
  5269. }
  5270. /// <summary>
  5271. /// Looks up a localized string similar to Please top up your card to extend service during the day..
  5272. /// </summary>
  5273. public static string PleaseRenew {
  5274. get {
  5275. return ResourceManager.GetString("PleaseRenew", resourceCulture);
  5276. }
  5277. }
  5278. /// <summary>
  5279. /// Looks up a localized string similar to Log in.
  5280. /// </summary>
  5281. public static string PleaseSignIn {
  5282. get {
  5283. return ResourceManager.GetString("PleaseSignIn", resourceCulture);
  5284. }
  5285. }
  5286. /// <summary>
  5287. /// Looks up a localized string similar to Point.
  5288. /// </summary>
  5289. public static string Point {
  5290. get {
  5291. return ResourceManager.GetString("Point", resourceCulture);
  5292. }
  5293. }
  5294. /// <summary>
  5295. /// Looks up a localized string similar to Practice.
  5296. /// </summary>
  5297. public static string Practice {
  5298. get {
  5299. return ResourceManager.GetString("Practice", resourceCulture);
  5300. }
  5301. }
  5302. /// <summary>
  5303. /// Looks up a localized string similar to Previous example.
  5304. /// </summary>
  5305. public static string PreviousExample {
  5306. get {
  5307. return ResourceManager.GetString("PreviousExample", resourceCulture);
  5308. }
  5309. }
  5310. /// <summary>
  5311. /// Looks up a localized string similar to Primary.
  5312. /// </summary>
  5313. public static string Primary {
  5314. get {
  5315. return ResourceManager.GetString("Primary", resourceCulture);
  5316. }
  5317. }
  5318. /// <summary>
  5319. /// Looks up a localized string similar to Primary.
  5320. /// </summary>
  5321. public static string Primary1 {
  5322. get {
  5323. return ResourceManager.GetString("Primary1", resourceCulture);
  5324. }
  5325. }
  5326. /// <summary>
  5327. /// Looks up a localized string similar to Primary books.
  5328. /// </summary>
  5329. public static string PrimaryBooks {
  5330. get {
  5331. return ResourceManager.GetString("PrimaryBooks", resourceCulture);
  5332. }
  5333. }
  5334. /// <summary>
  5335. /// Looks up a localized string similar to Primary education.
  5336. /// </summary>
  5337. public static string PrimaryEducation {
  5338. get {
  5339. return ResourceManager.GetString("PrimaryEducation", resourceCulture);
  5340. }
  5341. }
  5342. /// <summary>
  5343. /// Looks up a localized string similar to Primary Education.
  5344. /// </summary>
  5345. public static string PrimaryEducation1 {
  5346. get {
  5347. return ResourceManager.GetString("PrimaryEducation1", resourceCulture);
  5348. }
  5349. }
  5350. /// <summary>
  5351. /// Looks up a localized string similar to Primary school year 1 (starting in 2020).
  5352. /// </summary>
  5353. public static string Primaryschoolyear1 {
  5354. get {
  5355. return ResourceManager.GetString("Primaryschoolyear1", resourceCulture);
  5356. }
  5357. }
  5358. /// <summary>
  5359. /// Looks up a localized string similar to Primary school year 2 (starting in 2020).
  5360. /// </summary>
  5361. public static string Primaryschoolyear2 {
  5362. get {
  5363. return ResourceManager.GetString("Primaryschoolyear2", resourceCulture);
  5364. }
  5365. }
  5366. /// <summary>
  5367. /// Looks up a localized string similar to Primary school year 3.
  5368. /// </summary>
  5369. public static string Primaryschoolyear3 {
  5370. get {
  5371. return ResourceManager.GetString("Primaryschoolyear3", resourceCulture);
  5372. }
  5373. }
  5374. /// <summary>
  5375. /// Looks up a localized string similar to Primary school year 4.
  5376. /// </summary>
  5377. public static string Primaryschoolyear4 {
  5378. get {
  5379. return ResourceManager.GetString("Primaryschoolyear4", resourceCulture);
  5380. }
  5381. }
  5382. /// <summary>
  5383. /// Looks up a localized string similar to Primary school year 5.
  5384. /// </summary>
  5385. public static string Primaryschoolyear5 {
  5386. get {
  5387. return ResourceManager.GetString("Primaryschoolyear5", resourceCulture);
  5388. }
  5389. }
  5390. /// <summary>
  5391. /// Looks up a localized string similar to Prizes:.
  5392. /// </summary>
  5393. public static string Prizes {
  5394. get {
  5395. return ResourceManager.GetString("Prizes", resourceCulture);
  5396. }
  5397. }
  5398. /// <summary>
  5399. /// Looks up a localized string similar to Product.
  5400. /// </summary>
  5401. public static string Products {
  5402. get {
  5403. return ResourceManager.GetString("Products", resourceCulture);
  5404. }
  5405. }
  5406. /// <summary>
  5407. /// Looks up a localized string similar to Personal information.
  5408. /// </summary>
  5409. public static string Profile {
  5410. get {
  5411. return ResourceManager.GetString("Profile", resourceCulture);
  5412. }
  5413. }
  5414. /// <summary>
  5415. /// Looks up a localized string similar to Question.
  5416. /// </summary>
  5417. public static string Question {
  5418. get {
  5419. return ResourceManager.GetString("Question", resourceCulture);
  5420. }
  5421. }
  5422. /// <summary>
  5423. /// Looks up a localized string similar to Choose the correct answer:.
  5424. /// </summary>
  5425. public static string QuestionBegin {
  5426. get {
  5427. return ResourceManager.GetString("QuestionBegin", resourceCulture);
  5428. }
  5429. }
  5430. /// <summary>
  5431. /// Looks up a localized string similar to Ranking list.
  5432. /// </summary>
  5433. public static string Rank {
  5434. get {
  5435. return ResourceManager.GetString("Rank", resourceCulture);
  5436. }
  5437. }
  5438. /// <summary>
  5439. /// Looks up a localized string similar to Ranking.
  5440. /// </summary>
  5441. public static string Ranking {
  5442. get {
  5443. return ResourceManager.GetString("Ranking", resourceCulture);
  5444. }
  5445. }
  5446. /// <summary>
  5447. /// Looks up a localized string similar to Ready.
  5448. /// </summary>
  5449. public static string Ready {
  5450. get {
  5451. return ResourceManager.GetString("Ready", resourceCulture);
  5452. }
  5453. }
  5454. /// <summary>
  5455. /// Looks up a localized string similar to Ready.
  5456. /// </summary>
  5457. public static string Ready1 {
  5458. get {
  5459. return ResourceManager.GetString("Ready1", resourceCulture);
  5460. }
  5461. }
  5462. /// <summary>
  5463. /// Looks up a localized string similar to Are you ready?.
  5464. /// </summary>
  5465. public static string ReadyQuestion {
  5466. get {
  5467. return ResourceManager.GetString("ReadyQuestion", resourceCulture);
  5468. }
  5469. }
  5470. /// <summary>
  5471. /// Looks up a localized string similar to Register .
  5472. /// </summary>
  5473. public static string Register {
  5474. get {
  5475. return ResourceManager.GetString("Register", resourceCulture);
  5476. }
  5477. }
  5478. /// <summary>
  5479. /// Looks up a localized string similar to Sign up and discover MEDU&apos;s free way to learn grammar, you&apos;ll see everything change!.
  5480. /// </summary>
  5481. public static string RegisterAndDiscoverUstudy {
  5482. get {
  5483. return ResourceManager.GetString("RegisterAndDiscoverUstudy", resourceCulture);
  5484. }
  5485. }
  5486. /// <summary>
  5487. /// Looks up a localized string similar to sign up.
  5488. /// </summary>
  5489. public static string RegisterAsAMember {
  5490. get {
  5491. return ResourceManager.GetString("RegisterAsAMember", resourceCulture);
  5492. }
  5493. }
  5494. /// <summary>
  5495. /// Looks up a localized string similar to sign up.
  5496. /// </summary>
  5497. public static string registerhf {
  5498. get {
  5499. return ResourceManager.GetString("registerhf", resourceCulture);
  5500. }
  5501. }
  5502. /// <summary>
  5503. /// Looks up a localized string similar to You have successfully registered for the course. Welcome to you MEDU  - the smart language learning system!.
  5504. /// </summary>
  5505. public static string RegisterSuccess {
  5506. get {
  5507. return ResourceManager.GetString("RegisterSuccess", resourceCulture);
  5508. }
  5509. }
  5510. /// <summary>
  5511. /// Looks up a localized string similar to You have successfully registered for the course. Welcome to you MEDU  - the smart language learning system!.
  5512. /// </summary>
  5513. public static string RegisterSuccessful {
  5514. get {
  5515. return ResourceManager.GetString("RegisterSuccessful", resourceCulture);
  5516. }
  5517. }
  5518. /// <summary>
  5519. /// Looks up a localized string similar to You should register for a day package to study the entire course..
  5520. /// </summary>
  5521. public static string RegisterToSeeAllCourses {
  5522. get {
  5523. return ResourceManager.GetString("RegisterToSeeAllCourses", resourceCulture);
  5524. }
  5525. }
  5526. /// <summary>
  5527. /// Looks up a localized string similar to Register for an effective English learning method with MEDU.
  5528. /// </summary>
  5529. public static string RegisterWithUnitelEdu {
  5530. get {
  5531. return ResourceManager.GetString("RegisterWithUnitelEdu", resourceCulture);
  5532. }
  5533. }
  5534. /// <summary>
  5535. /// Looks up a localized string similar to .
  5536. /// </summary>
  5537. public static string RegisterWithUnitelEduLao {
  5538. get {
  5539. return ResourceManager.GetString("RegisterWithUnitelEduLao", resourceCulture);
  5540. }
  5541. }
  5542. /// <summary>
  5543. /// Looks up a localized string similar to .
  5544. /// </summary>
  5545. public static string RegisterWithUnitelEduViet {
  5546. get {
  5547. return ResourceManager.GetString("RegisterWithUnitelEduViet", resourceCulture);
  5548. }
  5549. }
  5550. /// <summary>
  5551. /// Looks up a localized string similar to Regist false becuase user have registed before.
  5552. /// </summary>
  5553. public static string Registfalsebecuaseuserhaveregistedbefore {
  5554. get {
  5555. return ResourceManager.GetString("Registfalsebecuaseuserhaveregistedbefore", resourceCulture);
  5556. }
  5557. }
  5558. /// <summary>
  5559. /// Looks up a localized string similar to Study again.
  5560. /// </summary>
  5561. public static string Relearn {
  5562. get {
  5563. return ResourceManager.GetString("Relearn", resourceCulture);
  5564. }
  5565. }
  5566. /// <summary>
  5567. /// Looks up a localized string similar to ENGLISH RESEARCH FACILITY.
  5568. /// </summary>
  5569. public static string ResearchingEnglish {
  5570. get {
  5571. return ResourceManager.GetString("ResearchingEnglish", resourceCulture);
  5572. }
  5573. }
  5574. /// <summary>
  5575. /// Looks up a localized string similar to Get back OTP..
  5576. /// </summary>
  5577. public static string resentOtp {
  5578. get {
  5579. return ResourceManager.GetString("resentOtp", resourceCulture);
  5580. }
  5581. }
  5582. /// <summary>
  5583. /// Looks up a localized string similar to Get password.
  5584. /// </summary>
  5585. public static string ResetPassword {
  5586. get {
  5587. return ResourceManager.GetString("ResetPassword", resourceCulture);
  5588. }
  5589. }
  5590. /// <summary>
  5591. /// Looks up a localized string similar to Feedback.
  5592. /// </summary>
  5593. public static string response {
  5594. get {
  5595. return ResourceManager.GetString("response", resourceCulture);
  5596. }
  5597. }
  5598. /// <summary>
  5599. /// Looks up a localized string similar to You answered correctly.
  5600. /// </summary>
  5601. public static string Result {
  5602. get {
  5603. return ResourceManager.GetString("Result", resourceCulture);
  5604. }
  5605. }
  5606. /// <summary>
  5607. /// Looks up a localized string similar to The Results Will Surprise You!.
  5608. /// </summary>
  5609. public static string Result_surprising {
  5610. get {
  5611. return ResourceManager.GetString("Result_surprising", resourceCulture);
  5612. }
  5613. }
  5614. /// <summary>
  5615. /// Looks up a localized string similar to Results will be sent to the participants via SMS at 09:00 AM on the following Monday..
  5616. /// </summary>
  5617. public static string ResultsWillBeSentToTheParticipants {
  5618. get {
  5619. return ResourceManager.GetString("ResultsWillBeSentToTheParticipants", resourceCulture);
  5620. }
  5621. }
  5622. /// <summary>
  5623. /// Looks up a localized string similar to Practice again.
  5624. /// </summary>
  5625. public static string Retest {
  5626. get {
  5627. return ResourceManager.GetString("Retest", resourceCulture);
  5628. }
  5629. }
  5630. /// <summary>
  5631. /// Looks up a localized string similar to Practice again.
  5632. /// </summary>
  5633. public static string Retester {
  5634. get {
  5635. return ResourceManager.GetString("Retester", resourceCulture);
  5636. }
  5637. }
  5638. /// <summary>
  5639. /// Looks up a localized string similar to your reward..
  5640. /// </summary>
  5641. public static string reward {
  5642. get {
  5643. return ResourceManager.GetString("reward", resourceCulture);
  5644. }
  5645. }
  5646. /// <summary>
  5647. /// Looks up a localized string similar to You will be awarded 1 ME if the test result is 100% with time less than or equal to 3 seconds for each question.
  5648. /// </summary>
  5649. public static string RewardIfYouPass {
  5650. get {
  5651. return ResourceManager.GetString("RewardIfYouPass", resourceCulture);
  5652. }
  5653. }
  5654. /// <summary>
  5655. /// Looks up a localized string similar to Correct answer.
  5656. /// </summary>
  5657. public static string RightAnswer {
  5658. get {
  5659. return ResourceManager.GetString("RightAnswer", resourceCulture);
  5660. }
  5661. }
  5662. /// <summary>
  5663. /// Looks up a localized string similar to Secondary Education.
  5664. /// </summary>
  5665. public static string SecondaryEducation {
  5666. get {
  5667. return ResourceManager.GetString("SecondaryEducation", resourceCulture);
  5668. }
  5669. }
  5670. /// <summary>
  5671. /// Looks up a localized string similar to Secondary Teacher&apos;s book.
  5672. /// </summary>
  5673. public static string SecondaryTeacherBook {
  5674. get {
  5675. return ResourceManager.GetString("SecondaryTeacherBook", resourceCulture);
  5676. }
  5677. }
  5678. /// <summary>
  5679. /// Looks up a localized string similar to Secondary textbook.
  5680. /// </summary>
  5681. public static string SecondaryTextbook {
  5682. get {
  5683. return ResourceManager.GetString("SecondaryTextbook", resourceCulture);
  5684. }
  5685. }
  5686. /// <summary>
  5687. /// Looks up a localized string similar to Secondary textbooks.
  5688. /// </summary>
  5689. public static string SecondaryTextbooks {
  5690. get {
  5691. return ResourceManager.GetString("SecondaryTextbooks", resourceCulture);
  5692. }
  5693. }
  5694. /// <summary>
  5695. /// Looks up a localized string similar to Mystery.
  5696. /// </summary>
  5697. public static string Secret {
  5698. get {
  5699. return ResourceManager.GetString("Secret", resourceCulture);
  5700. }
  5701. }
  5702. /// <summary>
  5703. /// Looks up a localized string similar to Gain confidence in communication, advance at work or easily recruit in an international company..
  5704. /// </summary>
  5705. public static string SelfConfidenceInSpeaking {
  5706. get {
  5707. return ResourceManager.GetString("SelfConfidenceInSpeaking", resourceCulture);
  5708. }
  5709. }
  5710. /// <summary>
  5711. /// Looks up a localized string similar to Send.
  5712. /// </summary>
  5713. public static string Send {
  5714. get {
  5715. return ResourceManager.GetString("Send", resourceCulture);
  5716. }
  5717. }
  5718. /// <summary>
  5719. /// Looks up a localized string similar to Sex.
  5720. /// </summary>
  5721. public static string sex {
  5722. get {
  5723. return ResourceManager.GetString("sex", resourceCulture);
  5724. }
  5725. }
  5726. /// <summary>
  5727. /// Looks up a localized string similar to Log in.
  5728. /// </summary>
  5729. public static string SignIn {
  5730. get {
  5731. return ResourceManager.GetString("SignIn", resourceCulture);
  5732. }
  5733. }
  5734. /// <summary>
  5735. /// Looks up a localized string similar to Log out.
  5736. /// </summary>
  5737. public static string SignOut {
  5738. get {
  5739. return ResourceManager.GetString("SignOut", resourceCulture);
  5740. }
  5741. }
  5742. /// <summary>
  5743. /// Looks up a localized string similar to Register.
  5744. /// </summary>
  5745. public static string SignUp {
  5746. get {
  5747. return ResourceManager.GetString("SignUp", resourceCulture);
  5748. }
  5749. }
  5750. /// <summary>
  5751. /// Looks up a localized string similar to &lt;p&gt;&lt;strong&gt;Instructions for Customers to Register via App CamID and SMS:&lt;/strong&gt;&lt;/p&gt;
  5752. ///&lt;p&gt;&lt;br&gt;&lt;/p&gt;
  5753. ///&lt;ol&gt;
  5754. /// &lt;li&gt;
  5755. /// &lt;p&gt;&lt;strong&gt;Register via the App:&lt;/strong&gt;&lt;/p&gt;
  5756. /// &lt;ul&gt;
  5757. /// &lt;li&gt;Step 1: Download and install the CamID from the &lt;a href=&quot;https://apps.apple.com/vn/app/camid-movies-games-rewards/id1321717513?l=cam&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: rgb(44, 130, 201);&quot;&gt;App Store (iOS)&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; or &lt;a href=&quot;https://play.google.com/store/apps/deta [rest of string was truncated]&quot;;.
  5758. /// </summary>
  5759. public static string SignUpToCamID {
  5760. get {
  5761. return ResourceManager.GetString("SignUpToCamID", resourceCulture);
  5762. }
  5763. }
  5764. /// <summary>
  5765. /// Looks up a localized string similar to With 2 simple steps.
  5766. /// </summary>
  5767. public static string SimpleSteps {
  5768. get {
  5769. return ResourceManager.GetString("SimpleSteps", resourceCulture);
  5770. }
  5771. }
  5772. /// <summary>
  5773. /// Looks up a localized string similar to Thin.
  5774. /// </summary>
  5775. public static string slim {
  5776. get {
  5777. return ResourceManager.GetString("slim", resourceCulture);
  5778. }
  5779. }
  5780. /// <summary>
  5781. /// Looks up a localized string similar to Communicate.
  5782. /// </summary>
  5783. public static string Speaking {
  5784. get {
  5785. return ResourceManager.GetString("Speaking", resourceCulture);
  5786. }
  5787. }
  5788. /// <summary>
  5789. /// Looks up a localized string similar to You can standardize your pronunciation like a Native speaker..
  5790. /// </summary>
  5791. public static string SpeakingAsANativePeople {
  5792. get {
  5793. return ResourceManager.GetString("SpeakingAsANativePeople", resourceCulture);
  5794. }
  5795. }
  5796. /// <summary>
  5797. /// Looks up a localized string similar to With Listen to English, you speak English confidently, naturally and without sinking until after 3 months!.
  5798. /// </summary>
  5799. public static string SpeakingFluently {
  5800. get {
  5801. return ResourceManager.GetString("SpeakingFluently", resourceCulture);
  5802. }
  5803. }
  5804. /// <summary>
  5805. /// Looks up a localized string similar to English communication learning system.
  5806. /// </summary>
  5807. public static string SpeakingSystem {
  5808. get {
  5809. return ResourceManager.GetString("SpeakingSystem", resourceCulture);
  5810. }
  5811. }
  5812. /// <summary>
  5813. /// Looks up a localized string similar to Start.
  5814. /// </summary>
  5815. public static string Starting {
  5816. get {
  5817. return ResourceManager.GetString("Starting", resourceCulture);
  5818. }
  5819. }
  5820. /// <summary>
  5821. /// Looks up a localized string similar to Content.
  5822. /// </summary>
  5823. public static string Story {
  5824. get {
  5825. return ResourceManager.GetString("Story", resourceCulture);
  5826. }
  5827. }
  5828. /// <summary>
  5829. /// Looks up a localized string similar to P8.
  5830. /// </summary>
  5831. public static string String {
  5832. get {
  5833. return ResourceManager.GetString("String", resourceCulture);
  5834. }
  5835. }
  5836. /// <summary>
  5837. /// Looks up a localized string similar to Strong.
  5838. /// </summary>
  5839. public static string Strong {
  5840. get {
  5841. return ResourceManager.GetString("Strong", resourceCulture);
  5842. }
  5843. }
  5844. /// <summary>
  5845. /// Looks up a localized string similar to Topic.
  5846. /// </summary>
  5847. public static string Subject {
  5848. get {
  5849. return ResourceManager.GetString("Subject", resourceCulture);
  5850. }
  5851. }
  5852. /// <summary>
  5853. /// Looks up a localized string similar to Save changes.
  5854. /// </summary>
  5855. public static string Submit {
  5856. get {
  5857. return ResourceManager.GetString("Submit", resourceCulture);
  5858. }
  5859. }
  5860. /// <summary>
  5861. /// Looks up a localized string similar to Register.
  5862. /// </summary>
  5863. public static string Subscriber {
  5864. get {
  5865. return ResourceManager.GetString("Subscriber", resourceCulture);
  5866. }
  5867. }
  5868. /// <summary>
  5869. /// Looks up a localized string similar to Sign up for the service now.
  5870. /// </summary>
  5871. public static string SubscriberNow {
  5872. get {
  5873. return ResourceManager.GetString("SubscriberNow", resourceCulture);
  5874. }
  5875. }
  5876. /// <summary>
  5877. /// Looks up a localized string similar to The Results Will Surprise You!.
  5878. /// </summary>
  5879. public static string SurpriseResult {
  5880. get {
  5881. return ResourceManager.GetString("SurpriseResult", resourceCulture);
  5882. }
  5883. }
  5884. /// <summary>
  5885. /// Looks up a localized string similar to Teacher’s book.
  5886. /// </summary>
  5887. public static string TeacherBook {
  5888. get {
  5889. return ResourceManager.GetString("TeacherBook", resourceCulture);
  5890. }
  5891. }
  5892. /// <summary>
  5893. /// Looks up a localized string similar to Test results.
  5894. /// </summary>
  5895. public static string TestingResults {
  5896. get {
  5897. return ResourceManager.GetString("TestingResults", resourceCulture);
  5898. }
  5899. }
  5900. /// <summary>
  5901. /// Looks up a localized string similar to The minigame consists of 20 questions..
  5902. /// </summary>
  5903. public static string TheMinigameConsists {
  5904. get {
  5905. return ResourceManager.GetString("TheMinigameConsists", resourceCulture);
  5906. }
  5907. }
  5908. /// <summary>
  5909. /// Looks up a localized string similar to The mini-game starts at 10:00 AM every Sunday..
  5910. /// </summary>
  5911. public static string TheMiniGameStartsAt {
  5912. get {
  5913. return ResourceManager.GetString("TheMiniGameStartsAt", resourceCulture);
  5914. }
  5915. }
  5916. /// <summary>
  5917. /// Looks up a localized string similar to Here are some points you need to keep in mind!.
  5918. /// </summary>
  5919. public static string TheNotices {
  5920. get {
  5921. return ResourceManager.GetString("TheNotices", resourceCulture);
  5922. }
  5923. }
  5924. /// <summary>
  5925. /// Looks up a localized string similar to Theory.
  5926. /// </summary>
  5927. public static string Theory {
  5928. get {
  5929. return ResourceManager.GetString("Theory", resourceCulture);
  5930. }
  5931. }
  5932. /// <summary>
  5933. /// Looks up a localized string similar to There is only one prize for the participant who correctly answers all 20 questions the fastest. The prize is 20$, transfer via Emoney.
  5934. /// </summary>
  5935. public static string ThereIsOnlyOnePrizeFor {
  5936. get {
  5937. return ResourceManager.GetString("ThereIsOnlyOnePrizeFor", resourceCulture);
  5938. }
  5939. }
  5940. /// <summary>
  5941. /// Looks up a localized string similar to Exam room rules.
  5942. /// </summary>
  5943. public static string TheRules {
  5944. get {
  5945. return ResourceManager.GetString("TheRules", resourceCulture);
  5946. }
  5947. }
  5948. /// <summary>
  5949. /// Looks up a localized string similar to The method helps you improve your English speaking ability through a completely new method, you will speak English confidently and fluently without having to study Grammar or do exercises..
  5950. /// </summary>
  5951. public static string ThisMethodHelpsImprovingYourSpekingSkill {
  5952. get {
  5953. return ResourceManager.GetString("ThisMethodHelpsImprovingYourSpekingSkill", resourceCulture);
  5954. }
  5955. }
  5956. /// <summary>
  5957. /// Looks up a localized string similar to The method helps you master English grammar and grammar with a new, lively, easy-to-understand, easy-to-practice learning method, not as dry as the traditional learning method..
  5958. /// </summary>
  5959. public static string ThisMethodHelpsYouCreateADocumentEasily {
  5960. get {
  5961. return ResourceManager.GetString("ThisMethodHelpsYouCreateADocumentEasily", resourceCulture);
  5962. }
  5963. }
  5964. /// <summary>
  5965. /// Looks up a localized string similar to The method helps you learn and remember English vocabulary easily. With MEDU, you can memorize 20, 30, even 50 vocabulary words every day without pressure or boredom..
  5966. /// </summary>
  5967. public static string ThisMethodHelpsYouRememberEasily {
  5968. get {
  5969. return ResourceManager.GetString("ThisMethodHelpsYouRememberEasily", resourceCulture);
  5970. }
  5971. }
  5972. /// <summary>
  5973. /// Looks up a localized string similar to 3 Steps to Learn English Vocabulary Smartly.
  5974. /// </summary>
  5975. public static string ThreeStepsToLearn {
  5976. get {
  5977. return ResourceManager.GetString("ThreeStepsToLearn", resourceCulture);
  5978. }
  5979. }
  5980. /// <summary>
  5981. /// Looks up a localized string similar to MINIGAME.
  5982. /// </summary>
  5983. public static string Tille_minigame {
  5984. get {
  5985. return ResourceManager.GetString("Tille_minigame", resourceCulture);
  5986. }
  5987. }
  5988. /// <summary>
  5989. /// Looks up a localized string similar to total time.
  5990. /// </summary>
  5991. public static string Timer {
  5992. get {
  5993. return ResourceManager.GetString("Timer", resourceCulture);
  5994. }
  5995. }
  5996. /// <summary>
  5997. /// Looks up a localized string similar to to join interesting courses.
  5998. /// </summary>
  5999. public static string toJoinAttractiveCourses {
  6000. get {
  6001. return ResourceManager.GetString("toJoinAttractiveCourses", resourceCulture);
  6002. }
  6003. }
  6004. /// <summary>
  6005. /// Looks up a localized string similar to Calculator.
  6006. /// </summary>
  6007. public static string toolCal {
  6008. get {
  6009. return ResourceManager.GetString("toolCal", resourceCulture);
  6010. }
  6011. }
  6012. /// <summary>
  6013. /// Looks up a localized string similar to Translated.
  6014. /// </summary>
  6015. public static string Translated {
  6016. get {
  6017. return ResourceManager.GetString("Translated", resourceCulture);
  6018. }
  6019. }
  6020. /// <summary>
  6021. /// Looks up a localized string similar to Free experience!.
  6022. /// </summary>
  6023. public static string TryForFree {
  6024. get {
  6025. return ResourceManager.GetString("TryForFree", resourceCulture);
  6026. }
  6027. }
  6028. /// <summary>
  6029. /// Looks up a localized string similar to Free experience!.
  6030. /// </summary>
  6031. public static string TryForFree1 {
  6032. get {
  6033. return ResourceManager.GetString("TryForFree1", resourceCulture);
  6034. }
  6035. }
  6036. /// <summary>
  6037. /// Looks up a localized string similar to Try learning now.
  6038. /// </summary>
  6039. public static string TryingNow {
  6040. get {
  6041. return ResourceManager.GetString("TryingNow", resourceCulture);
  6042. }
  6043. }
  6044. /// <summary>
  6045. /// Looks up a localized string similar to Come on!.
  6046. /// </summary>
  6047. public static string TryYourBest {
  6048. get {
  6049. return ResourceManager.GetString("TryYourBest", resourceCulture);
  6050. }
  6051. }
  6052. /// <summary>
  6053. /// Looks up a localized string similar to You can watch movies or listen to English music without subtitles, but still understand 80%, 90%, even 100%..
  6054. /// </summary>
  6055. public static string UnderstandingYourMovies {
  6056. get {
  6057. return ResourceManager.GetString("UnderstandingYourMovies", resourceCulture);
  6058. }
  6059. }
  6060. /// <summary>
  6061. /// Looks up a localized string similar to UnitelEduSystem.
  6062. /// </summary>
  6063. public static string UnitelEduSystem {
  6064. get {
  6065. return ResourceManager.GetString("UnitelEduSystem", resourceCulture);
  6066. }
  6067. }
  6068. /// <summary>
  6069. /// Looks up a localized string similar to The user has been locked out. Please log in after 5 minutes..
  6070. /// </summary>
  6071. public static string UserLocked {
  6072. get {
  6073. return ResourceManager.GetString("UserLocked", resourceCulture);
  6074. }
  6075. }
  6076. /// <summary>
  6077. /// Looks up a localized string similar to useUntitel.
  6078. /// </summary>
  6079. public static string useUntitel {
  6080. get {
  6081. return ResourceManager.GetString("useUntitel", resourceCulture);
  6082. }
  6083. }
  6084. /// <summary>
  6085. /// Looks up a localized string similar to MEDU is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers..
  6086. /// </summary>
  6087. public static string Ustudy_des_1 {
  6088. get {
  6089. return ResourceManager.GetString("Ustudy_des_1", resourceCulture);
  6090. }
  6091. }
  6092. /// <summary>
  6093. /// Looks up a localized string similar to .
  6094. /// </summary>
  6095. public static string Ustudy_des_1_Lao {
  6096. get {
  6097. return ResourceManager.GetString("Ustudy_des_1_Lao", resourceCulture);
  6098. }
  6099. }
  6100. /// <summary>
  6101. /// Looks up a localized string similar to .
  6102. /// </summary>
  6103. public static string Ustudy_des_1_Viet {
  6104. get {
  6105. return ResourceManager.GetString("Ustudy_des_1_Viet", resourceCulture);
  6106. }
  6107. }
  6108. /// <summary>
  6109. /// Looks up a localized string similar to MEDU is a smart English vocabulary learning system that will help you remember vocabulary easily and deeply in just a short time..
  6110. /// </summary>
  6111. public static string Ustudy_des_2 {
  6112. get {
  6113. return ResourceManager.GetString("Ustudy_des_2", resourceCulture);
  6114. }
  6115. }
  6116. /// <summary>
  6117. /// Looks up a localized string similar to English grammar learning system.
  6118. /// </summary>
  6119. public static string Ustudy_grammar {
  6120. get {
  6121. return ResourceManager.GetString("Ustudy_grammar", resourceCulture);
  6122. }
  6123. }
  6124. /// <summary>
  6125. /// Looks up a localized string similar to English communication learning system.
  6126. /// </summary>
  6127. public static string Ustudy_listening {
  6128. get {
  6129. return ResourceManager.GetString("Ustudy_listening", resourceCulture);
  6130. }
  6131. }
  6132. /// <summary>
  6133. /// Looks up a localized string similar to English vocabulary learning system.
  6134. /// </summary>
  6135. public static string Ustudy_vocabulary {
  6136. get {
  6137. return ResourceManager.GetString("Ustudy_vocabulary", resourceCulture);
  6138. }
  6139. }
  6140. /// <summary>
  6141. /// Looks up a localized string similar to MEDU will provide learners with complete theories on grammar topics with a vivid, easy-to-remember presentation of bilingual content..
  6142. /// </summary>
  6143. public static string UstudyGivesYouAllinstrumentsToLearn {
  6144. get {
  6145. return ResourceManager.GetString("UstudyGivesYouAllinstrumentsToLearn", resourceCulture);
  6146. }
  6147. }
  6148. /// <summary>
  6149. /// Looks up a localized string similar to Bring MEDU grammar.
  6150. /// </summary>
  6151. public static string UstudyGrammar {
  6152. get {
  6153. return ResourceManager.GetString("UstudyGrammar", resourceCulture);
  6154. }
  6155. }
  6156. /// <summary>
  6157. /// Looks up a localized string similar to MEDU GRAMMAR is the first smart online English grammar learning system in Timor, helping learners access and master English grammar in just 6 months..
  6158. /// </summary>
  6159. public static string UstudyGrammarIsTheFirstIntelligentSystemInLao {
  6160. get {
  6161. return ResourceManager.GetString("UstudyGrammarIsTheFirstIntelligentSystemInLao", resourceCulture);
  6162. }
  6163. }
  6164. /// <summary>
  6165. /// Looks up a localized string similar to To overcome the above situation, MEDU has developed a COMPLETELY NEW method of learning English communication - This method is based on the process of accessing natural language (Natural Language Approach), helping learners to Speak English confidently, naturally and fluently after only 6 months. This system is called MEDU LISTENING - Learn English communication in a natural way.
  6166. /// </summary>
  6167. public static string UstudyHasDevelopedANewMethodToImproveSpeakingSkillBaseOnNaturalLanguageApproach {
  6168. get {
  6169. return ResourceManager.GetString("UstudyHasDevelopedANewMethodToImproveSpeakingSkillBaseOnNaturalLanguageApproach", resourceCulture);
  6170. }
  6171. }
  6172. /// <summary>
  6173. /// Looks up a localized string similar to MEDU will help learners apply and understand more deeply the theories of grammar topics they have learned through practice exercises..
  6174. /// </summary>
  6175. public static string UstudyHelpsYouUnderstandingDeeply {
  6176. get {
  6177. return ResourceManager.GetString("UstudyHelpsYouUnderstandingDeeply", resourceCulture);
  6178. }
  6179. }
  6180. /// <summary>
  6181. /// Looks up a localized string similar to MEDU is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers..
  6182. /// </summary>
  6183. public static string UstudyIsAProductOfUstudyToHelpOvercomingAnObstacle {
  6184. get {
  6185. return ResourceManager.GetString("UstudyIsAProductOfUstudyToHelpOvercomingAnObstacle", resourceCulture);
  6186. }
  6187. }
  6188. /// <summary>
  6189. /// Looks up a localized string similar to Listening to English is a natural approach to learning English, it helps you improve your English listening and speaking ability easily and quickly in just 6 months..
  6190. /// </summary>
  6191. public static string UstudyListeningIsTheFirstIntelligentSystemInLao {
  6192. get {
  6193. return ResourceManager.GetString("UstudyListeningIsTheFirstIntelligentSystemInLao", resourceCulture);
  6194. }
  6195. }
  6196. /// <summary>
  6197. /// Looks up a localized string similar to MEDU will help you make your dreams come true.
  6198. /// </summary>
  6199. public static string USTUDYMakesYourDreamComeTrue {
  6200. get {
  6201. return ResourceManager.GetString("USTUDYMakesYourDreamComeTrue", resourceCulture);
  6202. }
  6203. }
  6204. /// <summary>
  6205. /// Looks up a localized string similar to MEDU  offers vocabulary lessons, 4 skills: listening, speaking, reading, writing, games in English, stories, etc..
  6206. /// </summary>
  6207. public static string USTUDYProvidesLessonsAbout4Skills {
  6208. get {
  6209. return ResourceManager.GetString("USTUDYProvidesLessonsAbout4Skills", resourceCulture);
  6210. }
  6211. }
  6212. /// <summary>
  6213. /// Looks up a localized string similar to MEDU will remind you every day and you can&apos;t be distracted from learning English!.
  6214. /// </summary>
  6215. public static string USTUDYReminderYouEveryday {
  6216. get {
  6217. return ResourceManager.GetString("USTUDYReminderYouEveryday", resourceCulture);
  6218. }
  6219. }
  6220. /// <summary>
  6221. /// Looks up a localized string similar to MEDU VOCABULARY.
  6222. /// </summary>
  6223. public static string UstudyVocabulary {
  6224. get {
  6225. return ResourceManager.GetString("UstudyVocabulary", resourceCulture);
  6226. }
  6227. }
  6228. /// <summary>
  6229. /// Looks up a localized string similar to Come to MEDU.
  6230. /// </summary>
  6231. public static string USTUDYWelcomeYou {
  6232. get {
  6233. return ResourceManager.GetString("USTUDYWelcomeYou", resourceCulture);
  6234. }
  6235. }
  6236. /// <summary>
  6237. /// Looks up a localized string similar to .
  6238. /// </summary>
  6239. public static string vietnamese {
  6240. get {
  6241. return ResourceManager.GetString("vietnamese", resourceCulture);
  6242. }
  6243. }
  6244. /// <summary>
  6245. /// Looks up a localized string similar to View.
  6246. /// </summary>
  6247. public static string View {
  6248. get {
  6249. return ResourceManager.GetString("View", resourceCulture);
  6250. }
  6251. }
  6252. /// <summary>
  6253. /// Looks up a localized string similar to will.
  6254. /// </summary>
  6255. public static string Voca_des_1_a {
  6256. get {
  6257. return ResourceManager.GetString("Voca_des_1_a", resourceCulture);
  6258. }
  6259. }
  6260. /// <summary>
  6261. /// Looks up a localized string similar to tease you.
  6262. /// </summary>
  6263. public static string Voca_des_1_b {
  6264. get {
  6265. return ResourceManager.GetString("Voca_des_1_b", resourceCulture);
  6266. }
  6267. }
  6268. /// <summary>
  6269. /// Looks up a localized string similar to encourage you.
  6270. /// </summary>
  6271. public static string Voca_des_1_c {
  6272. get {
  6273. return ResourceManager.GetString("Voca_des_1_c", resourceCulture);
  6274. }
  6275. }
  6276. /// <summary>
  6277. /// Looks up a localized string similar to and.
  6278. /// </summary>
  6279. public static string Voca_des_1_d {
  6280. get {
  6281. return ResourceManager.GetString("Voca_des_1_d", resourceCulture);
  6282. }
  6283. }
  6284. /// <summary>
  6285. /// Looks up a localized string similar to reward for you.
  6286. /// </summary>
  6287. public static string Voca_des_1_e {
  6288. get {
  6289. return ResourceManager.GetString("Voca_des_1_e", resourceCulture);
  6290. }
  6291. }
  6292. /// <summary>
  6293. /// Looks up a localized string similar to MEDU will go with you everywhere, and you can never leave MEDU.
  6294. /// </summary>
  6295. public static string Voca_des_2 {
  6296. get {
  6297. return ResourceManager.GetString("Voca_des_2", resourceCulture);
  6298. }
  6299. }
  6300. /// <summary>
  6301. /// Looks up a localized string similar to The method helps you learn and remember English vocabulary easily. With MEDU, you can memorize 20, 30, even 50 vocabulary words every day without pressure or boredom..
  6302. /// </summary>
  6303. public static string Voca_des_3 {
  6304. get {
  6305. return ResourceManager.GetString("Voca_des_3", resourceCulture);
  6306. }
  6307. }
  6308. /// <summary>
  6309. /// Looks up a localized string similar to Vocabulary.
  6310. /// </summary>
  6311. public static string Vocabulary {
  6312. get {
  6313. return ResourceManager.GetString("Vocabulary", resourceCulture);
  6314. }
  6315. }
  6316. /// <summary>
  6317. /// Looks up a localized string similar to English vocabulary learning system.
  6318. /// </summary>
  6319. public static string VocabularySystem {
  6320. get {
  6321. return ResourceManager.GetString("VocabularySystem", resourceCulture);
  6322. }
  6323. }
  6324. /// <summary>
  6325. /// Looks up a localized string similar to Weight.
  6326. /// </summary>
  6327. public static string weight {
  6328. get {
  6329. return ResourceManager.GetString("weight", resourceCulture);
  6330. }
  6331. }
  6332. /// <summary>
  6333. /// Looks up a localized string similar to Account.
  6334. /// </summary>
  6335. public static string Welcome {
  6336. get {
  6337. return ResourceManager.GetString("Welcome", resourceCulture);
  6338. }
  6339. }
  6340. /// <summary>
  6341. /// Looks up a localized string similar to Welcome back.
  6342. /// </summary>
  6343. public static string WelcomeBack {
  6344. get {
  6345. return ResourceManager.GetString("WelcomeBack", resourceCulture);
  6346. }
  6347. }
  6348. /// <summary>
  6349. /// Looks up a localized string similar to Welcome to MEDU.
  6350. /// </summary>
  6351. public static string welcomeToUstudy {
  6352. get {
  6353. return ResourceManager.GetString("welcomeToUstudy", resourceCulture);
  6354. }
  6355. }
  6356. /// <summary>
  6357. /// Looks up a localized string similar to will.
  6358. /// </summary>
  6359. public static string will {
  6360. get {
  6361. return ResourceManager.GetString("will", resourceCulture);
  6362. }
  6363. }
  6364. /// <summary>
  6365. /// Looks up a localized string similar to from.
  6366. /// </summary>
  6367. public static string Word {
  6368. get {
  6369. return ResourceManager.GetString("Word", resourceCulture);
  6370. }
  6371. }
  6372. /// <summary>
  6373. /// Looks up a localized string similar to You answered wrong!.
  6374. /// </summary>
  6375. public static string WrongAnswer {
  6376. get {
  6377. return ResourceManager.GetString("WrongAnswer", resourceCulture);
  6378. }
  6379. }
  6380. /// <summary>
  6381. /// Looks up a localized string similar to Your subscription is not a Telemor subscription, please use a Telemor subscription to register for the service..
  6382. /// </summary>
  6383. public static string wrongTelco {
  6384. get {
  6385. return ResourceManager.GetString("wrongTelco", resourceCulture);
  6386. }
  6387. }
  6388. /// <summary>
  6389. /// Looks up a localized string similar to You&apos;ve done it! You&apos;ve 20 correct anwsers! Your skills and determination have paid off, and we&apos;re excited to celebrate your victory. The leaderboard will be updated next Monday morning. Your prize money will be announced soon. Thank you..
  6390. /// </summary>
  6391. public static string You_veDoneit_You_ve20CorrectAnwsers {
  6392. get {
  6393. return ResourceManager.GetString("You\'veDoneit!You\'ve20CorrectAnwsers", resourceCulture);
  6394. }
  6395. }
  6396. /// <summary>
  6397. /// Looks up a localized string similar to Do you have difficulty when your grammar knowledge is too vast, but your grammar books do not cover all the knowledge you need to learn?.
  6398. /// </summary>
  6399. public static string YouCannotLearnAHugeKnowledgeOfGrammar {
  6400. get {
  6401. return ResourceManager.GetString("YouCannotLearnAHugeKnowledgeOfGrammar", resourceCulture);
  6402. }
  6403. }
  6404. /// <summary>
  6405. /// Looks up a localized string similar to Do you have difficulty explaining English to native speakers, they can&apos;t understand you, or misunderstand your meaning just because you use wrong grammar?.
  6406. /// </summary>
  6407. public static string YouCannotPresentToSomeone {
  6408. get {
  6409. return ResourceManager.GetString("YouCannotPresentToSomeone", resourceCulture);
  6410. }
  6411. }
  6412. /// <summary>
  6413. /// Looks up a localized string similar to You have 15 seconds to think and give your answer..
  6414. /// </summary>
  6415. public static string YouHave15Seconds {
  6416. get {
  6417. return ResourceManager.GetString("YouHave15Seconds", resourceCulture);
  6418. }
  6419. }
  6420. /// <summary>
  6421. /// Looks up a localized string similar to Have you studied English grammar for many years but still can&apos;t use it fluently and accurately in writing and speaking?.
  6422. /// </summary>
  6423. public static string YouHaveLearnedForManyYearsButCannotUseItFluently {
  6424. get {
  6425. return ResourceManager.GetString("YouHaveLearnedForManyYearsButCannotUseItFluently", resourceCulture);
  6426. }
  6427. }
  6428. /// <summary>
  6429. /// Looks up a localized string similar to Have You Been Studying English For Many Years But Still Can&apos;t Listen Or Speak English?.
  6430. /// </summary>
  6431. public static string YouHaveLearnedSpeakingOrListeningButCannotUseIt {
  6432. get {
  6433. return ResourceManager.GetString("YouHaveLearnedSpeakingOrListeningButCannotUseIt", resourceCulture);
  6434. }
  6435. }
  6436. /// <summary>
  6437. /// Looks up a localized string similar to Do you often use grammatical structures incorrectly, and you don&apos;t know how to use them in the correct situations or situations?.
  6438. /// </summary>
  6439. public static string YouHaveManyMistakesInDocuments {
  6440. get {
  6441. return ResourceManager.GetString("YouHaveManyMistakesInDocuments", resourceCulture);
  6442. }
  6443. }
  6444. /// <summary>
  6445. /// Looks up a localized string similar to You have not registered MEDU service yet. Please try to register and comeback to play minigame. Thank you!.
  6446. /// </summary>
  6447. public static string YouHaven_tRegisteredMEDU {
  6448. get {
  6449. return ResourceManager.GetString("YouHaven\'tRegisteredMEDU", resourceCulture);
  6450. }
  6451. }
  6452. /// <summary>
  6453. /// Looks up a localized string similar to YOU DON&apos;T HAVE ANY COURSES.
  6454. /// </summary>
  6455. public static string YouHaveNoCourse {
  6456. get {
  6457. return ResourceManager.GetString("YouHaveNoCourse", resourceCulture);
  6458. }
  6459. }
  6460. /// <summary>
  6461. /// Looks up a localized string similar to You have out of turn to play minigame. Please come back on Sunday nextweek. Thank for using service..
  6462. /// </summary>
  6463. public static string YouHaveOutOfTurnToPlayMinigame {
  6464. get {
  6465. return ResourceManager.GetString("YouHaveOutOfTurnToPlayMinigame", resourceCulture);
  6466. }
  6467. }
  6468. /// <summary>
  6469. /// Looks up a localized string similar to More than anyone else, you know the importance of learning English grammar, but are powerless to find an effective learning method. You are worried because English exams are approaching, you need IELTS, TOEFL scores... to study abroad, you also need to get high results in the upcoming National exam..
  6470. /// </summary>
  6471. public static string YouKnowAboutTheImportanceOfLearningEnglish {
  6472. get {
  6473. return ResourceManager.GetString("YouKnowAboutTheImportanceOfLearningEnglish", resourceCulture);
  6474. }
  6475. }
  6476. /// <summary>
  6477. /// Looks up a localized string similar to The courses you are studying.
  6478. /// </summary>
  6479. public static string YourCourses {
  6480. get {
  6481. return ResourceManager.GetString("YourCourses", resourceCulture);
  6482. }
  6483. }
  6484. /// <summary>
  6485. /// Looks up a localized string similar to Your natural listening and reflexive skills will stay with you forever and will not disappear..
  6486. /// </summary>
  6487. public static string YourListeningExistsForever {
  6488. get {
  6489. return ResourceManager.GetString("YourListeningExistsForever", resourceCulture);
  6490. }
  6491. }
  6492. /// <summary>
  6493. /// Looks up a localized string similar to Your account has been successfully created. Your password is.
  6494. /// </summary>
  6495. public static string yourPassword {
  6496. get {
  6497. return ResourceManager.GetString("yourPassword", resourceCulture);
  6498. }
  6499. }
  6500. /// <summary>
  6501. /// Looks up a localized string similar to Your vocabulary will increase quickly, you will not be afraid to forget it or not know how to use it because it is already in your subconscious..
  6502. /// </summary>
  6503. public static string YourVocabularyImprovesQuickly {
  6504. get {
  6505. return ResourceManager.GetString("YourVocabularyImprovesQuickly", resourceCulture);
  6506. }
  6507. }
  6508. }
  6509. }