| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875 |
- //------------------------------------------------------------------------------
- // <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 Kontinye.
- /// </summary>
- public static string _continue {
- get {
- return ResourceManager.GetString("continue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont.
- /// </summary>
- public static string Account {
- get {
- return ResourceManager.GetString("Account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo sa bloke. Tanpri tann 5:00 epi eseye anko..
- /// </summary>
- public static string account_lock {
- get {
- return ResourceManager.GetString("account_lock", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont sa pa ekziste.
- /// </summary>
- public static string account_not_existed {
- get {
- return ResourceManager.GetString("account_not_existed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ajoute plis.
- /// </summary>
- public static string add_more_order {
- get {
- return ResourceManager.GetString("add_more_order", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le w sevi ak Bee Lotto, sa vle di ou dako ak kondisyon yo .
- /// </summary>
- public static string agree_policy_1 {
- get {
- return ResourceManager.GetString("agree_policy_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi lang.
- /// </summary>
- public static string agree_policy_2 {
- get {
- return ResourceManager.GetString("agree_policy_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou gen yon kont deja?.
- /// </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 Montan transfe a.
- /// </summary>
- public static string amount_transfered {
- get {
- return ResourceManager.GetString("amount_transfered", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ranpli.
- /// </summary>
- public static string auto_fill {
- get {
- return ResourceManager.GetString("auto_fill", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tounen nan paj dakey.
- /// </summary>
- public static string back_to_homepage {
- get {
- return ResourceManager.GetString("back_to_homepage", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prensipal.
- /// </summary>
- public static string Basic {
- get {
- return ResourceManager.GetString("Basic", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont de baz.
- /// </summary>
- public static string basic_account {
- get {
- return ResourceManager.GetString("basic_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont Natcom Lotto .
- /// </summary>
- public static string bee_account {
- get {
- return ResourceManager.GetString("bee_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Natcom Loto se yon jwet Bolet, Maryaj ak Lotto3, rezilta jwet lotri Nouyok ak Florid. Chwazi nimewo ou yo epi tann yo anonse ganyan an. Ou ka voye lajan ou genyen an sou balans prensipal ou oswa Natcash. Bon chans!.
- /// </summary>
- public static string bee_loto_des {
- get {
- return ResourceManager.GetString("bee_loto_des", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Natcom Loto se yon nouvo sevis lotri VAS Natcom. Ou ka jwe ak USSD oswa WEB/APP. Ou kapab resevwa rezilta SMS GRATIS tou yon fwa ou voye ON nan 7777 epi ou kapab voye OFF nan 7777 pou mande pou ou pa resevwa rezilta SMS MT, oswan enfomasyon MT nan men Lotri a epi ON pou rekipere SMS MT ou.
- ///Ou kapab tou eseye chans ou ak tiraj Lotri Natcom.
- ///N ap ede w kreye yon kont byen fasil..
- /// </summary>
- public static string bee_loto_intro {
- get {
- return ResourceManager.GetString("bee_loto_intro", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Paryaj.
- /// </summary>
- public static string Bet {
- get {
- return ResourceManager.GetString("Bet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan paryaj.
- /// </summary>
- public static string bet_amount {
- get {
- return ResourceManager.GetString("bet_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gwo.
- /// </summary>
- public static string Big {
- get {
- return ResourceManager.GetString("Big", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gwo Pitti.
- /// </summary>
- public static string bigsmall {
- get {
- return ResourceManager.GetString("bigsmall", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bill Order.
- /// </summary>
- public static string bill_order {
- get {
- return ResourceManager.GetString("bill_order", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bolet.
- /// </summary>
- public static string bolet {
- get {
- return ResourceManager.GetString("bolet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to <p><span style="white-space:pre-wrap;">1. Bolet is a game in Bee Lotto. Customers choose any 2 numbers from 00 - 99. The minimum ticket value is 1 HTG, the maximum is 1,000 HTG. Bolet's results are based on the NUMBER and WIN4 results of the New York lottery. <br><br>2. Bolet includes 3 prizes:<br>&nbsp; &nbsp; &nbsp;* Lot 1: includes the numbers in the 2nd and 3rd positions of the NUMBER draw. Winning ratio: buy 1 HTG win 50 HTG<br>&nbsp; &nbsp; &nbsp;* Lot 2: includes the numbers in the 1st and 2nd positi [rest of string was truncated]";.
- /// </summary>
- public static string bolet_content {
- get {
- return ResourceManager.GetString("bolet_content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to <p><span style=white-space:pre-wrap;"><strong><span style="font-size: 20px;">How to play Bolet</span></strong></span></p>.
- /// </summary>
- public static string bolet_how_to_play {
- get {
- return ResourceManager.GetString("bolet_how_to_play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou achte tike natcom Loto ak sikse..
- /// </summary>
- public static string brought_success {
- get {
- return ResourceManager.GetString("brought_success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte.
- /// </summary>
- public static string buy {
- get {
- return ResourceManager.GetString("buy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bolet .
- /// </summary>
- public static string buy_bolet {
- get {
- return ResourceManager.GetString("buy_bolet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Loto3.
- /// </summary>
- public static string buy_lotto3 {
- get {
- return ResourceManager.GetString("buy_lotto3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Maryaj.
- /// </summary>
- public static string buy_maryaj {
- get {
- return ResourceManager.GetString("buy_maryaj", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike.
- /// </summary>
- public static string buy_ticket {
- get {
- return ResourceManager.GetString("buy_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike.
- /// </summary>
- public static string buy_ticket1 {
- get {
- return ResourceManager.GetString("buy_ticket1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le.
- /// </summary>
- public static string buy_time {
- get {
- return ResourceManager.GetString("buy_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte.
- /// </summary>
- public static string buying {
- get {
- return ResourceManager.GetString("buying", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod sa pa ekziste.
- /// </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 Apel.
- /// </summary>
- public static string call {
- get {
- return ResourceManager.GetString("call", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anile.
- /// </summary>
- public static string cancel {
- get {
- return ResourceManager.GetString("cancel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan Kach.
- /// </summary>
- public static string cash_agent {
- get {
- return ResourceManager.GetString("cash_agent", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chanje lang.
- /// </summary>
- public static string change_language {
- get {
- return ResourceManager.GetString("change_language", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chanje Modpas.
- /// </summary>
- public static string change_password {
- get {
- return ResourceManager.GetString("change_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chanel .
- /// </summary>
- public static string channel_buy {
- get {
- return ResourceManager.GetString("channel_buy", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri verifye nimewo a oswa modpas la.
- /// </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 Chwazi nimewo.
- /// </summary>
- public static string choose_your_number {
- get {
- return ResourceManager.GetString("choose_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Efase.
- /// </summary>
- public static string clean_all {
- get {
- return ResourceManager.GetString("clean_all", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Femen.
- /// </summary>
- public static string close {
- get {
- return ResourceManager.GetString("close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime.
- /// </summary>
- public static string confirm {
- get {
- return ResourceManager.GetString("confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime OTP.
- /// </summary>
- public static string confirm_otp {
- get {
- return ResourceManager.GetString("confirm_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfiman peyman.
- /// </summary>
- public static string confirm_payment_1 {
- get {
- return ResourceManager.GetString("confirm_payment_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HTG pou achte.
- /// </summary>
- public static string confirm_payment_2 {
- get {
- return ResourceManager.GetString("confirm_payment_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre, Tike.
- /// </summary>
- public static string confirm_payment_3 {
- get {
- return ResourceManager.GetString("confirm_payment_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HTG, Le tiraj.
- /// </summary>
- public static string confirm_payment_4 {
- get {
- return ResourceManager.GetString("confirm_payment_4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre OTP.
- /// </summary>
- public static string confirm_payment_5 {
- get {
- return ResourceManager.GetString("confirm_payment_5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime tranzaksyon .
- /// </summary>
- public static string confirm_transaction {
- get {
- return ResourceManager.GetString("confirm_transaction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime transfe.
- /// </summary>
- public static string confirm_transfer_1 {
- get {
- return ResourceManager.GetString("confirm_transfer_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HTG kont lotri a .
- /// </summary>
- public static string confirm_transfer_2 {
- get {
- return ResourceManager.GetString("confirm_transfer_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre 0 HTG. Tanpri antre OTP:.
- /// </summary>
- public static string confirm_transfer_3 {
- get {
- return ResourceManager.GetString("confirm_transfer_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime nouvo modpas .
- /// </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 Kontakte nou.
- /// </summary>
- public static string contact_us {
- get {
- return ResourceManager.GetString("contact_us", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kontni.
- /// </summary>
- public static string content {
- get {
- return ResourceManager.GetString("content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kreye nouvo kont.
- /// </summary>
- public static string create_new_account {
- get {
- return ResourceManager.GetString("create_new_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kreyol.
- /// </summary>
- public static string creole {
- get {
- return ResourceManager.GetString("creole", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ou achte.
- /// </summary>
- public static string date_purchase {
- get {
- return ResourceManager.GetString("date_purchase", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat nesans.
- /// </summary>
- public static string dateOfBirth {
- get {
- return ResourceManager.GetString("dateOfBirth", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jou.
- /// </summary>
- public static string days {
- get {
- return ResourceManager.GetString("days", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detay peyman.
- /// </summary>
- public static string detail_of_payment {
- get {
- return ResourceManager.GetString("detail_of_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detay.
- /// </summary>
- public static string details {
- get {
- return ResourceManager.GetString("details", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat tiraj.
- /// </summary>
- public static string draw_date {
- get {
- return ResourceManager.GetString("draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le tiraj.
- /// </summary>
- public static string draw_time {
- get {
- return ResourceManager.GetString("draw_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tiraj.
- /// </summary>
- public static string drawn {
- get {
- return ResourceManager.GetString("drawn", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Angle.
- /// </summary>
- public static string english {
- get {
- return ResourceManager.GetString("english", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre montan 1 - 10,000 HTG.
- /// </summary>
- public static string enter_amount {
- get {
- return ResourceManager.GetString("enter_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre montan ( Maksimon 5000HTG/tranzaksyon).
- /// </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 Antre montan.
- /// </summary>
- public static string enter_amount1 {
- get {
- return ResourceManager.GetString("enter_amount1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre Dat Nesans.
- /// </summary>
- public static string enter_birthday {
- get {
- return ResourceManager.GetString("enter_birthday", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre 2 chif (00 a 99).
- /// </summary>
- public static string enter_digit_2 {
- get {
- return ResourceManager.GetString("enter_digit_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre 2 chif (000 a 999).
- /// </summary>
- public static string enter_digit_3 {
- get {
- return ResourceManager.GetString("enter_digit_3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre 2 chif (0000 a 9999).
- /// </summary>
- public static string enter_digit_4 {
- get {
- return ResourceManager.GetString("enter_digit_4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre lajan.
- /// </summary>
- public static string enter_money {
- get {
- return ResourceManager.GetString("enter_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre tout non ou .
- /// </summary>
- public static string enter_name {
- get {
- return ResourceManager.GetString("enter_name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre OTP .
- /// </summary>
- public static string enter_otp {
- get {
- return ResourceManager.GetString("enter_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre OTP a pou konekte.
- /// </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 Antre 6 chif modpas la.
- /// </summary>
- public static string enter_password {
- get {
- return ResourceManager.GetString("enter_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Antre yon nonb.
- /// </summary>
- public static string enter_phone_number {
- get {
- return ResourceManager.GetString("enter_phone_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mete yon nouvo modpas.
- /// </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 Mete ansye modpas la.
- /// </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 Gen yon ere. Tanpri eseye anko.
- /// </summary>
- public static string error_happened {
- get {
- return ResourceManager.GetString("error_happened", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gen yon ere. Tanpri eseye anko.
- /// </summary>
- public static string error_happened1 {
- get {
- return ResourceManager.GetString("error_happened1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pe.
- /// </summary>
- public static string Even {
- get {
- return ResourceManager.GetString("Even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Echek.
- /// </summary>
- public static string fail {
- get {
- return ResourceManager.GetString("fail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Echek.
- /// </summary>
- public static string fail_exclamation {
- get {
- return ResourceManager.GetString("fail_exclamation", 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 Chwazi 10 nimewo ant 1 ak 80 oswa chwazi opsyon Pick Rapid la. Achte tike w epi tann tiraj la..
- /// </summary>
- public static string faq_a1 {
- get {
- return ResourceManager.GetString("faq_a1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tiraj yo fet chak jou a 8:30 p.m. Vann tike yo sispann a 8:00 p.m..
- /// </summary>
- public static string faq_a2 {
- get {
- return ResourceManager.GetString("faq_a2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chans pou genyen premye pri Pick 10 la se 1 sou 8,911,711..
- /// </summary>
- public static string faq_a3 {
- get {
- return ResourceManager.GetString("faq_a3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Plis nimewo ou jwenn, se plis pri w ap genyen! <br/> Nan PICK 10, yo konpare 10 nimewo ou chwazi yo ak 10 nimewo rezilta ofisyel yo. Ou genyen le ou jwenn 6 nimewo oswa plis — e menm si ou pa jwenn yon nimewo, wap jwenn yon rekonpans !<br/><br/> 🎯 Jwenn 10 nimewo → Genyen Jakpot la<br/> 🔥 Jwenn 9 nimewo → Genyen 12,000 HTG<br/> 💰 Jwenn 8 nimewo → Genyen 600 HTG<br/> â Jwenn 7 nimewo → Genyen 160 HTG<br/> 🎉 Jwenn 6 nimewo → Genyen 20 HTG<br/> 🎠Jwenn 0 nimewo → Genyen 5 HTG<br/ [rest of string was truncated]";.
- /// </summary>
- public static string faq_millions_a4 {
- get {
- return ResourceManager.GetString("faq_millions_a4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi Gwo (41–80) oubyen Ti (01–40). Achte tike ou anvan 8e diswa epi tann tiraj la a 8e edmi diswa..
- /// </summary>
- public static string faq_millions_a5 {
- get {
- return ResourceManager.GetString("faq_millions_a5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Apre yo fin tire 20 nimewo, sistem nan verifye konbyen nimewo ki nan chak seri: <br/> - Si gen 13 nimewo oswa plis ant 41 ak 80, rezilta a GWO.<br/> - Si gen 13 nimewo oswa plis ant 01 ak 40, rezilta a TI.<br/><br/> Si opsyon ou chwazi a koresponn ak rezilta ofisyel la, ou genyen..
- /// </summary>
- public static string faq_millions_a6 {
- get {
- return ResourceManager.GetString("faq_millions_a6", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi Pe oubyen Enpe. Achte tike ou anvan 8e diswa epi tann tiraj la a 8e edmi diswa..
- /// </summary>
- public static string faq_millions_a7 {
- get {
- return ResourceManager.GetString("faq_millions_a7", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to
- ///Apre yo fin tire 20 nimewo, sistem nan konte konbyen nimewo ki enpe oswa pe: <br/> - Si 15 nimewo oswa plis enpe, rezilta a se ENPE.<br/> - Si 15 nimewo oswa plis pe, rezilta a se PE.<br/><br/> Si opsyon ou chwazi a koresponn ak rezilta ofisel la, ou genyen..
- /// </summary>
- public static string faq_millions_a8 {
- get {
- return ResourceManager.GetString("faq_millions_a8", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konbyen nimewo ki Match mwen bezwen pou m genyen yon pri?.
- /// </summary>
- public static string faq_millions_q4 {
- get {
- return ResourceManager.GetString("faq_millions_q4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pou m jwe Gwo / Ti a?.
- /// </summary>
- public static string faq_millions_q5 {
- get {
- return ResourceManager.GetString("faq_millions_q5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pou m genyen nan jwet la gwo/ti ?.
- /// </summary>
- public static string faq_millions_q6 {
- get {
- return ResourceManager.GetString("faq_millions_q6", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to â“ Kijan pou m jwe jwet Pe/Enpe a?.
- /// </summary>
- public static string faq_millions_q7 {
- get {
- return ResourceManager.GetString("faq_millions_q7", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to â“ Kijan pou m genyen nan jwet Pe/Enpe a?.
- /// </summary>
- public static string faq_millions_q8 {
- get {
- return ResourceManager.GetString("faq_millions_q8", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe Pick 10?.
- /// </summary>
- public static string faq_q1 {
- get {
- return ResourceManager.GetString("faq_q1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ki le tiraj Pick 10 yo ap fet?.
- /// </summary>
- public static string faq_q2 {
- get {
- return ResourceManager.GetString("faq_q2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ki chans ki genyen pou genyen gwo pri a?.
- /// </summary>
- public static string faq_q3 {
- get {
- return ResourceManager.GetString("faq_q3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Plis nimewo ou jwenn, se plis pri w ap genyen! <br/> Nan PICK 10, yo konpare 10 nimewo ou chwazi yo ak 10 nimewo rezilta ofisyel yo. Ou genyen le ou jwenn 6 nimewo oswa plis — e menm si ou pa jwenn yon nimewo, wap jwenn yon rekonpans !<br/><br/> 🎯 Jwenn 10 nimewo → Genyen Jakpot la<br/> 🔥 Jwenn 9 nimewo → Genyen 12,000 HTG<br/> 💰 Jwenn 8 nimewo → Genyen 600 HTG<br/> â Jwenn 7 nimewo → Genyen 160 HTG<br/> 🎉 Jwenn 6 nimewo → Genyen 20 HTG<br/> 🎠Jwenn 0 nimewo → Genyen 5 HTG<br/ [rest of string was truncated]";.
- /// </summary>
- public static string faq_v2_a4 {
- get {
- return ResourceManager.GetString("faq_v2_a4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi Gwo (41–80) oubyen Ti (01–40). Achte tike ou anvan 8e diswa epi tann tiraj la a 8e edmi diswa..
- /// </summary>
- public static string faq_v2_a5 {
- get {
- return ResourceManager.GetString("faq_v2_a5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Apre yo fin tire 20 nimewo, sistem nan verifye konbyen nimewo ki nan chak seri: <br/> - Si gen 13 nimewo oswa plis ant 41 ak 80, rezilta a GWO.<br/> - Si gen 13 nimewo oswa plis ant 01 ak 40, rezilta a TI.<br/><br/> Si opsyon ou chwazi a koresponn ak rezilta ofisyel la, ou genyen..
- /// </summary>
- public static string faq_v2_a6 {
- get {
- return ResourceManager.GetString("faq_v2_a6", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi Pe oubyen Enpe. Achte tike ou anvan 8e diswa epi tann tiraj la a 8e edmi diswa..
- /// </summary>
- public static string faq_v2_a7 {
- get {
- return ResourceManager.GetString("faq_v2_a7", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to
- ///Apre yo fin tire 20 nimewo, sistem nan konte konbyen nimewo ki enpe oswa pe: <br/> - Si 15 nimewo oswa plis enpe, rezilta a se ENPE.<br/> - Si 15 nimewo oswa plis pe, rezilta a se PE.<br/><br/> Si opsyon ou chwazi a koresponn ak rezilta ofisel la, ou genyen..
- /// </summary>
- public static string faq_v2_a8 {
- get {
- return ResourceManager.GetString("faq_v2_a8", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konbyen nimewo ki Match mwen bezwen pou m genyen yon pri?.
- /// </summary>
- public static string faq_v2_q4 {
- get {
- return ResourceManager.GetString("faq_v2_q4", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pou m jwe Gwo / Ti a?.
- /// </summary>
- public static string faq_v2_q5 {
- get {
- return ResourceManager.GetString("faq_v2_q5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pou m genyen nan jwet la gwo/ti ?.
- /// </summary>
- public static string faq_v2_q6 {
- get {
- return ResourceManager.GetString("faq_v2_q6", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to â“ Kijan pou m jwe jwet Pe/Enpe a?.
- /// </summary>
- public static string faq_v2_q7 {
- get {
- return ResourceManager.GetString("faq_v2_q7", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to â“ Kijan pou m genyen nan jwet Pe/Enpe a?.
- /// </summary>
- public static string faq_v2_q8 {
- get {
- return ResourceManager.GetString("faq_v2_q8", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre.
- /// </summary>
- public static string fee {
- get {
- return ResourceManager.GetString("fee", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre transfe.
- /// </summary>
- public static string fee_tranfer {
- get {
- return ResourceManager.GetString("fee_tranfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre Modpas ou .
- /// </summary>
- public static string fill_password {
- get {
- return ResourceManager.GetString("fill_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre nimewo telefon ou .
- /// </summary>
- public static string fill_phone {
- get {
- return ResourceManager.GetString("fill_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre nimewo ou .
- /// </summary>
- public static string fill_your_number {
- get {
- return ResourceManager.GetString("fill_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lotri Florida.
- /// </summary>
- public static string florida_lottery {
- get {
- return ResourceManager.GetString("florida_lottery", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Blye modpas.
- /// </summary>
- public static string forgot_password {
- get {
- return ResourceManager.GetString("forgot_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gratis.
- /// </summary>
- public static string free {
- get {
- return ResourceManager.GetString("free", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Soti nan.
- /// </summary>
- public static string from {
- get {
- return ResourceManager.GetString("from", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere sou nimewo ou .
- /// </summary>
- public static string from_your_number {
- get {
- return ResourceManager.GetString("from_your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Non konple a pa bon.
- /// </summary>
- public static string fullname_not_valid {
- get {
- return ResourceManager.GetString("fullname_not_valid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jwenn OTP.
- /// </summary>
- public static string get_otp1 {
- get {
- return ResourceManager.GetString("get_otp1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Komanse.
- /// </summary>
- public static string get_started {
- get {
- return ResourceManager.GetString("get_started", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gen chans pouw genyen.
- /// </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 Istorik.
- /// </summary>
- public static string history {
- get {
- return ResourceManager.GetString("history", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Akey.
- /// </summary>
- public static string home {
- get {
- return ResourceManager.GetString("home", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Paj akey.
- /// </summary>
- public static string home_page {
- get {
- return ResourceManager.GetString("home_page", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to E.
- /// </summary>
- public static string hours {
- get {
- return ResourceManager.GetString("hours", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe?.
- /// </summary>
- public static string how_to_play {
- get {
- return ResourceManager.GetString("how_to_play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe Mega Bet?.
- /// </summary>
- public static string how_to_play_megabet {
- get {
- return ResourceManager.GetString("how_to_play_megabet", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe Milyone?.
- /// </summary>
- public static string how_to_play_millionair {
- get {
- return ResourceManager.GetString("how_to_play_millionair", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe Pick 10.
- /// </summary>
- public static string how_to_play_pick10 {
- get {
- return ResourceManager.GetString("how_to_play_pick10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sistem nan ap travay.
- /// </summary>
- public static string in_blacklist {
- get {
- return ResourceManager.GetString("in_blacklist", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo ou pou tiraj nan dat:.
- /// </summary>
- public static string in_draw_date {
- get {
- return ResourceManager.GetString("in_draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Koneksyon an pa bon.
- /// </summary>
- public static string internet_error {
- get {
- return ResourceManager.GetString("internet_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prim Jakpot.
- /// </summary>
- public static string jackpot_prize {
- get {
- return ResourceManager.GetString("jackpot_prize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 100.000 HTG jodia !.
- /// </summary>
- public static string jackpot_today_htg {
- get {
- return ResourceManager.GetString("jackpot_today_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lang.
- /// </summary>
- public static string language {
- get {
- return ResourceManager.GetString("language", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konekte.
- /// </summary>
- public static string login {
- get {
- return ResourceManager.GetString("login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Koneksyon echwe akoz move modpas.
- /// </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 Dekonekte.
- /// </summary>
- public static string logout {
- get {
- return ResourceManager.GetString("logout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to se yon jwet Bolet, Maryaj ak Lotto3, rezilta jwet lotri Nouyok ak Florid. Chwazi nimewo ou yo epi tann yo anonse ganyan an. Ou ka voye lajan ou genyen an sou balans prensipal ou oswa Natcash. Bon chans!.
- /// </summary>
- public static string loto_des_millions {
- get {
- return ResourceManager.GetString("loto_des_millions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to se yon jwet Bolet, Maryaj ak Lotto3, rezilta jwet lotri Nouyok ak Florid. Chwazi nimewo ou yo epi tann yo anonse ganyan an. Ou ka voye lajan ou genyen an sou balans prensipal ou oswa Natcash. Bon chans!.
- /// </summary>
- public static string loto_des_v2 {
- get {
- return ResourceManager.GetString("loto_des_v2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lotto3.
- /// </summary>
- public static string lotto3 {
- get {
- return ResourceManager.GetString("lotto3", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to <p><span style="white-space:pre-wrap;">1. Bolet se yon jwet nan Bee Lotto. Kliyan yo chwazi nenpot 2 nimewo ant 00 ak 99. Vale minimom tike a se 1 HTG, maksimom nan se 1,000 HTG. Rezilta Bolet yo baze sou rezilta NIMEWO ak WIN4 nan lotri Nouyok la. <br><br>2. Bolet gen ladan l 3 pri:<br>* Lo 1: gen ladan l nimewo ki nan 2yem ak 3yem pozisyon tiraj NIMEWO a. Rapo genyen: achte 1 HTG genyen 50 HTG<br>* Lo 2: gen ladan l nimewo ki nan 1ye ak 2yem pozisyon tiraj WIN4 la. Rapo genyen: achte 1 HTG genyen 20 HTG<b [rest of string was truncated]";.
- /// </summary>
- public static string lotto3_content {
- get {
- return ResourceManager.GetString("lotto3_content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to <p><span style="white-space:pre-wrap;">1. Bolet se yon jwet nan Bee Lotto. Kliyan yo chwazi nenpot 2 nimewo ant 00 ak 99. Vale minimom tike a se 1 HTG, maksimom nan se 1,000 HTG. Rezilta Bolet yo baze sou rezilta NIMEWO ak WIN4 nan lotri Nouyok la. <br><br>2. Bolet gen ladan l 3 pri:<br>* Lo 1: gen ladan l nimewo ki nan 2yem ak 3yem pozisyon tiraj NIMEWO a. Rapo genyen: achte 1 HTG genyen 50 HTG<br>* Lo 2: gen ladan l nimewo ki nan 1ye ak 2yem pozisyon tiraj WIN4 la. Rapo genyen: achte 1 HTG genyen 20 HTG<b [rest of string was truncated]";.
- /// </summary>
- public static string marya_content {
- get {
- return ResourceManager.GetString("marya_content", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Maryaj.
- /// </summary>
- public static string maryaj {
- get {
- return ResourceManager.GetString("maryaj", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Maksimom nimewo nan yon tike se 5. Tanpri eseye anko..
- /// </summary>
- public static string max_5_tickets {
- get {
- return ResourceManager.GetString("max_5_tickets", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Trnasfe maksimom nan se 10,000 HTG. Tanpri eseye anko..
- /// </summary>
- public static string max_transfer_1000HTG {
- get {
- return ResourceManager.GetString("max_transfer_1000HTG", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to MEGA.
- /// </summary>
- public static string MEGA {
- get {
- return ResourceManager.GetString("MEGA", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Milyone.
- /// </summary>
- public static string millionair {
- get {
- return ResourceManager.GetString("millionair", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont Loto.
- /// </summary>
- public static string millions_account_name {
- get {
- return ResourceManager.GetString("millions_account_name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ajoute tike.
- /// </summary>
- public static string millions_add_more_ticket {
- get {
- return ResourceManager.GetString("millions_add_more_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tout.
- /// </summary>
- public static string millions_all {
- get {
- return ResourceManager.GetString("millions_all", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan.
- /// </summary>
- public static string millions_amount {
- get {
- return ResourceManager.GetString("millions_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan (HTG).
- /// </summary>
- public static string millions_amount_htg {
- get {
- return ResourceManager.GetString("millions_amount_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan ou te jwe .
- /// </summary>
- public static string millions_amount_played {
- get {
- return ResourceManager.GetString("millions_amount_played", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan ou genyen.
- /// </summary>
- public static string millions_amount_won {
- get {
- return ResourceManager.GetString("millions_amount_won", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tounen.
- /// </summary>
- public static string millions_back {
- get {
- return ResourceManager.GetString("millions_back", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gwo PITI .
- /// </summary>
- public static string millions_big_small {
- get {
- return ResourceManager.GetString("millions_big_small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bill Code.
- /// </summary>
- public static string millions_bill_code {
- get {
- return ResourceManager.GetString("millions_bill_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte pick 10.
- /// </summary>
- public static string millions_buy_classic_pick_10 {
- get {
- return ResourceManager.GetString("millions_buy_classic_pick_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte tike.
- /// </summary>
- public static string millions_buy_ticket_label {
- get {
- return ResourceManager.GetString("millions_buy_ticket_label", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anile.
- /// </summary>
- public static string millions_cancel {
- get {
- return ResourceManager.GetString("millions_cancel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chanel achte.
- /// </summary>
- public static string millions_channel {
- get {
- return ResourceManager.GetString("millions_channel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi kont.
- /// </summary>
- public static string millions_choose_account {
- get {
- return ResourceManager.GetString("millions_choose_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pack 10.
- /// </summary>
- public static string millions_classic_pick_10 {
- get {
- return ResourceManager.GetString("millions_classic_pick_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Femen.
- /// </summary>
- public static string millions_close {
- get {
- return ResourceManager.GetString("millions_close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pyes.
- /// </summary>
- public static string millions_coins {
- get {
- return ResourceManager.GetString("millions_coins", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime.
- /// </summary>
- public static string millions_confirm {
- get {
- return ResourceManager.GetString("millions_confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime.
- /// </summary>
- public static string millions_confirm_purchase {
- get {
- return ResourceManager.GetString("millions_confirm_purchase", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime tranzaksyon.
- /// </summary>
- public static string millions_confirm_transaction {
- get {
- return ResourceManager.GetString("millions_confirm_transaction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kontinye.
- /// </summary>
- public static string millions_continue {
- get {
- return ResourceManager.GetString("millions_continue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konveti.
- /// </summary>
- public static string millions_convert {
- get {
- return ResourceManager.GetString("millions_convert", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ak le.
- /// </summary>
- public static string millions_date_and_time {
- get {
- return ResourceManager.GetString("millions_date_and_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Efase.
- /// </summary>
- public static string millions_delete {
- get {
- return ResourceManager.GetString("millions_delete", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detay.
- /// </summary>
- public static string millions_detail {
- get {
- return ResourceManager.GetString("millions_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat tiraj .
- /// </summary>
- public static string millions_draw_date {
- get {
- return ResourceManager.GetString("millions_draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modifye.
- /// </summary>
- public static string millions_edit {
- get {
- return ResourceManager.GetString("millions_edit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri konfime epi antre OTP a pou kontinye..
- /// </summary>
- public static string millions_enter_otp_proceed {
- get {
- return ResourceManager.GetString("millions_enter_otp_proceed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre yon montan ki valab..
- /// </summary>
- public static string millions_enter_valid_amount {
- get {
- return ResourceManager.GetString("millions_enter_valid_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Estimasyon pri tike.
- /// </summary>
- public static string millions_estimated_ticket_price {
- get {
- return ResourceManager.GetString("millions_estimated_ticket_price", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gratis.
- /// </summary>
- public static string millions_fee {
- get {
- return ResourceManager.GetString("millions_fee", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre.
- /// </summary>
- public static string millions_free {
- get {
- return ResourceManager.GetString("millions_free", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Non jwet .
- /// </summary>
- public static string millions_game {
- get {
- return ResourceManager.GetString("millions_game", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jwet sa bloke.
- /// </summary>
- public static string millions_game_locked {
- get {
- return ResourceManager.GetString("millions_game_locked", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HTG.
- /// </summary>
- public static string millions_htg {
- get {
- return ResourceManager.GetString("millions_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Balans sa pa sifi..
- /// </summary>
- public static string millions_insufficient_balance {
- get {
- return ResourceManager.GetString("millions_insufficient_balance", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 30.000.000 HTG jodia !.
- /// </summary>
- public static string millions_jackpot_today_htg {
- get {
- return ResourceManager.GetString("millions_jackpot_today_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Money Ticket.
- /// </summary>
- public static string millions_money_ticket {
- get {
- return ResourceManager.GetString("millions_money_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan ou genyen.
- /// </summary>
- public static string millions_money_win {
- get {
- return ResourceManager.GetString("millions_money_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pedi.
- /// </summary>
- public static string millions_not_win {
- get {
- return ResourceManager.GetString("millions_not_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe Pe.
- /// </summary>
- public static string millions_odd_even {
- get {
- return ResourceManager.GetString("millions_odd_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri konfime epi antre OTP a pou kontinye..
- /// </summary>
- public static string millions_otp_instruction {
- get {
- return ResourceManager.GetString("millions_otp_instruction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP ale ak sikse. Tanpri verifye mesaj ou!.
- /// </summary>
- public static string millions_otp_sent_successfully {
- get {
- return ResourceManager.GetString("millions_otp_sent_successfully", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kole.
- /// </summary>
- public static string millions_paste {
- get {
- return ResourceManager.GetString("millions_paste", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peman.
- /// </summary>
- public static string millions_payment {
- get {
- return ResourceManager.GetString("millions_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Metod peman.
- /// </summary>
- public static string millions_payment_method {
- get {
- return ResourceManager.GetString("millions_payment_method", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan 💸 an transfere ak sikse!.
- /// </summary>
- public static string millions_payment_successfully {
- get {
- return ResourceManager.GetString("millions_payment_successfully", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prim ou ka genyen.
- /// </summary>
- public static string millions_prize_if_win {
- get {
- return ResourceManager.GetString("millions_prize_if_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ou achte a.
- /// </summary>
- public static string millions_purchase_date {
- get {
- return ResourceManager.GetString("millions_purchase_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo destinate.
- /// </summary>
- public static string millions_receiver_phone {
- get {
- return ResourceManager.GetString("millions_receiver_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Demand nouvo OTP.
- /// </summary>
- public static string millions_request_new_otp {
- get {
- return ResourceManager.GetString("millions_request_new_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tou.
- /// </summary>
- public static string millions_round {
- get {
- return ResourceManager.GetString("millions_round", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pou jwet sa a, sistem nan ap konte konbyen nan 20 nimewo ki tire yo ki:.
- /// </summary>
- public static string millions_rule_drawn_count_desc {
- get {
- return ResourceManager.GetString("millions_rule_drawn_count_desc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anrejistre.
- /// </summary>
- public static string millions_save {
- get {
- return ResourceManager.GetString("millions_save", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string millions_select {
- get {
- return ResourceManager.GetString("millions_select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi nimewo chans.
- /// </summary>
- public static string millions_select_10_lucky_numbers {
- get {
- return ResourceManager.GetString("millions_select_10_lucky_numbers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string millions_selected {
- get {
- return ResourceManager.GetString("millions_selected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi tike.
- /// </summary>
- public static string millions_selected_ticket {
- get {
- return ResourceManager.GetString("millions_selected_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo espedite.
- /// </summary>
- public static string millions_sender_phone {
- get {
- return ResourceManager.GetString("millions_sender_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Touche pouw we detay .
- /// </summary>
- public static string millions_tap_to_see_detail {
- get {
- return ResourceManager.GetString("millions_tap_to_see_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike.
- /// </summary>
- public static string millions_ticket {
- get {
- return ResourceManager.GetString("millions_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod tike.
- /// </summary>
- public static string millions_ticket_code {
- get {
- return ResourceManager.GetString("millions_ticket_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to detay tike .
- /// </summary>
- public static string millions_ticket_detail {
- get {
- return ResourceManager.GetString("millions_ticket_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to tike sa pa valid.
- /// </summary>
- public static string millions_ticket_not_valid {
- get {
- return ResourceManager.GetString("millions_ticket_not_valid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere.
- /// </summary>
- public static string millions_transfer {
- get {
- return ResourceManager.GetString("millions_transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezilta yo disponib.
- /// </summary>
- public static string millions_updating_results {
- get {
- return ResourceManager.GetString("millions_updating_results", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tann.
- /// </summary>
- public static string millions_waiting {
- get {
- return ResourceManager.GetString("millions_waiting", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Genyen.
- /// </summary>
- public static string millions_win {
- get {
- return ResourceManager.GetString("millions_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sa ou chwazi.
- /// </summary>
- public static string millions_you_choose {
- get {
- return ResourceManager.GetString("millions_you_choose", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string millions_your_choice {
- get {
- return ResourceManager.GetString("millions_your_choice", 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 Minit.
- /// </summary>
- public static string Minutes {
- get {
- return ResourceManager.GetString("Minutes", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan.
- /// </summary>
- public static string money {
- get {
- return ResourceManager.GetString("money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan transfe (HTG).
- /// </summary>
- public static string money_on {
- get {
- return ResourceManager.GetString("money_on", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Plis.
- /// </summary>
- public static string more {
- get {
- return ResourceManager.GetString("more", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OU pako konekte. Tanpri konekte..
- /// </summary>
- public static string must_login {
- get {
- return ResourceManager.GetString("must_login", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike mwen.
- /// </summary>
- public static string my_ticket {
- get {
- return ResourceManager.GetString("my_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Non .
- /// </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 Tanpri verifye nouvo modpas ou.
- /// </summary>
- public static string new_pass_error {
- get {
- return ResourceManager.GetString("new_pass_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lotri New York .
- /// </summary>
- public static string new_york_lottery {
- get {
- return ResourceManager.GetString("new_york_lottery", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pwochen.
- /// </summary>
- public static string next {
- get {
- return ResourceManager.GetString("next", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pwochen tiraj.
- /// </summary>
- public static string next_draw {
- get {
- return ResourceManager.GetString("next_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pwochen tou.
- /// </summary>
- public static string next_round {
- get {
- return ResourceManager.GetString("next_round", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oupa gen pemisyon pou sa.
- /// </summary>
- public static string no_permission {
- get {
- return ResourceManager.GetString("no_permission", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pagen rezilta.
- /// </summary>
- public static string no_results_found {
- get {
- return ResourceManager.GetString("no_results_found", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pa defini.
- /// </summary>
- public static string not_defined {
- get {
- return ResourceManager.GetString("not_defined", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tiraj .
- /// </summary>
- public static string not_draw {
- get {
- return ResourceManager.GetString("not_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oupa gen ase lajan sou kont lotri ou pou fe tranzaksyon sa.
- /// </summary>
- public static string not_enough_money {
- get {
- return ResourceManager.GetString("not_enough_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oupa gen ase lajan.
- /// </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 Ou pa resevwa OTP?.
- /// </summary>
- public static string not_get_otp {
- get {
- return ResourceManager.GetString("not_get_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Oupa ko gen kont natcash. Tanpri verifye kew gen kont Natcash..
- /// </summary>
- public static string not_register_natcash {
- get {
- return ResourceManager.GetString("not_register_natcash", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou pedi .
- /// </summary>
- public static string not_win {
- get {
- return ResourceManager.GetString("not_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Not: Sere modpas ou, piga pataje li ak moun .
- /// </summary>
- public static string note_password {
- get {
- return ResourceManager.GetString("note_password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo.
- /// </summary>
- public static string number {
- get {
- return ResourceManager.GetString("number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to nimewo tike.
- /// </summary>
- public static string Number_of_ticket {
- get {
- return ResourceManager.GetString("Number_of_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe.
- /// </summary>
- public static string Odd {
- get {
- return ResourceManager.GetString("Odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe Pe.
- /// </summary>
- public static string odd_even {
- get {
- return ResourceManager.GetString("odd_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe Pe.
- /// </summary>
- public static string oddeven {
- get {
- return ResourceManager.GetString("oddeven", 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 Chwazi montan (HTG).
- /// </summary>
- public static string or_select {
- get {
- return ResourceManager.GetString("or_select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Komand kod.
- /// </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 a pa bon.
- /// </summary>
- public static string otp_invalid {
- get {
- return ResourceManager.GetString("otp_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP ekspire.
- /// </summary>
- public static string otp_timeout {
- get {
- return ResourceManager.GetString("otp_timeout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Komand sa depase 5000 HTG. Tanpri verifye anko..
- /// </summary>
- public static string over_1000HTG_transfer {
- get {
- return ResourceManager.GetString("over_1000HTG_transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan an depase limit la..
- /// </summary>
- public static string over_each_exchange {
- get {
- return ResourceManager.GetString("over_each_exchange", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan an depase limit pou jounen an..
- /// </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 Envalid.
- /// </summary>
- public static string params_invalid {
- get {
- return ResourceManager.GetString("params_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 1. Antre 6 chif.
- /// </summary>
- public static string pass_tip_1 {
- get {
- return ResourceManager.GetString("pass_tip_1", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 2.Modpas: 0-9, dwe gen karakte espesyal ( pa dwe gen espas).
- /// </summary>
- public static string pass_tip_2 {
- get {
- return ResourceManager.GetString("pass_tip_2", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modpas.
- /// </summary>
- public static string password {
- get {
- return ResourceManager.GetString("password", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modpas.
- /// </summary>
- public static string password_tip {
- get {
- return ResourceManager.GetString("password_tip", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peyman.
- /// </summary>
- public static string payment {
- get {
- return ResourceManager.GetString("payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont peyman.
- /// </summary>
- public static string payment_account {
- get {
- return ResourceManager.GetString("payment_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Metod peyman.
- /// </summary>
- public static string payment_mothod {
- get {
- return ResourceManager.GetString("payment_mothod", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo telefon nan pa bon.
- /// </summary>
- public static string phone_invalid {
- get {
- return ResourceManager.GetString("phone_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo telefon.
- /// </summary>
- public static string phone_number {
- get {
- return ResourceManager.GetString("phone_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pick .
- /// </summary>
- public static string Pick {
- get {
- return ResourceManager.GetString("Pick", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo_pick.
- /// </summary>
- public static string Pick_Number {
- get {
- return ResourceManager.GetString("Pick_Number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pick 11.
- /// </summary>
- public static string pick10 {
- get {
- return ResourceManager.GetString("pick10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to PIN sa pa bon .
- /// </summary>
- public static string pin_wrong {
- get {
- return ResourceManager.GetString("pin_wrong", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jwe.
- /// </summary>
- public static string play {
- get {
- return ResourceManager.GetString("play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pri.
- /// </summary>
- public static string price {
- get {
- return ResourceManager.GetString("price", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pwofil.
- /// </summary>
- public static string profile {
- get {
- return ResourceManager.GetString("profile", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod pwomosyon sa pa aktive.
- /// </summary>
- public static string promotion_code_inactive {
- get {
- return ResourceManager.GetString("promotion_code_inactive", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod pwomosyon sa pa bon.
- /// </summary>
- public static string promotion_code_invalid {
- get {
- return ResourceManager.GetString("promotion_code_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod pwomosyon sa itilize deja.
- /// </summary>
- public static string promotion_code_used {
- get {
- return ResourceManager.GetString("promotion_code_used", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kesyon .
- /// </summary>
- public static string question {
- get {
- return ResourceManager.GetString("question", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pick rapid.
- /// </summary>
- public static string quick_pick {
- get {
- return ResourceManager.GetString("quick_pick", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to O aza.
- /// </summary>
- public static string Random {
- get {
- return ResourceManager.GetString("Random", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Destinate.
- /// </summary>
- public static string receiver {
- get {
- return ResourceManager.GetString("receiver", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to bay lot nimewo Natcom.
- /// </summary>
- public static string receiver_phone {
- get {
- return ResourceManager.GetString("receiver_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anrejistre.
- /// </summary>
- public static string register {
- get {
- return ResourceManager.GetString("register", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Refe komand.
- /// </summary>
- public static string reorder {
- get {
- return ResourceManager.GetString("reorder", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Voye OTP a anko.
- /// </summary>
- public static string resend_otp {
- get {
- return ResourceManager.GetString("resend_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP a .
- /// </summary>
- public static string resent_otp {
- get {
- return ResourceManager.GetString("resent_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri reyinisyalize OTP a apre 1 minit.
- /// </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 Rezilta.
- /// </summary>
- public static string results {
- get {
- return ResourceManager.GetString("results", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tounen nan paj akey.
- /// </summary>
- public static string return_home_page {
- get {
- return ResourceManager.GetString("return_home_page", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Verifye peyman.
- /// </summary>
- public static string review_payment {
- get {
- return ResourceManager.GetString("review_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 2 - 80.
- /// </summary>
- public static string rule_01_80 {
- get {
- return ResourceManager.GetString("rule_01_80", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 10 HTG.
- /// </summary>
- public static string rule_10_htg {
- get {
- return ResourceManager.GetString("rule_10_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 10 nimewo ap chwazi pami 20 tiraj la.
- /// </summary>
- public static string rule_10_taken_from {
- get {
- return ResourceManager.GetString("rule_10_taken_from", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 14 nimewo pami <span class="font-[900]">01-40</span>.
- /// </summary>
- public static string rule_13_from_01_40 {
- get {
- return ResourceManager.GetString("rule_13_from_01_40", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 13 nimewo pami <span class="font-[900]">41-80</span>.
- /// </summary>
- public static string rule_13_from_41_80 {
- get {
- return ResourceManager.GetString("rule_13_from_41_80", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to (Jwe 13 nimewo).
- /// </summary>
- public static string rule_13_numbers_game {
- get {
- return ResourceManager.GetString("rule_13_numbers_game", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 13nimewo oswa plis ant <span class="text-[#0BA01A] font-bold">01–40</span> → PITI genyen.
- /// </summary>
- public static string rule_13_or_more_01_40 {
- get {
- return ResourceManager.GetString("rule_13_or_more_01_40", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 14 nimewo oswa plis ant <span class="text-[#0BA01A] font-bold">41–80</span> → Gwo genyen.
- /// </summary>
- public static string rule_13_or_more_41_80 {
- get {
- return ResourceManager.GetString("rule_13_or_more_41_80", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to (Jwe 15 nimewo).
- /// </summary>
- public static string rule_15_numbers_game {
- get {
- return ResourceManager.GetString("rule_15_numbers_game", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 20:30 chak jou.
- /// </summary>
- public static string rule_20_00_daily {
- get {
- return ResourceManager.GetString("rule_20_00_daily", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 20:30 chak jou.
- /// </summary>
- public static string rule_20_30_daily {
- get {
- return ResourceManager.GetString("rule_20_30_daily", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 20 nimewo pa tiraj.
- /// </summary>
- public static string rule_20_per_draw {
- get {
- return ResourceManager.GetString("rule_20_per_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tout tike Pe yo genyen..
- /// </summary>
- public static string rule_all_even_win {
- get {
- return ResourceManager.GetString("rule_all_even_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tout tike Enpe yo genyen..
- /// </summary>
- public static string rule_all_odd_win {
- get {
- return ResourceManager.GetString("rule_all_odd_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Basic<br>Pick.
- /// </summary>
- public static string rule_basic_pick {
- get {
- return ResourceManager.GetString("rule_basic_pick", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gwo Piti.
- /// </summary>
- public static string rule_big_small {
- get {
- return ResourceManager.GetString("rule_big_small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Big Small Prize.
- /// </summary>
- public static string rule_bs_prize {
- get {
- return ResourceManager.GetString("rule_bs_prize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to GWO PITI – REGLEMAN .
- /// </summary>
- public static string rule_bs_winning_rule {
- get {
- return ResourceManager.GetString("rule_bs_winning_rule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le ou achte yon tike, chwazi swa GWO oswa TI..
- /// </summary>
- public static string rule_buy_big_small {
- get {
- return ResourceManager.GetString("rule_buy_big_small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi 10 nimewo ant 1 - 80 .
- /// </summary>
- public static string rule_choose_10 {
- get {
- return ResourceManager.GetString("rule_choose_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pick 10.
- /// </summary>
- public static string rule_classic_pick_10 {
- get {
- return ResourceManager.GetString("rule_classic_pick_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kondisyon.
- /// </summary>
- public static string rule_condition {
- get {
- return ResourceManager.GetString("rule_condition", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Deskripsyon.
- /// </summary>
- public static string rule_description {
- get {
- return ResourceManager.GetString("rule_description", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo doub otorize.
- /// </summary>
- public static string rule_duplicate_allowed {
- get {
- return ResourceManager.GetString("rule_duplicate_allowed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chak ganyan ap resevwa 100,00 HTG.
- /// </summary>
- public static string rule_each_receives {
- get {
- return ResourceManager.GetString("rule_each_receives", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo Pe.
- /// </summary>
- public static string rule_even_numbers {
- get {
- return ResourceManager.GetString("rule_even_numbers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo Pe <span class="font-[900]">0,2,4,6,8</span>.
- /// </summary>
- public static string rule_even_numbers_02468 {
- get {
- return ResourceManager.GetString("rule_even_numbers_02468", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ekzanp.
- /// </summary>
- public static string rule_example {
- get {
- return ResourceManager.GetString("rule_example", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 16 nimewo pe.
- /// </summary>
- public static string rule_example_15_even {
- get {
- return ResourceManager.GetString("rule_example_15_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 16 nimewo enpe.
- /// </summary>
- public static string rule_example_16_odd {
- get {
- return ResourceManager.GetString("rule_example_16_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 4 nimewo pe.
- /// </summary>
- public static string rule_example_4_even {
- get {
- return ResourceManager.GetString("rule_example_4_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 4 nimewo enpe.
- /// </summary>
- public static string rule_example_5_odd {
- get {
- return ResourceManager.GetString("rule_example_5_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ekzanp:Parye 50 HTG → Resevwa 100 HTG..
- /// </summary>
- public static string rule_example_bet_50 {
- get {
- return ResourceManager.GetString("rule_example_bet_50", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ekzamp: Parye 50 HTG → Resevwa 200 HTG..
- /// </summary>
- public static string rule_example_bet_50_4x {
- get {
- return ResourceManager.GetString("rule_example_bet_50_4x", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to II. GAME 1 – BASIC PICK 11.
- /// </summary>
- public static string rule_game_1_title {
- get {
- return ResourceManager.GetString("rule_game_1_title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ENFOMASYON JENERAL.
- /// </summary>
- public static string rule_general_info {
- get {
- return ResourceManager.GetString("rule_general_info", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan yo detemine rezilta gayan an.
- /// </summary>
- public static string rule_how_result_determined {
- get {
- return ResourceManager.GetString("rule_how_result_determined", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to KILE TIKE OU A GENYEN.
- /// </summary>
- public static string rule_how_ticket_wins {
- get {
- return ResourceManager.GetString("rule_how_ticket_wins", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw jwe.
- /// </summary>
- public static string rule_how_to_play {
- get {
- return ResourceManager.GetString("rule_how_to_play", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kijan pouw genyen .
- /// </summary>
- public static string rule_how_to_win {
- get {
- return ResourceManager.GetString("rule_how_to_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike idantik otorize.
- /// </summary>
- public static string rule_identical_allowed {
- get {
- return ResourceManager.GetString("rule_identical_allowed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 13 nimewo pami 20 nimewo yo tire a soti nan seri a <span class="text-[#0BA01A] font-bold">01–40</span>,.
- /// </summary>
- public static string rule_if_13_01_40 {
- get {
- return ResourceManager.GetString("rule_if_13_01_40", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 13 nimewo pami 20 nimewo yo tire a soti nan seri a <span class="text-[#0BA01A] font-bold">41–80</span>,.
- /// </summary>
- public static string rule_if_13_41_80 {
- get {
- return ResourceManager.GetString("rule_if_13_41_80", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 15 nimewo oswa plis pami 20 nimewo yo tire a se nimewo pe,<br>the official result is <span class="font-bold text-[#A236C8]">EVEN</span>..
- /// </summary>
- public static string rule_if_15_even_result_even {
- get {
- return ResourceManager.GetString("rule_if_15_even_result_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 15 nimewo oswa plis pami 20 nimewo yo tiraj la se nimewo Enpe, <br>rezilta ofisyel la se<span class="font-bold text-[#A236C8]">ODD</span>..
- /// </summary>
- public static string rule_if_15_odd_result_odd {
- get {
- return ResourceManager.GetString("rule_if_15_odd_result_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 20 nimewo ki tire yo genyen 15 oswa plis <span class="font-bold">even</span> nimewo .
- /// </summary>
- public static string rule_if_20_contain_15_even {
- get {
- return ResourceManager.GetString("rule_if_20_contain_15_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 20 nimewo ki tire yo genyen 15 oswa plis nimewo enpe <span class="font-bold">odd</span> numbers.
- /// </summary>
- public static string rule_if_20_contain_15_odd {
- get {
- return ResourceManager.GetString("rule_if_20_contain_15_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si 20 nimewo yo tire a gen:.
- /// </summary>
- public static string rule_if_20_drawn_contain {
- get {
- return ResourceManager.GetString("rule_if_20_drawn_contain", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si > 10 Ganyan.
- /// </summary>
- public static string rule_if_gt_10 {
- get {
- return ResourceManager.GetString("rule_if_gt_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si ≤ 10 Ganyan.
- /// </summary>
- public static string rule_if_le_10 {
- get {
- return ResourceManager.GetString("rule_if_le_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si w ap fe yon peman preske le limit la:.
- /// </summary>
- public static string rule_if_making_payment {
- get {
- return ResourceManager.GetString("rule_if_making_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si ou te achte yon GWO tike:.
- /// </summary>
- public static string rule_if_purchased_big {
- get {
- return ResourceManager.GetString("rule_if_purchased_big", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si ou te achte yon tike Pe:.
- /// </summary>
- public static string rule_if_purchased_even {
- get {
- return ResourceManager.GetString("rule_if_purchased_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si ou achte yon tike enpe:.
- /// </summary>
- public static string rule_if_purchased_odd {
- get {
- return ResourceManager.GetString("rule_if_purchased_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Si ou te achte yon tike Piti:.
- /// </summary>
- public static string rule_if_purchased_small {
- get {
- return ResourceManager.GetString("rule_if_purchased_small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Not enpotan.
- /// </summary>
- public static string rule_important_notes {
- get {
- return ResourceManager.GetString("rule_important_notes", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Atik.
- /// </summary>
- public static string rule_item {
- get {
- return ResourceManager.GetString("rule_item", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prim Jakpot.
- /// </summary>
- public static string rule_jackpot_prize {
- get {
- return ResourceManager.GetString("rule_jackpot_prize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Regleman Jakpot la.
- /// </summary>
- public static string rule_jackpot_rule {
- get {
- return ResourceManager.GetString("rule_jackpot_rule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Matche tout 10 nimewo & 9989.
- /// </summary>
- public static string rule_match_all_10 {
- get {
- return ResourceManager.GetString("rule_match_all_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Matche kantite nimewo kew kapab.
- /// </summary>
- public static string rule_match_as_many {
- get {
- return ResourceManager.GetString("rule_match_as_many", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pwochen tou.
- /// </summary>
- public static string rule_next_round {
- get {
- return ResourceManager.GetString("rule_next_round", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo ki soti.
- /// </summary>
- public static string rule_numbers_drawn {
- get {
- return ResourceManager.GetString("rule_numbers_drawn", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo matche.
- /// </summary>
- public static string rule_numbers_matches {
- get {
- return ResourceManager.GetString("rule_numbers_matches", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Objective..
- /// </summary>
- public static string rule_objective {
- get {
- return ResourceManager.GetString("rule_objective", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe Pe.
- /// </summary>
- public static string rule_odd_even {
- get {
- return ResourceManager.GetString("rule_odd_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo Enpe.
- /// </summary>
- public static string rule_odd_numbers {
- get {
- return ResourceManager.GetString("rule_odd_numbers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo enpe<span class="font-[900]">1,3,5,7,9</span>.
- /// </summary>
- public static string rule_odd_numbers_13579 {
- get {
- return ResourceManager.GetString("rule_odd_numbers_13579", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prim Enpe/Pe.
- /// </summary>
- public static string rule_oe_prize {
- get {
- return ResourceManager.GetString("rule_oe_prize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to ENPE/PE &#8211; REG GANYAN.
- /// </summary>
- public static string rule_oe_winning_rule {
- get {
- return ResourceManager.GetString("rule_oe_winning_rule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou ka chwazi yon sel opsyon (PE oswa ENPE) pou chak tike..
- /// </summary>
- public static string rule_only_one_option {
- get {
- return ResourceManager.GetString("rule_only_one_option", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peman ki fet pita ap anrejistre otomatikman pou pwochen tiraj la..
- /// </summary>
- public static string rule_payment_later {
- get {
- return ResourceManager.GetString("rule_payment_later", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peman ki fet ak sikseap konplete nan yon ti tan apre 8e diswa pou tiraj aktyel la..
- /// </summary>
- public static string rule_payment_shortly {
- get {
- return ResourceManager.GetString("rule_payment_shortly", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jwe kounye a.
- /// </summary>
- public static string rule_play_now {
- get {
- return ResourceManager.GetString("rule_play_now", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 💰12,000 HTG..
- /// </summary>
- public static string rule_prize_12k {
- get {
- return ResourceManager.GetString("rule_prize_12k", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 💰160 HTG..
- /// </summary>
- public static string rule_prize_160 {
- get {
- return ResourceManager.GetString("rule_prize_160", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 💰20 HTG..
- /// </summary>
- public static string rule_prize_20 {
- get {
- return ResourceManager.GetString("rule_prize_20", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 💰5 HTG..
- /// </summary>
- public static string rule_prize_5 {
- get {
- return ResourceManager.GetString("rule_prize_5", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 💰600 HTG..
- /// </summary>
- public static string rule_prize_600 {
- get {
- return ResourceManager.GetString("rule_prize_600", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prize Pool.
- /// </summary>
- public static string rule_prize_pool {
- get {
- return ResourceManager.GetString("rule_prize_pool", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prize Pool (HTG).
- /// </summary>
- public static string rule_prize_pool_htg {
- get {
- return ResourceManager.GetString("rule_prize_pool_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to PRIZE POOL.
- /// </summary>
- public static string rule_prize_pool_title {
- get {
- return ResourceManager.GetString("rule_prize_pool_title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte chanel.
- /// </summary>
- public static string rule_purchase_channels {
- get {
- return ResourceManager.GetString("rule_purchase_channels", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Regleman tiraj .
- /// </summary>
- public static string rule_regulation_draw {
- get {
- return ResourceManager.GetString("rule_regulation_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezilta chanel .
- /// </summary>
- public static string rule_result_channel {
- get {
- return ResourceManager.GetString("rule_result_channel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezilta ofisyel la se <span class="text-[#A236C8]">EVEN</span>..
- /// </summary>
- public static string rule_result_is_even {
- get {
- return ResourceManager.GetString("rule_result_is_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to
- ///Rezilta ofisyel la se <span class="text-[#A236C8]">ODD</span>..
- /// </summary>
- public static string rule_result_is_odd {
- get {
- return ResourceManager.GetString("rule_result_is_odd", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le pou vann tike a 20:00 chakjou .
- /// </summary>
- public static string rule_sales_close {
- get {
- return ResourceManager.GetString("rule_sales_close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le ak limit pou vann tike.
- /// </summary>
- public static string rule_sales_cutoff {
- get {
- return ResourceManager.GetString("rule_sales_cutoff", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string rule_select {
- get {
- return ResourceManager.GetString("rule_select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string rule_selected {
- get {
- return ResourceManager.GetString("rule_selected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi metod.
- /// </summary>
- public static string rule_selection_method {
- get {
- return ResourceManager.GetString("rule_selection_method", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to 1,000,000 HTG ap separe egal bay ganyan yo .
- /// </summary>
- public static string rule_shared_equally {
- get {
- return ResourceManager.GetString("rule_shared_equally", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Standard Prize Structure.
- /// </summary>
- public static string rule_standard_prize {
- get {
- return ResourceManager.GetString("rule_standard_prize", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Apre tiraj la, sistem nan ap verifye 20 nimewo yo te tire yo..
- /// </summary>
- public static string rule_system_check_20 {
- get {
- return ResourceManager.GetString("rule_system_check_20", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezilta final ak Kont ofisyel sistem nan.
- /// </summary>
- public static string rule_system_count_final {
- get {
- return ResourceManager.GetString("rule_system_count_final", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to
- ///Pou jwet sa a, sistem nan ap konte konbyen nan 20 nimewo ki tire yo ki:.
- /// </summary>
- public static string rule_system_count_how_many {
- get {
- return ResourceManager.GetString("rule_system_count_how_many", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sistem nan tire 20 nimewo soti nan 01 rive nan 80..
- /// </summary>
- public static string rule_system_draws_20_01_80 {
- get {
- return ResourceManager.GetString("rule_system_draws_20_01_80", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le ofisyel sistem nan ap detemine si tike a valid.
- /// </summary>
- public static string rule_system_time {
- get {
- return ResourceManager.GetString("rule_system_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike denye le.
- /// </summary>
- public static string rule_ticket_closure {
- get {
- return ResourceManager.GetString("rule_ticket_closure", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pri tike.
- /// </summary>
- public static string rule_ticket_price {
- get {
- return ResourceManager.GetString("rule_ticket_price", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le.
- /// </summary>
- public static string rule_time {
- get {
- return ResourceManager.GetString("rule_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reg.
- /// </summary>
- public static string rule_title {
- get {
- return ResourceManager.GetString("rule_title", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo total.
- /// </summary>
- public static string rule_total_numbers {
- get {
- return ResourceManager.GetString("rule_total_numbers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to USSD / Web / APP.
- /// </summary>
- public static string rule_ussd_web_app {
- get {
- return ResourceManager.GetString("rule_ussd_web_app", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chak tike valab pou yon sel tiraj..
- /// </summary>
- public static string rule_valid_one_draw {
- get {
- return ResourceManager.GetString("rule_valid_one_draw", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Web / APP.
- /// </summary>
- public static string rule_web_app {
- get {
- return ResourceManager.GetString("rule_web_app", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike ki genyen yo resevwa 2 fwa kantite lajan yo te parye a..
- /// </summary>
- public static string rule_win_receive_2x {
- get {
- return ResourceManager.GetString("rule_win_receive_2x", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike ki genyen yo ap resevwa 4 fwa kantite lajan yo te parye a..
- /// </summary>
- public static string rule_win_receive_4x {
- get {
- return ResourceManager.GetString("rule_win_receive_4x", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kondisyon.
- /// </summary>
- public static string rule_winning_condition {
- get {
- return ResourceManager.GetString("rule_winning_condition", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Regleman ganyan.
- /// </summary>
- public static string rule_winning_rule {
- get {
- return ResourceManager.GetString("rule_winning_rule", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Wi.
- /// </summary>
- public static string rule_yes {
- get {
- return ResourceManager.GetString("rule_yes", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou genyen.
- /// </summary>
- public static string rule_you_win {
- get {
- return ResourceManager.GetString("rule_you_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Regleman .
- /// </summary>
- public static string rules {
- get {
- return ResourceManager.GetString("rules", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rechech.
- /// </summary>
- public static string search {
- get {
- return ResourceManager.GetString("search", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Secs.
- /// </summary>
- public static string seconds {
- get {
- return ResourceManager.GetString("seconds", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Secs.
- /// </summary>
- public static string Secs {
- get {
- return ResourceManager.GetString("Secs", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Plis.
- /// </summary>
- public static string see_more {
- get {
- return ResourceManager.GetString("see_more", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere sou kont ou .
- /// </summary>
- public static string select_an_account {
- get {
- return ResourceManager.GetString("select_an_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Espedite.
- /// </summary>
- public static string sender {
- get {
- return ResourceManager.GetString("sender", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo ou.
- /// </summary>
- public static string sender_phone {
- get {
- return ResourceManager.GetString("sender_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sote .
- /// </summary>
- public static string skip_to_guest {
- get {
- return ResourceManager.GetString("skip_to_guest", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Piti.
- /// </summary>
- public static string Small {
- get {
- return ResourceManager.GetString("Small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Piti Gwo.
- /// </summary>
- public static string small_big {
- get {
- return ResourceManager.GetString("small_big", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Komanse itilize loto.
- /// </summary>
- public static string start_using_bee_loto {
- get {
- return ResourceManager.GetString("start_using_bee_loto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Estati.
- /// </summary>
- public static string status {
- get {
- return ResourceManager.GetString("status", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Reyisi.
- /// </summary>
- public static string success {
- get {
- return ResourceManager.GetString("success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to System nan okipe. Tanpri eseye apre 1 minit.
- /// </summary>
- public static string system_update {
- get {
- return ResourceManager.GetString("system_update", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ou achte a.
- /// </summary>
- public static string term {
- get {
- return ResourceManager.GetString("term", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kondisyon sa espire. Tanpri eseye anko .
- /// </summary>
- public static string term_timeout {
- get {
- return ResourceManager.GetString("term_timeout", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tem ak kondisyon.
- /// </summary>
- public static string terms_and_conditions {
- get {
- return ResourceManager.GetString("terms_and_conditions", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mesi!.
- /// </summary>
- public static string thank_you {
- get {
- return ResourceManager.GetString("thank_you", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike.
- /// </summary>
- public static string ticket {
- get {
- return ResourceManager.GetString("ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bill code.
- /// </summary>
- public static string ticket_code {
- get {
- return ResourceManager.GetString("ticket_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike a pa bon.
- /// </summary>
- public static string ticket_invalid {
- get {
- return ResourceManager.GetString("ticket_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Le.
- /// </summary>
- public static string time {
- get {
- return ResourceManager.GetString("time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to a.
- /// </summary>
- public static string to {
- get {
- return ResourceManager.GetString("to", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to bay lot nimewo Natcom.
- /// </summary>
- public static string to_other_natcom_number {
- get {
- return ResourceManager.GetString("to_other_natcom_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Envalid.
- /// </summary>
- public static string token_invalid {
- get {
- return ResourceManager.GetString("token_invalid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan total .
- /// </summary>
- public static string total_money {
- get {
- return ResourceManager.GetString("total_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peman Total.
- /// </summary>
- public static string total_payment {
- get {
- return ResourceManager.GetString("total_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike total.
- /// </summary>
- public static string total_ticket {
- get {
- return ResourceManager.GetString("total_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Retire lajan.
- /// </summary>
- public static string tranfer_win_money {
- get {
- return ResourceManager.GetString("tranfer_win_money", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfe.
- /// </summary>
- public static string transfer {
- get {
- return ResourceManager.GetString("transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Metod transfe.
- /// </summary>
- public static string transfer_method {
- get {
- return ResourceManager.GetString("transfer_method", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan an transfer ak sikse!.
- /// </summary>
- public static string transfer_success {
- get {
- return ResourceManager.GetString("transfer_success", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Esye anko.
- /// </summary>
- public static string try_again {
- get {
- return ResourceManager.GetString("try_again", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tip.
- /// </summary>
- public static string type {
- get {
- return ResourceManager.GetString("type", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mizajou.
- /// </summary>
- public static string update {
- get {
- return ResourceManager.GetString("update", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gen yon ere. Nan mizajou pwofil la.
- /// </summary>
- public static string update_profile_error {
- get {
- return ResourceManager.GetString("update_profile_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Mizajou reyisi.
- /// </summary>
- public static string update_successful {
- get {
- return ResourceManager.GetString("update_successful", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Echek foto itilizate .
- /// </summary>
- public static string user_avatar_error {
- get {
- return ResourceManager.GetString("user_avatar_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont Loto.
- /// </summary>
- public static string v2_account_name {
- get {
- return ResourceManager.GetString("v2_account_name", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ajoute tike.
- /// </summary>
- public static string v2_add_more_ticket {
- get {
- return ResourceManager.GetString("v2_add_more_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tout.
- /// </summary>
- public static string v2_all {
- get {
- return ResourceManager.GetString("v2_all", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan.
- /// </summary>
- public static string v2_amount {
- get {
- return ResourceManager.GetString("v2_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan (HTG).
- /// </summary>
- public static string v2_amount_htg {
- get {
- return ResourceManager.GetString("v2_amount_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan ou te jwe .
- /// </summary>
- public static string v2_amount_played {
- get {
- return ResourceManager.GetString("v2_amount_played", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Montan ou genyen.
- /// </summary>
- public static string v2_amount_won {
- get {
- return ResourceManager.GetString("v2_amount_won", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tounen.
- /// </summary>
- public static string v2_back {
- get {
- return ResourceManager.GetString("v2_back", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gwo PITI .
- /// </summary>
- public static string v2_big_small {
- get {
- return ResourceManager.GetString("v2_big_small", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Bill Code.
- /// </summary>
- public static string v2_bill_code {
- get {
- return ResourceManager.GetString("v2_bill_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte pick 10.
- /// </summary>
- public static string v2_buy_classic_pick_10 {
- get {
- return ResourceManager.GetString("v2_buy_classic_pick_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Achte tike.
- /// </summary>
- public static string v2_buy_ticket_label {
- get {
- return ResourceManager.GetString("v2_buy_ticket_label", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anile.
- /// </summary>
- public static string v2_cancel {
- get {
- return ResourceManager.GetString("v2_cancel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chanel achte.
- /// </summary>
- public static string v2_channel {
- get {
- return ResourceManager.GetString("v2_channel", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi kont.
- /// </summary>
- public static string v2_choose_account {
- get {
- return ResourceManager.GetString("v2_choose_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pack 10.
- /// </summary>
- public static string v2_classic_pick_10 {
- get {
- return ResourceManager.GetString("v2_classic_pick_10", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Femen.
- /// </summary>
- public static string v2_close {
- get {
- return ResourceManager.GetString("v2_close", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pyes.
- /// </summary>
- public static string v2_coins {
- get {
- return ResourceManager.GetString("v2_coins", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime.
- /// </summary>
- public static string v2_confirm {
- get {
- return ResourceManager.GetString("v2_confirm", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime.
- /// </summary>
- public static string v2_confirm_purchase {
- get {
- return ResourceManager.GetString("v2_confirm_purchase", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konfime tranzaksyon.
- /// </summary>
- public static string v2_confirm_transaction {
- get {
- return ResourceManager.GetString("v2_confirm_transaction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kontinye.
- /// </summary>
- public static string v2_continue {
- get {
- return ResourceManager.GetString("v2_continue", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Konveti.
- /// </summary>
- public static string v2_convert {
- get {
- return ResourceManager.GetString("v2_convert", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ak le.
- /// </summary>
- public static string v2_date_and_time {
- get {
- return ResourceManager.GetString("v2_date_and_time", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Efase.
- /// </summary>
- public static string v2_delete {
- get {
- return ResourceManager.GetString("v2_delete", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Detay.
- /// </summary>
- public static string v2_detail {
- get {
- return ResourceManager.GetString("v2_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat tiraj .
- /// </summary>
- public static string v2_draw_date {
- get {
- return ResourceManager.GetString("v2_draw_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modifye.
- /// </summary>
- public static string v2_edit {
- get {
- return ResourceManager.GetString("v2_edit", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri konfime epi antre OTP a pou kontinye..
- /// </summary>
- public static string v2_enter_otp_proceed {
- get {
- return ResourceManager.GetString("v2_enter_otp_proceed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri antre yon montan ki valab..
- /// </summary>
- public static string v2_enter_valid_amount {
- get {
- return ResourceManager.GetString("v2_enter_valid_amount", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Estimasyon pri tike.
- /// </summary>
- public static string v2_estimated_ticket_price {
- get {
- return ResourceManager.GetString("v2_estimated_ticket_price", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Gratis.
- /// </summary>
- public static string v2_fee {
- get {
- return ResourceManager.GetString("v2_fee", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Fre.
- /// </summary>
- public static string v2_free {
- get {
- return ResourceManager.GetString("v2_free", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Non jwet .
- /// </summary>
- public static string v2_game {
- get {
- return ResourceManager.GetString("v2_game", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Jwet sa bloke.
- /// </summary>
- public static string v2_game_locked {
- get {
- return ResourceManager.GetString("v2_game_locked", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to HTG.
- /// </summary>
- public static string v2_htg {
- get {
- return ResourceManager.GetString("v2_htg", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Balans sa pa sifi..
- /// </summary>
- public static string v2_insufficient_balance {
- get {
- return ResourceManager.GetString("v2_insufficient_balance", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Money Ticket.
- /// </summary>
- public static string v2_money_ticket {
- get {
- return ResourceManager.GetString("v2_money_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan ou genyen.
- /// </summary>
- public static string v2_money_win {
- get {
- return ResourceManager.GetString("v2_money_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pedi.
- /// </summary>
- public static string v2_not_win {
- get {
- return ResourceManager.GetString("v2_not_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Enpe Pe.
- /// </summary>
- public static string v2_odd_even {
- get {
- return ResourceManager.GetString("v2_odd_even", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tanpri konfime epi antre OTP a pou kontinye..
- /// </summary>
- public static string v2_otp_instruction {
- get {
- return ResourceManager.GetString("v2_otp_instruction", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to OTP ale ak sikse. Tanpri verifye mesaj ou!.
- /// </summary>
- public static string v2_otp_sent_successfully {
- get {
- return ResourceManager.GetString("v2_otp_sent_successfully", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kole.
- /// </summary>
- public static string v2_paste {
- get {
- return ResourceManager.GetString("v2_paste", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Peman.
- /// </summary>
- public static string v2_payment {
- get {
- return ResourceManager.GetString("v2_payment", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Metod peman.
- /// </summary>
- public static string v2_payment_method {
- get {
- return ResourceManager.GetString("v2_payment_method", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Lajan 💸 an transfere ak sikse!.
- /// </summary>
- public static string v2_payment_successfully {
- get {
- return ResourceManager.GetString("v2_payment_successfully", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Prim ou ka genyen.
- /// </summary>
- public static string v2_prize_if_win {
- get {
- return ResourceManager.GetString("v2_prize_if_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Dat ou achte a.
- /// </summary>
- public static string v2_purchase_date {
- get {
- return ResourceManager.GetString("v2_purchase_date", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo destinate.
- /// </summary>
- public static string v2_receiver_phone {
- get {
- return ResourceManager.GetString("v2_receiver_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Demand nouvo OTP.
- /// </summary>
- public static string v2_request_new_otp {
- get {
- return ResourceManager.GetString("v2_request_new_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tou.
- /// </summary>
- public static string v2_round {
- get {
- return ResourceManager.GetString("v2_round", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Pou jwet sa a, sistem nan ap konte konbyen nan 20 nimewo ki tire yo ki:.
- /// </summary>
- public static string v2_rule_drawn_count_desc {
- get {
- return ResourceManager.GetString("v2_rule_drawn_count_desc", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Anrejistre.
- /// </summary>
- public static string v2_save {
- get {
- return ResourceManager.GetString("v2_save", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string v2_select {
- get {
- return ResourceManager.GetString("v2_select", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi nimewo chans.
- /// </summary>
- public static string v2_select_10_lucky_numbers {
- get {
- return ResourceManager.GetString("v2_select_10_lucky_numbers", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string v2_selected {
- get {
- return ResourceManager.GetString("v2_selected", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi tike.
- /// </summary>
- public static string v2_selected_ticket {
- get {
- return ResourceManager.GetString("v2_selected_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo espedite.
- /// </summary>
- public static string v2_sender_phone {
- get {
- return ResourceManager.GetString("v2_sender_phone", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Touche pouw we detay .
- /// </summary>
- public static string v2_tap_to_see_detail {
- get {
- return ResourceManager.GetString("v2_tap_to_see_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tike.
- /// </summary>
- public static string v2_ticket {
- get {
- return ResourceManager.GetString("v2_ticket", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kod tike.
- /// </summary>
- public static string v2_ticket_code {
- get {
- return ResourceManager.GetString("v2_ticket_code", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to detay tike .
- /// </summary>
- public static string v2_ticket_detail {
- get {
- return ResourceManager.GetString("v2_ticket_detail", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to tike sa pa valid.
- /// </summary>
- public static string v2_ticket_not_valid {
- get {
- return ResourceManager.GetString("v2_ticket_not_valid", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Transfere.
- /// </summary>
- public static string v2_transfer {
- get {
- return ResourceManager.GetString("v2_transfer", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Rezilta yo disponib.
- /// </summary>
- public static string v2_updating_results {
- get {
- return ResourceManager.GetString("v2_updating_results", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tann.
- /// </summary>
- public static string v2_waiting {
- get {
- return ResourceManager.GetString("v2_waiting", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Genyen.
- /// </summary>
- public static string v2_win {
- get {
- return ResourceManager.GetString("v2_win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Sa ou chwazi.
- /// </summary>
- public static string v2_you_choose {
- get {
- return ResourceManager.GetString("v2_you_choose", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Chwazi.
- /// </summary>
- public static string v2_your_choice {
- get {
- return ResourceManager.GetString("v2_your_choice", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Veifye kont ou pou konekte.
- /// </summary>
- public static string verify_otp {
- get {
- return ResourceManager.GetString("verify_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tann rezilta a.
- /// </summary>
- public static string waiting_for_result {
- get {
- return ResourceManager.GetString("waiting_for_result", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont sa pa aktive.
- /// </summary>
- public static string wallet_not_active {
- get {
- return ResourceManager.GetString("wallet_not_active", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Tranzaksyon sa pa reyisi, ou pa gen kont Natcash. Pou kreye kont Natcash, fe *202# epi swiv enstriksyon yo. Mesi!.
- /// </summary>
- public static string wallet_not_existed {
- get {
- return ResourceManager.GetString("wallet_not_existed", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Welcome to Bee Lotto.
- /// </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 Genyen.
- /// </summary>
- public static string win {
- get {
- return ResourceManager.GetString("win", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Kont ganyan.
- /// </summary>
- public static string winning_account {
- get {
- return ResourceManager.GetString("winning_account", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Modpas la pa bon. Tanpri eseye anko.
- /// </summary>
- public static string wrong_otp {
- get {
- return ResourceManager.GetString("wrong_otp", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou anrejistre kont Loto ou ak sikse.
- /// </summary>
- public static string you_have_registered_Bee_loto {
- get {
- return ResourceManager.GetString("you_have_registered_Bee_loto", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Ou genyen, prim ou a se:.
- /// </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 Ou pa ko gen ase laj pou sevis sa .
- /// </summary>
- public static string younger_to_use {
- get {
- return ResourceManager.GetString("younger_to_use", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Nimewo ou .
- /// </summary>
- public static string your_number {
- get {
- return ResourceManager.GetString("your_number", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to Komand sa depase 5000 HTG. Tanpri verifye anko..
- /// </summary>
- public static string your_password_reset {
- get {
- return ResourceManager.GetString("your_password_reset", resourceCulture);
- }
- }
- }
- }
|