| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- //------------------------------------------------------------------------------
- // <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 LotteryWebApp.Languages {
- 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", "17.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("LotteryWebApp.Languages.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 Kontinua.
- /// </summary>
- public static string _continue {
- get {
- return ResourceManager.GetString("continue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia númeru taka metin. Favor hein to'o tuku 5:00 atu koko fali..
- /// </summary>
- public static string account_lock {
- get {
- return ResourceManager.GetString("account_lock", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia konta la eziste.
- /// </summary>
- public static string account_not_existed {
- get {
- return ResourceManager.GetString("account_not_existed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama tan.
- /// </summary>
- public static string add_more_order {
- get {
- return ResourceManager.GetString("add_more_order", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Iha ona konta ida?.
- /// </summary>
- public static string already_have_an_account {
- get {
- return ResourceManager.GetString("already_have_an_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante.
- /// </summary>
- public static string amount {
- get {
- return ResourceManager.GetString("amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante atu transfere.
- /// </summary>
- public static string amount_transfered {
- get {
- return ResourceManager.GetString("amount_transfered", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enxe automatiku.
- /// </summary>
- public static string auto_fill {
- get {
- return ResourceManager.GetString("auto_fill", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konta Báziku.
- /// </summary>
- public static string basic_account {
- get {
- return ResourceManager.GetString("basic_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante Manan.
- /// </summary>
- public static string bee_account {
- get {
- return ResourceManager.GetString("bee_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Toto lottery maka jogu 4D, 3D, 2D, rezultadu sira husi jogu lotaria
- ///singapur nian. Hili ita boot nia numeru sira no hein atu fo sai
- ///kombinasaun ne'ebe maka manan. Ita boot bele konverte montante
- ///manan nian ba karteira MOSAN. Boa susesu!.
- /// </summary>
- public static string bee_loto_des {
- get {
- return ResourceManager.GetString("bee_loto_des", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lotaria Toto hanesan servisu lotaria foun husi Telemor nian.
- ///Bele joga liu husi USSD ou WEB/APP.
- ///Ami sei ajuda ita-boot kria konta ida iha etapa fasil balun..
- /// </summary>
- public static string bee_loto_intro {
- get {
- return ResourceManager.GetString("bee_loto_intro", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante Aposta nian.
- /// </summary>
- public static string bet_amount {
- get {
- return ResourceManager.GetString("bet_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Orden Proposta Lei nian.
- /// </summary>
- public static string bill_order {
- get {
- return ResourceManager.GetString("bill_order", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to You have bought tickets successfully..
- /// </summary>
- public static string brought_success {
- get {
- return ResourceManager.GetString("brought_success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hola.
- /// </summary>
- public static string buy {
- get {
- return ResourceManager.GetString("buy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to sosa-billete.
- /// </summary>
- public static string buy_ticket {
- get {
- return ResourceManager.GetString("buy_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sosa billete Singapura %gameName% iha %drawDate%.
- /// </summary>
- public static string buy_ticket_content {
- get {
- return ResourceManager.GetString("buy_ticket_content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sosa billete.
- /// </summary>
- public static string buy_ticket1 {
- get {
- return ResourceManager.GetString("buy_ticket1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tempu sosa.
- /// </summary>
- public static string buy_time {
- get {
- return ResourceManager.GetString("buy_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sosa.
- /// </summary>
- public static string buying {
- get {
- return ResourceManager.GetString("buying", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kódigu sosa nian la eziste.
- /// </summary>
- public static string buying_code_not_existed {
- get {
- return ResourceManager.GetString("buying_code_not_existed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bolu.
- /// </summary>
- public static string call {
- get {
- return ResourceManager.GetString("call", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kansela.
- /// </summary>
- public static string cancel {
- get {
- return ResourceManager.GetString("cancel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ajente Kaixa.
- /// </summary>
- public static string cash_agent {
- get {
- return ResourceManager.GetString("cash_agent", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Troka Lian.
- /// </summary>
- public static string change_language {
- get {
- return ResourceManager.GetString("change_language", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Troka ita-boot nia senha.
- /// </summary>
- public static string change_password {
- get {
- return ResourceManager.GetString("change_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sosa iha kanál.
- /// </summary>
- public static string channel_buy {
- get {
- return ResourceManager.GetString("channel_buy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor verifika númeru ka senha.
- /// </summary>
- public static string check_phone_or_password {
- get {
- return ResourceManager.GetString("check_phone_or_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hili Ita-boot nia númeru.
- /// </summary>
- public static string choose_your_number {
- get {
- return ResourceManager.GetString("choose_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hamoos hotu.
- /// </summary>
- public static string clean_all {
- get {
- return ResourceManager.GetString("clean_all", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Taka.
- /// </summary>
- public static string close {
- get {
- return ResourceManager.GetString("close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma.
- /// </summary>
- public static string confirm {
- get {
- return ResourceManager.GetString("confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma OTP.
- /// </summary>
- public static string confirm_otp {
- get {
- return ResourceManager.GetString("confirm_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma pagamentu %totalPayment% sentavus (%totalMoney%
- ///sentavus atu sosa billete, taxa %totalFee% sentavus), data oras
- ///%drawTime%.Favor prenxe OTP:.
- /// </summary>
- public static string confirm_payment {
- get {
- return ResourceManager.GetString("confirm_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma pagamentu.
- /// </summary>
- public static string confirm_payment_1 {
- get {
- return ResourceManager.GetString("confirm_payment_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sentavu atu sosa.
- /// </summary>
- public static string confirm_payment_2 {
- get {
- return ResourceManager.GetString("confirm_payment_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Billete, taxa.
- /// </summary>
- public static string confirm_payment_3 {
- get {
- return ResourceManager.GetString("confirm_payment_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sentavu, tempu sorteiu.
- /// </summary>
- public static string confirm_payment_4 {
- get {
- return ResourceManager.GetString("confirm_payment_4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to . Favor prenxe OTP:.
- /// </summary>
- public static string confirm_payment_5 {
- get {
- return ResourceManager.GetString("confirm_payment_5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma tranzasaun.
- /// </summary>
- public static string confirm_transaction {
- get {
- return ResourceManager.GetString("confirm_transaction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma transferénsia.
- /// </summary>
- public static string confirm_transfer_1 {
- get {
- return ResourceManager.GetString("confirm_transfer_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sentavu sira husi konta Lotaria nian ba.
- /// </summary>
- public static string confirm_transfer_2 {
- get {
- return ResourceManager.GetString("confirm_transfer_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to , taxa 0 Sentavu. Favor prenxe OTP:.
- /// </summary>
- public static string confirm_transfer_3 {
- get {
- return ResourceManager.GetString("confirm_transfer_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfirma Ita-boot nia senha foun.
- /// </summary>
- public static string confirm_your_new_password {
- get {
- return ResourceManager.GetString("confirm_your_new_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to CONSOLATION PRIZES.
- /// </summary>
- public static string ConsolationPrize {
- get {
- return ResourceManager.GetString("ConsolationPrize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kontaktu ami.
- /// </summary>
- public static string contact_us {
- get {
- return ResourceManager.GetString("contact_us", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konteudu.
- /// </summary>
- public static string content {
- get {
- return ResourceManager.GetString("content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kria konta foun.
- /// </summary>
- public static string create_new_account {
- get {
- return ResourceManager.GetString("create_new_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Centavos.
- /// </summary>
- public static string curency {
- get {
- return ResourceManager.GetString("curency", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data sosa nian.
- /// </summary>
- public static string date_purchase {
- get {
- return ResourceManager.GetString("date_purchase", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Date of birth.
- /// </summary>
- public static string dateOfBirth {
- get {
- return ResourceManager.GetString("dateOfBirth", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to loron.
- /// </summary>
- public static string days {
- get {
- return ResourceManager.GetString("days", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detalho sira Pagamentu nian.
- /// </summary>
- public static string detail_of_payment {
- get {
- return ResourceManager.GetString("detail_of_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detalho.
- /// </summary>
- public static string details {
- get {
- return ResourceManager.GetString("details", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data Sorteiu.
- /// </summary>
- public static string draw_date {
- get {
- return ResourceManager.GetString("draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tempu Sorteiu.
- /// </summary>
- public static string draw_time {
- get {
- return ResourceManager.GetString("draw_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Drow.
- /// </summary>
- public static string drawn {
- get {
- return ResourceManager.GetString("drawn", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Englesa.
- /// </summary>
- public static string english {
- get {
- return ResourceManager.GetString("english", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama montante 1- 150,000 sentavus.
- /// </summary>
- public static string enter_amount {
- get {
- return ResourceManager.GetString("enter_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama montante (másimu 10,000 sentavus/tranzasaun).
- /// </summary>
- public static string enter_amount_1_1000 {
- get {
- return ResourceManager.GetString("enter_amount_1_1000", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama montante.
- /// </summary>
- public static string enter_amount1 {
- get {
- return ResourceManager.GetString("enter_amount1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia loron moris.
- /// </summary>
- public static string enter_birthday {
- get {
- return ResourceManager.GetString("enter_birthday", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama díjitu 2 (00 to'o 99).
- /// </summary>
- public static string enter_digit_2 {
- get {
- return ResourceManager.GetString("enter_digit_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama díjitu 3 (000 to'o 999).
- /// </summary>
- public static string enter_digit_3 {
- get {
- return ResourceManager.GetString("enter_digit_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama díjitu 4 (0000 to'o 9999).
- /// </summary>
- public static string enter_digit_4 {
- get {
- return ResourceManager.GetString("enter_digit_4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia osan.
- /// </summary>
- public static string enter_money {
- get {
- return ResourceManager.GetString("enter_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hakerek ita-boot nia naran kompletu.
- /// </summary>
- public static string enter_name {
- get {
- return ResourceManager.GetString("enter_name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia OTP.
- /// </summary>
- public static string enter_otp {
- get {
- return ResourceManager.GetString("enter_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama Ita-boot nia OTP atu tama.
- /// </summary>
- public static string enter_otp_to_login {
- get {
- return ResourceManager.GetString("enter_otp_to_login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia senha ho díjitu 6.
- /// </summary>
- public static string enter_password {
- get {
- return ResourceManager.GetString("enter_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia númeru.
- /// </summary>
- public static string enter_phone_number {
- get {
- return ResourceManager.GetString("enter_phone_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia senha foun.
- /// </summary>
- public static string enter_your_new_password {
- get {
- return ResourceManager.GetString("enter_your_new_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hatama ita-boot nia senha tuan.
- /// </summary>
- public static string enter_your_old_password {
- get {
- return ResourceManager.GetString("enter_your_old_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Erru ida akontese. Favor ida koko fali..
- /// </summary>
- public static string error_happened {
- get {
- return ResourceManager.GetString("error_happened", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Erru ida akontese. Favor koko fali.
- /// </summary>
- public static string error_happened1 {
- get {
- return ResourceManager.GetString("error_happened1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Falha.
- /// </summary>
- public static string fail {
- get {
- return ResourceManager.GetString("fail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot sosa ona billete sira ho susesu..
- /// </summary>
- public static string faktura_pedidu {
- get {
- return ResourceManager.GetString("faktura_pedidu", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to FAQ.
- /// </summary>
- public static string faq {
- get {
- return ResourceManager.GetString("faq", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Taxa.
- /// </summary>
- public static string fee {
- get {
- return ResourceManager.GetString("fee", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transferénsia taxa.
- /// </summary>
- public static string fee_tranfer {
- get {
- return ResourceManager.GetString("fee_tranfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor prenxe ita-boot nia senha.
- /// </summary>
- public static string fill_password {
- get {
- return ResourceManager.GetString("fill_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor prenxe Ita-boot nia númeru telefone.
- /// </summary>
- public static string fill_phone {
- get {
- return ResourceManager.GetString("fill_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor prenxe Ita-boot nia númeru.
- /// </summary>
- public static string fill_your_number {
- get {
- return ResourceManager.GetString("fill_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to FIRST PRIZE.
- /// </summary>
- public static string FirstPrize {
- get {
- return ResourceManager.GetString("FirstPrize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Florida Lotaria.
- /// </summary>
- public static string florida_lottery {
- get {
- return ResourceManager.GetString("florida_lottery", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Haluha tiha senha.
- /// </summary>
- public static string forgot_password {
- get {
- return ResourceManager.GetString("forgot_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Livre.
- /// </summary>
- public static string free {
- get {
- return ResourceManager.GetString("free", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Husi.
- /// </summary>
- public static string from {
- get {
- return ResourceManager.GetString("from", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere ba Ita-boot nia númeru.
- /// </summary>
- public static string from_your_number {
- get {
- return ResourceManager.GetString("from_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia naran kompletu la válidu.
- /// </summary>
- public static string fullname_not_valid {
- get {
- return ResourceManager.GetString("fullname_not_valid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hetan OTP.
- /// </summary>
- public static string get_otp1 {
- get {
- return ResourceManager.GetString("get_otp1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hahú.
- /// </summary>
- public static string get_started {
- get {
- return ResourceManager.GetString("get_started", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Iha oportunidade atu hetan.
- /// </summary>
- public static string have_chance_to_get {
- get {
- return ResourceManager.GetString("have_chance_to_get", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Istória.
- /// </summary>
- public static string history {
- get {
- return ResourceManager.GetString("history", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Uma.
- /// </summary>
- public static string home {
- get {
- return ResourceManager.GetString("home", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pájina dahuluk.
- /// </summary>
- public static string home_page {
- get {
- return ResourceManager.GetString("home_page", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oras.
- /// </summary>
- public static string hours {
- get {
- return ResourceManager.GetString("hours", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oinsa atu joga Toto Loteria.
- /// </summary>
- public static string how_to_play {
- get {
- return ResourceManager.GetString("how_to_play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sistema atualiza hela..
- /// </summary>
- public static string in_blacklist {
- get {
- return ResourceManager.GetString("in_blacklist", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia númeru iha data sorteiu ida-ne'e:.
- /// </summary>
- public static string in_draw_date {
- get {
- return ResourceManager.GetString("in_draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia internet iha problema..
- /// </summary>
- public static string internet_error {
- get {
- return ResourceManager.GetString("internet_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lingua.
- /// </summary>
- public static string language {
- get {
- return ResourceManager.GetString("language", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tama.
- /// </summary>
- public static string login {
- get {
- return ResourceManager.GetString("login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to La konsege tama tanba senha la loos..
- /// </summary>
- public static string login_fail_wrong_pass {
- get {
- return ResourceManager.GetString("login_fail_wrong_pass", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sai.
- /// </summary>
- public static string logout {
- get {
- return ResourceManager.GetString("logout", 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 Númeru másimu billete nian maka billete 5. Favor verifika fali..
- /// </summary>
- public static string max_5_tickets {
- get {
- return ResourceManager.GetString("max_5_tickets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transering másimu maka 150,000 sentavus. Favor verifika fali..
- /// </summary>
- public static string max_transfer_1000HTG {
- get {
- return ResourceManager.GetString("max_transfer_1000HTG", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mins.
- /// </summary>
- public static string mins {
- get {
- return ResourceManager.GetString("mins", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Osan.
- /// </summary>
- public static string money {
- get {
- return ResourceManager.GetString("money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante transferénsia (Sentavu).
- /// </summary>
- public static string money_on {
- get {
- return ResourceManager.GetString("money_on", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Liután.
- /// </summary>
- public static string more {
- get {
- return ResourceManager.GetString("more", 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 Ita-boot seidauk tama. Favor tama atu halo asaun ida-ne'e..
- /// </summary>
- public static string must_login {
- get {
- return ResourceManager.GetString("must_login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ha'u nia Bilhete.
- /// </summary>
- public static string my_ticket {
- get {
- return ResourceManager.GetString("my_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Naran.
- /// </summary>
- public static string name {
- get {
- return ResourceManager.GetString("name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to NatCash.
- /// </summary>
- public static string NatCash {
- get {
- return ResourceManager.GetString("NatCash", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor verifika ita-boot nia senha foun.
- /// </summary>
- public static string new_pass_error {
- get {
- return ResourceManager.GetString("new_pass_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sorteiu tuirmai.
- /// </summary>
- public static string next_draw {
- get {
- return ResourceManager.GetString("next_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot laiha lisensa atu halo asaun ida-ne'e.
- /// </summary>
- public static string no_permission {
- get {
- return ResourceManager.GetString("no_permission", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to la define.
- /// </summary>
- public static string not_defined {
- get {
- return ResourceManager.GetString("not_defined", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to La draw.
- /// </summary>
- public static string not_draw {
- get {
- return ResourceManager.GetString("not_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia osan iha Konta Lotaria nian la to'o atu prosesa tranzasaun..
- /// </summary>
- public static string not_enough_money {
- get {
- return ResourceManager.GetString("not_enough_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Osan la to’o atu troka..
- /// </summary>
- public static string not_enough_money_to_exchange {
- get {
- return ResourceManager.GetString("not_enough_money_to_exchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to La hetan OTP?.
- /// </summary>
- public static string not_get_otp {
- get {
- return ResourceManager.GetString("not_get_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Simu-na'in seidauk rejista MOSAN. Halo favór verifika fali konta
- ///MOSAN nian..
- /// </summary>
- public static string not_register_MOSAN {
- get {
- return ResourceManager.GetString("not_register_MOSAN", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Benefisye a poko gen kont Natcash. Tanpri verifye kont Natcash ou anko.
- /// </summary>
- public static string not_register_natcash {
- get {
- return ResourceManager.GetString("not_register_natcash", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to La manan.
- /// </summary>
- public static string not_win {
- get {
- return ResourceManager.GetString("not_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nota: Mantein Ita-boot nia liafuan-xave, no labele fahe ho ema ida..
- /// </summary>
- public static string note_password {
- get {
- return ResourceManager.GetString("note_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Númeru.
- /// </summary>
- public static string number {
- get {
- return ResourceManager.GetString("number", 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 Ka hili montante (Sentavus).
- /// </summary>
- public static string or_select {
- get {
- return ResourceManager.GetString("or_select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kódigu pedidu.
- /// </summary>
- public static string order_code {
- get {
- return ResourceManager.GetString("order_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP.
- /// </summary>
- public static string otp {
- get {
- return ResourceManager.GetString("otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP invalidu.
- /// </summary>
- public static string otp_invalid {
- get {
- return ResourceManager.GetString("otp_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tempu OTP liu.
- /// </summary>
- public static string otp_timeout {
- get {
- return ResourceManager.GetString("otp_timeout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montante aposta válidu sira varia hosi sentavus 25 to'o sentavus
- ///10,000 cents..
- /// </summary>
- public static string over_1000HTG_transfer {
- get {
- return ResourceManager.GetString("over_1000HTG_transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ta-boot nia osan liu limite ba troka ida-idak..
- /// </summary>
- public static string over_each_exchange {
- get {
- return ResourceManager.GetString("over_each_exchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia osan liu ona limite atu troka iha loron ida nia laran..
- /// </summary>
- public static string over_exchange_per_day {
- get {
- return ResourceManager.GetString("over_exchange_per_day", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Param sira la válidu.
- /// </summary>
- public static string params_invalid {
- get {
- return ResourceManager.GetString("params_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 1. Tenke iha díjitu 6.
- /// </summary>
- public static string pass_tip_1 {
- get {
- return ResourceManager.GetString("pass_tip_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 2. Password forte: husi 0 - 9, tenke inklui karakter
- ///(laos karakter espesial).
- /// </summary>
- public static string pass_tip_2 {
- get {
- return ResourceManager.GetString("pass_tip_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to senha.
- /// </summary>
- public static string password {
- get {
- return ResourceManager.GetString("password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor cek ita boot sira nia SMS hodi simu OTP.
- /// </summary>
- public static string password_sent {
- get {
- return ResourceManager.GetString("password_sent", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dika sira kona-ba senha.
- /// </summary>
- public static string password_tip {
- get {
- return ResourceManager.GetString("password_tip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pagamentu.
- /// </summary>
- public static string payment {
- get {
- return ResourceManager.GetString("payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konta Pagamentu.
- /// </summary>
- public static string payment_account {
- get {
- return ResourceManager.GetString("payment_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Métodu Pagamentu.
- /// </summary>
- public static string payment_mothod {
- get {
- return ResourceManager.GetString("payment_mothod", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia númeru telefone la válidu..
- /// </summary>
- public static string phone_invalid {
- get {
- return ResourceManager.GetString("phone_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Phone number.
- /// </summary>
- public static string phone_number {
- get {
- return ResourceManager.GetString("phone_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia pin sala.
- /// </summary>
- public static string pin_wrong {
- get {
- return ResourceManager.GetString("pin_wrong", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to jogus.
- /// </summary>
- public static string play {
- get {
- return ResourceManager.GetString("play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Folin.
- /// </summary>
- public static string price {
- get {
- return ResourceManager.GetString("price", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prosesu.
- /// </summary>
- public static string processing {
- get {
- return ResourceManager.GetString("processing", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Perfil.
- /// </summary>
- public static string profile {
- get {
- return ResourceManager.GetString("profile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia kódigu promosaun la ativu.
- /// </summary>
- public static string promotion_code_inactive {
- get {
- return ResourceManager.GetString("promotion_code_inactive", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia kódigu promosaun la válidu.
- /// </summary>
- public static string promotion_code_invalid {
- get {
- return ResourceManager.GetString("promotion_code_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia kódigu promosaun uza ona..
- /// </summary>
- public static string promotion_code_used {
- get {
- return ResourceManager.GetString("promotion_code_used", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Perguntas.
- /// </summary>
- public static string question {
- get {
- return ResourceManager.GetString("question", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Simu-na'in.
- /// </summary>
- public static string receiver {
- get {
- return ResourceManager.GetString("receiver", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rejistu.
- /// </summary>
- public static string register {
- get {
- return ResourceManager.GetString("register", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enkomenda filafali.
- /// </summary>
- public static string reorder {
- get {
- return ResourceManager.GetString("reorder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pedidu iha.
- /// </summary>
- public static string RequestAt {
- get {
- return ResourceManager.GetString("RequestAt", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Haruka fali OTP.
- /// </summary>
- public static string resend_otp {
- get {
- return ResourceManager.GetString("resend_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Haruka fali OTP.
- /// </summary>
- public static string resent_otp {
- get {
- return ResourceManager.GetString("resent_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor ida, reset pasajen hafoin minutu 1..
- /// </summary>
- public static string reset_after_1_minute {
- get {
- return ResourceManager.GetString("reset_after_1_minute", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezultadu.
- /// </summary>
- public static string results {
- get {
- return ResourceManager.GetString("results", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fila fali ba pájina dahuluk.
- /// </summary>
- public static string return_home_page {
- get {
- return ResourceManager.GetString("return_home_page", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Haree filafali Pagamentu.
- /// </summary>
- public static string review_payment {
- get {
- return ResourceManager.GetString("review_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Regras.
- /// </summary>
- public static string rules {
- get {
- return ResourceManager.GetString("rules", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Buka.
- /// </summary>
- public static string search {
- get {
- return ResourceManager.GetString("search", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to SECOND PRIZE.
- /// </summary>
- public static string SecondPrize {
- get {
- return ResourceManager.GetString("SecondPrize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Segundu sira.
- /// </summary>
- public static string seconds {
- get {
- return ResourceManager.GetString("seconds", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Haree tan.
- /// </summary>
- public static string see_more {
- get {
- return ResourceManager.GetString("see_more", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere ba ita-boot nia konta.
- /// </summary>
- public static string select_an_account {
- get {
- return ResourceManager.GetString("select_an_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ema ne'ebé haruka.
- /// </summary>
- public static string sender {
- get {
- return ResourceManager.GetString("sender", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia númeru.
- /// </summary>
- public static string sender_phone {
- get {
- return ResourceManager.GetString("sender_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Singapore 4D Result.
- /// </summary>
- public static string Singapore4DResult {
- get {
- return ResourceManager.GetString("Singapore4DResult", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to La'o ba login hanesan bainaka.
- /// </summary>
- public static string skip_to_guest {
- get {
- return ResourceManager.GetString("skip_to_guest", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to STARTER PRIZES.
- /// </summary>
- public static string StarterPrize {
- get {
- return ResourceManager.GetString("StarterPrize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Status.
- /// </summary>
- public static string status {
- get {
- return ResourceManager.GetString("status", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Susesu.
- /// </summary>
- public static string success {
- get {
- return ResourceManager.GetString("success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sistema ne'e atualiza hela. Favor ida koko fali hafoin minutu 1..
- /// </summary>
- public static string system_update {
- get {
- return ResourceManager.GetString("system_update", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Data Sosa nian.
- /// </summary>
- public static string term {
- get {
- return ResourceManager.GetString("term", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Termu ida-ne'e nia tempu liu ona. Favor ida koko fali..
- /// </summary>
- public static string term_timeout {
- get {
- return ResourceManager.GetString("term_timeout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Termu no Kondisaun sira..
- /// </summary>
- public static string terms_and_conditions {
- get {
- return ResourceManager.GetString("terms_and_conditions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tetun.
- /// </summary>
- public static string tetun {
- get {
- return ResourceManager.GetString("tetun", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Obrigado!.
- /// </summary>
- public static string thank_you {
- get {
- return ResourceManager.GetString("thank_you", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to THIRD PRIZE.
- /// </summary>
- public static string ThirdPrize {
- get {
- return ResourceManager.GetString("ThirdPrize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bilhete.
- /// </summary>
- public static string ticket {
- get {
- return ResourceManager.GetString("ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kódigu billete.
- /// </summary>
- public static string ticket_code {
- get {
- return ResourceManager.GetString("ticket_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia billete sira la válidu.
- /// </summary>
- public static string ticket_invalid {
- get {
- return ResourceManager.GetString("ticket_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tempu.
- /// </summary>
- public static string time {
- get {
- return ResourceManager.GetString("time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ba.
- /// </summary>
- public static string to {
- get {
- return ResourceManager.GetString("to", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia token la válidu.
- /// </summary>
- public static string token_invalid {
- get {
- return ResourceManager.GetString("token_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Parabéns ba manan-na'in sorte na'in 10 ne'ebé maka hetan prémiu
- ///aas liu iha loron 30 ikus ne'e!.
- /// </summary>
- public static string top_winner {
- get {
- return ResourceManager.GetString("top_winner", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Osan totál.
- /// </summary>
- public static string total_money {
- get {
- return ResourceManager.GetString("total_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Totál billete sira.
- /// </summary>
- public static string total_ticket {
- get {
- return ResourceManager.GetString("total_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hasai osan.
- /// </summary>
- public static string tranfer_win_money {
- get {
- return ResourceManager.GetString("tranfer_win_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere.
- /// </summary>
- public static string transfer {
- get {
- return ResourceManager.GetString("transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfer History.
- /// </summary>
- public static string transfer_history {
- get {
- return ResourceManager.GetString("transfer_history", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Métodu Transferénsia.
- /// </summary>
- public static string transfer_method {
- get {
- return ResourceManager.GetString("transfer_method", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia pedidu hetan susesu. Favor hein uitoan enkuantu ami
- ///prosesa ida-ne'e..
- /// </summary>
- public static string transfer_success {
- get {
- return ResourceManager.GetString("transfer_success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tipu.
- /// </summary>
- public static string type {
- get {
- return ResourceManager.GetString("type", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Atualizasaun.
- /// </summary>
- public static string update {
- get {
- return ResourceManager.GetString("update", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Atualizasaun susesu.
- /// </summary>
- public static string update_successful {
- get {
- return ResourceManager.GetString("update_successful", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Erru avatar utilizadór nian.
- /// </summary>
- public static string user_avatar_error {
- get {
- return ResourceManager.GetString("user_avatar_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Verifika ita-boot nia konta atu tama.
- /// </summary>
- public static string verify_otp {
- get {
- return ResourceManager.GetString("verify_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Hein hela rezultadu.
- /// </summary>
- public static string waiting_for_result {
- get {
- return ResourceManager.GetString("waiting_for_result", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia karteira la ativu..
- /// </summary>
- public static string wallet_not_active {
- get {
- return ResourceManager.GetString("wallet_not_active", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia tranzasaun la susesu, ita-boot la rejista konta MOSAN..
- /// </summary>
- public static string wallet_not_existed {
- get {
- return ResourceManager.GetString("wallet_not_existed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bem-vindo ba Toto Lottery!.
- /// </summary>
- public static string welcome_to_bee_loto {
- get {
- return ResourceManager.GetString("welcome_to_bee_loto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Manaan.
- /// </summary>
- public static string win {
- get {
- return ResourceManager.GetString("win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konta Manán-na'in.
- /// </summary>
- public static string winning_account {
- get {
- return ResourceManager.GetString("winning_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Password ne'e laloos. Favor ida koko fali..
- /// </summary>
- public static string wrong_otp {
- get {
- return ResourceManager.GetString("wrong_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot iha númeru manan nian, prémiu manan nian maka:.
- /// </summary>
- public static string you_have_winning_number {
- get {
- return ResourceManager.GetString("you_have_winning_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Your are too younger to use this service..
- /// </summary>
- public static string younger_to_use {
- get {
- return ResourceManager.GetString("younger_to_use", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ita-boot nia númeru.
- /// </summary>
- public static string your_number {
- get {
- return ResourceManager.GetString("your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Favor cek ita boot sira nia SMS hodi simu OTP.
- /// </summary>
- public static string your_password_reset {
- get {
- return ResourceManager.GetString("your_password_reset", resourceCulture);
- }
- }
- }
- }
|