Lang.resx 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <root>
  3. <!--
  4. Microsoft ResX Schema
  5. Version 2.0
  6. The primary goals of this format is to allow a simple XML format
  7. that is mostly human readable. The generation and parsing of the
  8. various data types are done through the TypeConverter classes
  9. associated with the data types.
  10. Example:
  11. ... ado.net/XML headers & schema ...
  12. <resheader name="resmimetype">text/microsoft-resx</resheader>
  13. <resheader name="version">2.0</resheader>
  14. <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
  15. <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
  16. <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
  17. <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
  18. <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
  19. <value>[base64 mime encoded serialized .NET Framework object]</value>
  20. </data>
  21. <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
  22. <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
  23. <comment>This is a comment</comment>
  24. </data>
  25. There are any number of "resheader" rows that contain simple
  26. name/value pairs.
  27. Each data row contains a name, and value. The row also contains a
  28. type or mimetype. Type corresponds to a .NET class that support
  29. text/value conversion through the TypeConverter architecture.
  30. Classes that don't support this are serialized and stored with the
  31. mimetype set.
  32. The mimetype is used for serialized objects, and tells the
  33. ResXResourceReader how to depersist the object. This is currently not
  34. extensible. For a given mimetype the value must be set accordingly:
  35. Note - application/x-microsoft.net.object.binary.base64 is the format
  36. that the ResXResourceWriter will generate, however the reader can
  37. read any of the formats listed below.
  38. mimetype: application/x-microsoft.net.object.binary.base64
  39. value : The object must be serialized with
  40. : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
  41. : and then encoded with base64 encoding.
  42. mimetype: application/x-microsoft.net.object.soap.base64
  43. value : The object must be serialized with
  44. : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
  45. : and then encoded with base64 encoding.
  46. mimetype: application/x-microsoft.net.object.bytearray.base64
  47. value : The object must be serialized into a byte array
  48. : using a System.ComponentModel.TypeConverter
  49. : and then encoded with base64 encoding.
  50. -->
  51. <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
  52. <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
  53. <xsd:element name="root" msdata:IsDataSet="true">
  54. <xsd:complexType>
  55. <xsd:choice maxOccurs="unbounded">
  56. <xsd:element name="metadata">
  57. <xsd:complexType>
  58. <xsd:sequence>
  59. <xsd:element name="value" type="xsd:string" minOccurs="0" />
  60. </xsd:sequence>
  61. <xsd:attribute name="name" use="required" type="xsd:string" />
  62. <xsd:attribute name="type" type="xsd:string" />
  63. <xsd:attribute name="mimetype" type="xsd:string" />
  64. <xsd:attribute ref="xml:space" />
  65. </xsd:complexType>
  66. </xsd:element>
  67. <xsd:element name="assembly">
  68. <xsd:complexType>
  69. <xsd:attribute name="alias" type="xsd:string" />
  70. <xsd:attribute name="name" type="xsd:string" />
  71. </xsd:complexType>
  72. </xsd:element>
  73. <xsd:element name="data">
  74. <xsd:complexType>
  75. <xsd:sequence>
  76. <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
  77. <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
  78. </xsd:sequence>
  79. <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
  80. <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
  81. <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
  82. <xsd:attribute ref="xml:space" />
  83. </xsd:complexType>
  84. </xsd:element>
  85. <xsd:element name="resheader">
  86. <xsd:complexType>
  87. <xsd:sequence>
  88. <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
  89. </xsd:sequence>
  90. <xsd:attribute name="name" type="xsd:string" use="required" />
  91. </xsd:complexType>
  92. </xsd:element>
  93. </xsd:choice>
  94. </xsd:complexType>
  95. </xsd:element>
  96. </xsd:schema>
  97. <resheader name="resmimetype">
  98. <value>text/microsoft-resx</value>
  99. </resheader>
  100. <resheader name="version">
  101. <value>2.0</value>
  102. </resheader>
  103. <resheader name="reader">
  104. <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  105. </resheader>
  106. <resheader name="writer">
  107. <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  108. </resheader>
  109. <data name="A01" xml:space="preserve">
  110. <value>DESCRIPTION_LOCAL</value>
  111. </data>
  112. <data name="A02" xml:space="preserve">
  113. <value>Lao Language Volume 1</value>
  114. </data>
  115. <data name="A03" xml:space="preserve">
  116. <value>Mathematics 2</value>
  117. </data>
  118. <data name="A04" xml:space="preserve">
  119. <value>Mathematics 1</value>
  120. </data>
  121. <data name="A05" xml:space="preserve">
  122. <value>Lao Language Volume 2</value>
  123. </data>
  124. <data name="A06" xml:space="preserve">
  125. <value>My identity</value>
  126. </data>
  127. <data name="A07" xml:space="preserve">
  128. <value>my school</value>
  129. </data>
  130. <data name="A08" xml:space="preserve">
  131. <value>My home</value>
  132. </data>
  133. <data name="A09" xml:space="preserve">
  134. <value>The natural around us</value>
  135. </data>
  136. <data name="A10" xml:space="preserve">
  137. <value>The environment around us</value>
  138. </data>
  139. <data name="A11" xml:space="preserve">
  140. <value>Telecommunications And communication</value>
  141. </data>
  142. <data name="A12" xml:space="preserve">
  143. <value>Material around us</value>
  144. </data>
  145. <data name="A13" xml:space="preserve">
  146. <value>Lao Language Volume 1</value>
  147. </data>
  148. <data name="A14" xml:space="preserve">
  149. <value>Lao Language Volume 2</value>
  150. </data>
  151. <data name="A15" xml:space="preserve">
  152. <value>Mathematics  Volume 1</value>
  153. </data>
  154. <data name="A16" xml:space="preserve">
  155. <value>Mathematics  Volume 2</value>
  156. </data>
  157. <data name="A17" xml:space="preserve">
  158. <value>My body</value>
  159. </data>
  160. <data name="A18" xml:space="preserve">
  161. <value>My family</value>
  162. </data>
  163. <data name="A19" xml:space="preserve">
  164. <value>my school</value>
  165. </data>
  166. <data name="A20" xml:space="preserve">
  167. <value>My home</value>
  168. </data>
  169. <data name="A21" xml:space="preserve">
  170. <value>The natural around us</value>
  171. </data>
  172. <data name="A22" xml:space="preserve">
  173. <value>The environment around us</value>
  174. </data>
  175. <data name="A23" xml:space="preserve">
  176. <value>Telecommunications And communication</value>
  177. </data>
  178. <data name="A24" xml:space="preserve">
  179. <value>Material around us</value>
  180. </data>
  181. <data name="A25" xml:space="preserve">
  182. <value>The natural around us</value>
  183. </data>
  184. <data name="A26" xml:space="preserve">
  185. <value>Lao Language Volume 1</value>
  186. </data>
  187. <data name="A27" xml:space="preserve">
  188. <value>Lao Language Volume 2</value>
  189. </data>
  190. <data name="A28" xml:space="preserve">
  191. <value>Mathematics  Volume 1</value>
  192. </data>
  193. <data name="A29" xml:space="preserve">
  194. <value>Mathematics  Volume 2</value>
  195. </data>
  196. <data name="A30" xml:space="preserve">
  197. <value>Material around us</value>
  198. </data>
  199. <data name="A31" xml:space="preserve">
  200. <value>My body</value>
  201. </data>
  202. <data name="A32" xml:space="preserve">
  203. <value>My family</value>
  204. </data>
  205. <data name="A33" xml:space="preserve">
  206. <value>my school</value>
  207. </data>
  208. <data name="A34" xml:space="preserve">
  209. <value>My home</value>
  210. </data>
  211. <data name="A35" xml:space="preserve">
  212. <value>The environment around us</value>
  213. </data>
  214. <data name="A36" xml:space="preserve">
  215. <value>Telecommunications And communication</value>
  216. </data>
  217. <data name="About" xml:space="preserve">
  218. <value>Introduce MEDU</value>
  219. </data>
  220. <data name="act" xml:space="preserve">
  221. <value>Activity level</value>
  222. </data>
  223. <data name="Active" xml:space="preserve">
  224. <value>active</value>
  225. </data>
  226. <data name="actLike1" xml:space="preserve">
  227. <value>No exercise or little exercise</value>
  228. </data>
  229. <data name="actLike2" xml:space="preserve">
  230. <value>1-3 sessions or 1 - 4 hours/week</value>
  231. </data>
  232. <data name="actLike3" xml:space="preserve">
  233. <value>4-5 sessions or 5 - 9 hours/week</value>
  234. </data>
  235. <data name="actLike4" xml:space="preserve">
  236. <value>More than 6 sessions or more than 10 hours/week</value>
  237. </data>
  238. <data name="act_des_1" xml:space="preserve">
  239. <value>No exercise or little exercise</value>
  240. </data>
  241. <data name="act_des_2" xml:space="preserve">
  242. <value>1-3 sessions or 1 - 4 hours/week</value>
  243. </data>
  244. <data name="act_des_3" xml:space="preserve">
  245. <value>4-5 sessions or 5 - 9 hours/week</value>
  246. </data>
  247. <data name="act_des_4" xml:space="preserve">
  248. <value>More than 6 sessions or more than 10 hours/week</value>
  249. </data>
  250. <data name="age" xml:space="preserve">
  251. <value>Age</value>
  252. </data>
  253. <data name="AlreadyAMember" xml:space="preserve">
  254. <value>Already a member?</value>
  255. </data>
  256. <data name="AlreadyRegistered" xml:space="preserve">
  257. <value>Your phone number has been registered with the service</value>
  258. </data>
  259. <data name="and" xml:space="preserve">
  260. <value>and</value>
  261. </data>
  262. <data name="ANewLearningMethod" xml:space="preserve">
  263. <value>Tất cả cách học mới</value>
  264. </data>
  265. <data name="ANewLessonWillBeOpenedAfter6Hours" xml:space="preserve">
  266. <value>MEDU will open a new lesson for you.</value>
  267. </data>
  268. <data name="annoy" xml:space="preserve">
  269. <value>tease you</value>
  270. </data>
  271. <data name="AnotherExample" xml:space="preserve">
  272. <value>Other examples</value>
  273. </data>
  274. <data name="AreYouGoingToQuit" xml:space="preserve">
  275. <value>Are you going to quit minigame? You will lost the chance to play game and get 20$. </value>
  276. </data>
  277. <data name="AreYouReady" xml:space="preserve">
  278. <value>Are you ready?</value>
  279. </data>
  280. <data name="ASpeakingAsANativePeople" xml:space="preserve">
  281. <value>You can pronounce it like a native speaker.</value>
  282. </data>
  283. <data name="Aspiration" xml:space="preserve">
  284. <value>Hunger</value>
  285. </data>
  286. <data name="B01" xml:space="preserve">
  287. <value>My body</value>
  288. </data>
  289. <data name="B02" xml:space="preserve">
  290. <value>My Family</value>
  291. </data>
  292. <data name="B03" xml:space="preserve">
  293. <value>My school</value>
  294. </data>
  295. <data name="B04" xml:space="preserve">
  296. <value>My home</value>
  297. </data>
  298. <data name="B05" xml:space="preserve">
  299. <value>The natural around us</value>
  300. </data>
  301. <data name="B06" xml:space="preserve">
  302. <value>The environment around us</value>
  303. </data>
  304. <data name="B07" xml:space="preserve">
  305. <value>Telecommunications And communication</value>
  306. </data>
  307. <data name="B08" xml:space="preserve">
  308. <value>Material around us</value>
  309. </data>
  310. <data name="B09" xml:space="preserve">
  311. <value>My body</value>
  312. </data>
  313. <data name="B10" xml:space="preserve">
  314. <value>The natural around us</value>
  315. </data>
  316. <data name="B11" xml:space="preserve">
  317. <value>My home</value>
  318. </data>
  319. <data name="B12" xml:space="preserve">
  320. <value>My school</value>
  321. </data>
  322. <data name="B13" xml:space="preserve">
  323. <value>My home</value>
  324. </data>
  325. <data name="B14" xml:space="preserve">
  326. <value>The environment around us</value>
  327. </data>
  328. <data name="B15" xml:space="preserve">
  329. <value>Telecommunications And communication</value>
  330. </data>
  331. <data name="B16" xml:space="preserve">
  332. <value>Material around us</value>
  333. </data>
  334. <data name="B17" xml:space="preserve">
  335. <value>My body</value>
  336. </data>
  337. <data name="B18" xml:space="preserve">
  338. <value>My family</value>
  339. </data>
  340. <data name="B19" xml:space="preserve">
  341. <value>My school</value>
  342. </data>
  343. <data name="B20" xml:space="preserve">
  344. <value>My home</value>
  345. </data>
  346. <data name="B21" xml:space="preserve">
  347. <value>The natural around us</value>
  348. </data>
  349. <data name="B22" xml:space="preserve">
  350. <value>The environment around us</value>
  351. </data>
  352. <data name="B23" xml:space="preserve">
  353. <value>Telecommunications And communication</value>
  354. </data>
  355. <data name="B24" xml:space="preserve">
  356. <value>Material around us</value>
  357. </data>
  358. <data name="Back" xml:space="preserve">
  359. <value>Back</value>
  360. </data>
  361. <data name="BeWithYouEverywhere" xml:space="preserve">
  362. <value>MEDU will go with you everywhere, and you can never leave MEDU.</value>
  363. </data>
  364. <data name="Birthday" xml:space="preserve">
  365. <value>Date of birth</value>
  366. </data>
  367. <data name="bmiNum" xml:space="preserve">
  368. <value>Your BMI:</value>
  369. </data>
  370. <data name="bmiTool" xml:space="preserve">
  371. <value>BMI calculator</value>
  372. </data>
  373. <data name="bodyStatus" xml:space="preserve">
  374. <value>body condition</value>
  375. </data>
  376. <data name="Buy" xml:space="preserve">
  377. <value>Buy the course</value>
  378. </data>
  379. <data name="BuyCourseSuccess" xml:space="preserve">
  380. <value>Purchase the course successfully</value>
  381. </data>
  382. <data name="C01" xml:space="preserve">
  383. <value>Names and child development records</value>
  384. </data>
  385. <data name="C02" xml:space="preserve">
  386. <value>Child Development Monitoring Book</value>
  387. </data>
  388. <data name="C03" xml:space="preserve">
  389. <value>Monthly creative worksheet</value>
  390. </data>
  391. <data name="C04" xml:space="preserve">
  392. <value>Teacher's Guide for Organizing Teaching and Learning Activities</value>
  393. </data>
  394. <data name="C05" xml:space="preserve">
  395. <value>Names and child development records</value>
  396. </data>
  397. <data name="C06" xml:space="preserve">
  398. <value>Child Development Monitoring Book</value>
  399. </data>
  400. <data name="C07" xml:space="preserve">
  401. <value>Monthly creative worksheet</value>
  402. </data>
  403. <data name="C08" xml:space="preserve">
  404. <value>Teacher's Guide for Organizing Teaching and Learning Activities</value>
  405. </data>
  406. <data name="C09" xml:space="preserve">
  407. <value>Names and child development records</value>
  408. </data>
  409. <data name="C10" xml:space="preserve">
  410. <value>Child Development Monitoring Book</value>
  411. </data>
  412. <data name="C11" xml:space="preserve">
  413. <value>Monthly creative worksheet</value>
  414. </data>
  415. <data name="C12" xml:space="preserve">
  416. <value>Teacher's Guide for Organizing Teaching and Learning Activities</value>
  417. </data>
  418. <data name="calo" xml:space="preserve">
  419. <value>calo</value>
  420. </data>
  421. <data name="caloCal" xml:space="preserve">
  422. <value>Calculate Calories</value>
  423. </data>
  424. <data name="caloTool" xml:space="preserve">
  425. <value>Calorie calculator</value>
  426. </data>
  427. <data name="Cancel" xml:space="preserve">
  428. <value>Cancel</value>
  429. </data>
  430. <data name="ChangePassword" xml:space="preserve">
  431. <value>Change password</value>
  432. </data>
  433. <data name="Check" xml:space="preserve">
  434. <value>Check</value>
  435. </data>
  436. <data name="CheckUserPass" xml:space="preserve">
  437. <value>Please check your account name or password again.</value>
  438. </data>
  439. <data name="ChooseACourseInLibrary" xml:space="preserve">
  440. <value>Please go to the MEDU library and choose an English course to get started!</value>
  441. </data>
  442. <data name="ChooseFile" xml:space="preserve">
  443. <value>Choose image</value>
  444. </data>
  445. <data name="ChooseYourPicture" xml:space="preserve">
  446. <value>Choose your image</value>
  447. </data>
  448. <data name="Clever" xml:space="preserve">
  449. <value>Smart</value>
  450. </data>
  451. <data name="Close" xml:space="preserve">
  452. <value>Close</value>
  453. </data>
  454. <data name="Common_course_des_1" xml:space="preserve">
  455. <value>Library of English grammar courses for everyone</value>
  456. </data>
  457. <data name="Common_des_2" xml:space="preserve">
  458. <value>A smart online English teaching and learning platform built with the mission of helping students eliminate barriers to English.</value>
  459. </data>
  460. <data name="CompleteLesson" xml:space="preserve">
  461. <value>Completed the course</value>
  462. </data>
  463. <data name="Confident" xml:space="preserve">
  464. <value>Confident</value>
  465. </data>
  466. <data name="Confirm" xml:space="preserve">
  467. <value>Confirm</value>
  468. </data>
  469. <data name="Congratulation" xml:space="preserve">
  470. <value>Congratulations! You have finished studying. Now you can study again or take a test.</value>
  471. </data>
  472. <data name="Congratulation1" xml:space="preserve">
  473. <value>Congratulation! </value>
  474. </data>
  475. <data name="CongratulationFinishLearn" xml:space="preserve">
  476. <value>Congratulations! You have finished studying. Now you can study again or take a test.</value>
  477. </data>
  478. <data name="ContentQuestions" xml:space="preserve">
  479. <value>ContentQuestions</value>
  480. </data>
  481. <data name="Continue" xml:space="preserve">
  482. <value>Continue</value>
  483. </data>
  484. <data name="ContinueLearning" xml:space="preserve">
  485. <value>Learn continue</value>
  486. </data>
  487. <data name="ContinueWithYourChoose" xml:space="preserve">
  488. <value>Please continue with the following option</value>
  489. </data>
  490. <data name="Course" xml:space="preserve">
  491. <value>Course</value>
  492. </data>
  493. <data name="CourseComplete" xml:space="preserve">
  494. <value>Completed the course</value>
  495. </data>
  496. <data name="CourseManager" xml:space="preserve">
  497. <value>Course management</value>
  498. </data>
  499. <data name="createNow" xml:space="preserve">
  500. <value>Create new now</value>
  501. </data>
  502. <data name="D01" xml:space="preserve">
  503. <value />
  504. </data>
  505. <data name="D02" xml:space="preserve">
  506. <value />
  507. </data>
  508. <data name="D03" xml:space="preserve">
  509. <value />
  510. </data>
  511. <data name="D04" xml:space="preserve">
  512. <value />
  513. </data>
  514. <data name="D05" xml:space="preserve">
  515. <value />
  516. </data>
  517. <data name="D06" xml:space="preserve">
  518. <value />
  519. </data>
  520. <data name="D07" xml:space="preserve">
  521. <value />
  522. </data>
  523. <data name="D08" xml:space="preserve">
  524. <value />
  525. </data>
  526. <data name="D09" xml:space="preserve">
  527. <value />
  528. </data>
  529. <data name="D10" xml:space="preserve">
  530. <value />
  531. </data>
  532. <data name="D11" xml:space="preserve">
  533. <value />
  534. </data>
  535. <data name="D12" xml:space="preserve">
  536. <value />
  537. </data>
  538. <data name="D13" xml:space="preserve">
  539. <value />
  540. </data>
  541. <data name="D14" xml:space="preserve">
  542. <value />
  543. </data>
  544. <data name="D15" xml:space="preserve">
  545. <value />
  546. </data>
  547. <data name="D16" xml:space="preserve">
  548. <value />
  549. </data>
  550. <data name="D17" xml:space="preserve">
  551. <value />
  552. </data>
  553. <data name="D18" xml:space="preserve">
  554. <value />
  555. </data>
  556. <data name="Date" xml:space="preserve">
  557. <value>Date</value>
  558. </data>
  559. <data name="Day" xml:space="preserve">
  560. <value>Day</value>
  561. </data>
  562. <data name="Days" xml:space="preserve">
  563. <value>Days</value>
  564. </data>
  565. <data name="DescriptionOfUstudyGrammar" xml:space="preserve">
  566. <value>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 and advice. and motivate you with worthy rewards. Grammar knowledge is developed based on standard and reputable international textbooks (specifically Oxford and Cambridge), helping learners not only understand widely, but also understand deeply. In addition, MEDU's method also focuses on practical elements to help learners apply the theories they have learned into practice, applying them to different contexts such as exams, communication, etc. .</value>
  567. </data>
  568. <data name="Determination" xml:space="preserve">
  569. <value>Determination</value>
  570. </data>
  571. <data name="DoTest" xml:space="preserve">
  572. <value>Evaluate</value>
  573. </data>
  574. <data name="down1" xml:space="preserve">
  575. <value>Kindergarten year1</value>
  576. </data>
  577. <data name="down10" xml:space="preserve">
  578. <value>Primary school year 1 (starting in 2020)</value>
  579. </data>
  580. <data name="down11" xml:space="preserve">
  581. <value>Primary school year 2 (starting in 2020)</value>
  582. </data>
  583. <data name="down12" xml:space="preserve">
  584. <value>Primary school year 3</value>
  585. </data>
  586. <data name="down13" xml:space="preserve">
  587. <value>Primary school year 4</value>
  588. </data>
  589. <data name="down14" xml:space="preserve">
  590. <value>Primary school year 5</value>
  591. </data>
  592. <data name="down15" xml:space="preserve">
  593. <value>Secondary education textbook</value>
  594. </data>
  595. <data name="down16" xml:space="preserve">
  596. <value>Secondary school year 1</value>
  597. </data>
  598. <data name="down17" xml:space="preserve">
  599. <value>Secondary school year 2</value>
  600. </data>
  601. <data name="down18" xml:space="preserve">
  602. <value>Secondary school year 3</value>
  603. </data>
  604. <data name="down19" xml:space="preserve">
  605. <value>Secondary school year 4</value>
  606. </data>
  607. <data name="down2" xml:space="preserve">
  608. <value>Kindergarten year 2</value>
  609. </data>
  610. <data name="down20" xml:space="preserve">
  611. <value>Secondary school year 5</value>
  612. </data>
  613. <data name="down21" xml:space="preserve">
  614. <value>Secondary school year 6</value>
  615. </data>
  616. <data name="down22" xml:space="preserve">
  617. <value>Secondary school year 7</value>
  618. </data>
  619. <data name="down23" xml:space="preserve">
  620. <value>Secondary school year 1</value>
  621. </data>
  622. <data name="down24" xml:space="preserve">
  623. <value>Secondary school year 2</value>
  624. </data>
  625. <data name="down25" xml:space="preserve">
  626. <value>Secondary school year 3</value>
  627. </data>
  628. <data name="down26" xml:space="preserve">
  629. <value>Secondary school year 4</value>
  630. </data>
  631. <data name="down27" xml:space="preserve">
  632. <value>Secondary school year 5</value>
  633. </data>
  634. <data name="down28" xml:space="preserve">
  635. <value>Secondary school year 6</value>
  636. </data>
  637. <data name="down29" xml:space="preserve">
  638. <value>Secondary school year 7</value>
  639. </data>
  640. <data name="down3" xml:space="preserve">
  641. <value>Kindergarten year 2</value>
  642. </data>
  643. <data name="down4" xml:space="preserve">
  644. <value>Kindergarten year 1</value>
  645. </data>
  646. <data name="down5" xml:space="preserve">
  647. <value>Kindergarten year 2</value>
  648. </data>
  649. <data name="down6" xml:space="preserve">
  650. <value>Kindergarten year 3</value>
  651. </data>
  652. <data name="down7" xml:space="preserve">
  653. <value>Kindergarten year 1</value>
  654. </data>
  655. <data name="down8" xml:space="preserve">
  656. <value>Kindergarten year 2</value>
  657. </data>
  658. <data name="down9" xml:space="preserve">
  659. <value>Kindergarten year 2</value>
  660. </data>
  661. <data name="DoYouWantToGoodAtEnglish" xml:space="preserve">
  662. <value>Do you want to be good at English?</value>
  663. </data>
  664. <data name="DoYouWantToGoodAtLaos" xml:space="preserve">
  665. <value />
  666. </data>
  667. <data name="DoYouWantToGoodAtViet" xml:space="preserve">
  668. <value />
  669. </data>
  670. <data name="EachPersonCanOnly" xml:space="preserve">
  671. <value>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.</value>
  672. </data>
  673. <data name="EachQuestionMustBe" xml:space="preserve">
  674. <value>Each question must be answered within 15 seconds.</value>
  675. </data>
  676. <data name="Ebook" xml:space="preserve">
  677. <value>Ebooks</value>
  678. </data>
  679. <data name="encourage" xml:space="preserve">
  680. <value>encourage you</value>
  681. </data>
  682. <data name="End" xml:space="preserve">
  683. <value>Term</value>
  684. </data>
  685. <data name="english" xml:space="preserve">
  686. <value>English</value>
  687. </data>
  688. <data name="EnteringLibrary" xml:space="preserve">
  689. <value>Enter the library</value>
  690. </data>
  691. <data name="EnterOTP" xml:space="preserve">
  692. <value>OTP</value>
  693. </data>
  694. <data name="EnterYourAnswer" xml:space="preserve">
  695. <value>Enter the word of the puzzle here</value>
  696. </data>
  697. <data name="EnterYourPassword" xml:space="preserve">
  698. <value>Enter password</value>
  699. </data>
  700. <data name="Enthusiasm" xml:space="preserve">
  701. <value>Enthusiasm</value>
  702. </data>
  703. <data name="Evaluation" xml:space="preserve">
  704. <value>Evaluate</value>
  705. </data>
  706. <data name="EveryoneWillbeProfessorOfWriting" xml:space="preserve">
  707. <value>Anyone can become an 'expert' in grammar after completing English grammar courses on MEDU.</value>
  708. </data>
  709. <data name="Example" xml:space="preserve">
  710. <value>Example</value>
  711. </data>
  712. <data name="Exercises" xml:space="preserve">
  713. <value>Exercises</value>
  714. </data>
  715. <data name="Experienceplan" xml:space="preserve">
  716. <value>Experience plan</value>
  717. </data>
  718. <data name="fat" xml:space="preserve">
  719. <value>fat</value>
  720. </data>
  721. <data name="fat1" xml:space="preserve">
  722. <value>Grade 1 obesity</value>
  723. </data>
  724. <data name="fat2" xml:space="preserve">
  725. <value>Grade 2 obesity</value>
  726. </data>
  727. <data name="fat3" xml:space="preserve">
  728. <value>Grade 3 obesity</value>
  729. </data>
  730. <data name="female" xml:space="preserve">
  731. <value>Female</value>
  732. </data>
  733. <data name="FindCourse" xml:space="preserve">
  734. <value>Search by name of the grammar course you want to study</value>
  735. </data>
  736. <data name="FindingCourse" xml:space="preserve">
  737. <value>Search by name of the grammar course you want to study</value>
  738. </data>
  739. <data name="FiveSystemsHelpYouImproveAllYourSkills" xml:space="preserve">
  740. <value>Below are 5 systems developed by MEDU to help you and everyone develop your full English skills: Listening - Speaking - Reading - Writing</value>
  741. </data>
  742. <data name="ForEveryone" xml:space="preserve">
  743. <value>Library of English grammar courses for everyone</value>
  744. </data>
  745. <data name="FourSkills" xml:space="preserve">
  746. <value>Listening speaking reading writing</value>
  747. </data>
  748. <data name="FreeAccount" xml:space="preserve">
  749. <value>Create free account</value>
  750. </data>
  751. <data name="FullName" xml:space="preserve">
  752. <value>First and last name</value>
  753. </data>
  754. <data name="GetStartedNow" xml:space="preserve">
  755. <value>Start now</value>
  756. </data>
  757. <data name="GoBack" xml:space="preserve">
  758. <value>Back</value>
  759. </data>
  760. <data name="Grammar" xml:space="preserve">
  761. <value>Grammar</value>
  762. </data>
  763. <data name="GrammarCourse" xml:space="preserve">
  764. <value>MEDU GRAMMAR COURSES</value>
  765. </data>
  766. <data name="GrammarIsAProductOfUstudyToHelpOvercomingAnObstacle" xml:space="preserve">
  767. <value>Grammar is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers.</value>
  768. </data>
  769. <data name="GrammarSystem" xml:space="preserve">
  770. <value>English grammar learning system</value>
  771. </data>
  772. <data name="Grammar_des_1" xml:space="preserve">
  773. <value>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 and advice. and motivate you with worthy rewards. Grammar knowledge is developed based on standard and reputable international textbooks (specifically Oxford and Cambridge), helping learners not only understand widely, but also understand deeply. In addition, MEDU's method also focuses on practical elements to help learners apply the theories they have learned into practice, applying them to different contexts such as exams, communication, etc. .</value>
  774. </data>
  775. <data name="Grammar_des_10" xml:space="preserve">
  776. <value>MEDU will help learners apply and understand more deeply the theories of grammar topics they have learned through practice exercises.</value>
  777. </data>
  778. <data name="Grammar_des_11_a_1" xml:space="preserve">
  779. <value>Your writing skills</value>
  780. </data>
  781. <data name="Grammar_des_11_a_2" xml:space="preserve">
  782. <value>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.</value>
  783. </data>
  784. <data name="Grammar_des_11_b_1" xml:space="preserve">
  785. <value>Greet and say the right words</value>
  786. </data>
  787. <data name="Grammar_des_11_b_2" xml:space="preserve">
  788. <value>This will help you be confident and attractive in real-life situations such as interviews and business.</value>
  789. </data>
  790. <data name="Grammar_des_11_c_1" xml:space="preserve">
  791. <value>Improve your scores in class or important exams (TOEIC, IELTS, SAT...)</value>
  792. </data>
  793. <data name="Grammar_des_11_c_2" xml:space="preserve">
  794. <value>MEDU will help you increase your grammar score by 20%, 30%, even 50%.</value>
  795. </data>
  796. <data name="Grammar_des_11_d_1" xml:space="preserve">
  797. <value>Anyone can become an "expert" in grammar</value>
  798. </data>
  799. <data name="Grammar_des_11_d_2" xml:space="preserve">
  800. <value>once you have completed the course</value>
  801. </data>
  802. <data name="Grammar_des_11_d_3" xml:space="preserve">
  803. <value>English grammar at MEDU</value>
  804. </data>
  805. <data name="Grammar_des_11_e" xml:space="preserve">
  806. <value>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.</value>
  807. </data>
  808. <data name="Grammar_des_12" xml:space="preserve">
  809. <value>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.</value>
  810. </data>
  811. <data name="Grammar_des_13" xml:space="preserve">
  812. <value>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 .</value>
  813. </data>
  814. <data name="Grammar_des_2" xml:space="preserve">
  815. <value>Are You Having Problems Learning English Grammar?</value>
  816. </data>
  817. <data name="Grammar_des_3" xml:space="preserve">
  818. <value>Have you studied English grammar for many years but still can't use it fluently and accurately in writing and speaking?</value>
  819. </data>
  820. <data name="Grammar_des_4" xml:space="preserve">
  821. <value>Do you often use grammatical structures incorrectly, and you don't know how to use them in the correct situations or situations?</value>
  822. </data>
  823. <data name="Grammar_des_5" xml:space="preserve">
  824. <value>Do you have difficulty explaining English to native speakers, they can't understand you, or misunderstand your meaning just because you use wrong grammar?</value>
  825. </data>
  826. <data name="Grammar_des_6" xml:space="preserve">
  827. <value>Do you find it difficult to explain English to native speakers, they can't understand you or are misunderstood because you use wrong grammar?</value>
  828. </data>
  829. <data name="Grammar_des_7" xml:space="preserve">
  830. <value>Grammar is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers.</value>
  831. </data>
  832. <data name="Grammar_des_8" xml:space="preserve">
  833. <value>MEDU GRAMMAR is the first smart online English grammar system in Vietnam, allowing learners to access and master English grammar in just six months.</value>
  834. </data>
  835. <data name="Grammar_des_9_a" xml:space="preserve">
  836. <value>MEDU will provide learners with complete theories on grammar topics with a vivid, easy-to-remember presentation of bilingual content.</value>
  837. </data>
  838. <data name="Grammar_des_9_b" xml:space="preserve">
  839. <value>Theory</value>
  840. </data>
  841. <data name="gym" xml:space="preserve">
  842. <value>Gym exercises</value>
  843. </data>
  844. <data name="HaveAccount" xml:space="preserve">
  845. <value>Already have an account</value>
  846. </data>
  847. <data name="haveAccount1" xml:space="preserve">
  848. <value>Do you already have an account?</value>
  849. </data>
  850. <data name="haveNoAccount" xml:space="preserve">
  851. <value>Do not have an account?</value>
  852. </data>
  853. <data name="HavingATroubleInLearningEnglish" xml:space="preserve">
  854. <value>Are You Having Problems Learning English Grammar?</value>
  855. </data>
  856. <data name="HeadOffice" xml:space="preserve">
  857. <value>Head office</value>
  858. </data>
  859. <data name="height" xml:space="preserve">
  860. <value>Height</value>
  861. </data>
  862. <data name="Hi" xml:space="preserve">
  863. <value>Hello</value>
  864. </data>
  865. <data name="HigherScores_1" xml:space="preserve">
  866. <value>Improve your scores in class or important exams (TOEIC, IELTS, SAT...)</value>
  867. </data>
  868. <data name="HigherScores_2" xml:space="preserve">
  869. <value>MEDU will help you increase your grammar score by 20%, 30%, even 50%.</value>
  870. </data>
  871. <data name="Home" xml:space="preserve">
  872. <value>Home</value>
  873. </data>
  874. <data name="Home_description_1" xml:space="preserve">
  875. <value>MEDU Together with you, eliminate English barriers</value>
  876. </data>
  877. <data name="Hope" xml:space="preserve">
  878. <value>Hope</value>
  879. </data>
  880. <data name="Hours" xml:space="preserve">
  881. <value>Hours</value>
  882. </data>
  883. <data name="HowDoesUSTUDYHelpYou" xml:space="preserve">
  884. <value>HOW CAN MEDU METHODS HELP YOU?</value>
  885. </data>
  886. <data name="HowToPlay" xml:space="preserve">
  887. <value>How to play</value>
  888. </data>
  889. <data name="IfaParticipantAnswers" xml:space="preserve">
  890. <value>If a participant answers incorrectly, the game will immediately end, and they will not be able to play again.</value>
  891. </data>
  892. <data name="IfPultipleParticipantsAnswerCorrectly" xml:space="preserve">
  893. <value>If multiple participants answer correctly with the same time, the prize money will be evenly divided among them.</value>
  894. </data>
  895. <data name="IfYouOutTheRoomTest" xml:space="preserve">
  896. <value>During the test, if you exit the test room without completing the remaining questions, it will be counted as WRONG.</value>
  897. </data>
  898. <data name="Improve" xml:space="preserve">
  899. <value>Improve</value>
  900. </data>
  901. <data name="Improve4Skills" xml:space="preserve">
  902. <value>Improve 4 skills: listening, speaking, reading, writing and translating, develop relationships with friends, other companies...</value>
  903. </data>
  904. <data name="ImproveYourScores" xml:space="preserve">
  905. <value>TOEIC, IELTS and TOEFL scores will improve</value>
  906. </data>
  907. <data name="ImproveYourScores_2" xml:space="preserve">
  908. <value />
  909. </data>
  910. <data name="ImprovingSpeakingSkill" xml:space="preserve">
  911. <value>Communicating and speaking with correct grammar will help you be more confident and convincing in real-life situations such as interviews and business work.</value>
  912. </data>
  913. <data name="ImprovingWirtingSkill" xml:space="preserve">
  914. <value>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.</value>
  915. </data>
  916. <data name="in" xml:space="preserve">
  917. <value>calories in</value>
  918. </data>
  919. <data name="Information" xml:space="preserve">
  920. <value>General information</value>
  921. </data>
  922. <data name="intelligentSystem" xml:space="preserve">
  923. <value>SMART LANGUAGE LEARNING SYSTEM</value>
  924. </data>
  925. <data name="IntelligentSystemToHelpRememberingEasily" xml:space="preserve">
  926. <value>MEDU is a smart English vocabulary learning system that will help you remember vocabulary easily and deeply in just a short time.</value>
  927. </data>
  928. <data name="Introduction" xml:space="preserve">
  929. <value>Introduce</value>
  930. </data>
  931. <data name="InvalidMsisdn" xml:space="preserve">
  932. <value>Invalid phone number!</value>
  933. </data>
  934. <data name="JoinWithUs" xml:space="preserve">
  935. <value>JOIN US!</value>
  936. </data>
  937. <data name="Kindergarten" xml:space="preserve">
  938. <value>Kindergarten</value>
  939. </data>
  940. <data name="KindergartenBook" xml:space="preserve">
  941. <value>Kindergarten book</value>
  942. </data>
  943. <data name="KindergartenEducation" xml:space="preserve">
  944. <value>Kindergarten Education</value>
  945. </data>
  946. <data name="KindergartenYear1" xml:space="preserve">
  947. <value>Kindergarten year 1</value>
  948. </data>
  949. <data name="KindergartenYear2" xml:space="preserve">
  950. <value>Kindergarten year 2</value>
  951. </data>
  952. <data name="KindergartenYear3" xml:space="preserve">
  953. <value>Kindergarten year 3</value>
  954. </data>
  955. <data name="language" xml:space="preserve">
  956. <value>Language</value>
  957. </data>
  958. <data name="laos" xml:space="preserve">
  959. <value />
  960. </data>
  961. <data name="Learn" xml:space="preserve">
  962. <value>Study</value>
  963. </data>
  964. <data name="LearnAgain" xml:space="preserve">
  965. <value>Study again</value>
  966. </data>
  967. <data name="LearningAboutThisMethod" xml:space="preserve">
  968. <value>Learn about this method</value>
  969. </data>
  970. <data name="LearningEnglish" xml:space="preserve">
  971. <value>Study English</value>
  972. </data>
  973. <data name="LearningEverywhere" xml:space="preserve">
  974. <value>Learn English anytime, anywhere (at home, on the bus, at school,...) with MEDU</value>
  975. </data>
  976. <data name="LearningGrammar" xml:space="preserve">
  977. <value>LEARN ENGLISH GRAMMAR</value>
  978. </data>
  979. <data name="LearningVocabulary" xml:space="preserve">
  980. <value>LEARN ENGLISH VOCABULARY</value>
  981. </data>
  982. <data name="LearnNow" xml:space="preserve">
  983. <value>Study now</value>
  984. </data>
  985. <data name="Lesson" xml:space="preserve">
  986. <value>Course</value>
  987. </data>
  988. <data name="LetMeKnowYourAnsWers" xml:space="preserve">
  989. <value>Let me know your answers!</value>
  990. </data>
  991. <data name="LetsRegisterToBecomeAMember" xml:space="preserve">
  992. <value>Register as a member to immediately experience effective English learning methods with MEDU.</value>
  993. </data>
  994. <data name="Library" xml:space="preserve">
  995. <value>Enter the library</value>
  996. </data>
  997. <data name="Listening" xml:space="preserve">
  998. <value>Listen</value>
  999. </data>
  1000. <data name="ListeningEnglish" xml:space="preserve">
  1001. <value>Listen English</value>
  1002. </data>
  1003. <data name="ListeningLao" xml:space="preserve">
  1004. <value />
  1005. </data>
  1006. <data name="ListeningSystem" xml:space="preserve">
  1007. <value>Communication system in English</value>
  1008. </data>
  1009. <data name="ListeningViet" xml:space="preserve">
  1010. <value />
  1011. </data>
  1012. <data name="Listen_des_1" xml:space="preserve">
  1013. <value>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.</value>
  1014. </data>
  1015. <data name="Listen_des_2" xml:space="preserve">
  1016. <value>It'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 have low self-esteem because you cannot continue studying English.</value>
  1017. </data>
  1018. <data name="Listen_des_3" xml:space="preserve">
  1019. <value>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</value>
  1020. </data>
  1021. <data name="ListOfSpecialPrizeWinners" xml:space="preserve">
  1022. <value>List of special prize winners</value>
  1023. </data>
  1024. <data name="Locked" xml:space="preserve">
  1025. <value>Course</value>
  1026. </data>
  1027. <data name="Login" xml:space="preserve">
  1028. <value>Log in</value>
  1029. </data>
  1030. <data name="LoginNow" xml:space="preserve">
  1031. <value>Log in now</value>
  1032. </data>
  1033. <data name="loginNow1" xml:space="preserve">
  1034. <value>Log in now</value>
  1035. </data>
  1036. <data name="Logout" xml:space="preserve">
  1037. <value>Log out</value>
  1038. </data>
  1039. <data name="M1" xml:space="preserve">
  1040. <value>Lower Secondary School education Textbook</value>
  1041. </data>
  1042. <data name="M10" xml:space="preserve">
  1043. <value>Natural Science Textbook (M1)</value>
  1044. </data>
  1045. <data name="M100" xml:space="preserve">
  1046. <value>Civic Education Form (M7)</value>
  1047. </data>
  1048. <data name="M101" xml:space="preserve">
  1049. <value>History Class (M7)</value>
  1050. </data>
  1051. <data name="M102" xml:space="preserve">
  1052. <value>Art Teacher's Guide (M1)</value>
  1053. </data>
  1054. <data name="M103" xml:space="preserve">
  1055. <value>Citizen Education Teacher's Guide (M1)</value>
  1056. </data>
  1057. <data name="M104" xml:space="preserve">
  1058. <value>Information and Communication Teacher's Guide (M1)</value>
  1059. </data>
  1060. <data name="M105" xml:space="preserve">
  1061. <value>History Teacher's Guide (M1)</value>
  1062. </data>
  1063. <data name="M106" xml:space="preserve">
  1064. <value>Lao Language Teacher's Guide (M1)</value>
  1065. </data>
  1066. <data name="M107" xml:space="preserve">
  1067. <value>Literary Teacher's Guide (M1)</value>
  1068. </data>
  1069. <data name="M108" xml:space="preserve">
  1070. <value>Music and Music Teacher's Guide (M1)</value>
  1071. </data>
  1072. <data name="M109" xml:space="preserve">
  1073. <value>Mathematics Teacher's Guide (M1)</value>
  1074. </data>
  1075. <data name="M11" xml:space="preserve">
  1076. <value>Geography Textbook (M1)</value>
  1077. </data>
  1078. <data name="M110" xml:space="preserve">
  1079. <value>Natural Science Teacher's Guide (M1)</value>
  1080. </data>
  1081. <data name="M111" xml:space="preserve">
  1082. <value>Geography Teacher's Guide (M1)</value>
  1083. </data>
  1084. <data name="M112" xml:space="preserve">
  1085. <value>Physical Education Teacher's Guide (M1)</value>
  1086. </data>
  1087. <data name="M113" xml:space="preserve">
  1088. <value>Basic Vocational Teacher's Guide (M1)</value>
  1089. </data>
  1090. <data name="M114" xml:space="preserve">
  1091. <value>English Teacher's Guide (M1)</value>
  1092. </data>
  1093. <data name="M115" xml:space="preserve">
  1094. <value>French Teacher's Guide (M1)</value>
  1095. </data>
  1096. <data name="M116" xml:space="preserve">
  1097. <value>Art Teacher's Guide (M2)</value>
  1098. </data>
  1099. <data name="M117" xml:space="preserve">
  1100. <value>Citizen Education Teacher's Guide (M2)</value>
  1101. </data>
  1102. <data name="M118" xml:space="preserve">
  1103. <value>English Teacher's Guide (M2)</value>
  1104. </data>
  1105. <data name="M119" xml:space="preserve">
  1106. <value>Lao Language Teacher's Guide (M2)</value>
  1107. </data>
  1108. <data name="M12" xml:space="preserve">
  1109. <value>Basic Vocational Training (M1)</value>
  1110. </data>
  1111. <data name="M120" xml:space="preserve">
  1112. <value>History Teacher's Guide (M2)</value>
  1113. </data>
  1114. <data name="M121" xml:space="preserve">
  1115. <value>Information and Communication Teacher's Guide (M2)</value>
  1116. </data>
  1117. <data name="M122" xml:space="preserve">
  1118. <value>Literary Teacher's Guide (M2)</value>
  1119. </data>
  1120. <data name="M123" xml:space="preserve">
  1121. <value>Mathematics Teacher's Guide (M2)</value>
  1122. </data>
  1123. <data name="M124" xml:space="preserve">
  1124. <value>Natural Science Teacher's Guide (M2)</value>
  1125. </data>
  1126. <data name="M125" xml:space="preserve">
  1127. <value>Music and Music Teacher's Guide (M2)</value>
  1128. </data>
  1129. <data name="M126" xml:space="preserve">
  1130. <value>Geography Teacher's Guide (M2)</value>
  1131. </data>
  1132. <data name="M127" xml:space="preserve">
  1133. <value>Physical Education Teacher's Guide (M2)</value>
  1134. </data>
  1135. <data name="M128" xml:space="preserve">
  1136. <value>Basic Vocational Teacher's Guide (M2)</value>
  1137. </data>
  1138. <data name="M129" xml:space="preserve">
  1139. <value>French Teacher's Guide (M2)</value>
  1140. </data>
  1141. <data name="M13" xml:space="preserve">
  1142. <value>Information and Communication Technology (M1)</value>
  1143. </data>
  1144. <data name="M130" xml:space="preserve">
  1145. <value>Japanese Teacher's Guide (M2)</value>
  1146. </data>
  1147. <data name="M131" xml:space="preserve">
  1148. <value>Art Teacher's Guide (M3)</value>
  1149. </data>
  1150. <data name="M132" xml:space="preserve">
  1151. <value>Basic Vocational Teacher's Guide (M3)</value>
  1152. </data>
  1153. <data name="M133" xml:space="preserve">
  1154. <value>Citizen Education Teacher's Guide (M3)</value>
  1155. </data>
  1156. <data name="M134" xml:space="preserve">
  1157. <value>English Teacher's Guide (M3)</value>
  1158. </data>
  1159. <data name="M135" xml:space="preserve">
  1160. <value>French Teacher's Guide (M3)</value>
  1161. </data>
  1162. <data name="M136" xml:space="preserve">
  1163. <value>Geography Teacher's Guide (M3)</value>
  1164. </data>
  1165. <data name="M137" xml:space="preserve">
  1166. <value>History Teacher's Guide (M3)</value>
  1167. </data>
  1168. <data name="M138" xml:space="preserve">
  1169. <value>Information and Communication Teacher's Guide (M3)</value>
  1170. </data>
  1171. <data name="M139" xml:space="preserve">
  1172. <value>Lao Language Teacher's Guide (M3)</value>
  1173. </data>
  1174. <data name="M14" xml:space="preserve">
  1175. <value>English Language Study Form (M1)</value>
  1176. </data>
  1177. <data name="M140" xml:space="preserve">
  1178. <value>Literary Teacher's Guide (M3)</value>
  1179. </data>
  1180. <data name="M141" xml:space="preserve">
  1181. <value>Mathematics Teacher's Guide (M3)</value>
  1182. </data>
  1183. <data name="M142" xml:space="preserve">
  1184. <value>Music and Music Teacher's Guide (M3)</value>
  1185. </data>
  1186. <data name="M143" xml:space="preserve">
  1187. <value>Natural Science Teacher's Guide (M3)</value>
  1188. </data>
  1189. <data name="M144" xml:space="preserve">
  1190. <value>Physical Education Teacher's Guide (M3)</value>
  1191. </data>
  1192. <data name="M145" xml:space="preserve">
  1193. <value>Japanese Teacher's Guide (M3)</value>
  1194. </data>
  1195. <data name="M146" xml:space="preserve">
  1196. <value>Art Teacher's Guide (M4)</value>
  1197. </data>
  1198. <data name="M147" xml:space="preserve">
  1199. <value>Citizen Education Teacher's Guide (M4)</value>
  1200. </data>
  1201. <data name="M148" xml:space="preserve">
  1202. <value>English Teacher's Guide (M4)</value>
  1203. </data>
  1204. <data name="M149" xml:space="preserve">
  1205. <value>French Teacher's Guide (M4)</value>
  1206. </data>
  1207. <data name="M15" xml:space="preserve">
  1208. <value>French lessons (M2)</value>
  1209. </data>
  1210. <data name="M150" xml:space="preserve">
  1211. <value>Geography Teacher's Guide (M4)</value>
  1212. </data>
  1213. <data name="M151" xml:space="preserve">
  1214. <value>History Teacher's Guide (M4)</value>
  1215. </data>
  1216. <data name="M152" xml:space="preserve">
  1217. <value>Information and Communication Technology Teacher's Guide (M4)</value>
  1218. </data>
  1219. <data name="M153" xml:space="preserve">
  1220. <value>Lao Language Teacher's Guide (M4)</value>
  1221. </data>
  1222. <data name="M154" xml:space="preserve">
  1223. <value>Literary Teacher's Guide (M4)</value>
  1224. </data>
  1225. <data name="M155" xml:space="preserve">
  1226. <value>Music and Music Teacher's Guide (M4)</value>
  1227. </data>
  1228. <data name="M156" xml:space="preserve">
  1229. <value>Mathematics Teacher's Guide (M4)</value>
  1230. </data>
  1231. <data name="M157" xml:space="preserve">
  1232. <value>Natural Science Teacher's Guide (M4)</value>
  1233. </data>
  1234. <data name="M158" xml:space="preserve">
  1235. <value>Physical Education Teacher's Guide (M4)</value>
  1236. </data>
  1237. <data name="M159" xml:space="preserve">
  1238. <value>Basic Vocational Teacher's Guide (M4)</value>
  1239. </data>
  1240. <data name="M16" xml:space="preserve">
  1241. <value>Civic Education Form (M2)</value>
  1242. </data>
  1243. <data name="M160" xml:space="preserve">
  1244. <value>Farmer's Guide (M5)</value>
  1245. </data>
  1246. <data name="M161" xml:space="preserve">
  1247. <value>Housing Teacher Training Guide (M5)</value>
  1248. </data>
  1249. <data name="M162" xml:space="preserve">
  1250. <value>Automotive Teacher's Guide (M5)</value>
  1251. </data>
  1252. <data name="M163" xml:space="preserve">
  1253. <value>Biology Teacher's Guide (M5)</value>
  1254. </data>
  1255. <data name="M164" xml:space="preserve">
  1256. <value>Business Teacher's Guide for Interdisciplinary Studies (M5)</value>
  1257. </data>
  1258. <data name="M165" xml:space="preserve">
  1259. <value>Business Teacher's Guide (M5)</value>
  1260. </data>
  1261. <data name="M166" xml:space="preserve">
  1262. <value>Chemistry Teacher's Guide (M5)</value>
  1263. </data>
  1264. <data name="M167" xml:space="preserve">
  1265. <value>Citizen Education Teacher's Guide (M5)</value>
  1266. </data>
  1267. <data name="M168" xml:space="preserve">
  1268. <value>Electrician Teacher's Guide (M5)</value>
  1269. </data>
  1270. <data name="M169" xml:space="preserve">
  1271. <value>English Teacher's Guide (M5)</value>
  1272. </data>
  1273. <data name="M17" xml:space="preserve">
  1274. <value>Lao language study form (M2)</value>
  1275. </data>
  1276. <data name="M170" xml:space="preserve">
  1277. <value>Art Teacher's Guide (M5)</value>
  1278. </data>
  1279. <data name="M171" xml:space="preserve">
  1280. <value>French Teacher's Guide (M5)</value>
  1281. </data>
  1282. <data name="M172" xml:space="preserve">
  1283. <value>Geography Teacher's Guide (M5)</value>
  1284. </data>
  1285. <data name="M173" xml:space="preserve">
  1286. <value>History Teacher's Guide (M5)</value>
  1287. </data>
  1288. <data name="M174" xml:space="preserve">
  1289. <value>Homework Teacher's Guide (M5)</value>
  1290. </data>
  1291. <data name="M175" xml:space="preserve">
  1292. <value>Teacher and Information and Communication Teacher's Guide</value>
  1293. </data>
  1294. <data name="M176" xml:space="preserve">
  1295. <value>Lao Language Teacher's Guide (M5)</value>
  1296. </data>
  1297. <data name="M177" xml:space="preserve">
  1298. <value>Literary Teacher's Guide (M5)</value>
  1299. </data>
  1300. <data name="M178" xml:space="preserve">
  1301. <value>Mathematics Teacher's Guide (M5)</value>
  1302. </data>
  1303. <data name="M179" xml:space="preserve">
  1304. <value>Physical Education Teacher's Guide (M5)</value>
  1305. </data>
  1306. <data name="M18" xml:space="preserve">
  1307. <value>History Class (M2)</value>
  1308. </data>
  1309. <data name="M180" xml:space="preserve">
  1310. <value>Physics Teacher's Guide (M5)</value>
  1311. </data>
  1312. <data name="M181" xml:space="preserve">
  1313. <value>Farmer's Guide (M6)</value>
  1314. </data>
  1315. <data name="M182" xml:space="preserve">
  1316. <value>Housing Teacher Training Guide (M6)</value>
  1317. </data>
  1318. <data name="M183" xml:space="preserve">
  1319. <value>Automotive Teacher's Guide (M6)</value>
  1320. </data>
  1321. <data name="M184" xml:space="preserve">
  1322. <value>Art Teacher's Guide (M6)</value>
  1323. </data>
  1324. <data name="M185" xml:space="preserve">
  1325. <value>Biology Teacher's Guide (M6)</value>
  1326. </data>
  1327. <data name="M186" xml:space="preserve">
  1328. <value>Chemistry Teacher's Guide (M6)</value>
  1329. </data>
  1330. <data name="M187" xml:space="preserve">
  1331. <value>Citizen Education Teacher's Guide (M6)</value>
  1332. </data>
  1333. <data name="M188" xml:space="preserve">
  1334. <value>Electrician Teacher's Guide (M6)</value>
  1335. </data>
  1336. <data name="M189" xml:space="preserve">
  1337. <value>English Teacher's Guide (M6)</value>
  1338. </data>
  1339. <data name="M19" xml:space="preserve">
  1340. <value>Literature Textbook (M2)</value>
  1341. </data>
  1342. <data name="M190" xml:space="preserve">
  1343. <value>French Teacher's Guide (M6)</value>
  1344. </data>
  1345. <data name="M191" xml:space="preserve">
  1346. <value>Geography Teacher's Guide (M6)</value>
  1347. </data>
  1348. <data name="M192" xml:space="preserve">
  1349. <value>History Teacher's Guide (M6)</value>
  1350. </data>
  1351. <data name="M193" xml:space="preserve">
  1352. <value>Homework Teacher's Guide (M6)</value>
  1353. </data>
  1354. <data name="M194" xml:space="preserve">
  1355. <value>Information and Communication Teacher's Guide (M6)</value>
  1356. </data>
  1357. <data name="M195" xml:space="preserve">
  1358. <value>Business Teacher's Guide for Interdisciplinary Studies (M6)</value>
  1359. </data>
  1360. <data name="M196" xml:space="preserve">
  1361. <value>Business Teacher's Guide (M6)</value>
  1362. </data>
  1363. <data name="M197" xml:space="preserve">
  1364. <value>Lao Language Teacher's Guide (M6)</value>
  1365. </data>
  1366. <data name="M198" xml:space="preserve">
  1367. <value>Literary Teacher's Guide (M6)</value>
  1368. </data>
  1369. <data name="M199" xml:space="preserve">
  1370. <value>Mathematics Teacher's Guide (M6)</value>
  1371. </data>
  1372. <data name="M2" xml:space="preserve">
  1373. <value>High School education Textbook</value>
  1374. </data>
  1375. <data name="M20" xml:space="preserve">
  1376. <value>Information and Education Model (M2)</value>
  1377. </data>
  1378. <data name="M200" xml:space="preserve">
  1379. <value>Methodology Teacher's Guide (M6)</value>
  1380. </data>
  1381. <data name="M201" xml:space="preserve">
  1382. <value>Music Art Teacher's Guide (M6)</value>
  1383. </data>
  1384. <data name="M202" xml:space="preserve">
  1385. <value>Physical Education Teacher's Guide (M6)</value>
  1386. </data>
  1387. <data name="M203" xml:space="preserve">
  1388. <value>Physics Teacher's Guide (M6)</value>
  1389. </data>
  1390. <data name="M204" xml:space="preserve">
  1391. <value>Lao Language Teacher's Guide (M7)</value>
  1392. </data>
  1393. <data name="M205" xml:space="preserve">
  1394. <value>Geography Teacher's Guide (M7)</value>
  1395. </data>
  1396. <data name="M206" xml:space="preserve">
  1397. <value>Physical Education Teacher's Guide (M7)</value>
  1398. </data>
  1399. <data name="M207" xml:space="preserve">
  1400. <value>French Teacher's Guide (M7)</value>
  1401. </data>
  1402. <data name="M208" xml:space="preserve">
  1403. <value>Information and Communication Teacher's Guide (M7)</value>
  1404. </data>
  1405. <data name="M209" xml:space="preserve">
  1406. <value>Literary Teacher's Guide (M7)</value>
  1407. </data>
  1408. <data name="M21" xml:space="preserve">
  1409. <value>Mathematics Textbook (M2)</value>
  1410. </data>
  1411. <data name="M210" xml:space="preserve">
  1412. <value>Biology Teacher's Guide (M7)</value>
  1413. </data>
  1414. <data name="M211" xml:space="preserve">
  1415. <value>Mathematics Teacher's Guide (M7)</value>
  1416. </data>
  1417. <data name="M212" xml:space="preserve">
  1418. <value>Chemistry Teacher's Guide (M7)</value>
  1419. </data>
  1420. <data name="M213" xml:space="preserve">
  1421. <value>Physics Teacher's Guide (M7)</value>
  1422. </data>
  1423. <data name="M214" xml:space="preserve">
  1424. <value>English Teacher's Guide (M7)</value>
  1425. </data>
  1426. <data name="M215" xml:space="preserve">
  1427. <value>Citizen Education Teacher's Guide (M7)</value>
  1428. </data>
  1429. <data name="M216" xml:space="preserve">
  1430. <value>History Teacher's Guide (M7)</value>
  1431. </data>
  1432. <data name="M217" xml:space="preserve">
  1433. <value>Korean Literature Teacher's Guide (M7)</value>
  1434. </data>
  1435. <data name="M22" xml:space="preserve">
  1436. <value>Natural Science Textbook (M2)</value>
  1437. </data>
  1438. <data name="M23" xml:space="preserve">
  1439. <value>Geography (M2)</value>
  1440. </data>
  1441. <data name="M24" xml:space="preserve">
  1442. <value>Basic Vocational Training (M2)</value>
  1443. </data>
  1444. <data name="M25" xml:space="preserve">
  1445. <value>English Lessons (M2)</value>
  1446. </data>
  1447. <data name="M26" xml:space="preserve">
  1448. <value>Japanese Language Study (M2)</value>
  1449. </data>
  1450. <data name="M27" xml:space="preserve">
  1451. <value>Basic Vocational Form (M3)</value>
  1452. </data>
  1453. <data name="M28" xml:space="preserve">
  1454. <value>Civic Education Form (M3)</value>
  1455. </data>
  1456. <data name="M29" xml:space="preserve">
  1457. <value>English Class (M3)</value>
  1458. </data>
  1459. <data name="M3" xml:space="preserve">
  1460. <value>Study materials</value>
  1461. </data>
  1462. <data name="M30" xml:space="preserve">
  1463. <value>French lessons (M3)</value>
  1464. </data>
  1465. <data name="M31" xml:space="preserve">
  1466. <value>Geography Textbook (M3)</value>
  1467. </data>
  1468. <data name="M32" xml:space="preserve">
  1469. <value>History Class (M3)</value>
  1470. </data>
  1471. <data name="M33" xml:space="preserve">
  1472. <value>Information and Communication Model (M3)</value>
  1473. </data>
  1474. <data name="M34" xml:space="preserve">
  1475. <value>Lao language study form (M3)</value>
  1476. </data>
  1477. <data name="M35" xml:space="preserve">
  1478. <value>Literature Textbook (M3)</value>
  1479. </data>
  1480. <data name="M36" xml:space="preserve">
  1481. <value>Mathematics Textbook (M3)</value>
  1482. </data>
  1483. <data name="M37" xml:space="preserve">
  1484. <value>Natural Science Textbook (M3)</value>
  1485. </data>
  1486. <data name="M38" xml:space="preserve">
  1487. <value>Japanese Language Study (M3)</value>
  1488. </data>
  1489. <data name="M39" xml:space="preserve">
  1490. <value>Civic Education Form (M4)</value>
  1491. </data>
  1492. <data name="M4" xml:space="preserve">
  1493. <value>French lessons (M1)</value>
  1494. </data>
  1495. <data name="M40" xml:space="preserve">
  1496. <value>French lessons (M4)</value>
  1497. </data>
  1498. <data name="M41" xml:space="preserve">
  1499. <value>Geography Textbook (M4)</value>
  1500. </data>
  1501. <data name="M42" xml:space="preserve">
  1502. <value>History Class (M4)</value>
  1503. </data>
  1504. <data name="M43" xml:space="preserve">
  1505. <value>Lao language study form (M4)</value>
  1506. </data>
  1507. <data name="M44" xml:space="preserve">
  1508. <value>Information and Communication Model (M4)</value>
  1509. </data>
  1510. <data name="M45" xml:space="preserve">
  1511. <value>Literature Textbook (M4)</value>
  1512. </data>
  1513. <data name="M46" xml:space="preserve">
  1514. <value>Mathematics Textbook (M4)</value>
  1515. </data>
  1516. <data name="M47" xml:space="preserve">
  1517. <value>Natural Science Textbook (M4)</value>
  1518. </data>
  1519. <data name="M48" xml:space="preserve">
  1520. <value>Basic Vocational Training (M4)</value>
  1521. </data>
  1522. <data name="M49" xml:space="preserve">
  1523. <value>English Lessons (M4)</value>
  1524. </data>
  1525. <data name="M5" xml:space="preserve">
  1526. <value>Civic Education Form (M1)</value>
  1527. </data>
  1528. <data name="M50" xml:space="preserve">
  1529. <value>Agricultural study form (M5)</value>
  1530. </data>
  1531. <data name="M51" xml:space="preserve">
  1532. <value>Housing construction model (M5)</value>
  1533. </data>
  1534. <data name="M52" xml:space="preserve">
  1535. <value>Automotive Technician (M5)</value>
  1536. </data>
  1537. <data name="M53" xml:space="preserve">
  1538. <value>Biology Textbook (M5)</value>
  1539. </data>
  1540. <data name="M54" xml:space="preserve">
  1541. <value>Combined study form with 6 majors (M5)</value>
  1542. </data>
  1543. <data name="M55" xml:space="preserve">
  1544. <value>Business Class (M5)</value>
  1545. </data>
  1546. <data name="M56" xml:space="preserve">
  1547. <value>Chemistry class (M5)</value>
  1548. </data>
  1549. <data name="M57" xml:space="preserve">
  1550. <value>Civic Education Form (M5)</value>
  1551. </data>
  1552. <data name="M58" xml:space="preserve">
  1553. <value>Electrician (M5)</value>
  1554. </data>
  1555. <data name="M59" xml:space="preserve">
  1556. <value>English Lessons (M5)</value>
  1557. </data>
  1558. <data name="M6" xml:space="preserve">
  1559. <value>Lao language study form (M1)</value>
  1560. </data>
  1561. <data name="M60" xml:space="preserve">
  1562. <value>French lessons (M5)</value>
  1563. </data>
  1564. <data name="M61" xml:space="preserve">
  1565. <value>Geography Form (M5)</value>
  1566. </data>
  1567. <data name="M62" xml:space="preserve">
  1568. <value>History Class (M5)</value>
  1569. </data>
  1570. <data name="M63" xml:space="preserve">
  1571. <value>Homework (M5)</value>
  1572. </data>
  1573. <data name="M64" xml:space="preserve">
  1574. <value>Information and Communication Model (M5)</value>
  1575. </data>
  1576. <data name="M65" xml:space="preserve">
  1577. <value>Lao language study form (M5)</value>
  1578. </data>
  1579. <data name="M66" xml:space="preserve">
  1580. <value>Literature Textbook (M5)</value>
  1581. </data>
  1582. <data name="M67" xml:space="preserve">
  1583. <value>Mathematics Textbook (M5)</value>
  1584. </data>
  1585. <data name="M68" xml:space="preserve">
  1586. <value>Metallurgy (M5)</value>
  1587. </data>
  1588. <data name="M69" xml:space="preserve">
  1589. <value>Physics Textbook (M5)</value>
  1590. </data>
  1591. <data name="M7" xml:space="preserve">
  1592. <value>History Textbook (M1)</value>
  1593. </data>
  1594. <data name="M70" xml:space="preserve">
  1595. <value>Agricultural study form (M6)</value>
  1596. </data>
  1597. <data name="M71" xml:space="preserve">
  1598. <value>Housing construction model (M6)</value>
  1599. </data>
  1600. <data name="M72" xml:space="preserve">
  1601. <value>Automotive Technician (M6)</value>
  1602. </data>
  1603. <data name="M73" xml:space="preserve">
  1604. <value>Biology Textbook (M6)</value>
  1605. </data>
  1606. <data name="M74" xml:space="preserve">
  1607. <value>Chemistry class (M6)</value>
  1608. </data>
  1609. <data name="M75" xml:space="preserve">
  1610. <value>Civic Education Form (M6)</value>
  1611. </data>
  1612. <data name="M76" xml:space="preserve">
  1613. <value>Electrician (M6)</value>
  1614. </data>
  1615. <data name="M77" xml:space="preserve">
  1616. <value>English Class (M6)</value>
  1617. </data>
  1618. <data name="M78" xml:space="preserve">
  1619. <value>French lessons (M6)</value>
  1620. </data>
  1621. <data name="M79" xml:space="preserve">
  1622. <value>Geography Textbook (M6)</value>
  1623. </data>
  1624. <data name="M8" xml:space="preserve">
  1625. <value>Literature Textbook (M1)</value>
  1626. </data>
  1627. <data name="M80" xml:space="preserve">
  1628. <value>History Class (M6)</value>
  1629. </data>
  1630. <data name="M81" xml:space="preserve">
  1631. <value>Homework (M6)</value>
  1632. </data>
  1633. <data name="M82" xml:space="preserve">
  1634. <value>Information and Communication Technology (M6)</value>
  1635. </data>
  1636. <data name="M83" xml:space="preserve">
  1637. <value>Business model for combination with 6 majors (M6)</value>
  1638. </data>
  1639. <data name="M84" xml:space="preserve">
  1640. <value>Business Class (M6)</value>
  1641. </data>
  1642. <data name="M85" xml:space="preserve">
  1643. <value>Lao language study form (M6)</value>
  1644. </data>
  1645. <data name="M86" xml:space="preserve">
  1646. <value>Literature Textbook (M6)</value>
  1647. </data>
  1648. <data name="M87" xml:space="preserve">
  1649. <value>Mathematics Textbook (M6)</value>
  1650. </data>
  1651. <data name="M88" xml:space="preserve">
  1652. <value>Metallurgy Method (M6)</value>
  1653. </data>
  1654. <data name="M89" xml:space="preserve">
  1655. <value>Physics Textbook (M6)</value>
  1656. </data>
  1657. <data name="M9" xml:space="preserve">
  1658. <value>Mathematics Textbook (M1)</value>
  1659. </data>
  1660. <data name="M90" xml:space="preserve">
  1661. <value>Lao language study form (M7)</value>
  1662. </data>
  1663. <data name="M91" xml:space="preserve">
  1664. <value>Geography Form (M7)</value>
  1665. </data>
  1666. <data name="M92" xml:space="preserve">
  1667. <value>French lessons (M7)</value>
  1668. </data>
  1669. <data name="M93" xml:space="preserve">
  1670. <value>Information and Communication Technology (M7)</value>
  1671. </data>
  1672. <data name="M94" xml:space="preserve">
  1673. <value>Literature Textbook (M7)</value>
  1674. </data>
  1675. <data name="M95" xml:space="preserve">
  1676. <value>Biology Textbook (M7)</value>
  1677. </data>
  1678. <data name="M96" xml:space="preserve">
  1679. <value>Mathematics Textbook (M7)</value>
  1680. </data>
  1681. <data name="M97" xml:space="preserve">
  1682. <value>Chemistry class (M7)</value>
  1683. </data>
  1684. <data name="M98" xml:space="preserve">
  1685. <value>Physics Textbook (M7)</value>
  1686. </data>
  1687. <data name="M99" xml:space="preserve">
  1688. <value>English lesson plan (M7)</value>
  1689. </data>
  1690. <data name="MakeYouCrazyWithOneWord_1" xml:space="preserve">
  1691. <value>MEDU will make you crazy with a tiny vocabulary</value>
  1692. </data>
  1693. <data name="MakeYouCrazyWithOneWord_2" xml:space="preserve">
  1694. <value>MEDU will help you make your dreams come true</value>
  1695. </data>
  1696. <data name="MakeYouCrazyWithOneWord_3" xml:space="preserve">
  1697. <value>Do you want to be good at English?</value>
  1698. </data>
  1699. <data name="male" xml:space="preserve">
  1700. <value>Male</value>
  1701. </data>
  1702. <data name="ManyPeopleHasTroublesLikeYou" xml:space="preserve">
  1703. <value>It'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 have low self-esteem because you cannot continue studying English.</value>
  1704. </data>
  1705. <data name="ManySubjectsHelpYouUnderstandAtAll" xml:space="preserve">
  1706. <value>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.</value>
  1707. </data>
  1708. <data name="Members" xml:space="preserve">
  1709. <value>member</value>
  1710. </data>
  1711. <data name="menu" xml:space="preserve">
  1712. <value>menu</value>
  1713. </data>
  1714. <data name="MiniGame" xml:space="preserve">
  1715. <value>MiniGame</value>
  1716. </data>
  1717. <data name="MinResultToPass" xml:space="preserve">
  1718. <value>You need to achieve a minimum test result of 80% to pass the new lesson.</value>
  1719. </data>
  1720. <data name="Minutes" xml:space="preserve">
  1721. <value>Minutes</value>
  1722. </data>
  1723. <data name="MoreChancesToImproveYourIncome" xml:space="preserve">
  1724. <value>Some people have the opportunity to find better and better jobs, to increase their income.</value>
  1725. </data>
  1726. <data name="MyInformation" xml:space="preserve">
  1727. <value>My information</value>
  1728. </data>
  1729. <data name="Name" xml:space="preserve">
  1730. <value>First and last name</value>
  1731. </data>
  1732. <data name="NaturalLearning" xml:space="preserve">
  1733. <value>Communicate in English using a natural approach</value>
  1734. </data>
  1735. <data name="needToEat" xml:space="preserve">
  1736. <value>Your TDEE index:</value>
  1737. </data>
  1738. <data name="needToLoose" xml:space="preserve">
  1739. <value>Need to reduce</value>
  1740. </data>
  1741. <data name="NewPassword" xml:space="preserve">
  1742. <value>New password</value>
  1743. </data>
  1744. <data name="Next" xml:space="preserve">
  1745. <value>Next</value>
  1746. </data>
  1747. <data name="normal" xml:space="preserve">
  1748. <value>Normal</value>
  1749. </data>
  1750. <data name="NumberOfRightAnswer" xml:space="preserve">
  1751. <value>Right answer</value>
  1752. </data>
  1753. <data name="NumberOfWrongAnswer" xml:space="preserve">
  1754. <value>Wrong answer</value>
  1755. </data>
  1756. <data name="nutrition" xml:space="preserve">
  1757. <value>Nutritional information</value>
  1758. </data>
  1759. <data name="OldPassword" xml:space="preserve">
  1760. <value>Old password</value>
  1761. </data>
  1762. <data name="Oops" xml:space="preserve">
  1763. <value>Oops ..!! Your question is incorrect. But don't worry, you're doing great! Next time, join us for an exciting game and test your skills! It's a fun way to learn and win rewards.</value>
  1764. </data>
  1765. <data name="OtherKindergarteBooks" xml:space="preserve">
  1766. <value>Other kindergarten books</value>
  1767. </data>
  1768. <data name="otpProblem" xml:space="preserve">
  1769. <value>Is there a problem with OTP?</value>
  1770. </data>
  1771. <data name="otpSentAgain" xml:space="preserve">
  1772. <value>The OTP code has just been sent back to your phone.</value>
  1773. </data>
  1774. <data name="otpWasSent" xml:space="preserve">
  1775. <value>We just sent an OTP to your phone. Please check and fill in the correct OTP.</value>
  1776. </data>
  1777. <data name="OvercomingAnObstacle" xml:space="preserve">
  1778. <value>MEDU Together with you, eliminate English barriers</value>
  1779. </data>
  1780. <data name="OvercomingAnObstacleWithYou" xml:space="preserve">
  1781. <value>For you, eliminate the English barrier</value>
  1782. </data>
  1783. <data name="OvercomingAnObstacleWithYouLao" xml:space="preserve">
  1784. <value />
  1785. </data>
  1786. <data name="OvercomingAnObstacleWithYouViet" xml:space="preserve">
  1787. <value />
  1788. </data>
  1789. <data name="overWeight" xml:space="preserve">
  1790. <value>weight gain</value>
  1791. </data>
  1792. <data name="P1" xml:space="preserve">
  1793. <value>Primary school year 1 (starting in 2020)</value>
  1794. </data>
  1795. <data name="P10" xml:space="preserve">
  1796. <value>P10</value>
  1797. </data>
  1798. <data name="P101" xml:space="preserve">
  1799. <value>P10</value>
  1800. </data>
  1801. <data name="P11" xml:space="preserve">
  1802. <value>P11</value>
  1803. </data>
  1804. <data name="P110" xml:space="preserve">
  1805. <value>P1</value>
  1806. </data>
  1807. <data name="P111" xml:space="preserve">
  1808. <value>P11</value>
  1809. </data>
  1810. <data name="P12" xml:space="preserve">
  1811. <value>P12</value>
  1812. </data>
  1813. <data name="P121" xml:space="preserve">
  1814. <value>P12</value>
  1815. </data>
  1816. <data name="P13" xml:space="preserve">
  1817. <value>P13</value>
  1818. </data>
  1819. <data name="P131" xml:space="preserve">
  1820. <value>P13</value>
  1821. </data>
  1822. <data name="P14" xml:space="preserve">
  1823. <value>P14</value>
  1824. </data>
  1825. <data name="P141" xml:space="preserve">
  1826. <value>P14</value>
  1827. </data>
  1828. <data name="P15" xml:space="preserve">
  1829. <value>P15</value>
  1830. </data>
  1831. <data name="P151" xml:space="preserve">
  1832. <value>P15</value>
  1833. </data>
  1834. <data name="P16" xml:space="preserve">
  1835. <value>P16</value>
  1836. </data>
  1837. <data name="P161" xml:space="preserve">
  1838. <value>P16</value>
  1839. </data>
  1840. <data name="P17" xml:space="preserve">
  1841. <value>P17</value>
  1842. </data>
  1843. <data name="P171" xml:space="preserve">
  1844. <value>P17</value>
  1845. </data>
  1846. <data name="P18" xml:space="preserve">
  1847. <value>P18</value>
  1848. </data>
  1849. <data name="P181" xml:space="preserve">
  1850. <value>P18</value>
  1851. </data>
  1852. <data name="P19" xml:space="preserve">
  1853. <value>P19</value>
  1854. </data>
  1855. <data name="P191" xml:space="preserve">
  1856. <value>P19</value>
  1857. </data>
  1858. <data name="P2" xml:space="preserve">
  1859. <value>P2</value>
  1860. </data>
  1861. <data name="P20" xml:space="preserve">
  1862. <value>P20</value>
  1863. </data>
  1864. <data name="P201" xml:space="preserve">
  1865. <value>P20</value>
  1866. </data>
  1867. <data name="P21" xml:space="preserve">
  1868. <value>P21</value>
  1869. </data>
  1870. <data name="P210" xml:space="preserve">
  1871. <value>P2</value>
  1872. </data>
  1873. <data name="P211" xml:space="preserve">
  1874. <value>P21</value>
  1875. </data>
  1876. <data name="P22" xml:space="preserve">
  1877. <value>P22</value>
  1878. </data>
  1879. <data name="P221" xml:space="preserve">
  1880. <value>P22</value>
  1881. </data>
  1882. <data name="P23" xml:space="preserve">
  1883. <value>Primary Education Curriculum 2010</value>
  1884. </data>
  1885. <data name="P24" xml:space="preserve">
  1886. <value>Materials for learning properties and the world around us</value>
  1887. </data>
  1888. <data name="P25" xml:space="preserve">
  1889. <value>Science and Environment Teacher's Guide</value>
  1890. </data>
  1891. <data name="P26" xml:space="preserve">
  1892. <value>Arts and Crafts Teacher's Guide</value>
  1893. </data>
  1894. <data name="P27" xml:space="preserve">
  1895. <value>Lao Language Teacher's Guide (Volume 1)</value>
  1896. </data>
  1897. <data name="P28" xml:space="preserve">
  1898. <value>Lao Language Teacher's Guide (Volume 2)</value>
  1899. </data>
  1900. <data name="P29" xml:space="preserve">
  1901. <value>Teacher Qualifications Guide</value>
  1902. </data>
  1903. <data name="P3" xml:space="preserve">
  1904. <value>P3</value>
  1905. </data>
  1906. <data name="P30" xml:space="preserve">
  1907. <value>Music Art Teacher's Guide</value>
  1908. </data>
  1909. <data name="P31" xml:space="preserve">
  1910. <value>Physical Education Teacher's Guide</value>
  1911. </data>
  1912. <data name="P310" xml:space="preserve">
  1913. <value>P3</value>
  1914. </data>
  1915. <data name="P32" xml:space="preserve">
  1916. <value>Mathematics Teacher's Guide</value>
  1917. </data>
  1918. <data name="P33" xml:space="preserve">
  1919. <value>Science Teacher's Guide</value>
  1920. </data>
  1921. <data name="P34" xml:space="preserve">
  1922. <value>Arts and Crafts Teacher's Guide</value>
  1923. </data>
  1924. <data name="P35" xml:space="preserve">
  1925. <value>Lao Language Teacher's Guide (Volume 1)</value>
  1926. </data>
  1927. <data name="P36" xml:space="preserve">
  1928. <value>Lao Language Teacher's Guide (Volume 2)</value>
  1929. </data>
  1930. <data name="P37" xml:space="preserve">
  1931. <value>Teacher Qualifications Guide</value>
  1932. </data>
  1933. <data name="P38" xml:space="preserve">
  1934. <value>Music Teacher's Guide</value>
  1935. </data>
  1936. <data name="P39" xml:space="preserve">
  1937. <value>Art and Music Teacher's Guide</value>
  1938. </data>
  1939. <data name="P4" xml:space="preserve">
  1940. <value>P4</value>
  1941. </data>
  1942. <data name="P40" xml:space="preserve">
  1943. <value>Lao language teacher's guide</value>
  1944. </data>
  1945. <data name="P41" xml:space="preserve">
  1946. <value>Mathematics Teacher's Guide</value>
  1947. </data>
  1948. <data name="P410" xml:space="preserve">
  1949. <value>P4</value>
  1950. </data>
  1951. <data name="P42" xml:space="preserve">
  1952. <value>Teacher Qualifications Guide</value>
  1953. </data>
  1954. <data name="P43" xml:space="preserve">
  1955. <value>Physical education and handicraft teacher's guide</value>
  1956. </data>
  1957. <data name="P44" xml:space="preserve">
  1958. <value>Around the World Teacher Guide</value>
  1959. </data>
  1960. <data name="P45" xml:space="preserve">
  1961. <value>English Teacher's Guide</value>
  1962. </data>
  1963. <data name="P46" xml:space="preserve">
  1964. <value>Art and Music Teacher's Guide</value>
  1965. </data>
  1966. <data name="P47" xml:space="preserve">
  1967. <value>Lao language teacher's guide</value>
  1968. </data>
  1969. <data name="P48" xml:space="preserve">
  1970. <value>Mathematics Teacher's Guide</value>
  1971. </data>
  1972. <data name="P49" xml:space="preserve">
  1973. <value>Teacher Qualifications Guide</value>
  1974. </data>
  1975. <data name="P5" xml:space="preserve">
  1976. <value>P5</value>
  1977. </data>
  1978. <data name="P50" xml:space="preserve">
  1979. <value>Physical education and handicraft teacher's guide</value>
  1980. </data>
  1981. <data name="P51" xml:space="preserve">
  1982. <value>Around the World Teacher Guide</value>
  1983. </data>
  1984. <data name="P510" xml:space="preserve">
  1985. <value>P5</value>
  1986. </data>
  1987. <data name="P52" xml:space="preserve">
  1988. <value>English Teacher's Guide</value>
  1989. </data>
  1990. <data name="P53" xml:space="preserve">
  1991. <value>Art and Music Teacher's Guide</value>
  1992. </data>
  1993. <data name="P54" xml:space="preserve">
  1994. <value>Lao language teacher's guide</value>
  1995. </data>
  1996. <data name="P55" xml:space="preserve">
  1997. <value>Mathematics Teacher's Guide</value>
  1998. </data>
  1999. <data name="P56" xml:space="preserve">
  2000. <value>Teacher Qualifications Guide</value>
  2001. </data>
  2002. <data name="P57" xml:space="preserve">
  2003. <value>Physical education and handicraft teacher's guide</value>
  2004. </data>
  2005. <data name="P58" xml:space="preserve">
  2006. <value>Around the World Teacher Guide</value>
  2007. </data>
  2008. <data name="P59" xml:space="preserve">
  2009. <value>Physical Education Teacher's Guide</value>
  2010. </data>
  2011. <data name="P6" xml:space="preserve">
  2012. <value>Primary school year 2 (starting in 2020)</value>
  2013. </data>
  2014. <data name="P60" xml:space="preserve">
  2015. <value>Mathematics Teacher's Guide</value>
  2016. </data>
  2017. <data name="P61" xml:space="preserve">
  2018. <value>English Teacher's Guide</value>
  2019. </data>
  2020. <data name="P62" xml:space="preserve">
  2021. <value>P6</value>
  2022. </data>
  2023. <data name="P7" xml:space="preserve">
  2024. <value>P7</value>
  2025. </data>
  2026. <data name="P71" xml:space="preserve">
  2027. <value>P7</value>
  2028. </data>
  2029. <data name="P8" xml:space="preserve">
  2030. <value>P7</value>
  2031. </data>
  2032. <data name="P81" xml:space="preserve">
  2033. <value>P8</value>
  2034. </data>
  2035. <data name="P9" xml:space="preserve">
  2036. <value>P9</value>
  2037. </data>
  2038. <data name="P91" xml:space="preserve">
  2039. <value>P9</value>
  2040. </data>
  2041. <data name="ParticipantsMustBe" xml:space="preserve">
  2042. <value>Participants must be subscribers of the service.</value>
  2043. </data>
  2044. <data name="Passion" xml:space="preserve">
  2045. <value>Passion</value>
  2046. </data>
  2047. <data name="Password" xml:space="preserve">
  2048. <value>Password</value>
  2049. </data>
  2050. <data name="PasswordSent" xml:space="preserve">
  2051. <value>A new password has been sent to your phone.</value>
  2052. </data>
  2053. <data name="Personal" xml:space="preserve">
  2054. <value>Personal</value>
  2055. </data>
  2056. <data name="PhoneNumber" xml:space="preserve">
  2057. <value>Phone Number</value>
  2058. </data>
  2059. <data name="Phone_number" xml:space="preserve">
  2060. <value>Phone number</value>
  2061. </data>
  2062. <data name="PlayNow" xml:space="preserve">
  2063. <value>Play now</value>
  2064. </data>
  2065. <data name="PleaseRenew" xml:space="preserve">
  2066. <value>Please top up your card to extend service during the day.</value>
  2067. </data>
  2068. <data name="PleaseSignIn" xml:space="preserve">
  2069. <value>Log in</value>
  2070. </data>
  2071. <data name="Point" xml:space="preserve">
  2072. <value>Point</value>
  2073. </data>
  2074. <data name="Practice" xml:space="preserve">
  2075. <value>Practice</value>
  2076. </data>
  2077. <data name="PreviousExample" xml:space="preserve">
  2078. <value>Previous example</value>
  2079. </data>
  2080. <data name="Primary" xml:space="preserve">
  2081. <value>Primary</value>
  2082. </data>
  2083. <data name="Primary1" xml:space="preserve">
  2084. <value>Primary</value>
  2085. </data>
  2086. <data name="PrimaryBooks" xml:space="preserve">
  2087. <value>Primary books</value>
  2088. </data>
  2089. <data name="PrimaryEducation" xml:space="preserve">
  2090. <value>Primary education</value>
  2091. </data>
  2092. <data name="PrimaryEducation1" xml:space="preserve">
  2093. <value>Primary Education</value>
  2094. </data>
  2095. <data name="Primaryschoolyear1" xml:space="preserve">
  2096. <value>Primary school year 1 (starting in 2020)</value>
  2097. </data>
  2098. <data name="Primaryschoolyear2" xml:space="preserve">
  2099. <value>Primary school year 2 (starting in 2020)</value>
  2100. </data>
  2101. <data name="Primaryschoolyear3" xml:space="preserve">
  2102. <value>Primary school year 3</value>
  2103. </data>
  2104. <data name="Primaryschoolyear4" xml:space="preserve">
  2105. <value>Primary school year 4</value>
  2106. </data>
  2107. <data name="Primaryschoolyear5" xml:space="preserve">
  2108. <value>Primary school year 5</value>
  2109. </data>
  2110. <data name="Prizes" xml:space="preserve">
  2111. <value>Prizes:</value>
  2112. </data>
  2113. <data name="Products" xml:space="preserve">
  2114. <value>Product</value>
  2115. </data>
  2116. <data name="Profile" xml:space="preserve">
  2117. <value>Personal information</value>
  2118. </data>
  2119. <data name="Question" xml:space="preserve">
  2120. <value>Question</value>
  2121. </data>
  2122. <data name="QuestionBegin" xml:space="preserve">
  2123. <value>Choose the correct answer:</value>
  2124. </data>
  2125. <data name="Rank" xml:space="preserve">
  2126. <value>Ranking list</value>
  2127. </data>
  2128. <data name="Ranking" xml:space="preserve">
  2129. <value>Ranking</value>
  2130. </data>
  2131. <data name="Ready" xml:space="preserve">
  2132. <value>Ready</value>
  2133. </data>
  2134. <data name="Ready1" xml:space="preserve">
  2135. <value>Ready</value>
  2136. </data>
  2137. <data name="ReadyQuestion" xml:space="preserve">
  2138. <value>Are you ready?</value>
  2139. </data>
  2140. <data name="Register" xml:space="preserve">
  2141. <value>Register </value>
  2142. </data>
  2143. <data name="RegisterAndDiscoverUstudy" xml:space="preserve">
  2144. <value>Sign up and discover MEDU's free way to learn grammar, you'll see everything change!</value>
  2145. </data>
  2146. <data name="RegisterAsAMember" xml:space="preserve">
  2147. <value>sign up</value>
  2148. </data>
  2149. <data name="registerhf" xml:space="preserve">
  2150. <value>sign up</value>
  2151. </data>
  2152. <data name="RegisterSuccess" xml:space="preserve">
  2153. <value>You have successfully registered for the course. Welcome to you MEDU  - the smart language learning system!</value>
  2154. </data>
  2155. <data name="RegisterSuccessful" xml:space="preserve">
  2156. <value>You have successfully registered for the course. Welcome to you MEDU  - the smart language learning system!</value>
  2157. </data>
  2158. <data name="RegisterToSeeAllCourses" xml:space="preserve">
  2159. <value>You should register for a day package to study the entire course.</value>
  2160. </data>
  2161. <data name="RegisterWithUnitelEdu" xml:space="preserve">
  2162. <value>Register for an effective English learning method with MEDU</value>
  2163. </data>
  2164. <data name="RegisterWithUnitelEduLao" xml:space="preserve">
  2165. <value />
  2166. </data>
  2167. <data name="RegisterWithUnitelEduViet" xml:space="preserve">
  2168. <value />
  2169. </data>
  2170. <data name="Registfalsebecuaseuserhaveregistedbefore" xml:space="preserve">
  2171. <value>Regist false becuase user have registed before</value>
  2172. </data>
  2173. <data name="Relearn" xml:space="preserve">
  2174. <value>Study again</value>
  2175. </data>
  2176. <data name="ResearchingEnglish" xml:space="preserve">
  2177. <value>ENGLISH RESEARCH FACILITY</value>
  2178. </data>
  2179. <data name="resentOtp" xml:space="preserve">
  2180. <value>Get back OTP.</value>
  2181. </data>
  2182. <data name="ResetPassword" xml:space="preserve">
  2183. <value>Get password</value>
  2184. </data>
  2185. <data name="response" xml:space="preserve">
  2186. <value>Feedback</value>
  2187. </data>
  2188. <data name="Result" xml:space="preserve">
  2189. <value>You answered correctly</value>
  2190. </data>
  2191. <data name="ResultsWillBeSentToTheParticipants" xml:space="preserve">
  2192. <value>Results will be sent to the participants via SMS at 09:00 AM on the following Monday.</value>
  2193. </data>
  2194. <data name="Result_surprising" xml:space="preserve">
  2195. <value>The Results Will Surprise You!</value>
  2196. </data>
  2197. <data name="Retest" xml:space="preserve">
  2198. <value>Practice again</value>
  2199. </data>
  2200. <data name="Retester" xml:space="preserve">
  2201. <value>Practice again</value>
  2202. </data>
  2203. <data name="reward" xml:space="preserve">
  2204. <value>your reward.</value>
  2205. </data>
  2206. <data name="RewardIfYouPass" xml:space="preserve">
  2207. <value>You will be awarded 1 ME if the test result is 100% with time less than or equal to 3 seconds for each question</value>
  2208. </data>
  2209. <data name="RightAnswer" xml:space="preserve">
  2210. <value>Correct answer</value>
  2211. </data>
  2212. <data name="SecondaryEducation" xml:space="preserve">
  2213. <value>Secondary Education</value>
  2214. </data>
  2215. <data name="SecondaryTeacherBook" xml:space="preserve">
  2216. <value>Secondary Teacher's book</value>
  2217. </data>
  2218. <data name="SecondaryTextbook" xml:space="preserve">
  2219. <value>Secondary textbook</value>
  2220. </data>
  2221. <data name="SecondaryTextbooks" xml:space="preserve">
  2222. <value>Secondary textbooks</value>
  2223. </data>
  2224. <data name="Secret" xml:space="preserve">
  2225. <value>Mystery</value>
  2226. </data>
  2227. <data name="SelfConfidenceInSpeaking" xml:space="preserve">
  2228. <value>Gain confidence in communication, advance at work or easily recruit in an international company.</value>
  2229. </data>
  2230. <data name="Send" xml:space="preserve">
  2231. <value>Send</value>
  2232. </data>
  2233. <data name="sex" xml:space="preserve">
  2234. <value>Sex</value>
  2235. </data>
  2236. <data name="SignIn" xml:space="preserve">
  2237. <value>Log in</value>
  2238. </data>
  2239. <data name="SignOut" xml:space="preserve">
  2240. <value>Log out</value>
  2241. </data>
  2242. <data name="SignUp" xml:space="preserve">
  2243. <value>Register</value>
  2244. </data>
  2245. <data name="SignUpToCamID" xml:space="preserve">
  2246. <value>&lt;p&gt;&lt;strong&gt;Instructions for Customers to Register via App CamID and SMS:&lt;/strong&gt;&lt;/p&gt;
  2247. &lt;p&gt;&lt;br&gt;&lt;/p&gt;
  2248. &lt;ol&gt;
  2249. &lt;li&gt;
  2250. &lt;p&gt;&lt;strong&gt;Register via the App:&lt;/strong&gt;&lt;/p&gt;
  2251. &lt;ul&gt;
  2252. &lt;li&gt;Step 1: Download and install the CamID from the &lt;a href="https://apps.apple.com/vn/app/camid-movies-games-rewards/id1321717513?l=cam" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;&lt;span style="color: rgb(44, 130, 201);"&gt;App Store (iOS)&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; or &lt;a href="https://play.google.com/store/apps/details?id=com.metfone.selfcare" target="_blank" rel="noopener noreferrer"&gt;&lt;strong&gt;&lt;span style="color: rgb(226, 80, 65);"&gt;Google Play&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; (Android).&lt;/li&gt;
  2253. &lt;li&gt;Step 2: Open the app select the &amp;quot;Register&amp;quot; option on the main screen and do as the guideline&lt;/li&gt;
  2254. &lt;/ul&gt;
  2255. &lt;br&gt;
  2256. &lt;/li&gt;
  2257. &lt;li&gt;
  2258. &lt;p&gt;&lt;strong&gt;Register via SMS:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;
  2259. &lt;ul&gt;
  2260. &lt;li&gt;Compose a message in the format: &amp;nbsp;ON EDU&lt;strong&gt;&amp;nbsp;&amp;nbsp;&lt;/strong&gt;Send&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;to&lt;strong&gt;&amp;nbsp;1540&lt;/strong&gt;&lt;/li&gt;
  2261. &lt;li&gt;After sending, you will receive a confirmation message for successful registration.&lt;/li&gt;
  2262. &lt;/ul&gt;
  2263. &lt;/li&gt;
  2264. &lt;/ol&gt;
  2265. &lt;p&gt;&amp;nbsp;&lt;/p&gt;
  2266. &lt;p class="p1"&gt;&amp;nbsp;&lt;/p&gt;</value>
  2267. </data>
  2268. <data name="SimpleSteps" xml:space="preserve">
  2269. <value>With 2 simple steps</value>
  2270. </data>
  2271. <data name="slim" xml:space="preserve">
  2272. <value>Thin</value>
  2273. </data>
  2274. <data name="Speaking" xml:space="preserve">
  2275. <value>Communicate</value>
  2276. </data>
  2277. <data name="SpeakingAsANativePeople" xml:space="preserve">
  2278. <value>You can standardize your pronunciation like a Native speaker.</value>
  2279. </data>
  2280. <data name="SpeakingFluently" xml:space="preserve">
  2281. <value>With Listen to English, you speak English confidently, naturally and without sinking until after 3 months!</value>
  2282. </data>
  2283. <data name="SpeakingSystem" xml:space="preserve">
  2284. <value>English communication learning system</value>
  2285. </data>
  2286. <data name="Starting" xml:space="preserve">
  2287. <value>Start</value>
  2288. </data>
  2289. <data name="Story" xml:space="preserve">
  2290. <value>Content</value>
  2291. </data>
  2292. <data name="String" xml:space="preserve">
  2293. <value>P8</value>
  2294. </data>
  2295. <data name="Strong" xml:space="preserve">
  2296. <value>Strong</value>
  2297. </data>
  2298. <data name="Subject" xml:space="preserve">
  2299. <value>Topic</value>
  2300. </data>
  2301. <data name="Submit" xml:space="preserve">
  2302. <value>Save changes</value>
  2303. </data>
  2304. <data name="Subscriber" xml:space="preserve">
  2305. <value>Register</value>
  2306. </data>
  2307. <data name="SubscriberNow" xml:space="preserve">
  2308. <value>Sign up for the service now</value>
  2309. </data>
  2310. <data name="SurpriseResult" xml:space="preserve">
  2311. <value>The Results Will Surprise You!</value>
  2312. </data>
  2313. <data name="TeacherBook" xml:space="preserve">
  2314. <value>Teacher’s book</value>
  2315. </data>
  2316. <data name="TestingResults" xml:space="preserve">
  2317. <value>Test results</value>
  2318. </data>
  2319. <data name="TheMinigameConsists" xml:space="preserve">
  2320. <value>The minigame consists of 20 questions.</value>
  2321. </data>
  2322. <data name="TheMiniGameStartsAt" xml:space="preserve">
  2323. <value>The mini-game starts at 10:00 AM every Sunday.</value>
  2324. </data>
  2325. <data name="TheNotices" xml:space="preserve">
  2326. <value>Here are some points you need to keep in mind!</value>
  2327. </data>
  2328. <data name="Theory" xml:space="preserve">
  2329. <value>Theory</value>
  2330. </data>
  2331. <data name="ThereIsOnlyOnePrizeFor" xml:space="preserve">
  2332. <value>There is only one prize for the participant who correctly answers all 20 questions the fastest. The prize is 20$, transfer via Emoney</value>
  2333. </data>
  2334. <data name="TheRules" xml:space="preserve">
  2335. <value>Exam room rules</value>
  2336. </data>
  2337. <data name="ThisMethodHelpsImprovingYourSpekingSkill" xml:space="preserve">
  2338. <value>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.</value>
  2339. </data>
  2340. <data name="ThisMethodHelpsYouCreateADocumentEasily" xml:space="preserve">
  2341. <value>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.</value>
  2342. </data>
  2343. <data name="ThisMethodHelpsYouRememberEasily" xml:space="preserve">
  2344. <value>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.</value>
  2345. </data>
  2346. <data name="ThreeStepsToLearn" xml:space="preserve">
  2347. <value>3 Steps to Learn English Vocabulary Smartly</value>
  2348. </data>
  2349. <data name="Tille_minigame" xml:space="preserve">
  2350. <value>MINIGAME</value>
  2351. </data>
  2352. <data name="Timer" xml:space="preserve">
  2353. <value>total time</value>
  2354. </data>
  2355. <data name="toJoinAttractiveCourses" xml:space="preserve">
  2356. <value>to join interesting courses</value>
  2357. </data>
  2358. <data name="toolCal" xml:space="preserve">
  2359. <value>Calculator</value>
  2360. </data>
  2361. <data name="Translated" xml:space="preserve">
  2362. <value>Translated</value>
  2363. </data>
  2364. <data name="TryForFree" xml:space="preserve">
  2365. <value>Free experience!</value>
  2366. </data>
  2367. <data name="TryForFree1" xml:space="preserve">
  2368. <value>Free experience!</value>
  2369. </data>
  2370. <data name="TryingNow" xml:space="preserve">
  2371. <value>Try learning now</value>
  2372. </data>
  2373. <data name="TryYourBest" xml:space="preserve">
  2374. <value>Come on!</value>
  2375. </data>
  2376. <data name="UnderstandingYourMovies" xml:space="preserve">
  2377. <value>You can watch movies or listen to English music without subtitles, but still understand 80%, 90%, even 100%.</value>
  2378. </data>
  2379. <data name="UnitelEduSystem" xml:space="preserve">
  2380. <value>UnitelEduSystem</value>
  2381. </data>
  2382. <data name="UserLocked" xml:space="preserve">
  2383. <value>The user has been locked out. Please log in after 5 minutes.</value>
  2384. </data>
  2385. <data name="useUntitel" xml:space="preserve">
  2386. <value>useUntitel</value>
  2387. </data>
  2388. <data name="UstudyGivesYouAllinstrumentsToLearn" xml:space="preserve">
  2389. <value>MEDU will provide learners with complete theories on grammar topics with a vivid, easy-to-remember presentation of bilingual content.</value>
  2390. </data>
  2391. <data name="UstudyGrammar" xml:space="preserve">
  2392. <value>Bring MEDU grammar</value>
  2393. </data>
  2394. <data name="UstudyGrammarIsTheFirstIntelligentSystemInLao" xml:space="preserve">
  2395. <value>MEDU GRAMMAR is the first smart online English grammar learning system in Timor, helping learners access and master English grammar in just 6 months.</value>
  2396. </data>
  2397. <data name="UstudyHasDevelopedANewMethodToImproveSpeakingSkillBaseOnNaturalLanguageApproach" xml:space="preserve">
  2398. <value>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</value>
  2399. </data>
  2400. <data name="UstudyHelpsYouUnderstandingDeeply" xml:space="preserve">
  2401. <value>MEDU will help learners apply and understand more deeply the theories of grammar topics they have learned through practice exercises.</value>
  2402. </data>
  2403. <data name="UstudyIsAProductOfUstudyToHelpOvercomingAnObstacle" xml:space="preserve">
  2404. <value>MEDU is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers.</value>
  2405. </data>
  2406. <data name="UstudyListeningIsTheFirstIntelligentSystemInLao" xml:space="preserve">
  2407. <value>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.</value>
  2408. </data>
  2409. <data name="USTUDYMakesYourDreamComeTrue" xml:space="preserve">
  2410. <value>MEDU will help you make your dreams come true</value>
  2411. </data>
  2412. <data name="USTUDYProvidesLessonsAbout4Skills" xml:space="preserve">
  2413. <value>MEDU  offers vocabulary lessons, 4 skills: listening, speaking, reading, writing, games in English, stories, etc.</value>
  2414. </data>
  2415. <data name="USTUDYReminderYouEveryday" xml:space="preserve">
  2416. <value>MEDU will remind you every day and you can't be distracted from learning English!</value>
  2417. </data>
  2418. <data name="UstudyVocabulary" xml:space="preserve">
  2419. <value>MEDU VOCABULARY</value>
  2420. </data>
  2421. <data name="USTUDYWelcomeYou" xml:space="preserve">
  2422. <value>Come to MEDU</value>
  2423. </data>
  2424. <data name="Ustudy_des_1" xml:space="preserve">
  2425. <value>MEDU is a product of the ecosystem of the MEDU language project, built to help students eliminate English barriers.</value>
  2426. </data>
  2427. <data name="Ustudy_des_1_Lao" xml:space="preserve">
  2428. <value />
  2429. </data>
  2430. <data name="Ustudy_des_1_Viet" xml:space="preserve">
  2431. <value />
  2432. </data>
  2433. <data name="Ustudy_des_2" xml:space="preserve">
  2434. <value>MEDU is a smart English vocabulary learning system that will help you remember vocabulary easily and deeply in just a short time.</value>
  2435. </data>
  2436. <data name="Ustudy_grammar" xml:space="preserve">
  2437. <value>English grammar learning system</value>
  2438. </data>
  2439. <data name="Ustudy_listening" xml:space="preserve">
  2440. <value>English communication learning system</value>
  2441. </data>
  2442. <data name="Ustudy_vocabulary" xml:space="preserve">
  2443. <value>English vocabulary learning system</value>
  2444. </data>
  2445. <data name="vietnamese" xml:space="preserve">
  2446. <value />
  2447. </data>
  2448. <data name="View" xml:space="preserve">
  2449. <value>View</value>
  2450. </data>
  2451. <data name="Vocabulary" xml:space="preserve">
  2452. <value>Vocabulary</value>
  2453. </data>
  2454. <data name="VocabularySystem" xml:space="preserve">
  2455. <value>English vocabulary learning system</value>
  2456. </data>
  2457. <data name="Voca_des_1_a" xml:space="preserve">
  2458. <value>will</value>
  2459. </data>
  2460. <data name="Voca_des_1_b" xml:space="preserve">
  2461. <value>tease you</value>
  2462. </data>
  2463. <data name="Voca_des_1_c" xml:space="preserve">
  2464. <value>encourage you</value>
  2465. </data>
  2466. <data name="Voca_des_1_d" xml:space="preserve">
  2467. <value>and</value>
  2468. </data>
  2469. <data name="Voca_des_1_e" xml:space="preserve">
  2470. <value>reward for you</value>
  2471. </data>
  2472. <data name="Voca_des_2" xml:space="preserve">
  2473. <value>MEDU will go with you everywhere, and you can never leave MEDU</value>
  2474. </data>
  2475. <data name="Voca_des_3" xml:space="preserve">
  2476. <value>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.</value>
  2477. </data>
  2478. <data name="weight" xml:space="preserve">
  2479. <value>Weight</value>
  2480. </data>
  2481. <data name="Welcome" xml:space="preserve">
  2482. <value>Account</value>
  2483. </data>
  2484. <data name="WelcomeBack" xml:space="preserve">
  2485. <value>Welcome back</value>
  2486. </data>
  2487. <data name="welcomeToUstudy" xml:space="preserve">
  2488. <value>Welcome to MEDU</value>
  2489. </data>
  2490. <data name="will" xml:space="preserve">
  2491. <value>will</value>
  2492. </data>
  2493. <data name="Word" xml:space="preserve">
  2494. <value>from</value>
  2495. </data>
  2496. <data name="WrongAnswer" xml:space="preserve">
  2497. <value>You answered wrong!</value>
  2498. </data>
  2499. <data name="wrongTelco" xml:space="preserve">
  2500. <value>Your subscription is not a Telemor subscription, please use a Telemor subscription to register for the service.</value>
  2501. </data>
  2502. <data name="You'veDoneit!You've20CorrectAnwsers" xml:space="preserve">
  2503. <value>You've done it! You've 20 correct anwsers! Your skills and determination have paid off, and we're excited to celebrate your victory. The leaderboard will be updated next Monday morning. Your prize money will be announced soon. Thank you.</value>
  2504. </data>
  2505. <data name="YouCannotLearnAHugeKnowledgeOfGrammar" xml:space="preserve">
  2506. <value>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?</value>
  2507. </data>
  2508. <data name="YouCannotPresentToSomeone" xml:space="preserve">
  2509. <value>Do you have difficulty explaining English to native speakers, they can't understand you, or misunderstand your meaning just because you use wrong grammar?</value>
  2510. </data>
  2511. <data name="YouHave15Seconds" xml:space="preserve">
  2512. <value>You have 15 seconds to think and give your answer.</value>
  2513. </data>
  2514. <data name="YouHaveLearnedForManyYearsButCannotUseItFluently" xml:space="preserve">
  2515. <value>Have you studied English grammar for many years but still can't use it fluently and accurately in writing and speaking?</value>
  2516. </data>
  2517. <data name="YouHaveLearnedSpeakingOrListeningButCannotUseIt" xml:space="preserve">
  2518. <value>Have You Been Studying English For Many Years But Still Can't Listen Or Speak English?</value>
  2519. </data>
  2520. <data name="YouHaveManyMistakesInDocuments" xml:space="preserve">
  2521. <value>Do you often use grammatical structures incorrectly, and you don't know how to use them in the correct situations or situations?</value>
  2522. </data>
  2523. <data name="YouHaven'tRegisteredMEDU" xml:space="preserve">
  2524. <value>You have not registered MEDU service yet. Please try to register and comeback to play minigame. Thank you!</value>
  2525. </data>
  2526. <data name="YouHaveNoCourse" xml:space="preserve">
  2527. <value>YOU DON'T HAVE ANY COURSES</value>
  2528. </data>
  2529. <data name="YouHaveOutOfTurnToPlayMinigame" xml:space="preserve">
  2530. <value>You have out of turn to play minigame. Please come back on Sunday nextweek. Thank for using service.</value>
  2531. </data>
  2532. <data name="YouKnowAboutTheImportanceOfLearningEnglish" xml:space="preserve">
  2533. <value>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.</value>
  2534. </data>
  2535. <data name="YourCourses" xml:space="preserve">
  2536. <value>The courses you are studying</value>
  2537. </data>
  2538. <data name="YourListeningExistsForever" xml:space="preserve">
  2539. <value>Your natural listening and reflexive skills will stay with you forever and will not disappear.</value>
  2540. </data>
  2541. <data name="yourPassword" xml:space="preserve">
  2542. <value>Your account has been successfully created. Your password is</value>
  2543. </data>
  2544. <data name="YourVocabularyImprovesQuickly" xml:space="preserve">
  2545. <value>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.</value>
  2546. </data>
  2547. </root>