Lang.Designer.cs 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Pulsa.Texts {
  11. using System;
  12. /// <summary>
  13. /// A strongly-typed resource class, for looking up localized strings, etc.
  14. /// </summary>
  15. // This class was auto-generated by the StronglyTypedResourceBuilder
  16. // class via a tool like ResGen or Visual Studio.
  17. // To add or remove a member, edit your .ResX file then rerun ResGen
  18. // with the /str option, or rebuild your VS project.
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public class Lang {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal Lang() {
  27. }
  28. /// <summary>
  29. /// Returns the cached ResourceManager instance used by this class.
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Pulsa.Texts.Lang", typeof(Lang).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// Overrides the current thread's CurrentUICulture property for all
  43. /// resource lookups using this strongly typed resource class.
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// Looks up a localized string similar to About Us.
  56. /// </summary>
  57. public static string AboutUs {
  58. get {
  59. return ResourceManager.GetString("AboutUs", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// Looks up a localized string similar to Accept.
  64. /// </summary>
  65. public static string Accept {
  66. get {
  67. return ResourceManager.GetString("Accept", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// Looks up a localized string similar to Accept Exchange.
  72. /// </summary>
  73. public static string AcceptExchange {
  74. get {
  75. return ResourceManager.GetString("AcceptExchange", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// Looks up a localized string similar to Account charge.
  80. /// </summary>
  81. public static string AccountCharge {
  82. get {
  83. return ResourceManager.GetString("AccountCharge", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// Looks up a localized string similar to Account is required.
  88. /// </summary>
  89. public static string AccountRequired {
  90. get {
  91. return ResourceManager.GetString("AccountRequired", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// Looks up a localized string similar to Account subscriber information.
  96. /// </summary>
  97. public static string AccountSubscriberInfo {
  98. get {
  99. return ResourceManager.GetString("AccountSubscriberInfo", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// Looks up a localized string similar to Accumulate more %point% points to up rank %rank%.
  104. /// </summary>
  105. public static string AccumulateMoreUpRank {
  106. get {
  107. return ResourceManager.GetString("AccumulateMoreUpRank", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// Looks up a localized string similar to Accumulate Point Process.
  112. /// </summary>
  113. public static string AccumulatePointProcess {
  114. get {
  115. return ResourceManager.GetString("AccumulatePointProcess", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// Looks up a localized string similar to Address.
  120. /// </summary>
  121. public static string Address {
  122. get {
  123. return ResourceManager.GetString("Address", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// Looks up a localized string similar to you agree to make all transactions according to.
  128. /// </summary>
  129. public static string AgreeTerm {
  130. get {
  131. return ResourceManager.GetString("AgreeTerm", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// Looks up a localized string similar to Airtime.
  136. /// </summary>
  137. public static string Airtime {
  138. get {
  139. return ResourceManager.GetString("Airtime", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// Looks up a localized string similar to &lt;b&gt;Welcome to Airtime Service.&lt;/b&gt;&lt;br /&gt;
  144. ///&lt;b&gt;1. Policy:&lt;/b&gt;&lt;br /&gt;
  145. ///- Loan 20 cents with fee 3 cents.&lt;br /&gt;
  146. ///- Loan 50 cents with fee 7.5 cents.&lt;br /&gt;
  147. ///- Loan 80 cents with fee 12 cents.&lt;br /&gt;
  148. ///&lt;b&gt;2. How to loan:&lt;/b&gt;&lt;br /&gt;
  149. ///#1. Compose message ON to send to 1111.&lt;br /&gt;
  150. ///#2. Call *1111# and follow the instructions.&lt;br /&gt;
  151. ///For IT and Developer: Add 1 button, when click to open Message fake MO with content &quot;ON&quot;, Receiver phone: 1111. OR Open Phone Call with syntax *1111#..
  152. /// </summary>
  153. public static string AirtimeDetail {
  154. get {
  155. return ResourceManager.GetString("AirtimeDetail", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// Looks up a localized string similar to All History.
  160. /// </summary>
  161. public static string AllHistory {
  162. get {
  163. return ResourceManager.GetString("AllHistory", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// Looks up a localized string similar to ANOTHER POSITIONS.
  168. /// </summary>
  169. public static string AnotherPositions {
  170. get {
  171. return ResourceManager.GetString("AnotherPositions", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// Looks up a localized string similar to Ask.
  176. /// </summary>
  177. public static string Ask {
  178. get {
  179. return ResourceManager.GetString("Ask", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// Looks up a localized string similar to Back.
  184. /// </summary>
  185. public static string Back {
  186. get {
  187. return ResourceManager.GetString("Back", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// Looks up a localized string similar to Behind Id image must be &lt; 1MB.
  192. /// </summary>
  193. public static string BehindIdTooBig {
  194. get {
  195. return ResourceManager.GetString("BehindIdTooBig", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// Looks up a localized string similar to Broadband.
  200. /// </summary>
  201. public static string Broadband {
  202. get {
  203. return ResourceManager.GetString("Broadband", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// Looks up a localized string similar to B2B Internet Service.
  208. /// </summary>
  209. public static string BroadbandDesc {
  210. get {
  211. return ResourceManager.GetString("BroadbandDesc", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// Looks up a localized string similar to Business License.
  216. /// </summary>
  217. public static string BusinessLicense {
  218. get {
  219. return ResourceManager.GetString("BusinessLicense", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// Looks up a localized string similar to Buy Package.
  224. /// </summary>
  225. public static string BuyPackage {
  226. get {
  227. return ResourceManager.GetString("BuyPackage", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// Looks up a localized string similar to By clicking.
  232. /// </summary>
  233. public static string ByClicking {
  234. get {
  235. return ResourceManager.GetString("ByClicking", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// Looks up a localized string similar to Call &amp; Sms.
  240. /// </summary>
  241. public static string CallSms {
  242. get {
  243. return ResourceManager.GetString("CallSms", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// Looks up a localized string similar to Captcha Invalid.
  248. /// </summary>
  249. public static string CaptchaInvalid {
  250. get {
  251. return ResourceManager.GetString("CaptchaInvalid", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// Looks up a localized string similar to Card Number.
  256. /// </summary>
  257. public static string CardNumber {
  258. get {
  259. return ResourceManager.GetString("CardNumber", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// Looks up a localized string similar to Card Type.
  264. /// </summary>
  265. public static string CardType {
  266. get {
  267. return ResourceManager.GetString("CardType", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// Looks up a localized string similar to Careers.
  272. /// </summary>
  273. public static string Careers {
  274. get {
  275. return ResourceManager.GetString("Careers", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// Looks up a localized string similar to Choose your colour.
  280. /// </summary>
  281. public static string ChooseYourColor {
  282. get {
  283. return ResourceManager.GetString("ChooseYourColor", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// Looks up a localized string similar to Close.
  288. /// </summary>
  289. public static string Close {
  290. get {
  291. return ResourceManager.GetString("Close", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// Looks up a localized string similar to Code.
  296. /// </summary>
  297. public static string Code {
  298. get {
  299. return ResourceManager.GetString("Code", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// Looks up a localized string similar to Balance.
  304. /// </summary>
  305. public static string ColBalance {
  306. get {
  307. return ResourceManager.GetString("ColBalance", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// Looks up a localized string similar to Cost.
  312. /// </summary>
  313. public static string ColCost {
  314. get {
  315. return ResourceManager.GetString("ColCost", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// Looks up a localized string similar to Date.
  320. /// </summary>
  321. public static string ColDate {
  322. get {
  323. return ResourceManager.GetString("ColDate", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// Looks up a localized string similar to Duration.
  328. /// </summary>
  329. public static string ColDuration {
  330. get {
  331. return ResourceManager.GetString("ColDuration", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// Looks up a localized string similar to Number.
  336. /// </summary>
  337. public static string ColNumber {
  338. get {
  339. return ResourceManager.GetString("ColNumber", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// Looks up a localized string similar to Time.
  344. /// </summary>
  345. public static string ColTime {
  346. get {
  347. return ResourceManager.GetString("ColTime", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// Looks up a localized string similar to Type.
  352. /// </summary>
  353. public static string ColType {
  354. get {
  355. return ResourceManager.GetString("ColType", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// Looks up a localized string similar to Company Profile.
  360. /// </summary>
  361. public static string CompanyProfile {
  362. get {
  363. return ResourceManager.GetString("CompanyProfile", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// Looks up a localized string similar to Confirm.
  368. /// </summary>
  369. public static string Confirm {
  370. get {
  371. return ResourceManager.GetString("Confirm", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// Looks up a localized string similar to Confirm Exchange Point.
  376. /// </summary>
  377. public static string ConfirmExchangePoint {
  378. get {
  379. return ResourceManager.GetString("ConfirmExchangePoint", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// Looks up a localized string similar to Confirm password.
  384. /// </summary>
  385. public static string ConfirmPassword {
  386. get {
  387. return ResourceManager.GetString("ConfirmPassword", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// Looks up a localized string similar to Confirm password is required.
  392. /// </summary>
  393. public static string ConfirmPasswordRequired {
  394. get {
  395. return ResourceManager.GetString("ConfirmPasswordRequired", resourceCulture);
  396. }
  397. }
  398. /// <summary>
  399. /// Looks up a localized string similar to Are you sure want to register this package?.
  400. /// </summary>
  401. public static string ConfirmRegister {
  402. get {
  403. return ResourceManager.GetString("ConfirmRegister", resourceCulture);
  404. }
  405. }
  406. /// <summary>
  407. /// Looks up a localized string similar to Contact.
  408. /// </summary>
  409. public static string Contact {
  410. get {
  411. return ResourceManager.GetString("Contact", resourceCulture);
  412. }
  413. }
  414. /// <summary>
  415. /// Looks up a localized string similar to Contact to buy.
  416. /// </summary>
  417. public static string ContactToBuy {
  418. get {
  419. return ResourceManager.GetString("ContactToBuy", resourceCulture);
  420. }
  421. }
  422. /// <summary>
  423. /// Looks up a localized string similar to Contact Us.
  424. /// </summary>
  425. public static string ContactUs {
  426. get {
  427. return ResourceManager.GetString("ContactUs", resourceCulture);
  428. }
  429. }
  430. /// <summary>
  431. /// Looks up a localized string similar to Copyright © 2022 Telemor. All rights reserved..
  432. /// </summary>
  433. public static string CopyRight {
  434. get {
  435. return ResourceManager.GetString("CopyRight", resourceCulture);
  436. }
  437. }
  438. /// <summary>
  439. /// Looks up a localized string similar to Customer Care.
  440. /// </summary>
  441. public static string CustomerCare {
  442. get {
  443. return ResourceManager.GetString("CustomerCare", resourceCulture);
  444. }
  445. }
  446. /// <summary>
  447. /// Looks up a localized string similar to CustomerCareLine.
  448. /// </summary>
  449. public static string CustomerCareLine {
  450. get {
  451. return ResourceManager.GetString("CustomerCareLine", resourceCulture);
  452. }
  453. }
  454. /// <summary>
  455. /// Looks up a localized string similar to Daily.
  456. /// </summary>
  457. public static string Daily {
  458. get {
  459. return ResourceManager.GetString("Daily", resourceCulture);
  460. }
  461. }
  462. /// <summary>
  463. /// Looks up a localized string similar to Data.
  464. /// </summary>
  465. public static string Data {
  466. get {
  467. return ResourceManager.GetString("Data", resourceCulture);
  468. }
  469. }
  470. /// <summary>
  471. /// Looks up a localized string similar to Data credit.
  472. /// </summary>
  473. public static string DataCredit {
  474. get {
  475. return ResourceManager.GetString("DataCredit", resourceCulture);
  476. }
  477. }
  478. /// <summary>
  479. /// Looks up a localized string similar to Data package.
  480. /// </summary>
  481. public static string DataPackage {
  482. get {
  483. return ResourceManager.GetString("DataPackage", resourceCulture);
  484. }
  485. }
  486. /// <summary>
  487. /// Looks up a localized string similar to Data MB depends on packages.
  488. /// </summary>
  489. public static string DataPackageExchange {
  490. get {
  491. return ResourceManager.GetString("DataPackageExchange", resourceCulture);
  492. }
  493. }
  494. /// <summary>
  495. /// Looks up a localized string similar to Conditions of application: Mobile and fixed customers are Diamond, Gold, Silver members with a consumption score of 1,000 points or more.
  496. ///
  497. ///Minimum redemption: 100 points.
  498. ///
  499. ///Charges after conversion are added to the promotional account for prepaid subscribers or adjusted to the bill for postpaid subscribers.
  500. ///
  501. ///Deposits from redeeming points are not eligible for other recharge card promotions (if any) and cannot be used to accumulate qualifying points..
  502. /// </summary>
  503. public static string DataPackageRule {
  504. get {
  505. return ResourceManager.GetString("DataPackageRule", resourceCulture);
  506. }
  507. }
  508. /// <summary>
  509. /// Looks up a localized string similar to Data Promotion 4G.
  510. /// </summary>
  511. public static string DataPromotion4G {
  512. get {
  513. return ResourceManager.GetString("DataPromotion4G", resourceCulture);
  514. }
  515. }
  516. /// <summary>
  517. /// Looks up a localized string similar to Data Volume.
  518. /// </summary>
  519. public static string DataVolume {
  520. get {
  521. return ResourceManager.GetString("DataVolume", resourceCulture);
  522. }
  523. }
  524. /// <summary>
  525. /// Looks up a localized string similar to day.
  526. /// </summary>
  527. public static string Day {
  528. get {
  529. return ResourceManager.GetString("Day", resourceCulture);
  530. }
  531. }
  532. /// <summary>
  533. /// Looks up a localized string similar to days.
  534. /// </summary>
  535. public static string Days {
  536. get {
  537. return ResourceManager.GetString("Days", resourceCulture);
  538. }
  539. }
  540. /// <summary>
  541. /// Looks up a localized string similar to Highest - Lowest point.
  542. /// </summary>
  543. public static string DecreasePoint {
  544. get {
  545. return ResourceManager.GetString("DecreasePoint", resourceCulture);
  546. }
  547. }
  548. /// <summary>
  549. /// Looks up a localized string similar to Detail.
  550. /// </summary>
  551. public static string Detail {
  552. get {
  553. return ResourceManager.GetString("Detail", resourceCulture);
  554. }
  555. }
  556. /// <summary>
  557. /// Looks up a localized string similar to Device.
  558. /// </summary>
  559. public static string Device {
  560. get {
  561. return ResourceManager.GetString("Device", resourceCulture);
  562. }
  563. }
  564. /// <summary>
  565. /// Looks up a localized string similar to Up-to-date device.
  566. /// </summary>
  567. public static string DeviceDesc {
  568. get {
  569. return ResourceManager.GetString("DeviceDesc", resourceCulture);
  570. }
  571. }
  572. /// <summary>
  573. /// Looks up a localized string similar to Don’t have an account?.
  574. /// </summary>
  575. public static string DontHaveAccount {
  576. get {
  577. return ResourceManager.GetString("DontHaveAccount", resourceCulture);
  578. }
  579. }
  580. /// <summary>
  581. /// Looks up a localized string similar to Download Mosan app.
  582. /// </summary>
  583. public static string DownloadMosanApp {
  584. get {
  585. return ResourceManager.GetString("DownloadMosanApp", resourceCulture);
  586. }
  587. }
  588. /// <summary>
  589. /// Looks up a localized string similar to Download super app.
  590. /// </summary>
  591. public static string DownloadSupperApp {
  592. get {
  593. return ResourceManager.GetString("DownloadSupperApp", resourceCulture);
  594. }
  595. }
  596. /// <summary>
  597. /// Looks up a localized string similar to Edit.
  598. /// </summary>
  599. public static string Edit {
  600. get {
  601. return ResourceManager.GetString("Edit", resourceCulture);
  602. }
  603. }
  604. /// <summary>
  605. /// Looks up a localized string similar to Edit Information.
  606. /// </summary>
  607. public static string EditInformation {
  608. get {
  609. return ResourceManager.GetString("EditInformation", resourceCulture);
  610. }
  611. }
  612. /// <summary>
  613. /// Looks up a localized string similar to Election Card.
  614. /// </summary>
  615. public static string ElectionCard {
  616. get {
  617. return ResourceManager.GetString("ElectionCard", resourceCulture);
  618. }
  619. }
  620. /// <summary>
  621. /// Looks up a localized string similar to Email.
  622. /// </summary>
  623. public static string Email {
  624. get {
  625. return ResourceManager.GetString("Email", resourceCulture);
  626. }
  627. }
  628. /// <summary>
  629. /// Looks up a localized string similar to Email.
  630. /// </summary>
  631. public static string Email1 {
  632. get {
  633. return ResourceManager.GetString("Email1", resourceCulture);
  634. }
  635. }
  636. /// <summary>
  637. /// Looks up a localized string similar to Borrow.
  638. /// </summary>
  639. public static string Empresta {
  640. get {
  641. return ResourceManager.GetString("Empresta", resourceCulture);
  642. }
  643. }
  644. /// <summary>
  645. /// Looks up a localized string similar to Enter OTP:.
  646. /// </summary>
  647. public static string EnterOTP {
  648. get {
  649. return ResourceManager.GetString("EnterOTP", resourceCulture);
  650. }
  651. }
  652. /// <summary>
  653. /// Looks up a localized string similar to Enter Phone number:.
  654. /// </summary>
  655. public static string EnterPhonenumber {
  656. get {
  657. return ResourceManager.GetString("EnterPhonenumber", resourceCulture);
  658. }
  659. }
  660. /// <summary>
  661. /// Looks up a localized string similar to Enter scratch cards code *.
  662. /// </summary>
  663. public static string EnterScratchCode {
  664. get {
  665. return ResourceManager.GetString("EnterScratchCode", resourceCulture);
  666. }
  667. }
  668. /// <summary>
  669. /// Looks up a localized string similar to Exchange Now.
  670. /// </summary>
  671. public static string ExchangeNow {
  672. get {
  673. return ResourceManager.GetString("ExchangeNow", resourceCulture);
  674. }
  675. }
  676. /// <summary>
  677. /// Looks up a localized string similar to ExchangePoint.
  678. /// </summary>
  679. public static string ExchangePoint {
  680. get {
  681. return ResourceManager.GetString("ExchangePoint", resourceCulture);
  682. }
  683. }
  684. /// <summary>
  685. /// Looks up a localized string similar to Expire.
  686. /// </summary>
  687. public static string Expire {
  688. get {
  689. return ResourceManager.GetString("Expire", resourceCulture);
  690. }
  691. }
  692. /// <summary>
  693. /// Looks up a localized string similar to Expire Date.
  694. /// </summary>
  695. public static string ExpiredDate {
  696. get {
  697. return ResourceManager.GetString("ExpiredDate", resourceCulture);
  698. }
  699. }
  700. /// <summary>
  701. /// Looks up a localized string similar to Failure.
  702. /// </summary>
  703. public static string Failure {
  704. get {
  705. return ResourceManager.GetString("Failure", resourceCulture);
  706. }
  707. }
  708. /// <summary>
  709. /// Looks up a localized string similar to FAQs.
  710. /// </summary>
  711. public static string FAQs {
  712. get {
  713. return ResourceManager.GetString("FAQs", resourceCulture);
  714. }
  715. }
  716. /// <summary>
  717. /// Looks up a localized string similar to Female.
  718. /// </summary>
  719. public static string Female {
  720. get {
  721. return ResourceManager.GetString("Female", resourceCulture);
  722. }
  723. }
  724. /// <summary>
  725. /// Looks up a localized string similar to Filter By.
  726. /// </summary>
  727. public static string FilterBy {
  728. get {
  729. return ResourceManager.GetString("FilterBy", resourceCulture);
  730. }
  731. }
  732. /// <summary>
  733. /// Looks up a localized string similar to Find a store.
  734. /// </summary>
  735. public static string FindAStore {
  736. get {
  737. return ResourceManager.GetString("FindAStore", resourceCulture);
  738. }
  739. }
  740. /// <summary>
  741. /// Looks up a localized string similar to Find Store.
  742. /// </summary>
  743. public static string FindStore {
  744. get {
  745. return ResourceManager.GetString("FindStore", resourceCulture);
  746. }
  747. }
  748. /// <summary>
  749. /// Looks up a localized string similar to Fintech.
  750. /// </summary>
  751. public static string Fintech {
  752. get {
  753. return ResourceManager.GetString("Fintech", resourceCulture);
  754. }
  755. }
  756. /// <summary>
  757. /// Looks up a localized string similar to Forgot password.
  758. /// </summary>
  759. public static string ForgotPassword {
  760. get {
  761. return ResourceManager.GetString("ForgotPassword", resourceCulture);
  762. }
  763. }
  764. /// <summary>
  765. /// Looks up a localized string similar to Free call.
  766. /// </summary>
  767. public static string Freecall {
  768. get {
  769. return ResourceManager.GetString("Freecall", resourceCulture);
  770. }
  771. }
  772. /// <summary>
  773. /// Looks up a localized string similar to 01 point exchanges 10 seconds.
  774. /// </summary>
  775. public static string FreecallExchange {
  776. get {
  777. return ResourceManager.GetString("FreecallExchange", resourceCulture);
  778. }
  779. }
  780. /// <summary>
  781. /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
  782. ///
  783. ///Minimum redemption: 60 points.
  784. ///
  785. ///Usage period: 30 days after exchange..
  786. /// </summary>
  787. public static string FreecallRule {
  788. get {
  789. return ResourceManager.GetString("FreecallRule", resourceCulture);
  790. }
  791. }
  792. /// <summary>
  793. /// Looks up a localized string similar to Free Entertainment.
  794. /// </summary>
  795. public static string FreeEntertainment {
  796. get {
  797. return ResourceManager.GetString("FreeEntertainment", resourceCulture);
  798. }
  799. }
  800. /// <summary>
  801. /// Looks up a localized string similar to Free Service.
  802. /// </summary>
  803. public static string FreeService {
  804. get {
  805. return ResourceManager.GetString("FreeService", resourceCulture);
  806. }
  807. }
  808. /// <summary>
  809. /// Looks up a localized string similar to Freetalk package.
  810. /// </summary>
  811. public static string FreetalkPackage {
  812. get {
  813. return ResourceManager.GetString("FreetalkPackage", resourceCulture);
  814. }
  815. }
  816. /// <summary>
  817. /// Looks up a localized string similar to The freetalk seconds depends on packages.
  818. /// </summary>
  819. public static string FreetalkPackageExchange {
  820. get {
  821. return ResourceManager.GetString("FreetalkPackageExchange", resourceCulture);
  822. }
  823. }
  824. /// <summary>
  825. /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
  826. ///
  827. ///Minimum redemption: 100 points.
  828. ///
  829. ///Usage period: 30 days after exchange..
  830. /// </summary>
  831. public static string FreetalkPackageRule {
  832. get {
  833. return ResourceManager.GetString("FreetalkPackageRule", resourceCulture);
  834. }
  835. }
  836. /// <summary>
  837. /// Looks up a localized string similar to Front Id image must be &lt; 1MB.
  838. /// </summary>
  839. public static string FrontIdTooBig {
  840. get {
  841. return ResourceManager.GetString("FrontIdTooBig", resourceCulture);
  842. }
  843. }
  844. /// <summary>
  845. /// Looks up a localized string similar to General Line.
  846. /// </summary>
  847. public static string GeneralLine {
  848. get {
  849. return ResourceManager.GetString("GeneralLine", resourceCulture);
  850. }
  851. }
  852. /// <summary>
  853. /// Looks up a localized string similar to Get OTP code.
  854. /// </summary>
  855. public static string GetOtpCode {
  856. get {
  857. return ResourceManager.GetString("GetOtpCode", resourceCulture);
  858. }
  859. }
  860. /// <summary>
  861. /// Looks up a localized string similar to Get Password.
  862. /// </summary>
  863. public static string GetPassword {
  864. get {
  865. return ResourceManager.GetString("GetPassword", resourceCulture);
  866. }
  867. }
  868. /// <summary>
  869. /// Looks up a localized string similar to Go to Showroom.
  870. /// </summary>
  871. public static string GotoShowroom {
  872. get {
  873. return ResourceManager.GetString("GotoShowroom", resourceCulture);
  874. }
  875. }
  876. /// <summary>
  877. /// Looks up a localized string similar to Hi.
  878. /// </summary>
  879. public static string Hi {
  880. get {
  881. return ResourceManager.GetString("Hi", resourceCulture);
  882. }
  883. }
  884. /// <summary>
  885. /// Looks up a localized string similar to Hide Charge History.
  886. /// </summary>
  887. public static string HideChargeHistory {
  888. get {
  889. return ResourceManager.GetString("HideChargeHistory", resourceCulture);
  890. }
  891. }
  892. /// <summary>
  893. /// Looks up a localized string similar to History charge.
  894. /// </summary>
  895. public static string HistoryCharge {
  896. get {
  897. return ResourceManager.GetString("HistoryCharge", resourceCulture);
  898. }
  899. }
  900. /// <summary>
  901. /// Looks up a localized string similar to Home.
  902. /// </summary>
  903. public static string Home {
  904. get {
  905. return ResourceManager.GetString("Home", resourceCulture);
  906. }
  907. }
  908. /// <summary>
  909. /// Looks up a localized string similar to HOT PROMOTION AND OFFER.
  910. /// </summary>
  911. public static string HotPromotion {
  912. get {
  913. return ResourceManager.GetString("HotPromotion", resourceCulture);
  914. }
  915. }
  916. /// <summary>
  917. /// Looks up a localized string similar to Hourly.
  918. /// </summary>
  919. public static string Hourly {
  920. get {
  921. return ResourceManager.GetString("Hourly", resourceCulture);
  922. }
  923. }
  924. /// <summary>
  925. /// Looks up a localized string similar to How can we help?.
  926. /// </summary>
  927. public static string HowCanWeHelp {
  928. get {
  929. return ResourceManager.GetString("HowCanWeHelp", resourceCulture);
  930. }
  931. }
  932. /// <summary>
  933. /// Looks up a localized string similar to eg: Where do i check my data usage?.
  934. /// </summary>
  935. public static string HowCanWeHelpGuide {
  936. get {
  937. return ResourceManager.GetString("HowCanWeHelpGuide", resourceCulture);
  938. }
  939. }
  940. /// <summary>
  941. /// Looks up a localized string similar to ICT.
  942. /// </summary>
  943. public static string ICT {
  944. get {
  945. return ResourceManager.GetString("ICT", resourceCulture);
  946. }
  947. }
  948. /// <summary>
  949. /// Looks up a localized string similar to Car Tracking - Cloud Service - Dms - Meskola - Online Meeting - Voffice.
  950. /// </summary>
  951. public static string IctDesc {
  952. get {
  953. return ResourceManager.GetString("IctDesc", resourceCulture);
  954. }
  955. }
  956. /// <summary>
  957. /// Looks up a localized string similar to As the leading Internet Service Provider in Timor-Leste, Telemor provides a full suite of internet services ranging from the best enterprise broadband services to dedicated business internet and innovative value-added services for SMEs and large enterprises..
  958. /// </summary>
  959. public static string IctDescription {
  960. get {
  961. return ResourceManager.GetString("IctDescription", resourceCulture);
  962. }
  963. }
  964. /// <summary>
  965. /// Looks up a localized string similar to The market leader in Timor-Leste, trusted by businesses.
  966. /// </summary>
  967. public static string IctHeader {
  968. get {
  969. return ResourceManager.GetString("IctHeader", resourceCulture);
  970. }
  971. }
  972. /// <summary>
  973. /// Looks up a localized string similar to ID Card.
  974. /// </summary>
  975. public static string IdCard {
  976. get {
  977. return ResourceManager.GetString("IdCard", resourceCulture);
  978. }
  979. }
  980. /// <summary>
  981. /// Looks up a localized string similar to Lowest - Highest point.
  982. /// </summary>
  983. public static string IncreasePoint {
  984. get {
  985. return ResourceManager.GetString("IncreasePoint", resourceCulture);
  986. }
  987. }
  988. /// <summary>
  989. /// Looks up a localized string similar to Information Subscribing.
  990. /// </summary>
  991. public static string InformationSubscribing {
  992. get {
  993. return ResourceManager.GetString("InformationSubscribing", resourceCulture);
  994. }
  995. }
  996. /// <summary>
  997. /// Looks up a localized string similar to Internet.
  998. /// </summary>
  999. public static string Internet {
  1000. get {
  1001. return ResourceManager.GetString("Internet", resourceCulture);
  1002. }
  1003. }
  1004. /// <summary>
  1005. /// Looks up a localized string similar to Keyword to search must has at least 2 characters.
  1006. /// </summary>
  1007. public static string KeyWordLengthMin {
  1008. get {
  1009. return ResourceManager.GetString("KeyWordLengthMin", resourceCulture);
  1010. }
  1011. }
  1012. /// <summary>
  1013. /// Looks up a localized string similar to Language.
  1014. /// </summary>
  1015. public static string Language {
  1016. get {
  1017. return ResourceManager.GetString("Language", resourceCulture);
  1018. }
  1019. }
  1020. /// <summary>
  1021. /// Looks up a localized string similar to Learn more.
  1022. /// </summary>
  1023. public static string LearnMore {
  1024. get {
  1025. return ResourceManager.GetString("LearnMore", resourceCulture);
  1026. }
  1027. }
  1028. /// <summary>
  1029. /// Looks up a localized string similar to List of packages.
  1030. /// </summary>
  1031. public static string ListPackage {
  1032. get {
  1033. return ResourceManager.GetString("ListPackage", resourceCulture);
  1034. }
  1035. }
  1036. /// <summary>
  1037. /// Looks up a localized string similar to Login.
  1038. /// </summary>
  1039. public static string Login {
  1040. get {
  1041. return ResourceManager.GetString("Login", resourceCulture);
  1042. }
  1043. }
  1044. /// <summary>
  1045. /// Looks up a localized string similar to Logout.
  1046. /// </summary>
  1047. public static string Logout {
  1048. get {
  1049. return ResourceManager.GetString("Logout", resourceCulture);
  1050. }
  1051. }
  1052. /// <summary>
  1053. /// Looks up a localized string similar to Loyalty.
  1054. /// </summary>
  1055. public static string Loyalty {
  1056. get {
  1057. return ResourceManager.GetString("Loyalty", resourceCulture);
  1058. }
  1059. }
  1060. /// <summary>
  1061. /// Looks up a localized string similar to Main balance.
  1062. /// </summary>
  1063. public static string MainBalance {
  1064. get {
  1065. return ResourceManager.GetString("MainBalance", resourceCulture);
  1066. }
  1067. }
  1068. /// <summary>
  1069. /// Looks up a localized string similar to Male.
  1070. /// </summary>
  1071. public static string Male {
  1072. get {
  1073. return ResourceManager.GetString("Male", resourceCulture);
  1074. }
  1075. }
  1076. /// <summary>
  1077. /// Looks up a localized string similar to The maximum capacity of the picture is 20 Mb..
  1078. /// </summary>
  1079. public static string MaximumImageSize {
  1080. get {
  1081. return ResourceManager.GetString("MaximumImageSize", resourceCulture);
  1082. }
  1083. }
  1084. /// <summary>
  1085. /// Looks up a localized string similar to Member Benefit.
  1086. /// </summary>
  1087. public static string MemberBenefit {
  1088. get {
  1089. return ResourceManager.GetString("MemberBenefit", resourceCulture);
  1090. }
  1091. }
  1092. /// <summary>
  1093. /// Looks up a localized string similar to Member Information.
  1094. /// </summary>
  1095. public static string MemberInformation {
  1096. get {
  1097. return ResourceManager.GetString("MemberInformation", resourceCulture);
  1098. }
  1099. }
  1100. /// <summary>
  1101. /// Looks up a localized string similar to MILESTONES AND REMARKS.
  1102. /// </summary>
  1103. public static string MileStone {
  1104. get {
  1105. return ResourceManager.GetString("MileStone", resourceCulture);
  1106. }
  1107. }
  1108. /// <summary>
  1109. /// Looks up a localized string similar to Mobile.
  1110. /// </summary>
  1111. public static string Mobile {
  1112. get {
  1113. return ResourceManager.GetString("Mobile", resourceCulture);
  1114. }
  1115. }
  1116. /// <summary>
  1117. /// Looks up a localized string similar to Mobile - Call &amp; SMS - Sim &amp; Number.
  1118. /// </summary>
  1119. public static string MobileDesc {
  1120. get {
  1121. return ResourceManager.GetString("MobileDesc", resourceCulture);
  1122. }
  1123. }
  1124. /// <summary>
  1125. /// Looks up a localized string similar to Mobile Reward.
  1126. /// </summary>
  1127. public static string MobileReward {
  1128. get {
  1129. return ResourceManager.GetString("MobileReward", resourceCulture);
  1130. }
  1131. }
  1132. /// <summary>
  1133. /// Looks up a localized string similar to Month.
  1134. /// </summary>
  1135. public static string Month {
  1136. get {
  1137. return ResourceManager.GetString("Month", resourceCulture);
  1138. }
  1139. }
  1140. /// <summary>
  1141. /// Looks up a localized string similar to Monthly.
  1142. /// </summary>
  1143. public static string Monthly {
  1144. get {
  1145. return ResourceManager.GetString("Monthly", resourceCulture);
  1146. }
  1147. }
  1148. /// <summary>
  1149. /// Looks up a localized string similar to More.
  1150. /// </summary>
  1151. public static string More {
  1152. get {
  1153. return ResourceManager.GetString("More", resourceCulture);
  1154. }
  1155. }
  1156. /// <summary>
  1157. /// Looks up a localized string similar to More Careers.
  1158. /// </summary>
  1159. public static string MoreCareer {
  1160. get {
  1161. return ResourceManager.GetString("MoreCareer", resourceCulture);
  1162. }
  1163. }
  1164. /// <summary>
  1165. /// Looks up a localized string similar to More device.
  1166. /// </summary>
  1167. public static string MoreDevice {
  1168. get {
  1169. return ResourceManager.GetString("MoreDevice", resourceCulture);
  1170. }
  1171. }
  1172. /// <summary>
  1173. /// Looks up a localized string similar to More news.
  1174. /// </summary>
  1175. public static string MoreNews {
  1176. get {
  1177. return ResourceManager.GetString("MoreNews", resourceCulture);
  1178. }
  1179. }
  1180. /// <summary>
  1181. /// Looks up a localized string similar to More service.
  1182. /// </summary>
  1183. public static string MoreService {
  1184. get {
  1185. return ResourceManager.GetString("MoreService", resourceCulture);
  1186. }
  1187. }
  1188. /// <summary>
  1189. /// Looks up a localized string similar to Mosan.
  1190. /// </summary>
  1191. public static string Mosan {
  1192. get {
  1193. return ResourceManager.GetString("Mosan", resourceCulture);
  1194. }
  1195. }
  1196. /// <summary>
  1197. /// Looks up a localized string similar to Ewallet.
  1198. /// </summary>
  1199. public static string MosanDesc {
  1200. get {
  1201. return ResourceManager.GetString("MosanDesc", resourceCulture);
  1202. }
  1203. }
  1204. /// <summary>
  1205. /// Looks up a localized string similar to Get 5% discount from .
  1206. /// </summary>
  1207. public static string MosanDiscount {
  1208. get {
  1209. return ResourceManager.GetString("MosanDiscount", resourceCulture);
  1210. }
  1211. }
  1212. /// <summary>
  1213. /// Looks up a localized string similar to Multimedia.
  1214. /// </summary>
  1215. public static string Multimedia {
  1216. get {
  1217. return ResourceManager.GetString("Multimedia", resourceCulture);
  1218. }
  1219. }
  1220. /// <summary>
  1221. /// Looks up a localized string similar to My Account.
  1222. /// </summary>
  1223. public static string MyAccount {
  1224. get {
  1225. return ResourceManager.GetString("MyAccount", resourceCulture);
  1226. }
  1227. }
  1228. /// <summary>
  1229. /// Looks up a localized string similar to My Voucher.
  1230. /// </summary>
  1231. public static string MyVoucher {
  1232. get {
  1233. return ResourceManager.GetString("MyVoucher", resourceCulture);
  1234. }
  1235. }
  1236. /// <summary>
  1237. /// Looks up a localized string similar to News.
  1238. /// </summary>
  1239. public static string News {
  1240. get {
  1241. return ResourceManager.GetString("News", resourceCulture);
  1242. }
  1243. }
  1244. /// <summary>
  1245. /// Looks up a localized string similar to Lastest news, breaking stories and more.
  1246. /// </summary>
  1247. public static string NewsDescription {
  1248. get {
  1249. return ResourceManager.GetString("NewsDescription", resourceCulture);
  1250. }
  1251. }
  1252. /// <summary>
  1253. /// Looks up a localized string similar to Next.
  1254. /// </summary>
  1255. public static string Next {
  1256. get {
  1257. return ResourceManager.GetString("Next", resourceCulture);
  1258. }
  1259. }
  1260. /// <summary>
  1261. /// Looks up a localized string similar to No more data.
  1262. /// </summary>
  1263. public static string NoMoreData {
  1264. get {
  1265. return ResourceManager.GetString("NoMoreData", resourceCulture);
  1266. }
  1267. }
  1268. /// <summary>
  1269. /// Looks up a localized string similar to OR.
  1270. /// </summary>
  1271. public static string OR {
  1272. get {
  1273. return ResourceManager.GetString("OR", resourceCulture);
  1274. }
  1275. }
  1276. /// <summary>
  1277. /// Looks up a localized string similar to OTP Code.
  1278. /// </summary>
  1279. public static string OtpCode {
  1280. get {
  1281. return ResourceManager.GetString("OtpCode", resourceCulture);
  1282. }
  1283. }
  1284. /// <summary>
  1285. /// Looks up a localized string similar to OTP is required.
  1286. /// </summary>
  1287. public static string OTPRequired {
  1288. get {
  1289. return ResourceManager.GetString("OTPRequired", resourceCulture);
  1290. }
  1291. }
  1292. /// <summary>
  1293. /// Looks up a localized string similar to Our career.
  1294. /// </summary>
  1295. public static string OurCareer {
  1296. get {
  1297. return ResourceManager.GetString("OurCareer", resourceCulture);
  1298. }
  1299. }
  1300. /// <summary>
  1301. /// Looks up a localized string similar to Our Focus Areas.
  1302. /// </summary>
  1303. public static string OurFocusAreas {
  1304. get {
  1305. return ResourceManager.GetString("OurFocusAreas", resourceCulture);
  1306. }
  1307. }
  1308. /// <summary>
  1309. /// Looks up a localized string similar to Our News.
  1310. /// </summary>
  1311. public static string OurNews {
  1312. get {
  1313. return ResourceManager.GetString("OurNews", resourceCulture);
  1314. }
  1315. }
  1316. /// <summary>
  1317. /// Looks up a localized string similar to Our Profile.
  1318. /// </summary>
  1319. public static string OurProfile {
  1320. get {
  1321. return ResourceManager.GetString("OurProfile", resourceCulture);
  1322. }
  1323. }
  1324. /// <summary>
  1325. /// Looks up a localized string similar to Our Social Resposibility.
  1326. /// </summary>
  1327. public static string OurSocialResposibility {
  1328. get {
  1329. return ResourceManager.GetString("OurSocialResposibility", resourceCulture);
  1330. }
  1331. }
  1332. /// <summary>
  1333. /// Looks up a localized string similar to You have used up the data capacity of the package, please topup to continue using the service..
  1334. /// </summary>
  1335. public static string OutOfDataDescription {
  1336. get {
  1337. return ResourceManager.GetString("OutOfDataDescription", resourceCulture);
  1338. }
  1339. }
  1340. /// <summary>
  1341. /// Looks up a localized string similar to All Packages.
  1342. /// </summary>
  1343. public static string Package {
  1344. get {
  1345. return ResourceManager.GetString("Package", resourceCulture);
  1346. }
  1347. }
  1348. /// <summary>
  1349. /// Looks up a localized string similar to Passport / Visa.
  1350. /// </summary>
  1351. public static string PassportVisa {
  1352. get {
  1353. return ResourceManager.GetString("PassportVisa", resourceCulture);
  1354. }
  1355. }
  1356. /// <summary>
  1357. /// Looks up a localized string similar to Password.
  1358. /// </summary>
  1359. public static string Password {
  1360. get {
  1361. return ResourceManager.GetString("Password", resourceCulture);
  1362. }
  1363. }
  1364. /// <summary>
  1365. /// Looks up a localized string similar to Enter password.
  1366. /// </summary>
  1367. public static string PasswordEmpty {
  1368. get {
  1369. return ResourceManager.GetString("PasswordEmpty", resourceCulture);
  1370. }
  1371. }
  1372. /// <summary>
  1373. /// Looks up a localized string similar to Password must has more than 8 characters!.
  1374. /// </summary>
  1375. public static string PasswordInvalid {
  1376. get {
  1377. return ResourceManager.GetString("PasswordInvalid", resourceCulture);
  1378. }
  1379. }
  1380. /// <summary>
  1381. /// Looks up a localized string similar to Password is more than 8 characteristics..
  1382. /// </summary>
  1383. public static string PasswordMore8 {
  1384. get {
  1385. return ResourceManager.GetString("PasswordMore8", resourceCulture);
  1386. }
  1387. }
  1388. /// <summary>
  1389. /// Looks up a localized string similar to Confirm password not matched!.
  1390. /// </summary>
  1391. public static string PasswordNotMatched {
  1392. get {
  1393. return ResourceManager.GetString("PasswordNotMatched", resourceCulture);
  1394. }
  1395. }
  1396. /// <summary>
  1397. /// Looks up a localized string similar to Password is required.
  1398. /// </summary>
  1399. public static string PasswordRequired {
  1400. get {
  1401. return ResourceManager.GetString("PasswordRequired", resourceCulture);
  1402. }
  1403. }
  1404. /// <summary>
  1405. /// Looks up a localized string similar to Phone number.
  1406. /// </summary>
  1407. public static string PhoneNumber {
  1408. get {
  1409. return ResourceManager.GetString("PhoneNumber", resourceCulture);
  1410. }
  1411. }
  1412. /// <summary>
  1413. /// Looks up a localized string similar to Enter phone number.
  1414. /// </summary>
  1415. public static string PhoneNumberEmpty {
  1416. get {
  1417. return ResourceManager.GetString("PhoneNumberEmpty", resourceCulture);
  1418. }
  1419. }
  1420. /// <summary>
  1421. /// Looks up a localized string similar to Invalid phone number.
  1422. /// </summary>
  1423. public static string PhoneNumberInvalid {
  1424. get {
  1425. return ResourceManager.GetString("PhoneNumberInvalid", resourceCulture);
  1426. }
  1427. }
  1428. /// <summary>
  1429. /// Looks up a localized string similar to Phone number required.
  1430. /// </summary>
  1431. public static string PhonenumberRequired {
  1432. get {
  1433. return ResourceManager.GetString("PhonenumberRequired", resourceCulture);
  1434. }
  1435. }
  1436. /// <summary>
  1437. /// Looks up a localized string similar to Point.
  1438. /// </summary>
  1439. public static string Point {
  1440. get {
  1441. return ResourceManager.GetString("Point", resourceCulture);
  1442. }
  1443. }
  1444. /// <summary>
  1445. /// Looks up a localized string similar to Point Accumulated.
  1446. /// </summary>
  1447. public static string PointAccumulated {
  1448. get {
  1449. return ResourceManager.GetString("PointAccumulated", resourceCulture);
  1450. }
  1451. }
  1452. /// <summary>
  1453. /// Looks up a localized string similar to Point Exchange.
  1454. /// </summary>
  1455. public static string PointExchange {
  1456. get {
  1457. return ResourceManager.GetString("PointExchange", resourceCulture);
  1458. }
  1459. }
  1460. /// <summary>
  1461. /// Looks up a localized string similar to %point% points will be expired at %date%.
  1462. /// </summary>
  1463. public static string PointExpireWarn {
  1464. get {
  1465. return ResourceManager.GetString("PointExpireWarn", resourceCulture);
  1466. }
  1467. }
  1468. /// <summary>
  1469. /// Looks up a localized string similar to Point History.
  1470. /// </summary>
  1471. public static string PointHistory {
  1472. get {
  1473. return ResourceManager.GetString("PointHistory", resourceCulture);
  1474. }
  1475. }
  1476. /// <summary>
  1477. /// Looks up a localized string similar to points.
  1478. /// </summary>
  1479. public static string points {
  1480. get {
  1481. return ResourceManager.GetString("points", resourceCulture);
  1482. }
  1483. }
  1484. /// <summary>
  1485. /// Looks up a localized string similar to Portrait image must be &lt; 1MB.
  1486. /// </summary>
  1487. public static string PortraitTooBig {
  1488. get {
  1489. return ResourceManager.GetString("PortraitTooBig", resourceCulture);
  1490. }
  1491. }
  1492. /// <summary>
  1493. /// Looks up a localized string similar to Previous.
  1494. /// </summary>
  1495. public static string Previous {
  1496. get {
  1497. return ResourceManager.GetString("Previous", resourceCulture);
  1498. }
  1499. }
  1500. /// <summary>
  1501. /// Looks up a localized string similar to Privacy &amp; Policy.
  1502. /// </summary>
  1503. public static string PrivacyPolicy {
  1504. get {
  1505. return ResourceManager.GetString("PrivacyPolicy", resourceCulture);
  1506. }
  1507. }
  1508. /// <summary>
  1509. /// Looks up a localized string similar to Products &amp; Services.
  1510. /// </summary>
  1511. public static string ProductsServices {
  1512. get {
  1513. return ResourceManager.GetString("ProductsServices", resourceCulture);
  1514. }
  1515. }
  1516. /// <summary>
  1517. /// Looks up a localized string similar to Promotional balance.
  1518. /// </summary>
  1519. public static string PromotionalBalance {
  1520. get {
  1521. return ResourceManager.GetString("PromotionalBalance", resourceCulture);
  1522. }
  1523. }
  1524. /// <summary>
  1525. /// Looks up a localized string similar to Diamond.
  1526. /// </summary>
  1527. public static string RankDiamond {
  1528. get {
  1529. return ResourceManager.GetString("RankDiamond", resourceCulture);
  1530. }
  1531. }
  1532. /// <summary>
  1533. /// Looks up a localized string similar to Gold.
  1534. /// </summary>
  1535. public static string RankGold {
  1536. get {
  1537. return ResourceManager.GetString("RankGold", resourceCulture);
  1538. }
  1539. }
  1540. /// <summary>
  1541. /// Looks up a localized string similar to Rank Information.
  1542. /// </summary>
  1543. public static string RankInformation {
  1544. get {
  1545. return ResourceManager.GetString("RankInformation", resourceCulture);
  1546. }
  1547. }
  1548. /// <summary>
  1549. /// Looks up a localized string similar to Rank Member.
  1550. /// </summary>
  1551. public static string RankMember {
  1552. get {
  1553. return ResourceManager.GetString("RankMember", resourceCulture);
  1554. }
  1555. }
  1556. /// <summary>
  1557. /// Looks up a localized string similar to Silver.
  1558. /// </summary>
  1559. public static string RankSilver {
  1560. get {
  1561. return ResourceManager.GetString("RankSilver", resourceCulture);
  1562. }
  1563. }
  1564. /// <summary>
  1565. /// Looks up a localized string similar to Welcome.
  1566. /// </summary>
  1567. public static string RankWelcome {
  1568. get {
  1569. return ResourceManager.GetString("RankWelcome", resourceCulture);
  1570. }
  1571. }
  1572. /// <summary>
  1573. /// Looks up a localized string similar to Read more.
  1574. /// </summary>
  1575. public static string ReadMore {
  1576. get {
  1577. return ResourceManager.GetString("ReadMore", resourceCulture);
  1578. }
  1579. }
  1580. /// <summary>
  1581. /// Looks up a localized string similar to Received reward code.
  1582. /// </summary>
  1583. public static string ReceivedRewardCode {
  1584. get {
  1585. return ResourceManager.GetString("ReceivedRewardCode", resourceCulture);
  1586. }
  1587. }
  1588. /// <summary>
  1589. /// Looks up a localized string similar to Recharge.
  1590. /// </summary>
  1591. public static string Recharge {
  1592. get {
  1593. return ResourceManager.GetString("Recharge", resourceCulture);
  1594. }
  1595. }
  1596. /// <summary>
  1597. /// Looks up a localized string similar to RECHARGE ON KAKOAK.
  1598. /// </summary>
  1599. public static string RechargeKakoak {
  1600. get {
  1601. return ResourceManager.GetString("RechargeKakoak", resourceCulture);
  1602. }
  1603. }
  1604. /// <summary>
  1605. /// Looks up a localized string similar to RECHARGE ON MOSAN.
  1606. /// </summary>
  1607. public static string RechargeMosan {
  1608. get {
  1609. return ResourceManager.GetString("RechargeMosan", resourceCulture);
  1610. }
  1611. }
  1612. /// <summary>
  1613. /// Looks up a localized string similar to Recharge Now.
  1614. /// </summary>
  1615. public static string RechargeNow {
  1616. get {
  1617. return ResourceManager.GetString("RechargeNow", resourceCulture);
  1618. }
  1619. }
  1620. /// <summary>
  1621. /// Looks up a localized string similar to RECHARGE BY SCRATCH CARD.
  1622. /// </summary>
  1623. public static string RechargeScratch {
  1624. get {
  1625. return ResourceManager.GetString("RechargeScratch", resourceCulture);
  1626. }
  1627. }
  1628. /// <summary>
  1629. /// Looks up a localized string similar to Recharge By Ussd.
  1630. /// </summary>
  1631. public static string RechargeUssd {
  1632. get {
  1633. return ResourceManager.GetString("RechargeUssd", resourceCulture);
  1634. }
  1635. }
  1636. /// <summary>
  1637. /// Looks up a localized string similar to Register.
  1638. /// </summary>
  1639. public static string Register {
  1640. get {
  1641. return ResourceManager.GetString("Register", resourceCulture);
  1642. }
  1643. }
  1644. /// <summary>
  1645. /// Looks up a localized string similar to Register Account.
  1646. /// </summary>
  1647. public static string RegisterAccount {
  1648. get {
  1649. return ResourceManager.GetString("RegisterAccount", resourceCulture);
  1650. }
  1651. }
  1652. /// <summary>
  1653. /// Looks up a localized string similar to Something Wrong When Registering package. For support, please call 188. Thank you!.
  1654. /// </summary>
  1655. public static string RegisterError {
  1656. get {
  1657. return ResourceManager.GetString("RegisterError", resourceCulture);
  1658. }
  1659. }
  1660. /// <summary>
  1661. /// Looks up a localized string similar to Register Internet.
  1662. /// </summary>
  1663. public static string RegisterInternet {
  1664. get {
  1665. return ResourceManager.GetString("RegisterInternet", resourceCulture);
  1666. }
  1667. }
  1668. /// <summary>
  1669. /// Looks up a localized string similar to Register Mosan Service.
  1670. /// </summary>
  1671. public static string RegisterMosanService {
  1672. get {
  1673. return ResourceManager.GetString("RegisterMosanService", resourceCulture);
  1674. }
  1675. }
  1676. /// <summary>
  1677. /// Looks up a localized string similar to Register Now.
  1678. /// </summary>
  1679. public static string RegisterNow {
  1680. get {
  1681. return ResourceManager.GetString("RegisterNow", resourceCulture);
  1682. }
  1683. }
  1684. /// <summary>
  1685. /// Looks up a localized string similar to You have registered successful. Thank you!.
  1686. /// </summary>
  1687. public static string RegisterSuccess {
  1688. get {
  1689. return ResourceManager.GetString("RegisterSuccess", resourceCulture);
  1690. }
  1691. }
  1692. /// <summary>
  1693. /// Looks up a localized string similar to Related Broadband.
  1694. /// </summary>
  1695. public static string RelatedBroadband {
  1696. get {
  1697. return ResourceManager.GetString("RelatedBroadband", resourceCulture);
  1698. }
  1699. }
  1700. /// <summary>
  1701. /// Looks up a localized string similar to RELATED NEWS AND STORIES.
  1702. /// </summary>
  1703. public static string RelatedNewsStories {
  1704. get {
  1705. return ResourceManager.GetString("RelatedNewsStories", resourceCulture);
  1706. }
  1707. }
  1708. /// <summary>
  1709. /// Looks up a localized string similar to Related Services.
  1710. /// </summary>
  1711. public static string RelatedServices {
  1712. get {
  1713. return ResourceManager.GetString("RelatedServices", resourceCulture);
  1714. }
  1715. }
  1716. /// <summary>
  1717. /// Looks up a localized string similar to Remains.
  1718. /// </summary>
  1719. public static string Remains {
  1720. get {
  1721. return ResourceManager.GetString("Remains", resourceCulture);
  1722. }
  1723. }
  1724. /// <summary>
  1725. /// Looks up a localized string similar to Reset.
  1726. /// </summary>
  1727. public static string Reset {
  1728. get {
  1729. return ResourceManager.GetString("Reset", resourceCulture);
  1730. }
  1731. }
  1732. /// <summary>
  1733. /// Looks up a localized string similar to There are %num% showrooms.
  1734. /// </summary>
  1735. public static string ResultShowroom {
  1736. get {
  1737. return ResourceManager.GetString("ResultShowroom", resourceCulture);
  1738. }
  1739. }
  1740. /// <summary>
  1741. /// Looks up a localized string similar to Loyalty Program.
  1742. /// </summary>
  1743. public static string RoyaltyProgram {
  1744. get {
  1745. return ResourceManager.GetString("RoyaltyProgram", resourceCulture);
  1746. }
  1747. }
  1748. /// <summary>
  1749. /// Looks up a localized string similar to Rules.
  1750. /// </summary>
  1751. public static string Rules {
  1752. get {
  1753. return ResourceManager.GetString("Rules", resourceCulture);
  1754. }
  1755. }
  1756. /// <summary>
  1757. /// Looks up a localized string similar to Scratch Code Invalid.
  1758. /// </summary>
  1759. public static string ScratchCodeInvalid {
  1760. get {
  1761. return ResourceManager.GetString("ScratchCodeInvalid", resourceCulture);
  1762. }
  1763. }
  1764. /// <summary>
  1765. /// Looks up a localized string similar to Scratch code required.
  1766. /// </summary>
  1767. public static string ScratchCodeRequired {
  1768. get {
  1769. return ResourceManager.GetString("ScratchCodeRequired", resourceCulture);
  1770. }
  1771. }
  1772. /// <summary>
  1773. /// Looks up a localized string similar to Searching.
  1774. /// </summary>
  1775. public static string Searching {
  1776. get {
  1777. return ResourceManager.GetString("Searching", resourceCulture);
  1778. }
  1779. }
  1780. /// <summary>
  1781. /// Looks up a localized string similar to Search showroom.
  1782. /// </summary>
  1783. public static string SearchShowroom {
  1784. get {
  1785. return ResourceManager.GetString("SearchShowroom", resourceCulture);
  1786. }
  1787. }
  1788. /// <summary>
  1789. /// Looks up a localized string similar to seconds.
  1790. /// </summary>
  1791. public static string seconds {
  1792. get {
  1793. return ResourceManager.GetString("seconds", resourceCulture);
  1794. }
  1795. }
  1796. /// <summary>
  1797. /// Looks up a localized string similar to Security Code.
  1798. /// </summary>
  1799. public static string SecurityCode {
  1800. get {
  1801. return ResourceManager.GetString("SecurityCode", resourceCulture);
  1802. }
  1803. }
  1804. /// <summary>
  1805. /// Looks up a localized string similar to See also.
  1806. /// </summary>
  1807. public static string SeeAlso {
  1808. get {
  1809. return ResourceManager.GetString("SeeAlso", resourceCulture);
  1810. }
  1811. }
  1812. /// <summary>
  1813. /// Looks up a localized string similar to Select.
  1814. /// </summary>
  1815. public static string Select {
  1816. get {
  1817. return ResourceManager.GetString("Select", resourceCulture);
  1818. }
  1819. }
  1820. /// <summary>
  1821. /// Looks up a localized string similar to Select your area close to you.
  1822. /// </summary>
  1823. public static string SelectArea {
  1824. get {
  1825. return ResourceManager.GetString("SelectArea", resourceCulture);
  1826. }
  1827. }
  1828. /// <summary>
  1829. /// Looks up a localized string similar to Show Charge History.
  1830. /// </summary>
  1831. public static string ShowChargeHistory {
  1832. get {
  1833. return ResourceManager.GetString("ShowChargeHistory", resourceCulture);
  1834. }
  1835. }
  1836. /// <summary>
  1837. /// Looks up a localized string similar to Show more.
  1838. /// </summary>
  1839. public static string ShowMore {
  1840. get {
  1841. return ResourceManager.GetString("ShowMore", resourceCulture);
  1842. }
  1843. }
  1844. /// <summary>
  1845. /// Looks up a localized string similar to Sim &amp; Number.
  1846. /// </summary>
  1847. public static string SimNumber {
  1848. get {
  1849. return ResourceManager.GetString("SimNumber", resourceCulture);
  1850. }
  1851. }
  1852. /// <summary>
  1853. /// Looks up a localized string similar to Sitemap.
  1854. /// </summary>
  1855. public static string Sitemap {
  1856. get {
  1857. return ResourceManager.GetString("Sitemap", resourceCulture);
  1858. }
  1859. }
  1860. /// <summary>
  1861. /// Looks up a localized string similar to SMS.
  1862. /// </summary>
  1863. public static string Sms {
  1864. get {
  1865. return ResourceManager.GetString("Sms", resourceCulture);
  1866. }
  1867. }
  1868. /// <summary>
  1869. /// Looks up a localized string similar to 06 points exchange 01 SMS.
  1870. /// </summary>
  1871. public static string SmsExchange {
  1872. get {
  1873. return ResourceManager.GetString("SmsExchange", resourceCulture);
  1874. }
  1875. }
  1876. /// <summary>
  1877. /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
  1878. ///
  1879. ///Minimum redemption: 60 points.
  1880. ///
  1881. ///Usage period: 30 days after exchange..
  1882. /// </summary>
  1883. public static string SmsRule {
  1884. get {
  1885. return ResourceManager.GetString("SmsRule", resourceCulture);
  1886. }
  1887. }
  1888. /// <summary>
  1889. /// Looks up a localized string similar to Social Resposibility.
  1890. /// </summary>
  1891. public static string SocialResposibility {
  1892. get {
  1893. return ResourceManager.GetString("SocialResposibility", resourceCulture);
  1894. }
  1895. }
  1896. /// <summary>
  1897. /// Looks up a localized string similar to Telemor is committed to build a sustainable future for our stakeholders with our focus
  1898. /// on four key Environmental, Social and Governance (ESG) pillars: Climate Change and Environment,
  1899. /// People and Future of Work, Community Impact, and Sustainable Value Creation.
  1900. /// We want to make a lasting positive impact on our stakeholders, leveraging our own resources and
  1901. /// people and working closely with our strategic partners. At the same time, we acknowledge [rest of string was truncated]&quot;;.
  1902. /// </summary>
  1903. public static string SocialResposibilityDetail {
  1904. get {
  1905. return ResourceManager.GetString("SocialResposibilityDetail", resourceCulture);
  1906. }
  1907. }
  1908. /// <summary>
  1909. /// Looks up a localized string similar to Sort By.
  1910. /// </summary>
  1911. public static string SortBy {
  1912. get {
  1913. return ResourceManager.GetString("SortBy", resourceCulture);
  1914. }
  1915. }
  1916. /// <summary>
  1917. /// Looks up a localized string similar to Speed.
  1918. /// </summary>
  1919. public static string Speed {
  1920. get {
  1921. return ResourceManager.GetString("Speed", resourceCulture);
  1922. }
  1923. }
  1924. /// <summary>
  1925. /// Looks up a localized string similar to Start.
  1926. /// </summary>
  1927. public static string Start {
  1928. get {
  1929. return ResourceManager.GetString("Start", resourceCulture);
  1930. }
  1931. }
  1932. /// <summary>
  1933. /// Looks up a localized string similar to .
  1934. /// </summary>
  1935. public static string String1 {
  1936. get {
  1937. return ResourceManager.GetString("String1", resourceCulture);
  1938. }
  1939. }
  1940. /// <summary>
  1941. /// Looks up a localized string similar to Student Card.
  1942. /// </summary>
  1943. public static string StudentCard {
  1944. get {
  1945. return ResourceManager.GetString("StudentCard", resourceCulture);
  1946. }
  1947. }
  1948. /// <summary>
  1949. /// Looks up a localized string similar to Success.
  1950. /// </summary>
  1951. public static string Success {
  1952. get {
  1953. return ResourceManager.GetString("Success", resourceCulture);
  1954. }
  1955. }
  1956. /// <summary>
  1957. /// Looks up a localized string similar to Tech Specs.
  1958. /// </summary>
  1959. public static string TechSpecs {
  1960. get {
  1961. return ResourceManager.GetString("TechSpecs", resourceCulture);
  1962. }
  1963. }
  1964. /// <summary>
  1965. /// Looks up a localized string similar to Telemor Showrooms.
  1966. /// </summary>
  1967. public static string TelemorShowrooms {
  1968. get {
  1969. return ResourceManager.GetString("TelemorShowrooms", resourceCulture);
  1970. }
  1971. }
  1972. /// <summary>
  1973. /// Looks up a localized string similar to Telemo&apos;s terms of use and policies.
  1974. /// </summary>
  1975. public static string TermAndPolicies {
  1976. get {
  1977. return ResourceManager.GetString("TermAndPolicies", resourceCulture);
  1978. }
  1979. }
  1980. /// <summary>
  1981. /// Looks up a localized string similar to Telemor Ecosystem.
  1982. /// </summary>
  1983. public static string TopNo {
  1984. get {
  1985. return ResourceManager.GetString("TopNo", resourceCulture);
  1986. }
  1987. }
  1988. /// <summary>
  1989. /// Looks up a localized string similar to Trending topics.
  1990. /// </summary>
  1991. public static string TrendingTopic {
  1992. get {
  1993. return ResourceManager.GetString("TrendingTopic", resourceCulture);
  1994. }
  1995. }
  1996. /// <summary>
  1997. /// Looks up a localized string similar to Trial Service.
  1998. /// </summary>
  1999. public static string TrialService {
  2000. get {
  2001. return ResourceManager.GetString("TrialService", resourceCulture);
  2002. }
  2003. }
  2004. /// <summary>
  2005. /// Looks up a localized string similar to Update subcriber information.
  2006. /// </summary>
  2007. public static string UpdateSubcriberInformation {
  2008. get {
  2009. return ResourceManager.GetString("UpdateSubcriberInformation", resourceCulture);
  2010. }
  2011. }
  2012. /// <summary>
  2013. /// Looks up a localized string similar to Update Subscriber Information.
  2014. /// </summary>
  2015. public static string UpdateSubscriberInfo {
  2016. get {
  2017. return ResourceManager.GetString("UpdateSubscriberInfo", resourceCulture);
  2018. }
  2019. }
  2020. /// <summary>
  2021. /// Looks up a localized string similar to User name.
  2022. /// </summary>
  2023. public static string Username {
  2024. get {
  2025. return ResourceManager.GetString("Username", resourceCulture);
  2026. }
  2027. }
  2028. /// <summary>
  2029. /// Looks up a localized string similar to Use voucher.
  2030. /// </summary>
  2031. public static string UseVoucher {
  2032. get {
  2033. return ResourceManager.GetString("UseVoucher", resourceCulture);
  2034. }
  2035. }
  2036. /// <summary>
  2037. /// Looks up a localized string similar to Utilities.
  2038. /// </summary>
  2039. public static string Utilities {
  2040. get {
  2041. return ResourceManager.GetString("Utilities", resourceCulture);
  2042. }
  2043. }
  2044. /// <summary>
  2045. /// Looks up a localized string similar to Our Values And Vision.
  2046. /// </summary>
  2047. public static string ValuesVision {
  2048. get {
  2049. return ResourceManager.GetString("ValuesVision", resourceCulture);
  2050. }
  2051. }
  2052. /// <summary>
  2053. /// Looks up a localized string similar to VAS.
  2054. /// </summary>
  2055. public static string Vas {
  2056. get {
  2057. return ResourceManager.GetString("Vas", resourceCulture);
  2058. }
  2059. }
  2060. /// <summary>
  2061. /// Looks up a localized string similar to Valued Added Service (Kakoak - Timor TV - Cinema).
  2062. /// </summary>
  2063. public static string VasDesc {
  2064. get {
  2065. return ResourceManager.GetString("VasDesc", resourceCulture);
  2066. }
  2067. }
  2068. /// <summary>
  2069. /// Looks up a localized string similar to Viettel Group.
  2070. /// </summary>
  2071. public static string ViettelGroup {
  2072. get {
  2073. return ResourceManager.GetString("ViettelGroup", resourceCulture);
  2074. }
  2075. }
  2076. /// <summary>
  2077. /// Looks up a localized string similar to View all.
  2078. /// </summary>
  2079. public static string ViewAll {
  2080. get {
  2081. return ResourceManager.GetString("ViewAll", resourceCulture);
  2082. }
  2083. }
  2084. /// <summary>
  2085. /// Looks up a localized string similar to My Loyalty.
  2086. /// </summary>
  2087. public static string ViewHistoryExchange {
  2088. get {
  2089. return ResourceManager.GetString("ViewHistoryExchange", resourceCulture);
  2090. }
  2091. }
  2092. /// <summary>
  2093. /// Looks up a localized string similar to View More.
  2094. /// </summary>
  2095. public static string ViewMore {
  2096. get {
  2097. return ResourceManager.GetString("ViewMore", resourceCulture);
  2098. }
  2099. }
  2100. /// <summary>
  2101. /// Looks up a localized string similar to Voice.
  2102. /// </summary>
  2103. public static string Voice {
  2104. get {
  2105. return ResourceManager.GetString("Voice", resourceCulture);
  2106. }
  2107. }
  2108. /// <summary>
  2109. /// Looks up a localized string similar to It&apos;s not just about the unique offers from Telemor. You also have the opportunity to redeem special offers from major partners, with a variety of categories: Food, Shopping, Entertainment, Beauty - Health... and many other up-to-date and attractive offers to you..
  2110. /// </summary>
  2111. public static string VoucherDescription {
  2112. get {
  2113. return ResourceManager.GetString("VoucherDescription", resourceCulture);
  2114. }
  2115. }
  2116. /// <summary>
  2117. /// Looks up a localized string similar to Voucher information and how to use.
  2118. /// </summary>
  2119. public static string VoucherInfoGuide {
  2120. get {
  2121. return ResourceManager.GetString("VoucherInfoGuide", resourceCulture);
  2122. }
  2123. }
  2124. /// <summary>
  2125. /// Looks up a localized string similar to Voucher Reward.
  2126. /// </summary>
  2127. public static string VoucherReward {
  2128. get {
  2129. return ResourceManager.GetString("VoucherReward", resourceCulture);
  2130. }
  2131. }
  2132. /// <summary>
  2133. /// Looks up a localized string similar to vouchers.
  2134. /// </summary>
  2135. public static string Vouchers {
  2136. get {
  2137. return ResourceManager.GetString("Vouchers", resourceCulture);
  2138. }
  2139. }
  2140. /// <summary>
  2141. /// Looks up a localized string similar to Warranty policy.
  2142. /// </summary>
  2143. public static string WarrantyPolicy {
  2144. get {
  2145. return ResourceManager.GetString("WarrantyPolicy", resourceCulture);
  2146. }
  2147. }
  2148. /// <summary>
  2149. /// Looks up a localized string similar to Warranty service point.
  2150. /// </summary>
  2151. public static string WarrantyServicePoint {
  2152. get {
  2153. return ResourceManager.GetString("WarrantyServicePoint", resourceCulture);
  2154. }
  2155. }
  2156. /// <summary>
  2157. /// Looks up a localized string similar to WE’RE HIRING.
  2158. /// </summary>
  2159. public static string WeAreHiring {
  2160. get {
  2161. return ResourceManager.GetString("WeAreHiring", resourceCulture);
  2162. }
  2163. }
  2164. /// <summary>
  2165. /// Looks up a localized string similar to Weekly.
  2166. /// </summary>
  2167. public static string Weekly {
  2168. get {
  2169. return ResourceManager.GetString("Weekly", resourceCulture);
  2170. }
  2171. }
  2172. /// <summary>
  2173. /// Looks up a localized string similar to Would you like to.
  2174. /// </summary>
  2175. public static string WouldYouLike {
  2176. get {
  2177. return ResourceManager.GetString("WouldYouLike", resourceCulture);
  2178. }
  2179. }
  2180. /// <summary>
  2181. /// Looks up a localized string similar to OUR %YEARS% - YEAR JOURNEY.
  2182. /// </summary>
  2183. public static string YearsJourney {
  2184. get {
  2185. return ResourceManager.GetString("YearsJourney", resourceCulture);
  2186. }
  2187. }
  2188. /// <summary>
  2189. /// Looks up a localized string similar to You have &lt;b&gt;{0} points&lt;/b&gt;.
  2190. /// </summary>
  2191. public static string YouHavePoint {
  2192. get {
  2193. return ResourceManager.GetString("YouHavePoint", resourceCulture);
  2194. }
  2195. }
  2196. /// <summary>
  2197. /// Looks up a localized string similar to Your Address.
  2198. /// </summary>
  2199. public static string YourAddress {
  2200. get {
  2201. return ResourceManager.GetString("YourAddress", resourceCulture);
  2202. }
  2203. }
  2204. /// <summary>
  2205. /// Looks up a localized string similar to Your behind ID card.
  2206. /// </summary>
  2207. public static string YourBehindIdCard {
  2208. get {
  2209. return ResourceManager.GetString("YourBehindIdCard", resourceCulture);
  2210. }
  2211. }
  2212. /// <summary>
  2213. /// Looks up a localized string similar to Your Birthday.
  2214. /// </summary>
  2215. public static string YourBirthday {
  2216. get {
  2217. return ResourceManager.GetString("YourBirthday", resourceCulture);
  2218. }
  2219. }
  2220. /// <summary>
  2221. /// Looks up a localized string similar to Your front ID card.
  2222. /// </summary>
  2223. public static string YourFrontIdCard {
  2224. get {
  2225. return ResourceManager.GetString("YourFrontIdCard", resourceCulture);
  2226. }
  2227. }
  2228. /// <summary>
  2229. /// Looks up a localized string similar to Your Full Name.
  2230. /// </summary>
  2231. public static string YourFullName {
  2232. get {
  2233. return ResourceManager.GetString("YourFullName", resourceCulture);
  2234. }
  2235. }
  2236. /// <summary>
  2237. /// Looks up a localized string similar to Your Level.
  2238. /// </summary>
  2239. public static string YourLevel {
  2240. get {
  2241. return ResourceManager.GetString("YourLevel", resourceCulture);
  2242. }
  2243. }
  2244. /// <summary>
  2245. /// Looks up a localized string similar to Your Point.
  2246. /// </summary>
  2247. public static string YourPoint {
  2248. get {
  2249. return ResourceManager.GetString("YourPoint", resourceCulture);
  2250. }
  2251. }
  2252. /// <summary>
  2253. /// Looks up a localized string similar to Your Portrait.
  2254. /// </summary>
  2255. public static string YourPortrait {
  2256. get {
  2257. return ResourceManager.GetString("YourPortrait", resourceCulture);
  2258. }
  2259. }
  2260. }
  2261. }