Lang.Designer.cs 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace LotteryWebApp.Languages {
  11. using System;
  12. /// <summary>
  13. /// A strongly-typed resource class, for looking up localized strings, etc.
  14. /// </summary>
  15. // This class was auto-generated by the StronglyTypedResourceBuilder
  16. // class via a tool like ResGen or Visual Studio.
  17. // To add or remove a member, edit your .ResX file then rerun ResGen
  18. // with the /str option, or rebuild your VS project.
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public class Lang {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal Lang() {
  27. }
  28. /// <summary>
  29. /// Returns the cached ResourceManager instance used by this class.
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LotteryWebApp.Languages.Lang", typeof(Lang).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// Overrides the current thread's CurrentUICulture property for all
  43. /// resource lookups using this strongly typed resource class.
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// Looks up a localized string similar to Kontinua.
  56. /// </summary>
  57. public static string _continue {
  58. get {
  59. return ResourceManager.GetString("continue", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// Looks up a localized string similar to Ita-boot nia númeru taka metin. Favor hein to&apos;o tuku 5:00 atu koko fali..
  64. /// </summary>
  65. public static string account_lock {
  66. get {
  67. return ResourceManager.GetString("account_lock", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// Looks up a localized string similar to Ita-boot nia konta la eziste.
  72. /// </summary>
  73. public static string account_not_existed {
  74. get {
  75. return ResourceManager.GetString("account_not_existed", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// Looks up a localized string similar to Hatama tan.
  80. /// </summary>
  81. public static string add_more_order {
  82. get {
  83. return ResourceManager.GetString("add_more_order", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// Looks up a localized string similar to Iha ona konta ida?.
  88. /// </summary>
  89. public static string already_have_an_account {
  90. get {
  91. return ResourceManager.GetString("already_have_an_account", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// Looks up a localized string similar to Montante.
  96. /// </summary>
  97. public static string amount {
  98. get {
  99. return ResourceManager.GetString("amount", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// Looks up a localized string similar to Montante atu transfere.
  104. /// </summary>
  105. public static string amount_transfered {
  106. get {
  107. return ResourceManager.GetString("amount_transfered", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// Looks up a localized string similar to Enxe automatiku.
  112. /// </summary>
  113. public static string auto_fill {
  114. get {
  115. return ResourceManager.GetString("auto_fill", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// Looks up a localized string similar to Konta Báziku.
  120. /// </summary>
  121. public static string basic_account {
  122. get {
  123. return ResourceManager.GetString("basic_account", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// Looks up a localized string similar to Montante Manan.
  128. /// </summary>
  129. public static string bee_account {
  130. get {
  131. return ResourceManager.GetString("bee_account", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// Looks up a localized string similar to Toto lottery maka jogu 4D, 3D, 2D, rezultadu sira husi jogu lotaria
  136. ///singapur nian. Hili ita boot nia numeru sira no hein atu fo sai
  137. ///kombinasaun ne&apos;ebe maka manan. Ita boot bele konverte montante
  138. ///manan nian ba karteira MOSAN. Boa susesu!.
  139. /// </summary>
  140. public static string bee_loto_des {
  141. get {
  142. return ResourceManager.GetString("bee_loto_des", resourceCulture);
  143. }
  144. }
  145. /// <summary>
  146. /// Looks up a localized string similar to Lotaria Toto hanesan servisu lotaria foun husi Telemor nian.
  147. ///Bele joga liu husi USSD ou WEB/APP.
  148. ///Ami sei ajuda ita-boot kria konta ida iha etapa fasil balun..
  149. /// </summary>
  150. public static string bee_loto_intro {
  151. get {
  152. return ResourceManager.GetString("bee_loto_intro", resourceCulture);
  153. }
  154. }
  155. /// <summary>
  156. /// Looks up a localized string similar to Montante Aposta nian.
  157. /// </summary>
  158. public static string bet_amount {
  159. get {
  160. return ResourceManager.GetString("bet_amount", resourceCulture);
  161. }
  162. }
  163. /// <summary>
  164. /// Looks up a localized string similar to Orden Proposta Lei nian.
  165. /// </summary>
  166. public static string bill_order {
  167. get {
  168. return ResourceManager.GetString("bill_order", resourceCulture);
  169. }
  170. }
  171. /// <summary>
  172. /// Looks up a localized string similar to You have bought tickets successfully..
  173. /// </summary>
  174. public static string brought_success {
  175. get {
  176. return ResourceManager.GetString("brought_success", resourceCulture);
  177. }
  178. }
  179. /// <summary>
  180. /// Looks up a localized string similar to Hola.
  181. /// </summary>
  182. public static string buy {
  183. get {
  184. return ResourceManager.GetString("buy", resourceCulture);
  185. }
  186. }
  187. /// <summary>
  188. /// Looks up a localized string similar to sosa-billete.
  189. /// </summary>
  190. public static string buy_ticket {
  191. get {
  192. return ResourceManager.GetString("buy_ticket", resourceCulture);
  193. }
  194. }
  195. /// <summary>
  196. /// Looks up a localized string similar to Sosa billete Singapura %gameName% iha %drawDate%.
  197. /// </summary>
  198. public static string buy_ticket_content {
  199. get {
  200. return ResourceManager.GetString("buy_ticket_content", resourceCulture);
  201. }
  202. }
  203. /// <summary>
  204. /// Looks up a localized string similar to Sosa billete.
  205. /// </summary>
  206. public static string buy_ticket1 {
  207. get {
  208. return ResourceManager.GetString("buy_ticket1", resourceCulture);
  209. }
  210. }
  211. /// <summary>
  212. /// Looks up a localized string similar to Tempu sosa.
  213. /// </summary>
  214. public static string buy_time {
  215. get {
  216. return ResourceManager.GetString("buy_time", resourceCulture);
  217. }
  218. }
  219. /// <summary>
  220. /// Looks up a localized string similar to Sosa.
  221. /// </summary>
  222. public static string buying {
  223. get {
  224. return ResourceManager.GetString("buying", resourceCulture);
  225. }
  226. }
  227. /// <summary>
  228. /// Looks up a localized string similar to Kódigu sosa nian la eziste.
  229. /// </summary>
  230. public static string buying_code_not_existed {
  231. get {
  232. return ResourceManager.GetString("buying_code_not_existed", resourceCulture);
  233. }
  234. }
  235. /// <summary>
  236. /// Looks up a localized string similar to Bolu.
  237. /// </summary>
  238. public static string call {
  239. get {
  240. return ResourceManager.GetString("call", resourceCulture);
  241. }
  242. }
  243. /// <summary>
  244. /// Looks up a localized string similar to Kansela.
  245. /// </summary>
  246. public static string cancel {
  247. get {
  248. return ResourceManager.GetString("cancel", resourceCulture);
  249. }
  250. }
  251. /// <summary>
  252. /// Looks up a localized string similar to Ajente Kaixa.
  253. /// </summary>
  254. public static string cash_agent {
  255. get {
  256. return ResourceManager.GetString("cash_agent", resourceCulture);
  257. }
  258. }
  259. /// <summary>
  260. /// Looks up a localized string similar to Troka Lian.
  261. /// </summary>
  262. public static string change_language {
  263. get {
  264. return ResourceManager.GetString("change_language", resourceCulture);
  265. }
  266. }
  267. /// <summary>
  268. /// Looks up a localized string similar to Troka ita-boot nia senha.
  269. /// </summary>
  270. public static string change_password {
  271. get {
  272. return ResourceManager.GetString("change_password", resourceCulture);
  273. }
  274. }
  275. /// <summary>
  276. /// Looks up a localized string similar to Sosa iha kanál.
  277. /// </summary>
  278. public static string channel_buy {
  279. get {
  280. return ResourceManager.GetString("channel_buy", resourceCulture);
  281. }
  282. }
  283. /// <summary>
  284. /// Looks up a localized string similar to Favor verifika númeru ka senha.
  285. /// </summary>
  286. public static string check_phone_or_password {
  287. get {
  288. return ResourceManager.GetString("check_phone_or_password", resourceCulture);
  289. }
  290. }
  291. /// <summary>
  292. /// Looks up a localized string similar to Hili Ita-boot nia númeru.
  293. /// </summary>
  294. public static string choose_your_number {
  295. get {
  296. return ResourceManager.GetString("choose_your_number", resourceCulture);
  297. }
  298. }
  299. /// <summary>
  300. /// Looks up a localized string similar to Hamoos hotu.
  301. /// </summary>
  302. public static string clean_all {
  303. get {
  304. return ResourceManager.GetString("clean_all", resourceCulture);
  305. }
  306. }
  307. /// <summary>
  308. /// Looks up a localized string similar to Taka.
  309. /// </summary>
  310. public static string close {
  311. get {
  312. return ResourceManager.GetString("close", resourceCulture);
  313. }
  314. }
  315. /// <summary>
  316. /// Looks up a localized string similar to Konfirma.
  317. /// </summary>
  318. public static string confirm {
  319. get {
  320. return ResourceManager.GetString("confirm", resourceCulture);
  321. }
  322. }
  323. /// <summary>
  324. /// Looks up a localized string similar to Konfirma OTP.
  325. /// </summary>
  326. public static string confirm_otp {
  327. get {
  328. return ResourceManager.GetString("confirm_otp", resourceCulture);
  329. }
  330. }
  331. /// <summary>
  332. /// Looks up a localized string similar to Konfirma pagamentu %totalPayment% sentavus (%totalMoney%
  333. ///sentavus atu sosa billete, taxa %totalFee% sentavus), data oras
  334. ///%drawTime%.Favor prenxe OTP:.
  335. /// </summary>
  336. public static string confirm_payment {
  337. get {
  338. return ResourceManager.GetString("confirm_payment", resourceCulture);
  339. }
  340. }
  341. /// <summary>
  342. /// Looks up a localized string similar to Konfirma pagamentu.
  343. /// </summary>
  344. public static string confirm_payment_1 {
  345. get {
  346. return ResourceManager.GetString("confirm_payment_1", resourceCulture);
  347. }
  348. }
  349. /// <summary>
  350. /// Looks up a localized string similar to Sentavu atu sosa.
  351. /// </summary>
  352. public static string confirm_payment_2 {
  353. get {
  354. return ResourceManager.GetString("confirm_payment_2", resourceCulture);
  355. }
  356. }
  357. /// <summary>
  358. /// Looks up a localized string similar to Billete, taxa.
  359. /// </summary>
  360. public static string confirm_payment_3 {
  361. get {
  362. return ResourceManager.GetString("confirm_payment_3", resourceCulture);
  363. }
  364. }
  365. /// <summary>
  366. /// Looks up a localized string similar to Sentavu, tempu sorteiu.
  367. /// </summary>
  368. public static string confirm_payment_4 {
  369. get {
  370. return ResourceManager.GetString("confirm_payment_4", resourceCulture);
  371. }
  372. }
  373. /// <summary>
  374. /// Looks up a localized string similar to . Favor prenxe OTP:.
  375. /// </summary>
  376. public static string confirm_payment_5 {
  377. get {
  378. return ResourceManager.GetString("confirm_payment_5", resourceCulture);
  379. }
  380. }
  381. /// <summary>
  382. /// Looks up a localized string similar to Konfirma tranzasaun.
  383. /// </summary>
  384. public static string confirm_transaction {
  385. get {
  386. return ResourceManager.GetString("confirm_transaction", resourceCulture);
  387. }
  388. }
  389. /// <summary>
  390. /// Looks up a localized string similar to Konfirma transferénsia.
  391. /// </summary>
  392. public static string confirm_transfer_1 {
  393. get {
  394. return ResourceManager.GetString("confirm_transfer_1", resourceCulture);
  395. }
  396. }
  397. /// <summary>
  398. /// Looks up a localized string similar to Sentavu sira husi konta Lotaria nian ba.
  399. /// </summary>
  400. public static string confirm_transfer_2 {
  401. get {
  402. return ResourceManager.GetString("confirm_transfer_2", resourceCulture);
  403. }
  404. }
  405. /// <summary>
  406. /// Looks up a localized string similar to , taxa 0 Sentavu. Favor prenxe OTP:.
  407. /// </summary>
  408. public static string confirm_transfer_3 {
  409. get {
  410. return ResourceManager.GetString("confirm_transfer_3", resourceCulture);
  411. }
  412. }
  413. /// <summary>
  414. /// Looks up a localized string similar to Konfirma Ita-boot nia senha foun.
  415. /// </summary>
  416. public static string confirm_your_new_password {
  417. get {
  418. return ResourceManager.GetString("confirm_your_new_password", resourceCulture);
  419. }
  420. }
  421. /// <summary>
  422. /// Looks up a localized string similar to CONSOLATION PRIZES.
  423. /// </summary>
  424. public static string ConsolationPrize {
  425. get {
  426. return ResourceManager.GetString("ConsolationPrize", resourceCulture);
  427. }
  428. }
  429. /// <summary>
  430. /// Looks up a localized string similar to Kontaktu ami.
  431. /// </summary>
  432. public static string contact_us {
  433. get {
  434. return ResourceManager.GetString("contact_us", resourceCulture);
  435. }
  436. }
  437. /// <summary>
  438. /// Looks up a localized string similar to Konteudu.
  439. /// </summary>
  440. public static string content {
  441. get {
  442. return ResourceManager.GetString("content", resourceCulture);
  443. }
  444. }
  445. /// <summary>
  446. /// Looks up a localized string similar to Kria konta foun.
  447. /// </summary>
  448. public static string create_new_account {
  449. get {
  450. return ResourceManager.GetString("create_new_account", resourceCulture);
  451. }
  452. }
  453. /// <summary>
  454. /// Looks up a localized string similar to Centavos.
  455. /// </summary>
  456. public static string curency {
  457. get {
  458. return ResourceManager.GetString("curency", resourceCulture);
  459. }
  460. }
  461. /// <summary>
  462. /// Looks up a localized string similar to Data sosa nian.
  463. /// </summary>
  464. public static string date_purchase {
  465. get {
  466. return ResourceManager.GetString("date_purchase", resourceCulture);
  467. }
  468. }
  469. /// <summary>
  470. /// Looks up a localized string similar to Date of birth.
  471. /// </summary>
  472. public static string dateOfBirth {
  473. get {
  474. return ResourceManager.GetString("dateOfBirth", resourceCulture);
  475. }
  476. }
  477. /// <summary>
  478. /// Looks up a localized string similar to loron.
  479. /// </summary>
  480. public static string days {
  481. get {
  482. return ResourceManager.GetString("days", resourceCulture);
  483. }
  484. }
  485. /// <summary>
  486. /// Looks up a localized string similar to Detalho sira Pagamentu nian.
  487. /// </summary>
  488. public static string detail_of_payment {
  489. get {
  490. return ResourceManager.GetString("detail_of_payment", resourceCulture);
  491. }
  492. }
  493. /// <summary>
  494. /// Looks up a localized string similar to Detalho.
  495. /// </summary>
  496. public static string details {
  497. get {
  498. return ResourceManager.GetString("details", resourceCulture);
  499. }
  500. }
  501. /// <summary>
  502. /// Looks up a localized string similar to Data Sorteiu.
  503. /// </summary>
  504. public static string draw_date {
  505. get {
  506. return ResourceManager.GetString("draw_date", resourceCulture);
  507. }
  508. }
  509. /// <summary>
  510. /// Looks up a localized string similar to Tempu Sorteiu.
  511. /// </summary>
  512. public static string draw_time {
  513. get {
  514. return ResourceManager.GetString("draw_time", resourceCulture);
  515. }
  516. }
  517. /// <summary>
  518. /// Looks up a localized string similar to Drow.
  519. /// </summary>
  520. public static string drawn {
  521. get {
  522. return ResourceManager.GetString("drawn", resourceCulture);
  523. }
  524. }
  525. /// <summary>
  526. /// Looks up a localized string similar to Englesa.
  527. /// </summary>
  528. public static string english {
  529. get {
  530. return ResourceManager.GetString("english", resourceCulture);
  531. }
  532. }
  533. /// <summary>
  534. /// Looks up a localized string similar to Hatama montante 1- 150,000 sentavus.
  535. /// </summary>
  536. public static string enter_amount {
  537. get {
  538. return ResourceManager.GetString("enter_amount", resourceCulture);
  539. }
  540. }
  541. /// <summary>
  542. /// Looks up a localized string similar to Hatama montante (másimu 10,000 sentavus/tranzasaun).
  543. /// </summary>
  544. public static string enter_amount_1_1000 {
  545. get {
  546. return ResourceManager.GetString("enter_amount_1_1000", resourceCulture);
  547. }
  548. }
  549. /// <summary>
  550. /// Looks up a localized string similar to Hatama montante.
  551. /// </summary>
  552. public static string enter_amount1 {
  553. get {
  554. return ResourceManager.GetString("enter_amount1", resourceCulture);
  555. }
  556. }
  557. /// <summary>
  558. /// Looks up a localized string similar to Hatama ita-boot nia loron moris.
  559. /// </summary>
  560. public static string enter_birthday {
  561. get {
  562. return ResourceManager.GetString("enter_birthday", resourceCulture);
  563. }
  564. }
  565. /// <summary>
  566. /// Looks up a localized string similar to Hatama díjitu 2 (00 to&apos;o 99).
  567. /// </summary>
  568. public static string enter_digit_2 {
  569. get {
  570. return ResourceManager.GetString("enter_digit_2", resourceCulture);
  571. }
  572. }
  573. /// <summary>
  574. /// Looks up a localized string similar to Hatama díjitu 3 (000 to&apos;o 999).
  575. /// </summary>
  576. public static string enter_digit_3 {
  577. get {
  578. return ResourceManager.GetString("enter_digit_3", resourceCulture);
  579. }
  580. }
  581. /// <summary>
  582. /// Looks up a localized string similar to Hatama díjitu 4 (0000 to&apos;o 9999).
  583. /// </summary>
  584. public static string enter_digit_4 {
  585. get {
  586. return ResourceManager.GetString("enter_digit_4", resourceCulture);
  587. }
  588. }
  589. /// <summary>
  590. /// Looks up a localized string similar to Hatama ita-boot nia osan.
  591. /// </summary>
  592. public static string enter_money {
  593. get {
  594. return ResourceManager.GetString("enter_money", resourceCulture);
  595. }
  596. }
  597. /// <summary>
  598. /// Looks up a localized string similar to Hakerek ita-boot nia naran kompletu.
  599. /// </summary>
  600. public static string enter_name {
  601. get {
  602. return ResourceManager.GetString("enter_name", resourceCulture);
  603. }
  604. }
  605. /// <summary>
  606. /// Looks up a localized string similar to Hatama ita-boot nia OTP.
  607. /// </summary>
  608. public static string enter_otp {
  609. get {
  610. return ResourceManager.GetString("enter_otp", resourceCulture);
  611. }
  612. }
  613. /// <summary>
  614. /// Looks up a localized string similar to Hatama Ita-boot nia OTP atu tama.
  615. /// </summary>
  616. public static string enter_otp_to_login {
  617. get {
  618. return ResourceManager.GetString("enter_otp_to_login", resourceCulture);
  619. }
  620. }
  621. /// <summary>
  622. /// Looks up a localized string similar to Hatama ita-boot nia senha ho díjitu 6.
  623. /// </summary>
  624. public static string enter_password {
  625. get {
  626. return ResourceManager.GetString("enter_password", resourceCulture);
  627. }
  628. }
  629. /// <summary>
  630. /// Looks up a localized string similar to Hatama ita-boot nia númeru.
  631. /// </summary>
  632. public static string enter_phone_number {
  633. get {
  634. return ResourceManager.GetString("enter_phone_number", resourceCulture);
  635. }
  636. }
  637. /// <summary>
  638. /// Looks up a localized string similar to Hatama ita-boot nia senha foun.
  639. /// </summary>
  640. public static string enter_your_new_password {
  641. get {
  642. return ResourceManager.GetString("enter_your_new_password", resourceCulture);
  643. }
  644. }
  645. /// <summary>
  646. /// Looks up a localized string similar to Hatama ita-boot nia senha tuan.
  647. /// </summary>
  648. public static string enter_your_old_password {
  649. get {
  650. return ResourceManager.GetString("enter_your_old_password", resourceCulture);
  651. }
  652. }
  653. /// <summary>
  654. /// Looks up a localized string similar to Erru ida akontese. Favor ida koko fali..
  655. /// </summary>
  656. public static string error_happened {
  657. get {
  658. return ResourceManager.GetString("error_happened", resourceCulture);
  659. }
  660. }
  661. /// <summary>
  662. /// Looks up a localized string similar to Erru ida akontese. Favor koko fali.
  663. /// </summary>
  664. public static string error_happened1 {
  665. get {
  666. return ResourceManager.GetString("error_happened1", resourceCulture);
  667. }
  668. }
  669. /// <summary>
  670. /// Looks up a localized string similar to Falha.
  671. /// </summary>
  672. public static string fail {
  673. get {
  674. return ResourceManager.GetString("fail", resourceCulture);
  675. }
  676. }
  677. /// <summary>
  678. /// Looks up a localized string similar to Ita-boot sosa ona billete sira ho susesu..
  679. /// </summary>
  680. public static string faktura_pedidu {
  681. get {
  682. return ResourceManager.GetString("faktura_pedidu", resourceCulture);
  683. }
  684. }
  685. /// <summary>
  686. /// Looks up a localized string similar to FAQ.
  687. /// </summary>
  688. public static string faq {
  689. get {
  690. return ResourceManager.GetString("faq", resourceCulture);
  691. }
  692. }
  693. /// <summary>
  694. /// Looks up a localized string similar to Taxa.
  695. /// </summary>
  696. public static string fee {
  697. get {
  698. return ResourceManager.GetString("fee", resourceCulture);
  699. }
  700. }
  701. /// <summary>
  702. /// Looks up a localized string similar to Transferénsia taxa.
  703. /// </summary>
  704. public static string fee_tranfer {
  705. get {
  706. return ResourceManager.GetString("fee_tranfer", resourceCulture);
  707. }
  708. }
  709. /// <summary>
  710. /// Looks up a localized string similar to Favor prenxe ita-boot nia senha.
  711. /// </summary>
  712. public static string fill_password {
  713. get {
  714. return ResourceManager.GetString("fill_password", resourceCulture);
  715. }
  716. }
  717. /// <summary>
  718. /// Looks up a localized string similar to Favor prenxe Ita-boot nia númeru telefone.
  719. /// </summary>
  720. public static string fill_phone {
  721. get {
  722. return ResourceManager.GetString("fill_phone", resourceCulture);
  723. }
  724. }
  725. /// <summary>
  726. /// Looks up a localized string similar to Favor prenxe Ita-boot nia númeru.
  727. /// </summary>
  728. public static string fill_your_number {
  729. get {
  730. return ResourceManager.GetString("fill_your_number", resourceCulture);
  731. }
  732. }
  733. /// <summary>
  734. /// Looks up a localized string similar to FIRST PRIZE.
  735. /// </summary>
  736. public static string FirstPrize {
  737. get {
  738. return ResourceManager.GetString("FirstPrize", resourceCulture);
  739. }
  740. }
  741. /// <summary>
  742. /// Looks up a localized string similar to Florida Lotaria.
  743. /// </summary>
  744. public static string florida_lottery {
  745. get {
  746. return ResourceManager.GetString("florida_lottery", resourceCulture);
  747. }
  748. }
  749. /// <summary>
  750. /// Looks up a localized string similar to Haluha tiha senha.
  751. /// </summary>
  752. public static string forgot_password {
  753. get {
  754. return ResourceManager.GetString("forgot_password", resourceCulture);
  755. }
  756. }
  757. /// <summary>
  758. /// Looks up a localized string similar to Livre.
  759. /// </summary>
  760. public static string free {
  761. get {
  762. return ResourceManager.GetString("free", resourceCulture);
  763. }
  764. }
  765. /// <summary>
  766. /// Looks up a localized string similar to Husi.
  767. /// </summary>
  768. public static string from {
  769. get {
  770. return ResourceManager.GetString("from", resourceCulture);
  771. }
  772. }
  773. /// <summary>
  774. /// Looks up a localized string similar to Transfere ba Ita-boot nia númeru.
  775. /// </summary>
  776. public static string from_your_number {
  777. get {
  778. return ResourceManager.GetString("from_your_number", resourceCulture);
  779. }
  780. }
  781. /// <summary>
  782. /// Looks up a localized string similar to Ita-boot nia naran kompletu la válidu.
  783. /// </summary>
  784. public static string fullname_not_valid {
  785. get {
  786. return ResourceManager.GetString("fullname_not_valid", resourceCulture);
  787. }
  788. }
  789. /// <summary>
  790. /// Looks up a localized string similar to Hetan OTP.
  791. /// </summary>
  792. public static string get_otp1 {
  793. get {
  794. return ResourceManager.GetString("get_otp1", resourceCulture);
  795. }
  796. }
  797. /// <summary>
  798. /// Looks up a localized string similar to Hahú.
  799. /// </summary>
  800. public static string get_started {
  801. get {
  802. return ResourceManager.GetString("get_started", resourceCulture);
  803. }
  804. }
  805. /// <summary>
  806. /// Looks up a localized string similar to Iha oportunidade atu hetan.
  807. /// </summary>
  808. public static string have_chance_to_get {
  809. get {
  810. return ResourceManager.GetString("have_chance_to_get", resourceCulture);
  811. }
  812. }
  813. /// <summary>
  814. /// Looks up a localized string similar to Istória.
  815. /// </summary>
  816. public static string history {
  817. get {
  818. return ResourceManager.GetString("history", resourceCulture);
  819. }
  820. }
  821. /// <summary>
  822. /// Looks up a localized string similar to Uma.
  823. /// </summary>
  824. public static string home {
  825. get {
  826. return ResourceManager.GetString("home", resourceCulture);
  827. }
  828. }
  829. /// <summary>
  830. /// Looks up a localized string similar to Pájina dahuluk.
  831. /// </summary>
  832. public static string home_page {
  833. get {
  834. return ResourceManager.GetString("home_page", resourceCulture);
  835. }
  836. }
  837. /// <summary>
  838. /// Looks up a localized string similar to Oras.
  839. /// </summary>
  840. public static string hours {
  841. get {
  842. return ResourceManager.GetString("hours", resourceCulture);
  843. }
  844. }
  845. /// <summary>
  846. /// Looks up a localized string similar to Oinsa atu joga Toto Loteria.
  847. /// </summary>
  848. public static string how_to_play {
  849. get {
  850. return ResourceManager.GetString("how_to_play", resourceCulture);
  851. }
  852. }
  853. /// <summary>
  854. /// Looks up a localized string similar to Sistema atualiza hela..
  855. /// </summary>
  856. public static string in_blacklist {
  857. get {
  858. return ResourceManager.GetString("in_blacklist", resourceCulture);
  859. }
  860. }
  861. /// <summary>
  862. /// Looks up a localized string similar to Ita-boot nia númeru iha data sorteiu ida-ne&apos;e:.
  863. /// </summary>
  864. public static string in_draw_date {
  865. get {
  866. return ResourceManager.GetString("in_draw_date", resourceCulture);
  867. }
  868. }
  869. /// <summary>
  870. /// Looks up a localized string similar to Ita-boot nia internet iha problema..
  871. /// </summary>
  872. public static string internet_error {
  873. get {
  874. return ResourceManager.GetString("internet_error", resourceCulture);
  875. }
  876. }
  877. /// <summary>
  878. /// Looks up a localized string similar to Lingua.
  879. /// </summary>
  880. public static string language {
  881. get {
  882. return ResourceManager.GetString("language", resourceCulture);
  883. }
  884. }
  885. /// <summary>
  886. /// Looks up a localized string similar to Tama.
  887. /// </summary>
  888. public static string login {
  889. get {
  890. return ResourceManager.GetString("login", resourceCulture);
  891. }
  892. }
  893. /// <summary>
  894. /// Looks up a localized string similar to La konsege tama tanba senha la loos..
  895. /// </summary>
  896. public static string login_fail_wrong_pass {
  897. get {
  898. return ResourceManager.GetString("login_fail_wrong_pass", resourceCulture);
  899. }
  900. }
  901. /// <summary>
  902. /// Looks up a localized string similar to Sai.
  903. /// </summary>
  904. public static string logout {
  905. get {
  906. return ResourceManager.GetString("logout", resourceCulture);
  907. }
  908. }
  909. /// <summary>
  910. /// Looks up a localized string similar to Main Balance.
  911. /// </summary>
  912. public static string MainBalance {
  913. get {
  914. return ResourceManager.GetString("MainBalance", resourceCulture);
  915. }
  916. }
  917. /// <summary>
  918. /// Looks up a localized string similar to Númeru másimu billete nian maka billete 5. Favor verifika fali..
  919. /// </summary>
  920. public static string max_5_tickets {
  921. get {
  922. return ResourceManager.GetString("max_5_tickets", resourceCulture);
  923. }
  924. }
  925. /// <summary>
  926. /// Looks up a localized string similar to Transering másimu maka 150,000 sentavus. Favor verifika fali..
  927. /// </summary>
  928. public static string max_transfer_1000HTG {
  929. get {
  930. return ResourceManager.GetString("max_transfer_1000HTG", resourceCulture);
  931. }
  932. }
  933. /// <summary>
  934. /// Looks up a localized string similar to Mins.
  935. /// </summary>
  936. public static string mins {
  937. get {
  938. return ResourceManager.GetString("mins", resourceCulture);
  939. }
  940. }
  941. /// <summary>
  942. /// Looks up a localized string similar to Osan.
  943. /// </summary>
  944. public static string money {
  945. get {
  946. return ResourceManager.GetString("money", resourceCulture);
  947. }
  948. }
  949. /// <summary>
  950. /// Looks up a localized string similar to Montante transferénsia (Sentavu).
  951. /// </summary>
  952. public static string money_on {
  953. get {
  954. return ResourceManager.GetString("money_on", resourceCulture);
  955. }
  956. }
  957. /// <summary>
  958. /// Looks up a localized string similar to Liután.
  959. /// </summary>
  960. public static string more {
  961. get {
  962. return ResourceManager.GetString("more", resourceCulture);
  963. }
  964. }
  965. /// <summary>
  966. /// Looks up a localized string similar to MOSAN.
  967. /// </summary>
  968. public static string MOSAN {
  969. get {
  970. return ResourceManager.GetString("MOSAN", resourceCulture);
  971. }
  972. }
  973. /// <summary>
  974. /// Looks up a localized string similar to Ita-boot seidauk tama. Favor tama atu halo asaun ida-ne&apos;e..
  975. /// </summary>
  976. public static string must_login {
  977. get {
  978. return ResourceManager.GetString("must_login", resourceCulture);
  979. }
  980. }
  981. /// <summary>
  982. /// Looks up a localized string similar to Ha&apos;u nia Bilhete.
  983. /// </summary>
  984. public static string my_ticket {
  985. get {
  986. return ResourceManager.GetString("my_ticket", resourceCulture);
  987. }
  988. }
  989. /// <summary>
  990. /// Looks up a localized string similar to Naran.
  991. /// </summary>
  992. public static string name {
  993. get {
  994. return ResourceManager.GetString("name", resourceCulture);
  995. }
  996. }
  997. /// <summary>
  998. /// Looks up a localized string similar to NatCash.
  999. /// </summary>
  1000. public static string NatCash {
  1001. get {
  1002. return ResourceManager.GetString("NatCash", resourceCulture);
  1003. }
  1004. }
  1005. /// <summary>
  1006. /// Looks up a localized string similar to Favor verifika ita-boot nia senha foun.
  1007. /// </summary>
  1008. public static string new_pass_error {
  1009. get {
  1010. return ResourceManager.GetString("new_pass_error", resourceCulture);
  1011. }
  1012. }
  1013. /// <summary>
  1014. /// Looks up a localized string similar to Sorteiu tuirmai.
  1015. /// </summary>
  1016. public static string next_draw {
  1017. get {
  1018. return ResourceManager.GetString("next_draw", resourceCulture);
  1019. }
  1020. }
  1021. /// <summary>
  1022. /// Looks up a localized string similar to Ita-boot laiha lisensa atu halo asaun ida-ne&apos;e.
  1023. /// </summary>
  1024. public static string no_permission {
  1025. get {
  1026. return ResourceManager.GetString("no_permission", resourceCulture);
  1027. }
  1028. }
  1029. /// <summary>
  1030. /// Looks up a localized string similar to la define.
  1031. /// </summary>
  1032. public static string not_defined {
  1033. get {
  1034. return ResourceManager.GetString("not_defined", resourceCulture);
  1035. }
  1036. }
  1037. /// <summary>
  1038. /// Looks up a localized string similar to La draw.
  1039. /// </summary>
  1040. public static string not_draw {
  1041. get {
  1042. return ResourceManager.GetString("not_draw", resourceCulture);
  1043. }
  1044. }
  1045. /// <summary>
  1046. /// Looks up a localized string similar to Ita-boot nia osan iha Konta Lotaria nian la to&apos;o atu prosesa tranzasaun..
  1047. /// </summary>
  1048. public static string not_enough_money {
  1049. get {
  1050. return ResourceManager.GetString("not_enough_money", resourceCulture);
  1051. }
  1052. }
  1053. /// <summary>
  1054. /// Looks up a localized string similar to Osan la to’o atu troka..
  1055. /// </summary>
  1056. public static string not_enough_money_to_exchange {
  1057. get {
  1058. return ResourceManager.GetString("not_enough_money_to_exchange", resourceCulture);
  1059. }
  1060. }
  1061. /// <summary>
  1062. /// Looks up a localized string similar to La hetan OTP?.
  1063. /// </summary>
  1064. public static string not_get_otp {
  1065. get {
  1066. return ResourceManager.GetString("not_get_otp", resourceCulture);
  1067. }
  1068. }
  1069. /// <summary>
  1070. /// Looks up a localized string similar to Simu-na&apos;in seidauk rejista MOSAN. Halo favór verifika fali konta
  1071. ///MOSAN nian..
  1072. /// </summary>
  1073. public static string not_register_MOSAN {
  1074. get {
  1075. return ResourceManager.GetString("not_register_MOSAN", resourceCulture);
  1076. }
  1077. }
  1078. /// <summary>
  1079. /// Looks up a localized string similar to Benefisye a poko gen kont Natcash. Tanpri verifye kont Natcash ou anko.
  1080. /// </summary>
  1081. public static string not_register_natcash {
  1082. get {
  1083. return ResourceManager.GetString("not_register_natcash", resourceCulture);
  1084. }
  1085. }
  1086. /// <summary>
  1087. /// Looks up a localized string similar to La manan.
  1088. /// </summary>
  1089. public static string not_win {
  1090. get {
  1091. return ResourceManager.GetString("not_win", resourceCulture);
  1092. }
  1093. }
  1094. /// <summary>
  1095. /// Looks up a localized string similar to Nota: Mantein Ita-boot nia liafuan-xave, no labele fahe ho ema ida..
  1096. /// </summary>
  1097. public static string note_password {
  1098. get {
  1099. return ResourceManager.GetString("note_password", resourceCulture);
  1100. }
  1101. }
  1102. /// <summary>
  1103. /// Looks up a localized string similar to Númeru.
  1104. /// </summary>
  1105. public static string number {
  1106. get {
  1107. return ResourceManager.GetString("number", resourceCulture);
  1108. }
  1109. }
  1110. /// <summary>
  1111. /// Looks up a localized string similar to OR.
  1112. /// </summary>
  1113. public static string or {
  1114. get {
  1115. return ResourceManager.GetString("or", resourceCulture);
  1116. }
  1117. }
  1118. /// <summary>
  1119. /// Looks up a localized string similar to Ka hili montante (Sentavus).
  1120. /// </summary>
  1121. public static string or_select {
  1122. get {
  1123. return ResourceManager.GetString("or_select", resourceCulture);
  1124. }
  1125. }
  1126. /// <summary>
  1127. /// Looks up a localized string similar to Kódigu pedidu.
  1128. /// </summary>
  1129. public static string order_code {
  1130. get {
  1131. return ResourceManager.GetString("order_code", resourceCulture);
  1132. }
  1133. }
  1134. /// <summary>
  1135. /// Looks up a localized string similar to OTP.
  1136. /// </summary>
  1137. public static string otp {
  1138. get {
  1139. return ResourceManager.GetString("otp", resourceCulture);
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// Looks up a localized string similar to OTP invalidu.
  1144. /// </summary>
  1145. public static string otp_invalid {
  1146. get {
  1147. return ResourceManager.GetString("otp_invalid", resourceCulture);
  1148. }
  1149. }
  1150. /// <summary>
  1151. /// Looks up a localized string similar to Tempu OTP liu.
  1152. /// </summary>
  1153. public static string otp_timeout {
  1154. get {
  1155. return ResourceManager.GetString("otp_timeout", resourceCulture);
  1156. }
  1157. }
  1158. /// <summary>
  1159. /// Looks up a localized string similar to Montante aposta válidu sira varia hosi sentavus 25 to&apos;o sentavus
  1160. ///10,000 cents..
  1161. /// </summary>
  1162. public static string over_1000HTG_transfer {
  1163. get {
  1164. return ResourceManager.GetString("over_1000HTG_transfer", resourceCulture);
  1165. }
  1166. }
  1167. /// <summary>
  1168. /// Looks up a localized string similar to ta-boot nia osan liu limite ba troka ida-idak..
  1169. /// </summary>
  1170. public static string over_each_exchange {
  1171. get {
  1172. return ResourceManager.GetString("over_each_exchange", resourceCulture);
  1173. }
  1174. }
  1175. /// <summary>
  1176. /// Looks up a localized string similar to Ita-boot nia osan liu ona limite atu troka iha loron ida nia laran..
  1177. /// </summary>
  1178. public static string over_exchange_per_day {
  1179. get {
  1180. return ResourceManager.GetString("over_exchange_per_day", resourceCulture);
  1181. }
  1182. }
  1183. /// <summary>
  1184. /// Looks up a localized string similar to Param sira la válidu.
  1185. /// </summary>
  1186. public static string params_invalid {
  1187. get {
  1188. return ResourceManager.GetString("params_invalid", resourceCulture);
  1189. }
  1190. }
  1191. /// <summary>
  1192. /// Looks up a localized string similar to 1. Tenke iha díjitu 6.
  1193. /// </summary>
  1194. public static string pass_tip_1 {
  1195. get {
  1196. return ResourceManager.GetString("pass_tip_1", resourceCulture);
  1197. }
  1198. }
  1199. /// <summary>
  1200. /// Looks up a localized string similar to 2. Password forte: husi 0 - 9, tenke inklui karakter
  1201. ///(laos karakter espesial).
  1202. /// </summary>
  1203. public static string pass_tip_2 {
  1204. get {
  1205. return ResourceManager.GetString("pass_tip_2", resourceCulture);
  1206. }
  1207. }
  1208. /// <summary>
  1209. /// Looks up a localized string similar to senha.
  1210. /// </summary>
  1211. public static string password {
  1212. get {
  1213. return ResourceManager.GetString("password", resourceCulture);
  1214. }
  1215. }
  1216. /// <summary>
  1217. /// Looks up a localized string similar to Favor cek ita boot sira nia SMS hodi simu OTP.
  1218. /// </summary>
  1219. public static string password_sent {
  1220. get {
  1221. return ResourceManager.GetString("password_sent", resourceCulture);
  1222. }
  1223. }
  1224. /// <summary>
  1225. /// Looks up a localized string similar to Dika sira kona-ba senha.
  1226. /// </summary>
  1227. public static string password_tip {
  1228. get {
  1229. return ResourceManager.GetString("password_tip", resourceCulture);
  1230. }
  1231. }
  1232. /// <summary>
  1233. /// Looks up a localized string similar to Pagamentu.
  1234. /// </summary>
  1235. public static string payment {
  1236. get {
  1237. return ResourceManager.GetString("payment", resourceCulture);
  1238. }
  1239. }
  1240. /// <summary>
  1241. /// Looks up a localized string similar to Konta Pagamentu.
  1242. /// </summary>
  1243. public static string payment_account {
  1244. get {
  1245. return ResourceManager.GetString("payment_account", resourceCulture);
  1246. }
  1247. }
  1248. /// <summary>
  1249. /// Looks up a localized string similar to Métodu Pagamentu.
  1250. /// </summary>
  1251. public static string payment_mothod {
  1252. get {
  1253. return ResourceManager.GetString("payment_mothod", resourceCulture);
  1254. }
  1255. }
  1256. /// <summary>
  1257. /// Looks up a localized string similar to Ita-boot nia númeru telefone la válidu..
  1258. /// </summary>
  1259. public static string phone_invalid {
  1260. get {
  1261. return ResourceManager.GetString("phone_invalid", resourceCulture);
  1262. }
  1263. }
  1264. /// <summary>
  1265. /// Looks up a localized string similar to Phone number.
  1266. /// </summary>
  1267. public static string phone_number {
  1268. get {
  1269. return ResourceManager.GetString("phone_number", resourceCulture);
  1270. }
  1271. }
  1272. /// <summary>
  1273. /// Looks up a localized string similar to Ita-boot nia pin sala.
  1274. /// </summary>
  1275. public static string pin_wrong {
  1276. get {
  1277. return ResourceManager.GetString("pin_wrong", resourceCulture);
  1278. }
  1279. }
  1280. /// <summary>
  1281. /// Looks up a localized string similar to jogus.
  1282. /// </summary>
  1283. public static string play {
  1284. get {
  1285. return ResourceManager.GetString("play", resourceCulture);
  1286. }
  1287. }
  1288. /// <summary>
  1289. /// Looks up a localized string similar to Folin.
  1290. /// </summary>
  1291. public static string price {
  1292. get {
  1293. return ResourceManager.GetString("price", resourceCulture);
  1294. }
  1295. }
  1296. /// <summary>
  1297. /// Looks up a localized string similar to Prosesu.
  1298. /// </summary>
  1299. public static string processing {
  1300. get {
  1301. return ResourceManager.GetString("processing", resourceCulture);
  1302. }
  1303. }
  1304. /// <summary>
  1305. /// Looks up a localized string similar to Perfil.
  1306. /// </summary>
  1307. public static string profile {
  1308. get {
  1309. return ResourceManager.GetString("profile", resourceCulture);
  1310. }
  1311. }
  1312. /// <summary>
  1313. /// Looks up a localized string similar to Ita-boot nia kódigu promosaun la ativu.
  1314. /// </summary>
  1315. public static string promotion_code_inactive {
  1316. get {
  1317. return ResourceManager.GetString("promotion_code_inactive", resourceCulture);
  1318. }
  1319. }
  1320. /// <summary>
  1321. /// Looks up a localized string similar to Ita-boot nia kódigu promosaun la válidu.
  1322. /// </summary>
  1323. public static string promotion_code_invalid {
  1324. get {
  1325. return ResourceManager.GetString("promotion_code_invalid", resourceCulture);
  1326. }
  1327. }
  1328. /// <summary>
  1329. /// Looks up a localized string similar to Ita-boot nia kódigu promosaun uza ona..
  1330. /// </summary>
  1331. public static string promotion_code_used {
  1332. get {
  1333. return ResourceManager.GetString("promotion_code_used", resourceCulture);
  1334. }
  1335. }
  1336. /// <summary>
  1337. /// Looks up a localized string similar to Perguntas.
  1338. /// </summary>
  1339. public static string question {
  1340. get {
  1341. return ResourceManager.GetString("question", resourceCulture);
  1342. }
  1343. }
  1344. /// <summary>
  1345. /// Looks up a localized string similar to Simu-na&apos;in.
  1346. /// </summary>
  1347. public static string receiver {
  1348. get {
  1349. return ResourceManager.GetString("receiver", resourceCulture);
  1350. }
  1351. }
  1352. /// <summary>
  1353. /// Looks up a localized string similar to Rejistu.
  1354. /// </summary>
  1355. public static string register {
  1356. get {
  1357. return ResourceManager.GetString("register", resourceCulture);
  1358. }
  1359. }
  1360. /// <summary>
  1361. /// Looks up a localized string similar to Enkomenda filafali.
  1362. /// </summary>
  1363. public static string reorder {
  1364. get {
  1365. return ResourceManager.GetString("reorder", resourceCulture);
  1366. }
  1367. }
  1368. /// <summary>
  1369. /// Looks up a localized string similar to Pedidu iha.
  1370. /// </summary>
  1371. public static string RequestAt {
  1372. get {
  1373. return ResourceManager.GetString("RequestAt", resourceCulture);
  1374. }
  1375. }
  1376. /// <summary>
  1377. /// Looks up a localized string similar to Haruka fali OTP.
  1378. /// </summary>
  1379. public static string resend_otp {
  1380. get {
  1381. return ResourceManager.GetString("resend_otp", resourceCulture);
  1382. }
  1383. }
  1384. /// <summary>
  1385. /// Looks up a localized string similar to Haruka fali OTP.
  1386. /// </summary>
  1387. public static string resent_otp {
  1388. get {
  1389. return ResourceManager.GetString("resent_otp", resourceCulture);
  1390. }
  1391. }
  1392. /// <summary>
  1393. /// Looks up a localized string similar to Favor ida, reset pasajen hafoin minutu 1..
  1394. /// </summary>
  1395. public static string reset_after_1_minute {
  1396. get {
  1397. return ResourceManager.GetString("reset_after_1_minute", resourceCulture);
  1398. }
  1399. }
  1400. /// <summary>
  1401. /// Looks up a localized string similar to Rezultadu.
  1402. /// </summary>
  1403. public static string results {
  1404. get {
  1405. return ResourceManager.GetString("results", resourceCulture);
  1406. }
  1407. }
  1408. /// <summary>
  1409. /// Looks up a localized string similar to Fila fali ba pájina dahuluk.
  1410. /// </summary>
  1411. public static string return_home_page {
  1412. get {
  1413. return ResourceManager.GetString("return_home_page", resourceCulture);
  1414. }
  1415. }
  1416. /// <summary>
  1417. /// Looks up a localized string similar to Haree filafali Pagamentu.
  1418. /// </summary>
  1419. public static string review_payment {
  1420. get {
  1421. return ResourceManager.GetString("review_payment", resourceCulture);
  1422. }
  1423. }
  1424. /// <summary>
  1425. /// Looks up a localized string similar to Regras.
  1426. /// </summary>
  1427. public static string rules {
  1428. get {
  1429. return ResourceManager.GetString("rules", resourceCulture);
  1430. }
  1431. }
  1432. /// <summary>
  1433. /// Looks up a localized string similar to Buka.
  1434. /// </summary>
  1435. public static string search {
  1436. get {
  1437. return ResourceManager.GetString("search", resourceCulture);
  1438. }
  1439. }
  1440. /// <summary>
  1441. /// Looks up a localized string similar to SECOND PRIZE.
  1442. /// </summary>
  1443. public static string SecondPrize {
  1444. get {
  1445. return ResourceManager.GetString("SecondPrize", resourceCulture);
  1446. }
  1447. }
  1448. /// <summary>
  1449. /// Looks up a localized string similar to Segundu sira.
  1450. /// </summary>
  1451. public static string seconds {
  1452. get {
  1453. return ResourceManager.GetString("seconds", resourceCulture);
  1454. }
  1455. }
  1456. /// <summary>
  1457. /// Looks up a localized string similar to Haree tan.
  1458. /// </summary>
  1459. public static string see_more {
  1460. get {
  1461. return ResourceManager.GetString("see_more", resourceCulture);
  1462. }
  1463. }
  1464. /// <summary>
  1465. /// Looks up a localized string similar to Transfere ba ita-boot nia konta.
  1466. /// </summary>
  1467. public static string select_an_account {
  1468. get {
  1469. return ResourceManager.GetString("select_an_account", resourceCulture);
  1470. }
  1471. }
  1472. /// <summary>
  1473. /// Looks up a localized string similar to Ema ne&apos;ebé haruka.
  1474. /// </summary>
  1475. public static string sender {
  1476. get {
  1477. return ResourceManager.GetString("sender", resourceCulture);
  1478. }
  1479. }
  1480. /// <summary>
  1481. /// Looks up a localized string similar to Ita-boot nia númeru.
  1482. /// </summary>
  1483. public static string sender_phone {
  1484. get {
  1485. return ResourceManager.GetString("sender_phone", resourceCulture);
  1486. }
  1487. }
  1488. /// <summary>
  1489. /// Looks up a localized string similar to Singapore 4D Result.
  1490. /// </summary>
  1491. public static string Singapore4DResult {
  1492. get {
  1493. return ResourceManager.GetString("Singapore4DResult", resourceCulture);
  1494. }
  1495. }
  1496. /// <summary>
  1497. /// Looks up a localized string similar to La&apos;o ba login hanesan bainaka.
  1498. /// </summary>
  1499. public static string skip_to_guest {
  1500. get {
  1501. return ResourceManager.GetString("skip_to_guest", resourceCulture);
  1502. }
  1503. }
  1504. /// <summary>
  1505. /// Looks up a localized string similar to STARTER PRIZES.
  1506. /// </summary>
  1507. public static string StarterPrize {
  1508. get {
  1509. return ResourceManager.GetString("StarterPrize", resourceCulture);
  1510. }
  1511. }
  1512. /// <summary>
  1513. /// Looks up a localized string similar to Status.
  1514. /// </summary>
  1515. public static string status {
  1516. get {
  1517. return ResourceManager.GetString("status", resourceCulture);
  1518. }
  1519. }
  1520. /// <summary>
  1521. /// Looks up a localized string similar to Susesu.
  1522. /// </summary>
  1523. public static string success {
  1524. get {
  1525. return ResourceManager.GetString("success", resourceCulture);
  1526. }
  1527. }
  1528. /// <summary>
  1529. /// Looks up a localized string similar to Sistema ne&apos;e atualiza hela. Favor ida koko fali hafoin minutu 1..
  1530. /// </summary>
  1531. public static string system_update {
  1532. get {
  1533. return ResourceManager.GetString("system_update", resourceCulture);
  1534. }
  1535. }
  1536. /// <summary>
  1537. /// Looks up a localized string similar to Data Sosa nian.
  1538. /// </summary>
  1539. public static string term {
  1540. get {
  1541. return ResourceManager.GetString("term", resourceCulture);
  1542. }
  1543. }
  1544. /// <summary>
  1545. /// Looks up a localized string similar to Termu ida-ne&apos;e nia tempu liu ona. Favor ida koko fali..
  1546. /// </summary>
  1547. public static string term_timeout {
  1548. get {
  1549. return ResourceManager.GetString("term_timeout", resourceCulture);
  1550. }
  1551. }
  1552. /// <summary>
  1553. /// Looks up a localized string similar to Termu no Kondisaun sira..
  1554. /// </summary>
  1555. public static string terms_and_conditions {
  1556. get {
  1557. return ResourceManager.GetString("terms_and_conditions", resourceCulture);
  1558. }
  1559. }
  1560. /// <summary>
  1561. /// Looks up a localized string similar to Tetun.
  1562. /// </summary>
  1563. public static string tetun {
  1564. get {
  1565. return ResourceManager.GetString("tetun", resourceCulture);
  1566. }
  1567. }
  1568. /// <summary>
  1569. /// Looks up a localized string similar to Obrigado!.
  1570. /// </summary>
  1571. public static string thank_you {
  1572. get {
  1573. return ResourceManager.GetString("thank_you", resourceCulture);
  1574. }
  1575. }
  1576. /// <summary>
  1577. /// Looks up a localized string similar to THIRD PRIZE.
  1578. /// </summary>
  1579. public static string ThirdPrize {
  1580. get {
  1581. return ResourceManager.GetString("ThirdPrize", resourceCulture);
  1582. }
  1583. }
  1584. /// <summary>
  1585. /// Looks up a localized string similar to Bilhete.
  1586. /// </summary>
  1587. public static string ticket {
  1588. get {
  1589. return ResourceManager.GetString("ticket", resourceCulture);
  1590. }
  1591. }
  1592. /// <summary>
  1593. /// Looks up a localized string similar to Kódigu billete.
  1594. /// </summary>
  1595. public static string ticket_code {
  1596. get {
  1597. return ResourceManager.GetString("ticket_code", resourceCulture);
  1598. }
  1599. }
  1600. /// <summary>
  1601. /// Looks up a localized string similar to Ita-boot nia billete sira la válidu.
  1602. /// </summary>
  1603. public static string ticket_invalid {
  1604. get {
  1605. return ResourceManager.GetString("ticket_invalid", resourceCulture);
  1606. }
  1607. }
  1608. /// <summary>
  1609. /// Looks up a localized string similar to Tempu.
  1610. /// </summary>
  1611. public static string time {
  1612. get {
  1613. return ResourceManager.GetString("time", resourceCulture);
  1614. }
  1615. }
  1616. /// <summary>
  1617. /// Looks up a localized string similar to Ba.
  1618. /// </summary>
  1619. public static string to {
  1620. get {
  1621. return ResourceManager.GetString("to", resourceCulture);
  1622. }
  1623. }
  1624. /// <summary>
  1625. /// Looks up a localized string similar to Ita-boot nia token la válidu.
  1626. /// </summary>
  1627. public static string token_invalid {
  1628. get {
  1629. return ResourceManager.GetString("token_invalid", resourceCulture);
  1630. }
  1631. }
  1632. /// <summary>
  1633. /// Looks up a localized string similar to Parabéns ba manan-na&apos;in sorte na&apos;in 10 ne&apos;ebé maka hetan prémiu
  1634. ///aas liu iha loron 30 ikus ne&apos;e!.
  1635. /// </summary>
  1636. public static string top_winner {
  1637. get {
  1638. return ResourceManager.GetString("top_winner", resourceCulture);
  1639. }
  1640. }
  1641. /// <summary>
  1642. /// Looks up a localized string similar to Osan totál.
  1643. /// </summary>
  1644. public static string total_money {
  1645. get {
  1646. return ResourceManager.GetString("total_money", resourceCulture);
  1647. }
  1648. }
  1649. /// <summary>
  1650. /// Looks up a localized string similar to Totál billete sira.
  1651. /// </summary>
  1652. public static string total_ticket {
  1653. get {
  1654. return ResourceManager.GetString("total_ticket", resourceCulture);
  1655. }
  1656. }
  1657. /// <summary>
  1658. /// Looks up a localized string similar to Hasai osan.
  1659. /// </summary>
  1660. public static string tranfer_win_money {
  1661. get {
  1662. return ResourceManager.GetString("tranfer_win_money", resourceCulture);
  1663. }
  1664. }
  1665. /// <summary>
  1666. /// Looks up a localized string similar to Transfere.
  1667. /// </summary>
  1668. public static string transfer {
  1669. get {
  1670. return ResourceManager.GetString("transfer", resourceCulture);
  1671. }
  1672. }
  1673. /// <summary>
  1674. /// Looks up a localized string similar to Transfer History.
  1675. /// </summary>
  1676. public static string transfer_history {
  1677. get {
  1678. return ResourceManager.GetString("transfer_history", resourceCulture);
  1679. }
  1680. }
  1681. /// <summary>
  1682. /// Looks up a localized string similar to Métodu Transferénsia.
  1683. /// </summary>
  1684. public static string transfer_method {
  1685. get {
  1686. return ResourceManager.GetString("transfer_method", resourceCulture);
  1687. }
  1688. }
  1689. /// <summary>
  1690. /// Looks up a localized string similar to Ita-boot nia pedidu hetan susesu. Favor hein uitoan enkuantu ami
  1691. ///prosesa ida-ne&apos;e..
  1692. /// </summary>
  1693. public static string transfer_success {
  1694. get {
  1695. return ResourceManager.GetString("transfer_success", resourceCulture);
  1696. }
  1697. }
  1698. /// <summary>
  1699. /// Looks up a localized string similar to Tipu.
  1700. /// </summary>
  1701. public static string type {
  1702. get {
  1703. return ResourceManager.GetString("type", resourceCulture);
  1704. }
  1705. }
  1706. /// <summary>
  1707. /// Looks up a localized string similar to Atualizasaun.
  1708. /// </summary>
  1709. public static string update {
  1710. get {
  1711. return ResourceManager.GetString("update", resourceCulture);
  1712. }
  1713. }
  1714. /// <summary>
  1715. /// Looks up a localized string similar to Atualizasaun susesu.
  1716. /// </summary>
  1717. public static string update_successful {
  1718. get {
  1719. return ResourceManager.GetString("update_successful", resourceCulture);
  1720. }
  1721. }
  1722. /// <summary>
  1723. /// Looks up a localized string similar to Erru avatar utilizadór nian.
  1724. /// </summary>
  1725. public static string user_avatar_error {
  1726. get {
  1727. return ResourceManager.GetString("user_avatar_error", resourceCulture);
  1728. }
  1729. }
  1730. /// <summary>
  1731. /// Looks up a localized string similar to Verifika ita-boot nia konta atu tama.
  1732. /// </summary>
  1733. public static string verify_otp {
  1734. get {
  1735. return ResourceManager.GetString("verify_otp", resourceCulture);
  1736. }
  1737. }
  1738. /// <summary>
  1739. /// Looks up a localized string similar to Hein hela rezultadu.
  1740. /// </summary>
  1741. public static string waiting_for_result {
  1742. get {
  1743. return ResourceManager.GetString("waiting_for_result", resourceCulture);
  1744. }
  1745. }
  1746. /// <summary>
  1747. /// Looks up a localized string similar to Ita-boot nia karteira la ativu..
  1748. /// </summary>
  1749. public static string wallet_not_active {
  1750. get {
  1751. return ResourceManager.GetString("wallet_not_active", resourceCulture);
  1752. }
  1753. }
  1754. /// <summary>
  1755. /// Looks up a localized string similar to Ita-boot nia tranzasaun la susesu, ita-boot la rejista konta MOSAN..
  1756. /// </summary>
  1757. public static string wallet_not_existed {
  1758. get {
  1759. return ResourceManager.GetString("wallet_not_existed", resourceCulture);
  1760. }
  1761. }
  1762. /// <summary>
  1763. /// Looks up a localized string similar to Bem-vindo ba Toto Lottery!.
  1764. /// </summary>
  1765. public static string welcome_to_bee_loto {
  1766. get {
  1767. return ResourceManager.GetString("welcome_to_bee_loto", resourceCulture);
  1768. }
  1769. }
  1770. /// <summary>
  1771. /// Looks up a localized string similar to Manaan.
  1772. /// </summary>
  1773. public static string win {
  1774. get {
  1775. return ResourceManager.GetString("win", resourceCulture);
  1776. }
  1777. }
  1778. /// <summary>
  1779. /// Looks up a localized string similar to Konta Manán-na&apos;in.
  1780. /// </summary>
  1781. public static string winning_account {
  1782. get {
  1783. return ResourceManager.GetString("winning_account", resourceCulture);
  1784. }
  1785. }
  1786. /// <summary>
  1787. /// Looks up a localized string similar to Password ne&apos;e laloos. Favor ida koko fali..
  1788. /// </summary>
  1789. public static string wrong_otp {
  1790. get {
  1791. return ResourceManager.GetString("wrong_otp", resourceCulture);
  1792. }
  1793. }
  1794. /// <summary>
  1795. /// Looks up a localized string similar to Ita-boot iha númeru manan nian, prémiu manan nian maka:.
  1796. /// </summary>
  1797. public static string you_have_winning_number {
  1798. get {
  1799. return ResourceManager.GetString("you_have_winning_number", resourceCulture);
  1800. }
  1801. }
  1802. /// <summary>
  1803. /// Looks up a localized string similar to Your are too younger to use this service..
  1804. /// </summary>
  1805. public static string younger_to_use {
  1806. get {
  1807. return ResourceManager.GetString("younger_to_use", resourceCulture);
  1808. }
  1809. }
  1810. /// <summary>
  1811. /// Looks up a localized string similar to Ita-boot nia númeru.
  1812. /// </summary>
  1813. public static string your_number {
  1814. get {
  1815. return ResourceManager.GetString("your_number", resourceCulture);
  1816. }
  1817. }
  1818. /// <summary>
  1819. /// Looks up a localized string similar to Favor cek ita boot sira nia SMS hodi simu OTP.
  1820. /// </summary>
  1821. public static string your_password_reset {
  1822. get {
  1823. return ResourceManager.GetString("your_password_reset", resourceCulture);
  1824. }
  1825. }
  1826. }
  1827. }