| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Runtime Version:4.0.30319.42000
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Pulsa.Texts {
- using System;
-
-
- /// <summary>
- /// A strongly-typed resource class, for looking up localized strings, etc.
- /// </summary>
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public class Lang {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Lang() {
- }
-
- /// <summary>
- /// Returns the cached ResourceManager instance used by this class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Resources.ResourceManager ResourceManager {
- get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Pulsa.Texts.Lang", typeof(Lang).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- /// <summary>
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to About Us.
- /// </summary>
- public static string AboutUs {
- get {
- return ResourceManager.GetString("AboutUs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Accept.
- /// </summary>
- public static string Accept {
- get {
- return ResourceManager.GetString("Accept", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Accept Exchange.
- /// </summary>
- public static string AcceptExchange {
- get {
- return ResourceManager.GetString("AcceptExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Account charge.
- /// </summary>
- public static string AccountCharge {
- get {
- return ResourceManager.GetString("AccountCharge", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Account is required.
- /// </summary>
- public static string AccountRequired {
- get {
- return ResourceManager.GetString("AccountRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Account subscriber information.
- /// </summary>
- public static string AccountSubscriberInfo {
- get {
- return ResourceManager.GetString("AccountSubscriberInfo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Accumulate more %point% points to up rank %rank%.
- /// </summary>
- public static string AccumulateMoreUpRank {
- get {
- return ResourceManager.GetString("AccumulateMoreUpRank", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Accumulate Point Process.
- /// </summary>
- public static string AccumulatePointProcess {
- get {
- return ResourceManager.GetString("AccumulatePointProcess", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Address.
- /// </summary>
- public static string Address {
- get {
- return ResourceManager.GetString("Address", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to you agree to make all transactions according to.
- /// </summary>
- public static string AgreeTerm {
- get {
- return ResourceManager.GetString("AgreeTerm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Airtime.
- /// </summary>
- public static string Airtime {
- get {
- return ResourceManager.GetString("Airtime", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to <b>Welcome to Airtime Service.</b><br />
- ///<b>1. Policy:</b><br />
- ///- Loan 20 cents with fee 3 cents.<br />
- ///- Loan 50 cents with fee 7.5 cents.<br />
- ///- Loan 80 cents with fee 12 cents.<br />
- ///<b>2. How to loan:</b><br />
- ///#1. Compose message ON to send to 1111.<br />
- ///#2. Call *1111# and follow the instructions.<br />
- ///For IT and Developer: Add 1 button, when click to open Message fake MO with content "ON", Receiver phone: 1111. OR Open Phone Call with syntax *1111#..
- /// </summary>
- public static string AirtimeDetail {
- get {
- return ResourceManager.GetString("AirtimeDetail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to All History.
- /// </summary>
- public static string AllHistory {
- get {
- return ResourceManager.GetString("AllHistory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ANOTHER POSITIONS.
- /// </summary>
- public static string AnotherPositions {
- get {
- return ResourceManager.GetString("AnotherPositions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ask.
- /// </summary>
- public static string Ask {
- get {
- return ResourceManager.GetString("Ask", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Back.
- /// </summary>
- public static string Back {
- get {
- return ResourceManager.GetString("Back", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Behind Id image must be < 1MB.
- /// </summary>
- public static string BehindIdTooBig {
- get {
- return ResourceManager.GetString("BehindIdTooBig", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Broadband.
- /// </summary>
- public static string Broadband {
- get {
- return ResourceManager.GetString("Broadband", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to B2B Internet Service.
- /// </summary>
- public static string BroadbandDesc {
- get {
- return ResourceManager.GetString("BroadbandDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Business License.
- /// </summary>
- public static string BusinessLicense {
- get {
- return ResourceManager.GetString("BusinessLicense", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Buy Package.
- /// </summary>
- public static string BuyPackage {
- get {
- return ResourceManager.GetString("BuyPackage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to By clicking.
- /// </summary>
- public static string ByClicking {
- get {
- return ResourceManager.GetString("ByClicking", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Call & Sms.
- /// </summary>
- public static string CallSms {
- get {
- return ResourceManager.GetString("CallSms", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Captcha Invalid.
- /// </summary>
- public static string CaptchaInvalid {
- get {
- return ResourceManager.GetString("CaptchaInvalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Card Number.
- /// </summary>
- public static string CardNumber {
- get {
- return ResourceManager.GetString("CardNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Card Type.
- /// </summary>
- public static string CardType {
- get {
- return ResourceManager.GetString("CardType", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Careers.
- /// </summary>
- public static string Careers {
- get {
- return ResourceManager.GetString("Careers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Choose your colour.
- /// </summary>
- public static string ChooseYourColor {
- get {
- return ResourceManager.GetString("ChooseYourColor", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Close.
- /// </summary>
- public static string Close {
- get {
- return ResourceManager.GetString("Close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Code.
- /// </summary>
- public static string Code {
- get {
- return ResourceManager.GetString("Code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Balance.
- /// </summary>
- public static string ColBalance {
- get {
- return ResourceManager.GetString("ColBalance", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Cost.
- /// </summary>
- public static string ColCost {
- get {
- return ResourceManager.GetString("ColCost", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Date.
- /// </summary>
- public static string ColDate {
- get {
- return ResourceManager.GetString("ColDate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Duration.
- /// </summary>
- public static string ColDuration {
- get {
- return ResourceManager.GetString("ColDuration", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Number.
- /// </summary>
- public static string ColNumber {
- get {
- return ResourceManager.GetString("ColNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Time.
- /// </summary>
- public static string ColTime {
- get {
- return ResourceManager.GetString("ColTime", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Type.
- /// </summary>
- public static string ColType {
- get {
- return ResourceManager.GetString("ColType", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Company Profile.
- /// </summary>
- public static string CompanyProfile {
- get {
- return ResourceManager.GetString("CompanyProfile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm.
- /// </summary>
- public static string Confirm {
- get {
- return ResourceManager.GetString("Confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm Exchange Point.
- /// </summary>
- public static string ConfirmExchangePoint {
- get {
- return ResourceManager.GetString("ConfirmExchangePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm password.
- /// </summary>
- public static string ConfirmPassword {
- get {
- return ResourceManager.GetString("ConfirmPassword", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm password is required.
- /// </summary>
- public static string ConfirmPasswordRequired {
- get {
- return ResourceManager.GetString("ConfirmPasswordRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Are you sure want to register this package?.
- /// </summary>
- public static string ConfirmRegister {
- get {
- return ResourceManager.GetString("ConfirmRegister", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Contact.
- /// </summary>
- public static string Contact {
- get {
- return ResourceManager.GetString("Contact", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Contact to buy.
- /// </summary>
- public static string ContactToBuy {
- get {
- return ResourceManager.GetString("ContactToBuy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Contact Us.
- /// </summary>
- public static string ContactUs {
- get {
- return ResourceManager.GetString("ContactUs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Copyright © 2022 Telemor. All rights reserved..
- /// </summary>
- public static string CopyRight {
- get {
- return ResourceManager.GetString("CopyRight", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Customer Care.
- /// </summary>
- public static string CustomerCare {
- get {
- return ResourceManager.GetString("CustomerCare", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to CustomerCareLine.
- /// </summary>
- public static string CustomerCareLine {
- get {
- return ResourceManager.GetString("CustomerCareLine", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Daily.
- /// </summary>
- public static string Daily {
- get {
- return ResourceManager.GetString("Daily", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data.
- /// </summary>
- public static string Data {
- get {
- return ResourceManager.GetString("Data", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data credit.
- /// </summary>
- public static string DataCredit {
- get {
- return ResourceManager.GetString("DataCredit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data package.
- /// </summary>
- public static string DataPackage {
- get {
- return ResourceManager.GetString("DataPackage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data MB depends on packages.
- /// </summary>
- public static string DataPackageExchange {
- get {
- return ResourceManager.GetString("DataPackageExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// 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.
- ///
- ///Minimum redemption: 100 points.
- ///
- ///Charges after conversion are added to the promotional account for prepaid subscribers or adjusted to the bill for postpaid subscribers.
- ///
- ///Deposits from redeeming points are not eligible for other recharge card promotions (if any) and cannot be used to accumulate qualifying points..
- /// </summary>
- public static string DataPackageRule {
- get {
- return ResourceManager.GetString("DataPackageRule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data Promotion 4G.
- /// </summary>
- public static string DataPromotion4G {
- get {
- return ResourceManager.GetString("DataPromotion4G", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data Volume.
- /// </summary>
- public static string DataVolume {
- get {
- return ResourceManager.GetString("DataVolume", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to day.
- /// </summary>
- public static string Day {
- get {
- return ResourceManager.GetString("Day", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to days.
- /// </summary>
- public static string Days {
- get {
- return ResourceManager.GetString("Days", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Highest - Lowest point.
- /// </summary>
- public static string DecreasePoint {
- get {
- return ResourceManager.GetString("DecreasePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detail.
- /// </summary>
- public static string Detail {
- get {
- return ResourceManager.GetString("Detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Device.
- /// </summary>
- public static string Device {
- get {
- return ResourceManager.GetString("Device", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Up-to-date device.
- /// </summary>
- public static string DeviceDesc {
- get {
- return ResourceManager.GetString("DeviceDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Don’t have an account?.
- /// </summary>
- public static string DontHaveAccount {
- get {
- return ResourceManager.GetString("DontHaveAccount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Download super app.
- /// </summary>
- public static string DownloadSupperApp {
- get {
- return ResourceManager.GetString("DownloadSupperApp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Edit.
- /// </summary>
- public static string Edit {
- get {
- return ResourceManager.GetString("Edit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Edit Information.
- /// </summary>
- public static string EditInformation {
- get {
- return ResourceManager.GetString("EditInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Election Card.
- /// </summary>
- public static string ElectionCard {
- get {
- return ResourceManager.GetString("ElectionCard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Email.
- /// </summary>
- public static string Email {
- get {
- return ResourceManager.GetString("Email", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Email.
- /// </summary>
- public static string Email1 {
- get {
- return ResourceManager.GetString("Email1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Borrow.
- /// </summary>
- public static string Empresta {
- get {
- return ResourceManager.GetString("Empresta", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enter OTP:.
- /// </summary>
- public static string EnterOTP {
- get {
- return ResourceManager.GetString("EnterOTP", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enter Phone number:.
- /// </summary>
- public static string EnterPhonenumber {
- get {
- return ResourceManager.GetString("EnterPhonenumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enter scratch cards code *.
- /// </summary>
- public static string EnterScratchCode {
- get {
- return ResourceManager.GetString("EnterScratchCode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Exchange Now.
- /// </summary>
- public static string ExchangeNow {
- get {
- return ResourceManager.GetString("ExchangeNow", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ExchangePoint.
- /// </summary>
- public static string ExchangePoint {
- get {
- return ResourceManager.GetString("ExchangePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Expire.
- /// </summary>
- public static string Expire {
- get {
- return ResourceManager.GetString("Expire", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Expire Date.
- /// </summary>
- public static string ExpiredDate {
- get {
- return ResourceManager.GetString("ExpiredDate", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Failure.
- /// </summary>
- public static string Failure {
- get {
- return ResourceManager.GetString("Failure", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to FAQs.
- /// </summary>
- public static string FAQs {
- get {
- return ResourceManager.GetString("FAQs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Female.
- /// </summary>
- public static string Female {
- get {
- return ResourceManager.GetString("Female", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Filter By.
- /// </summary>
- public static string FilterBy {
- get {
- return ResourceManager.GetString("FilterBy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Find a store.
- /// </summary>
- public static string FindAStore {
- get {
- return ResourceManager.GetString("FindAStore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Find Store.
- /// </summary>
- public static string FindStore {
- get {
- return ResourceManager.GetString("FindStore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fintech.
- /// </summary>
- public static string Fintech {
- get {
- return ResourceManager.GetString("Fintech", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Forgot password.
- /// </summary>
- public static string ForgotPassword {
- get {
- return ResourceManager.GetString("ForgotPassword", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Free call.
- /// </summary>
- public static string Freecall {
- get {
- return ResourceManager.GetString("Freecall", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 01 point exchanges 10 seconds.
- /// </summary>
- public static string FreecallExchange {
- get {
- return ResourceManager.GetString("FreecallExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
- ///
- ///Minimum redemption: 60 points.
- ///
- ///Usage period: 30 days after exchange..
- /// </summary>
- public static string FreecallRule {
- get {
- return ResourceManager.GetString("FreecallRule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Free Entertainment.
- /// </summary>
- public static string FreeEntertainment {
- get {
- return ResourceManager.GetString("FreeEntertainment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Free Service.
- /// </summary>
- public static string FreeService {
- get {
- return ResourceManager.GetString("FreeService", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Freetalk package.
- /// </summary>
- public static string FreetalkPackage {
- get {
- return ResourceManager.GetString("FreetalkPackage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The freetalk seconds depends on packages.
- /// </summary>
- public static string FreetalkPackageExchange {
- get {
- return ResourceManager.GetString("FreetalkPackageExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
- ///
- ///Minimum redemption: 100 points.
- ///
- ///Usage period: 30 days after exchange..
- /// </summary>
- public static string FreetalkPackageRule {
- get {
- return ResourceManager.GetString("FreetalkPackageRule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Front Id image must be < 1MB.
- /// </summary>
- public static string FrontIdTooBig {
- get {
- return ResourceManager.GetString("FrontIdTooBig", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to General Line.
- /// </summary>
- public static string GeneralLine {
- get {
- return ResourceManager.GetString("GeneralLine", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Get OTP code.
- /// </summary>
- public static string GetOtpCode {
- get {
- return ResourceManager.GetString("GetOtpCode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Get Password.
- /// </summary>
- public static string GetPassword {
- get {
- return ResourceManager.GetString("GetPassword", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Go to Showroom.
- /// </summary>
- public static string GotoShowroom {
- get {
- return ResourceManager.GetString("GotoShowroom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hi.
- /// </summary>
- public static string Hi {
- get {
- return ResourceManager.GetString("Hi", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hide Charge History.
- /// </summary>
- public static string HideChargeHistory {
- get {
- return ResourceManager.GetString("HideChargeHistory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to History charge.
- /// </summary>
- public static string HistoryCharge {
- get {
- return ResourceManager.GetString("HistoryCharge", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Home.
- /// </summary>
- public static string Home {
- get {
- return ResourceManager.GetString("Home", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HOT PROMOTION AND OFFER.
- /// </summary>
- public static string HotPromotion {
- get {
- return ResourceManager.GetString("HotPromotion", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hourly.
- /// </summary>
- public static string Hourly {
- get {
- return ResourceManager.GetString("Hourly", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to How can we help?.
- /// </summary>
- public static string HowCanWeHelp {
- get {
- return ResourceManager.GetString("HowCanWeHelp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to eg: Where do i check my data usage?.
- /// </summary>
- public static string HowCanWeHelpGuide {
- get {
- return ResourceManager.GetString("HowCanWeHelpGuide", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ICT.
- /// </summary>
- public static string ICT {
- get {
- return ResourceManager.GetString("ICT", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Car Tracking - Cloud Service - Dms - Meskola - Online Meeting - Voffice.
- /// </summary>
- public static string IctDesc {
- get {
- return ResourceManager.GetString("IctDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// 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..
- /// </summary>
- public static string IctDescription {
- get {
- return ResourceManager.GetString("IctDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The market leader in Timor-Leste, trusted by businesses.
- /// </summary>
- public static string IctHeader {
- get {
- return ResourceManager.GetString("IctHeader", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ID Card.
- /// </summary>
- public static string IdCard {
- get {
- return ResourceManager.GetString("IdCard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lowest - Highest point.
- /// </summary>
- public static string IncreasePoint {
- get {
- return ResourceManager.GetString("IncreasePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Information Subscribing.
- /// </summary>
- public static string InformationSubscribing {
- get {
- return ResourceManager.GetString("InformationSubscribing", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Internet.
- /// </summary>
- public static string Internet {
- get {
- return ResourceManager.GetString("Internet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Keyword to search must has at least 2 characters.
- /// </summary>
- public static string KeyWordLengthMin {
- get {
- return ResourceManager.GetString("KeyWordLengthMin", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Language.
- /// </summary>
- public static string Language {
- get {
- return ResourceManager.GetString("Language", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Learn more.
- /// </summary>
- public static string LearnMore {
- get {
- return ResourceManager.GetString("LearnMore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to List of packages.
- /// </summary>
- public static string ListPackage {
- get {
- return ResourceManager.GetString("ListPackage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Login.
- /// </summary>
- public static string Login {
- get {
- return ResourceManager.GetString("Login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Logout.
- /// </summary>
- public static string Logout {
- get {
- return ResourceManager.GetString("Logout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Loyalty.
- /// </summary>
- public static string Loyalty {
- get {
- return ResourceManager.GetString("Loyalty", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Main balance.
- /// </summary>
- public static string MainBalance {
- get {
- return ResourceManager.GetString("MainBalance", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Male.
- /// </summary>
- public static string Male {
- get {
- return ResourceManager.GetString("Male", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The maximum capacity of the picture is 20 Mb..
- /// </summary>
- public static string MaximumImageSize {
- get {
- return ResourceManager.GetString("MaximumImageSize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Member Benefit.
- /// </summary>
- public static string MemberBenefit {
- get {
- return ResourceManager.GetString("MemberBenefit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Member Information.
- /// </summary>
- public static string MemberInformation {
- get {
- return ResourceManager.GetString("MemberInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to MILESTONES AND REMARKS.
- /// </summary>
- public static string MileStone {
- get {
- return ResourceManager.GetString("MileStone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mobile.
- /// </summary>
- public static string Mobile {
- get {
- return ResourceManager.GetString("Mobile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mobile - Call & SMS - Sim & Number.
- /// </summary>
- public static string MobileDesc {
- get {
- return ResourceManager.GetString("MobileDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mobile Reward.
- /// </summary>
- public static string MobileReward {
- get {
- return ResourceManager.GetString("MobileReward", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Month.
- /// </summary>
- public static string Month {
- get {
- return ResourceManager.GetString("Month", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Monthly.
- /// </summary>
- public static string Monthly {
- get {
- return ResourceManager.GetString("Monthly", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to More.
- /// </summary>
- public static string More {
- get {
- return ResourceManager.GetString("More", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to More Careers.
- /// </summary>
- public static string MoreCareer {
- get {
- return ResourceManager.GetString("MoreCareer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to More device.
- /// </summary>
- public static string MoreDevice {
- get {
- return ResourceManager.GetString("MoreDevice", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to More news.
- /// </summary>
- public static string MoreNews {
- get {
- return ResourceManager.GetString("MoreNews", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to More service.
- /// </summary>
- public static string MoreService {
- get {
- return ResourceManager.GetString("MoreService", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mosan.
- /// </summary>
- public static string Mosan {
- get {
- return ResourceManager.GetString("Mosan", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ewallet.
- /// </summary>
- public static string MosanDesc {
- get {
- return ResourceManager.GetString("MosanDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Get 5% discount from .
- /// </summary>
- public static string MosanDiscount {
- get {
- return ResourceManager.GetString("MosanDiscount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Multimedia.
- /// </summary>
- public static string Multimedia {
- get {
- return ResourceManager.GetString("Multimedia", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to My Account.
- /// </summary>
- public static string MyAccount {
- get {
- return ResourceManager.GetString("MyAccount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to My Voucher.
- /// </summary>
- public static string MyVoucher {
- get {
- return ResourceManager.GetString("MyVoucher", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to News.
- /// </summary>
- public static string News {
- get {
- return ResourceManager.GetString("News", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lastest news, breaking stories and more.
- /// </summary>
- public static string NewsDescription {
- get {
- return ResourceManager.GetString("NewsDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Next.
- /// </summary>
- public static string Next {
- get {
- return ResourceManager.GetString("Next", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to No more data.
- /// </summary>
- public static string NoMoreData {
- get {
- return ResourceManager.GetString("NoMoreData", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OR.
- /// </summary>
- public static string OR {
- get {
- return ResourceManager.GetString("OR", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP Code.
- /// </summary>
- public static string OtpCode {
- get {
- return ResourceManager.GetString("OtpCode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP is required.
- /// </summary>
- public static string OTPRequired {
- get {
- return ResourceManager.GetString("OTPRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our career.
- /// </summary>
- public static string OurCareer {
- get {
- return ResourceManager.GetString("OurCareer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our Focus Areas.
- /// </summary>
- public static string OurFocusAreas {
- get {
- return ResourceManager.GetString("OurFocusAreas", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our News.
- /// </summary>
- public static string OurNews {
- get {
- return ResourceManager.GetString("OurNews", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our Profile.
- /// </summary>
- public static string OurProfile {
- get {
- return ResourceManager.GetString("OurProfile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our Social Resposibility.
- /// </summary>
- public static string OurSocialResposibility {
- get {
- return ResourceManager.GetString("OurSocialResposibility", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You have used up the data capacity of the package, please topup to continue using the service..
- /// </summary>
- public static string OutOfDataDescription {
- get {
- return ResourceManager.GetString("OutOfDataDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to All Packages.
- /// </summary>
- public static string Package {
- get {
- return ResourceManager.GetString("Package", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Passport / Visa.
- /// </summary>
- public static string PassportVisa {
- get {
- return ResourceManager.GetString("PassportVisa", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Password.
- /// </summary>
- public static string Password {
- get {
- return ResourceManager.GetString("Password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enter password.
- /// </summary>
- public static string PasswordEmpty {
- get {
- return ResourceManager.GetString("PasswordEmpty", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Password must has more than 8 characters!.
- /// </summary>
- public static string PasswordInvalid {
- get {
- return ResourceManager.GetString("PasswordInvalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Password is more than 8 characteristics..
- /// </summary>
- public static string PasswordMore8 {
- get {
- return ResourceManager.GetString("PasswordMore8", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Confirm password not matched!.
- /// </summary>
- public static string PasswordNotMatched {
- get {
- return ResourceManager.GetString("PasswordNotMatched", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Password is required.
- /// </summary>
- public static string PasswordRequired {
- get {
- return ResourceManager.GetString("PasswordRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Phone number.
- /// </summary>
- public static string PhoneNumber {
- get {
- return ResourceManager.GetString("PhoneNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enter phone number.
- /// </summary>
- public static string PhoneNumberEmpty {
- get {
- return ResourceManager.GetString("PhoneNumberEmpty", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Invalid phone number.
- /// </summary>
- public static string PhoneNumberInvalid {
- get {
- return ResourceManager.GetString("PhoneNumberInvalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Phone number required.
- /// </summary>
- public static string PhonenumberRequired {
- get {
- return ResourceManager.GetString("PhonenumberRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Point.
- /// </summary>
- public static string Point {
- get {
- return ResourceManager.GetString("Point", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Point Accumulated.
- /// </summary>
- public static string PointAccumulated {
- get {
- return ResourceManager.GetString("PointAccumulated", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Point Exchange.
- /// </summary>
- public static string PointExchange {
- get {
- return ResourceManager.GetString("PointExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to %point% points will be expired at %date%.
- /// </summary>
- public static string PointExpireWarn {
- get {
- return ResourceManager.GetString("PointExpireWarn", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Point History.
- /// </summary>
- public static string PointHistory {
- get {
- return ResourceManager.GetString("PointHistory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to points.
- /// </summary>
- public static string points {
- get {
- return ResourceManager.GetString("points", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Portrait image must be < 1MB.
- /// </summary>
- public static string PortraitTooBig {
- get {
- return ResourceManager.GetString("PortraitTooBig", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Previous.
- /// </summary>
- public static string Previous {
- get {
- return ResourceManager.GetString("Previous", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Privacy & Policy.
- /// </summary>
- public static string PrivacyPolicy {
- get {
- return ResourceManager.GetString("PrivacyPolicy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Products & Services.
- /// </summary>
- public static string ProductsServices {
- get {
- return ResourceManager.GetString("ProductsServices", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Promotional balance.
- /// </summary>
- public static string PromotionalBalance {
- get {
- return ResourceManager.GetString("PromotionalBalance", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Diamond.
- /// </summary>
- public static string RankDiamond {
- get {
- return ResourceManager.GetString("RankDiamond", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gold.
- /// </summary>
- public static string RankGold {
- get {
- return ResourceManager.GetString("RankGold", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rank Information.
- /// </summary>
- public static string RankInformation {
- get {
- return ResourceManager.GetString("RankInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rank Member.
- /// </summary>
- public static string RankMember {
- get {
- return ResourceManager.GetString("RankMember", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Silver.
- /// </summary>
- public static string RankSilver {
- get {
- return ResourceManager.GetString("RankSilver", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Welcome.
- /// </summary>
- public static string RankWelcome {
- get {
- return ResourceManager.GetString("RankWelcome", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Read more.
- /// </summary>
- public static string ReadMore {
- get {
- return ResourceManager.GetString("ReadMore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Received reward code.
- /// </summary>
- public static string ReceivedRewardCode {
- get {
- return ResourceManager.GetString("ReceivedRewardCode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Recharge.
- /// </summary>
- public static string Recharge {
- get {
- return ResourceManager.GetString("Recharge", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to RECHARGE ON KAKOAK.
- /// </summary>
- public static string RechargeKakoak {
- get {
- return ResourceManager.GetString("RechargeKakoak", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to RECHARGE ON MOSAN.
- /// </summary>
- public static string RechargeMosan {
- get {
- return ResourceManager.GetString("RechargeMosan", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Recharge Now.
- /// </summary>
- public static string RechargeNow {
- get {
- return ResourceManager.GetString("RechargeNow", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to RECHARGE BY SCRATCH CARD.
- /// </summary>
- public static string RechargeScratch {
- get {
- return ResourceManager.GetString("RechargeScratch", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Recharge By Ussd.
- /// </summary>
- public static string RechargeUssd {
- get {
- return ResourceManager.GetString("RechargeUssd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Register.
- /// </summary>
- public static string Register {
- get {
- return ResourceManager.GetString("Register", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Register Account.
- /// </summary>
- public static string RegisterAccount {
- get {
- return ResourceManager.GetString("RegisterAccount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Something Wrong When Registering package. For support, please call 188. Thank you!.
- /// </summary>
- public static string RegisterError {
- get {
- return ResourceManager.GetString("RegisterError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Register Internet.
- /// </summary>
- public static string RegisterInternet {
- get {
- return ResourceManager.GetString("RegisterInternet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Register Mosan Service.
- /// </summary>
- public static string RegisterMosanService {
- get {
- return ResourceManager.GetString("RegisterMosanService", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Register Now.
- /// </summary>
- public static string RegisterNow {
- get {
- return ResourceManager.GetString("RegisterNow", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You have registered successful. Thank you!.
- /// </summary>
- public static string RegisterSuccess {
- get {
- return ResourceManager.GetString("RegisterSuccess", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Related Broadband.
- /// </summary>
- public static string RelatedBroadband {
- get {
- return ResourceManager.GetString("RelatedBroadband", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to RELATED NEWS AND STORIES.
- /// </summary>
- public static string RelatedNewsStories {
- get {
- return ResourceManager.GetString("RelatedNewsStories", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Related Services.
- /// </summary>
- public static string RelatedServices {
- get {
- return ResourceManager.GetString("RelatedServices", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Remains.
- /// </summary>
- public static string Remains {
- get {
- return ResourceManager.GetString("Remains", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reset.
- /// </summary>
- public static string Reset {
- get {
- return ResourceManager.GetString("Reset", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to There are %num% showrooms.
- /// </summary>
- public static string ResultShowroom {
- get {
- return ResourceManager.GetString("ResultShowroom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Loyalty Program.
- /// </summary>
- public static string RoyaltyProgram {
- get {
- return ResourceManager.GetString("RoyaltyProgram", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rules.
- /// </summary>
- public static string Rules {
- get {
- return ResourceManager.GetString("Rules", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scratch Code Invalid.
- /// </summary>
- public static string ScratchCodeInvalid {
- get {
- return ResourceManager.GetString("ScratchCodeInvalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Scratch code required.
- /// </summary>
- public static string ScratchCodeRequired {
- get {
- return ResourceManager.GetString("ScratchCodeRequired", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Searching.
- /// </summary>
- public static string Searching {
- get {
- return ResourceManager.GetString("Searching", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Search showroom.
- /// </summary>
- public static string SearchShowroom {
- get {
- return ResourceManager.GetString("SearchShowroom", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to seconds.
- /// </summary>
- public static string seconds {
- get {
- return ResourceManager.GetString("seconds", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Security Code.
- /// </summary>
- public static string SecurityCode {
- get {
- return ResourceManager.GetString("SecurityCode", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to See also.
- /// </summary>
- public static string SeeAlso {
- get {
- return ResourceManager.GetString("SeeAlso", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Select.
- /// </summary>
- public static string Select {
- get {
- return ResourceManager.GetString("Select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Select your area close to you.
- /// </summary>
- public static string SelectArea {
- get {
- return ResourceManager.GetString("SelectArea", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show Charge History.
- /// </summary>
- public static string ShowChargeHistory {
- get {
- return ResourceManager.GetString("ShowChargeHistory", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Show more.
- /// </summary>
- public static string ShowMore {
- get {
- return ResourceManager.GetString("ShowMore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sim & Number.
- /// </summary>
- public static string SimNumber {
- get {
- return ResourceManager.GetString("SimNumber", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sitemap.
- /// </summary>
- public static string Sitemap {
- get {
- return ResourceManager.GetString("Sitemap", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to SMS.
- /// </summary>
- public static string Sms {
- get {
- return ResourceManager.GetString("Sms", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 06 points exchange 01 SMS.
- /// </summary>
- public static string SmsExchange {
- get {
- return ResourceManager.GetString("SmsExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Conditions of application: Mobile customers with a consumption score of 1,000 points or more.
- ///
- ///Minimum redemption: 60 points.
- ///
- ///Usage period: 30 days after exchange..
- /// </summary>
- public static string SmsRule {
- get {
- return ResourceManager.GetString("SmsRule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Social Resposibility.
- /// </summary>
- public static string SocialResposibility {
- get {
- return ResourceManager.GetString("SocialResposibility", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Telemor is committed to build a sustainable future for our stakeholders with our focus
- /// on four key Environmental, Social and Governance (ESG) pillars: Climate Change and Environment,
- /// People and Future of Work, Community Impact, and Sustainable Value Creation.
- /// We want to make a lasting positive impact on our stakeholders, leveraging our own resources and
- /// people and working closely with our strategic partners. At the same time, we acknowledge [rest of string was truncated]";.
- /// </summary>
- public static string SocialResposibilityDetail {
- get {
- return ResourceManager.GetString("SocialResposibilityDetail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sort By.
- /// </summary>
- public static string SortBy {
- get {
- return ResourceManager.GetString("SortBy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Speed.
- /// </summary>
- public static string Speed {
- get {
- return ResourceManager.GetString("Speed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Start.
- /// </summary>
- public static string Start {
- get {
- return ResourceManager.GetString("Start", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to .
- /// </summary>
- public static string String1 {
- get {
- return ResourceManager.GetString("String1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Student Card.
- /// </summary>
- public static string StudentCard {
- get {
- return ResourceManager.GetString("StudentCard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Success.
- /// </summary>
- public static string Success {
- get {
- return ResourceManager.GetString("Success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tech Specs.
- /// </summary>
- public static string TechSpecs {
- get {
- return ResourceManager.GetString("TechSpecs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Telemor Showrooms.
- /// </summary>
- public static string TelemorShowrooms {
- get {
- return ResourceManager.GetString("TelemorShowrooms", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Telemo's terms of use and policies.
- /// </summary>
- public static string TermAndPolicies {
- get {
- return ResourceManager.GetString("TermAndPolicies", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Telemor Ecosystem.
- /// </summary>
- public static string TopNo {
- get {
- return ResourceManager.GetString("TopNo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Trending topics.
- /// </summary>
- public static string TrendingTopic {
- get {
- return ResourceManager.GetString("TrendingTopic", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Trial Service.
- /// </summary>
- public static string TrialService {
- get {
- return ResourceManager.GetString("TrialService", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update subcriber information.
- /// </summary>
- public static string UpdateSubcriberInformation {
- get {
- return ResourceManager.GetString("UpdateSubcriberInformation", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Update Subscriber Information.
- /// </summary>
- public static string UpdateSubscriberInfo {
- get {
- return ResourceManager.GetString("UpdateSubscriberInfo", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to User name.
- /// </summary>
- public static string Username {
- get {
- return ResourceManager.GetString("Username", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Use voucher.
- /// </summary>
- public static string UseVoucher {
- get {
- return ResourceManager.GetString("UseVoucher", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Utilities.
- /// </summary>
- public static string Utilities {
- get {
- return ResourceManager.GetString("Utilities", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Our Values And Vision.
- /// </summary>
- public static string ValuesVision {
- get {
- return ResourceManager.GetString("ValuesVision", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to VAS.
- /// </summary>
- public static string Vas {
- get {
- return ResourceManager.GetString("Vas", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Valued Added Service (Kakoak - Timor TV - Cinema).
- /// </summary>
- public static string VasDesc {
- get {
- return ResourceManager.GetString("VasDesc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Viettel Group.
- /// </summary>
- public static string ViettelGroup {
- get {
- return ResourceManager.GetString("ViettelGroup", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to View all.
- /// </summary>
- public static string ViewAll {
- get {
- return ResourceManager.GetString("ViewAll", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to My Loyalty.
- /// </summary>
- public static string ViewHistoryExchange {
- get {
- return ResourceManager.GetString("ViewHistoryExchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to View More.
- /// </summary>
- public static string ViewMore {
- get {
- return ResourceManager.GetString("ViewMore", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Voice.
- /// </summary>
- public static string Voice {
- get {
- return ResourceManager.GetString("Voice", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to It'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..
- /// </summary>
- public static string VoucherDescription {
- get {
- return ResourceManager.GetString("VoucherDescription", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Voucher information and how to use.
- /// </summary>
- public static string VoucherInfoGuide {
- get {
- return ResourceManager.GetString("VoucherInfoGuide", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Voucher Reward.
- /// </summary>
- public static string VoucherReward {
- get {
- return ResourceManager.GetString("VoucherReward", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to vouchers.
- /// </summary>
- public static string Vouchers {
- get {
- return ResourceManager.GetString("Vouchers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warranty policy.
- /// </summary>
- public static string WarrantyPolicy {
- get {
- return ResourceManager.GetString("WarrantyPolicy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Warranty service point.
- /// </summary>
- public static string WarrantyServicePoint {
- get {
- return ResourceManager.GetString("WarrantyServicePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to WE’RE HIRING.
- /// </summary>
- public static string WeAreHiring {
- get {
- return ResourceManager.GetString("WeAreHiring", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Weekly.
- /// </summary>
- public static string Weekly {
- get {
- return ResourceManager.GetString("Weekly", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Would you like to.
- /// </summary>
- public static string WouldYouLike {
- get {
- return ResourceManager.GetString("WouldYouLike", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OUR %YEARS% - YEAR JOURNEY.
- /// </summary>
- public static string YearsJourney {
- get {
- return ResourceManager.GetString("YearsJourney", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You have <b>{0} points</b>.
- /// </summary>
- public static string YouHavePoint {
- get {
- return ResourceManager.GetString("YouHavePoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Address.
- /// </summary>
- public static string YourAddress {
- get {
- return ResourceManager.GetString("YourAddress", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your behind ID card.
- /// </summary>
- public static string YourBehindIdCard {
- get {
- return ResourceManager.GetString("YourBehindIdCard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Birthday.
- /// </summary>
- public static string YourBirthday {
- get {
- return ResourceManager.GetString("YourBirthday", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your front ID card.
- /// </summary>
- public static string YourFrontIdCard {
- get {
- return ResourceManager.GetString("YourFrontIdCard", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Full Name.
- /// </summary>
- public static string YourFullName {
- get {
- return ResourceManager.GetString("YourFullName", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Level.
- /// </summary>
- public static string YourLevel {
- get {
- return ResourceManager.GetString("YourLevel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Point.
- /// </summary>
- public static string YourPoint {
- get {
- return ResourceManager.GetString("YourPoint", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your Portrait.
- /// </summary>
- public static string YourPortrait {
- get {
- return ResourceManager.GetString("YourPortrait", resourceCulture);
- }
- }
- }
- }
|