l10n.dart 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. import 'package:flutter/material.dart';
  3. import 'package:intl/intl.dart';
  4. import 'intl/messages_all.dart';
  5. // **************************************************************************
  6. // Generator: Flutter Intl IDE plugin
  7. // Made by Localizely
  8. // **************************************************************************
  9. // ignore_for_file: non_constant_identifier_names, lines_longer_than_80_chars
  10. // ignore_for_file: join_return_with_assignment, prefer_final_in_for_each
  11. // ignore_for_file: avoid_redundant_argument_values, avoid_escaping_inner_quotes
  12. class S {
  13. S();
  14. static S? _current;
  15. static S get current {
  16. assert(_current != null,
  17. 'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.');
  18. return _current!;
  19. }
  20. static const AppLocalizationDelegate delegate = AppLocalizationDelegate();
  21. static Future<S> load(Locale locale) {
  22. final name = (locale.countryCode?.isEmpty ?? false)
  23. ? locale.languageCode
  24. : locale.toString();
  25. final localeName = Intl.canonicalizedLocale(name);
  26. return initializeMessages(localeName).then((_) {
  27. Intl.defaultLocale = localeName;
  28. final instance = S();
  29. S._current = instance;
  30. return instance;
  31. });
  32. }
  33. static S of(BuildContext context) {
  34. final instance = S.maybeOf(context);
  35. assert(instance != null,
  36. 'No instance of S present in the widget tree. Did you add S.delegate in localizationsDelegates?');
  37. return instance!;
  38. }
  39. static S? maybeOf(BuildContext context) {
  40. return Localizations.of<S>(context, S);
  41. }
  42. /// `Payment`
  43. String get payment {
  44. return Intl.message(
  45. 'Payment',
  46. name: 'payment',
  47. desc: '',
  48. args: [],
  49. );
  50. }
  51. /// `Rewards`
  52. String get rewards {
  53. return Intl.message(
  54. 'Rewards',
  55. name: 'rewards',
  56. desc: '',
  57. args: [],
  58. );
  59. }
  60. /// `Notification`
  61. String get notification {
  62. return Intl.message(
  63. 'Notification',
  64. name: 'notification',
  65. desc: '',
  66. args: [],
  67. );
  68. }
  69. /// `Facility`
  70. String get facility {
  71. return Intl.message(
  72. 'Facility',
  73. name: 'facility',
  74. desc: '',
  75. args: [],
  76. );
  77. }
  78. /// `Form`
  79. String get form {
  80. return Intl.message(
  81. 'Form',
  82. name: 'form',
  83. desc: '',
  84. args: [],
  85. );
  86. }
  87. /// `Notice Board`
  88. String get notice_board {
  89. return Intl.message(
  90. 'Notice Board',
  91. name: 'notice_board',
  92. desc: '',
  93. args: [],
  94. );
  95. }
  96. /// `Phone/Email`
  97. String get phone_email {
  98. return Intl.message(
  99. 'Phone/Email',
  100. name: 'phone_email',
  101. desc: '',
  102. args: [],
  103. );
  104. }
  105. /// `Password`
  106. String get password {
  107. return Intl.message(
  108. 'Password',
  109. name: 'password',
  110. desc: '',
  111. args: [],
  112. );
  113. }
  114. /// `Log In`
  115. String get login {
  116. return Intl.message(
  117. 'Log In',
  118. name: 'login',
  119. desc: '',
  120. args: [],
  121. );
  122. }
  123. /// `Forgot Password?`
  124. String get forgot_password {
  125. return Intl.message(
  126. 'Forgot Password?',
  127. name: 'forgot_password',
  128. desc: '',
  129. args: [],
  130. );
  131. }
  132. /// `Create New YY Home Account`
  133. String get create_new_yy_home_account {
  134. return Intl.message(
  135. 'Create New YY Home Account',
  136. name: 'create_new_yy_home_account',
  137. desc: '',
  138. args: [],
  139. );
  140. }
  141. /// `Agree to`
  142. String get agree_to {
  143. return Intl.message(
  144. 'Agree to',
  145. name: 'agree_to',
  146. desc: '',
  147. args: [],
  148. );
  149. }
  150. /// `Terms of Service`
  151. String get terms_of_service {
  152. return Intl.message(
  153. 'Terms of Service',
  154. name: 'terms_of_service',
  155. desc: '',
  156. args: [],
  157. );
  158. }
  159. /// `Enter your email and mobile phone number`
  160. String get forgot_text {
  161. return Intl.message(
  162. 'Enter your email and mobile phone number',
  163. name: 'forgot_text',
  164. desc: '',
  165. args: [],
  166. );
  167. }
  168. /// `Email`
  169. String get email {
  170. return Intl.message(
  171. 'Email',
  172. name: 'email',
  173. desc: '',
  174. args: [],
  175. );
  176. }
  177. /// `Mobile Phone`
  178. String get mobile_phone {
  179. return Intl.message(
  180. 'Mobile Phone',
  181. name: 'mobile_phone',
  182. desc: '',
  183. args: [],
  184. );
  185. }
  186. /// `Next`
  187. String get next {
  188. return Intl.message(
  189. 'Next',
  190. name: 'next',
  191. desc: '',
  192. args: [],
  193. );
  194. }
  195. /// `Verification Code`
  196. String get verification_code {
  197. return Intl.message(
  198. 'Verification Code',
  199. name: 'verification_code',
  200. desc: '',
  201. args: [],
  202. );
  203. }
  204. /// `Reset Password`
  205. String get reset_password {
  206. return Intl.message(
  207. 'Reset Password',
  208. name: 'reset_password',
  209. desc: '',
  210. args: [],
  211. );
  212. }
  213. /// `Confirm Password`
  214. String get confirm_password {
  215. return Intl.message(
  216. 'Confirm Password',
  217. name: 'confirm_password',
  218. desc: '',
  219. args: [],
  220. );
  221. }
  222. /// `8 Digits Alphanumeric`
  223. String get password_format {
  224. return Intl.message(
  225. '8 Digits Alphanumeric',
  226. name: 'password_format',
  227. desc: '',
  228. args: [],
  229. );
  230. }
  231. /// `Get Code`
  232. String get get_code {
  233. return Intl.message(
  234. 'Get Code',
  235. name: 'get_code',
  236. desc: '',
  237. args: [],
  238. );
  239. }
  240. /// `First Name`
  241. String get first_name {
  242. return Intl.message(
  243. 'First Name',
  244. name: 'first_name',
  245. desc: '',
  246. args: [],
  247. );
  248. }
  249. /// `Last Name`
  250. String get last_name {
  251. return Intl.message(
  252. 'Last Name',
  253. name: 'last_name',
  254. desc: '',
  255. args: [],
  256. );
  257. }
  258. /// `We have sent you an SMS verification code Please enter it below`
  259. String get sign_up_verify_txt {
  260. return Intl.message(
  261. 'We have sent you an SMS verification code Please enter it below',
  262. name: 'sign_up_verify_txt',
  263. desc: '',
  264. args: [],
  265. );
  266. }
  267. /// `Did Not Receive?`
  268. String get did_not_receive {
  269. return Intl.message(
  270. 'Did Not Receive?',
  271. name: 'did_not_receive',
  272. desc: '',
  273. args: [],
  274. );
  275. }
  276. /// `Resend Code`
  277. String get resend_code {
  278. return Intl.message(
  279. 'Resend Code',
  280. name: 'resend_code',
  281. desc: '',
  282. args: [],
  283. );
  284. }
  285. /// `You have`
  286. String get you_have {
  287. return Intl.message(
  288. 'You have',
  289. name: 'you_have',
  290. desc: '',
  291. args: [],
  292. );
  293. }
  294. /// `Tries Left`
  295. String get tries_left {
  296. return Intl.message(
  297. 'Tries Left',
  298. name: 'tries_left',
  299. desc: '',
  300. args: [],
  301. );
  302. }
  303. /// `Welcome {name}`
  304. String welcome_name(Object name) {
  305. return Intl.message(
  306. 'Welcome $name',
  307. name: 'welcome_name',
  308. desc: '',
  309. args: [name],
  310. );
  311. }
  312. /// `You have successfully created an YY Home account`
  313. String get sign_up_success_txt1 {
  314. return Intl.message(
  315. 'You have successfully created an YY Home account',
  316. name: 'sign_up_success_txt1',
  317. desc: '',
  318. args: [],
  319. );
  320. }
  321. /// `Your username is your email address and please keep your password safe`
  322. String get sign_up_success_txt2 {
  323. return Intl.message(
  324. 'Your username is your email address and please keep your password safe',
  325. name: 'sign_up_success_txt2',
  326. desc: '',
  327. args: [],
  328. );
  329. }
  330. /// `Now, let's get you connected to your estate and community`
  331. String get sign_up_success_txt3 {
  332. return Intl.message(
  333. 'Now, let\'s get you connected to your estate and community',
  334. name: 'sign_up_success_txt3',
  335. desc: '',
  336. args: [],
  337. );
  338. }
  339. /// `let's get started`
  340. String get get_started {
  341. return Intl.message(
  342. 'let\'s get started',
  343. name: 'get_started',
  344. desc: '',
  345. args: [],
  346. );
  347. }
  348. /// `YY Home Accounts`
  349. String get yy_home_accounts {
  350. return Intl.message(
  351. 'YY Home Accounts',
  352. name: 'yy_home_accounts',
  353. desc: '',
  354. args: [],
  355. );
  356. }
  357. /// `Block`
  358. String get block {
  359. return Intl.message(
  360. 'Block',
  361. name: 'block',
  362. desc: '',
  363. args: [],
  364. );
  365. }
  366. /// `Unit Number`
  367. String get unit_number {
  368. return Intl.message(
  369. 'Unit Number',
  370. name: 'unit_number',
  371. desc: '',
  372. args: [],
  373. );
  374. }
  375. /// `Block refers to the street number of the unit's official mailing address`
  376. String get block_desc {
  377. return Intl.message(
  378. 'Block refers to the street number of the unit\'s official mailing address',
  379. name: 'block_desc',
  380. desc: '',
  381. args: [],
  382. );
  383. }
  384. /// `123 Example Road #08-08 Country 123456`
  385. String get block_example {
  386. return Intl.message(
  387. '123 Example Road #08-08 Country 123456',
  388. name: 'block_example',
  389. desc: '',
  390. args: [],
  391. );
  392. }
  393. /// `123 is the block number #08-08 is the unit number`
  394. String get block_example_desc {
  395. return Intl.message(
  396. '123 is the block number #08-08 is the unit number',
  397. name: 'block_example_desc',
  398. desc: '',
  399. args: [],
  400. );
  401. }
  402. /// `Estate or Building Name?`
  403. String get estate_or_building_name {
  404. return Intl.message(
  405. 'Estate or Building Name?',
  406. name: 'estate_or_building_name',
  407. desc: '',
  408. args: [],
  409. );
  410. }
  411. /// `Type Here`
  412. String get type_here {
  413. return Intl.message(
  414. 'Type Here',
  415. name: 'type_here',
  416. desc: '',
  417. args: [],
  418. );
  419. }
  420. /// `Tell us the name of the estateor building you are applying to`
  421. String get estate_name_desc {
  422. return Intl.message(
  423. 'Tell us the name of the estateor building you are applying to',
  424. name: 'estate_name_desc',
  425. desc: '',
  426. args: [],
  427. );
  428. }
  429. /// `Are you an owner or tenant?`
  430. String get owner_or_tenant {
  431. return Intl.message(
  432. 'Are you an owner or tenant?',
  433. name: 'owner_or_tenant',
  434. desc: '',
  435. args: [],
  436. );
  437. }
  438. /// `Owner`
  439. String get owner {
  440. return Intl.message(
  441. 'Owner',
  442. name: 'owner',
  443. desc: '',
  444. args: [],
  445. );
  446. }
  447. /// `Tenant`
  448. String get tenant {
  449. return Intl.message(
  450. 'Tenant',
  451. name: 'tenant',
  452. desc: '',
  453. args: [],
  454. );
  455. }
  456. /// `Who are owners?`
  457. String get who_are_owners {
  458. return Intl.message(
  459. 'Who are owners?',
  460. name: 'who_are_owners',
  461. desc: '',
  462. args: [],
  463. );
  464. }
  465. /// `My name is in the strata title`
  466. String get owners_desc1 {
  467. return Intl.message(
  468. 'My name is in the strata title',
  469. name: 'owners_desc1',
  470. desc: '',
  471. args: [],
  472. );
  473. }
  474. /// `My name is in the strata title and l have rented out my unit`
  475. String get owners_desc2 {
  476. return Intl.message(
  477. 'My name is in the strata title and l have rented out my unit',
  478. name: 'owners_desc2',
  479. desc: '',
  480. args: [],
  481. );
  482. }
  483. /// `I live in the same household as the named owner`
  484. String get owners_desc3 {
  485. return Intl.message(
  486. 'I live in the same household as the named owner',
  487. name: 'owners_desc3',
  488. desc: '',
  489. args: [],
  490. );
  491. }
  492. /// `I am the shareholder of the company that owns the unit`
  493. String get owners_desc4 {
  494. return Intl.message(
  495. 'I am the shareholder of the company that owns the unit',
  496. name: 'owners_desc4',
  497. desc: '',
  498. args: [],
  499. );
  500. }
  501. /// `The Management will verify your application accordingly`
  502. String get owners_desc5 {
  503. return Intl.message(
  504. 'The Management will verify your application accordingly',
  505. name: 'owners_desc5',
  506. desc: '',
  507. args: [],
  508. );
  509. }
  510. /// `Who are tenants?`
  511. String get who_are_tenants {
  512. return Intl.message(
  513. 'Who are tenants?',
  514. name: 'who_are_tenants',
  515. desc: '',
  516. args: [],
  517. );
  518. }
  519. /// `My name is in the lease agreement`
  520. String get tenants_desc1 {
  521. return Intl.message(
  522. 'My name is in the lease agreement',
  523. name: 'tenants_desc1',
  524. desc: '',
  525. args: [],
  526. );
  527. }
  528. /// `I live in the same household as the named tenant`
  529. String get tenants_desc2 {
  530. return Intl.message(
  531. 'I live in the same household as the named tenant',
  532. name: 'tenants_desc2',
  533. desc: '',
  534. args: [],
  535. );
  536. }
  537. /// `I am the tenant of the company that rented the unit`
  538. String get tenants_desc3 {
  539. return Intl.message(
  540. 'I am the tenant of the company that rented the unit',
  541. name: 'tenants_desc3',
  542. desc: '',
  543. args: [],
  544. );
  545. }
  546. /// `The Management will verify your application accordingly`
  547. String get tenants_desc4 {
  548. return Intl.message(
  549. 'The Management will verify your application accordingly',
  550. name: 'tenants_desc4',
  551. desc: '',
  552. args: [],
  553. );
  554. }
  555. /// `Upload Documents`
  556. String get upload_documents {
  557. return Intl.message(
  558. 'Upload Documents',
  559. name: 'upload_documents',
  560. desc: '',
  561. args: [],
  562. );
  563. }
  564. /// `The Management requires that you upload the following documents to verify your tenancy. You may redact sensitive financia information`
  565. String get upload_doc_desc {
  566. return Intl.message(
  567. 'The Management requires that you upload the following documents to verify your tenancy. You may redact sensitive financia information',
  568. name: 'upload_doc_desc',
  569. desc: '',
  570. args: [],
  571. );
  572. }
  573. /// `(1)A valid tenancy agreement showing your name,unit numper,tenancy expiration date and a list of occupants (if applicable)`
  574. String get upload_doc_desc1 {
  575. return Intl.message(
  576. '(1)A valid tenancy agreement showing your name,unit numper,tenancy expiration date and a list of occupants (if applicable)',
  577. name: 'upload_doc_desc1',
  578. desc: '',
  579. args: [],
  580. );
  581. }
  582. /// `(2)Tenancy Agreement Stamp Duty receipt`
  583. String get upload_doc_desc2 {
  584. return Intl.message(
  585. '(2)Tenancy Agreement Stamp Duty receipt',
  586. name: 'upload_doc_desc2',
  587. desc: '',
  588. args: [],
  589. );
  590. }
  591. /// `Upload`
  592. String get upload {
  593. return Intl.message(
  594. 'Upload',
  595. name: 'upload',
  596. desc: '',
  597. args: [],
  598. );
  599. }
  600. /// `Following`
  601. String get following {
  602. return Intl.message(
  603. 'Following',
  604. name: 'following',
  605. desc: '',
  606. args: [],
  607. );
  608. }
  609. /// `Followers`
  610. String get followers {
  611. return Intl.message(
  612. 'Followers',
  613. name: 'followers',
  614. desc: '',
  615. args: [],
  616. );
  617. }
  618. /// `My Posts`
  619. String get my_post {
  620. return Intl.message(
  621. 'My Posts',
  622. name: 'my_post',
  623. desc: '',
  624. args: [],
  625. );
  626. }
  627. /// `Household`
  628. String get household {
  629. return Intl.message(
  630. 'Household',
  631. name: 'household',
  632. desc: '',
  633. args: [],
  634. );
  635. }
  636. /// `Estate`
  637. String get estate {
  638. return Intl.message(
  639. 'Estate',
  640. name: 'estate',
  641. desc: '',
  642. args: [],
  643. );
  644. }
  645. /// `Settings`
  646. String get settings {
  647. return Intl.message(
  648. 'Settings',
  649. name: 'settings',
  650. desc: '',
  651. args: [],
  652. );
  653. }
  654. /// `Enable Notification`
  655. String get enable_notification {
  656. return Intl.message(
  657. 'Enable Notification',
  658. name: 'enable_notification',
  659. desc: '',
  660. args: [],
  661. );
  662. }
  663. /// `Change Mobile Phone`
  664. String get change_mobile_phone {
  665. return Intl.message(
  666. 'Change Mobile Phone',
  667. name: 'change_mobile_phone',
  668. desc: '',
  669. args: [],
  670. );
  671. }
  672. /// `Privacy Policy`
  673. String get privacy_policy {
  674. return Intl.message(
  675. 'Privacy Policy',
  676. name: 'privacy_policy',
  677. desc: '',
  678. args: [],
  679. );
  680. }
  681. /// `Terms & Conditions`
  682. String get terms_conditions {
  683. return Intl.message(
  684. 'Terms & Conditions',
  685. name: 'terms_conditions',
  686. desc: '',
  687. args: [],
  688. );
  689. }
  690. /// `Account Deactivation`
  691. String get account_deactivation {
  692. return Intl.message(
  693. 'Account Deactivation',
  694. name: 'account_deactivation',
  695. desc: '',
  696. args: [],
  697. );
  698. }
  699. /// `Rate Us`
  700. String get rate_us {
  701. return Intl.message(
  702. 'Rate Us',
  703. name: 'rate_us',
  704. desc: '',
  705. args: [],
  706. );
  707. }
  708. /// `Version No.`
  709. String get version_no {
  710. return Intl.message(
  711. 'Version No.',
  712. name: 'version_no',
  713. desc: '',
  714. args: [],
  715. );
  716. }
  717. /// `Logout`
  718. String get logout {
  719. return Intl.message(
  720. 'Logout',
  721. name: 'logout',
  722. desc: '',
  723. args: [],
  724. );
  725. }
  726. /// `Old Mobile Phone`
  727. String get old_mobile_phone {
  728. return Intl.message(
  729. 'Old Mobile Phone',
  730. name: 'old_mobile_phone',
  731. desc: '',
  732. args: [],
  733. );
  734. }
  735. /// `New Mobile Phone`
  736. String get new_mobile_phone {
  737. return Intl.message(
  738. 'New Mobile Phone',
  739. name: 'new_mobile_phone',
  740. desc: '',
  741. args: [],
  742. );
  743. }
  744. /// `Submit`
  745. String get submit {
  746. return Intl.message(
  747. 'Submit',
  748. name: 'submit',
  749. desc: '',
  750. args: [],
  751. );
  752. }
  753. /// `New Password`
  754. String get new_password {
  755. return Intl.message(
  756. 'New Password',
  757. name: 'new_password',
  758. desc: '',
  759. args: [],
  760. );
  761. }
  762. /// `Confirm New Password`
  763. String get confirm_new_password {
  764. return Intl.message(
  765. 'Confirm New Password',
  766. name: 'confirm_new_password',
  767. desc: '',
  768. args: [],
  769. );
  770. }
  771. /// `Cancel`
  772. String get cancel {
  773. return Intl.message(
  774. 'Cancel',
  775. name: 'cancel',
  776. desc: '',
  777. args: [],
  778. );
  779. }
  780. /// `Confirm`
  781. String get confirm {
  782. return Intl.message(
  783. 'Confirm',
  784. name: 'confirm',
  785. desc: '',
  786. args: [],
  787. );
  788. }
  789. /// `Yes`
  790. String get yes {
  791. return Intl.message(
  792. 'Yes',
  793. name: 'yes',
  794. desc: '',
  795. args: [],
  796. );
  797. }
  798. /// `No`
  799. String get no {
  800. return Intl.message(
  801. 'No',
  802. name: 'no',
  803. desc: '',
  804. args: [],
  805. );
  806. }
  807. /// `Alert`
  808. String get alert {
  809. return Intl.message(
  810. 'Alert',
  811. name: 'alert',
  812. desc: '',
  813. args: [],
  814. );
  815. }
  816. /// `Are you sure you want to logout?`
  817. String get logout_alert {
  818. return Intl.message(
  819. 'Are you sure you want to logout?',
  820. name: 'logout_alert',
  821. desc: '',
  822. args: [],
  823. );
  824. }
  825. /// `Are you sure you want to deactivate your account? You will not be able to login into the app once you proceed with the request.`
  826. String get account_deactivate_alert {
  827. return Intl.message(
  828. 'Are you sure you want to deactivate your account? You will not be able to login into the app once you proceed with the request.',
  829. name: 'account_deactivate_alert',
  830. desc: '',
  831. args: [],
  832. );
  833. }
  834. /// `Home`
  835. String get home {
  836. return Intl.message(
  837. 'Home',
  838. name: 'home',
  839. desc: '',
  840. args: [],
  841. );
  842. }
  843. /// `Visitor`
  844. String get visitor {
  845. return Intl.message(
  846. 'Visitor',
  847. name: 'visitor',
  848. desc: '',
  849. args: [],
  850. );
  851. }
  852. /// `FeedBack`
  853. String get feedback {
  854. return Intl.message(
  855. 'FeedBack',
  856. name: 'feedback',
  857. desc: '',
  858. args: [],
  859. );
  860. }
  861. /// `Me`
  862. String get me {
  863. return Intl.message(
  864. 'Me',
  865. name: 'me',
  866. desc: '',
  867. args: [],
  868. );
  869. }
  870. /// `Property`
  871. String get property {
  872. return Intl.message(
  873. 'Property',
  874. name: 'property',
  875. desc: '',
  876. args: [],
  877. );
  878. }
  879. /// `Service`
  880. String get service {
  881. return Intl.message(
  882. 'Service',
  883. name: 'service',
  884. desc: '',
  885. args: [],
  886. );
  887. }
  888. /// `Community`
  889. String get community {
  890. return Intl.message(
  891. 'Community',
  892. name: 'community',
  893. desc: '',
  894. args: [],
  895. );
  896. }
  897. /// `Latest News`
  898. String get latest_news {
  899. return Intl.message(
  900. 'Latest News',
  901. name: 'latest_news',
  902. desc: '',
  903. args: [],
  904. );
  905. }
  906. /// `Internal`
  907. String get internal {
  908. return Intl.message(
  909. 'Internal',
  910. name: 'internal',
  911. desc: '',
  912. args: [],
  913. );
  914. }
  915. /// `Info`
  916. String get info {
  917. return Intl.message(
  918. 'Info',
  919. name: 'info',
  920. desc: '',
  921. args: [],
  922. );
  923. }
  924. /// `Publish`
  925. String get publish {
  926. return Intl.message(
  927. 'Publish',
  928. name: 'publish',
  929. desc: '',
  930. args: [],
  931. );
  932. }
  933. /// `Latest Transactions`
  934. String get latest_transactions {
  935. return Intl.message(
  936. 'Latest Transactions',
  937. name: 'latest_transactions',
  938. desc: '',
  939. args: [],
  940. );
  941. }
  942. /// `Property News`
  943. String get property_news {
  944. return Intl.message(
  945. 'Property News',
  946. name: 'property_news',
  947. desc: '',
  948. args: [],
  949. );
  950. }
  951. /// `Strata Management Guides`
  952. String get strata_management_guides {
  953. return Intl.message(
  954. 'Strata Management Guides',
  955. name: 'strata_management_guides',
  956. desc: '',
  957. args: [],
  958. );
  959. }
  960. /// `Introduction to info-pack`
  961. String get introduction_to_info_pack {
  962. return Intl.message(
  963. 'Introduction to info-pack',
  964. name: 'introduction_to_info_pack',
  965. desc: '',
  966. args: [],
  967. );
  968. }
  969. /// `Your roles & responsibilities`
  970. String get your_roles_responsibilities {
  971. return Intl.message(
  972. 'Your roles & responsibilities',
  973. name: 'your_roles_responsibilities',
  974. desc: '',
  975. args: [],
  976. );
  977. }
  978. /// `Property Guide`
  979. String get property_guide {
  980. return Intl.message(
  981. 'Property Guide',
  982. name: 'property_guide',
  983. desc: '',
  984. args: [],
  985. );
  986. }
  987. /// `Now`
  988. String get visitor_now {
  989. return Intl.message(
  990. 'Now',
  991. name: 'visitor_now',
  992. desc: '',
  993. args: [],
  994. );
  995. }
  996. /// `Active`
  997. String get visitor_active {
  998. return Intl.message(
  999. 'Active',
  1000. name: 'visitor_active',
  1001. desc: '',
  1002. args: [],
  1003. );
  1004. }
  1005. /// `History`
  1006. String get history {
  1007. return Intl.message(
  1008. 'History',
  1009. name: 'history',
  1010. desc: '',
  1011. args: [],
  1012. );
  1013. }
  1014. /// `The community visitor system is an intelligent system designed to enhance community security management and facilitate visitor access.`
  1015. String get visitor_msg {
  1016. return Intl.message(
  1017. 'The community visitor system is an intelligent system designed to enhance community security management and facilitate visitor access.',
  1018. name: 'visitor_msg',
  1019. desc: '',
  1020. args: [],
  1021. );
  1022. }
  1023. /// `Visitor Registration`
  1024. String get visitor_registration {
  1025. return Intl.message(
  1026. 'Visitor Registration',
  1027. name: 'visitor_registration',
  1028. desc: '',
  1029. args: [],
  1030. );
  1031. }
  1032. /// `Full Name`
  1033. String get full_name {
  1034. return Intl.message(
  1035. 'Full Name',
  1036. name: 'full_name',
  1037. desc: '',
  1038. args: [],
  1039. );
  1040. }
  1041. /// `NRIC/FIN`
  1042. String get nric_fin {
  1043. return Intl.message(
  1044. 'NRIC/FIN',
  1045. name: 'nric_fin',
  1046. desc: '',
  1047. args: [],
  1048. );
  1049. }
  1050. /// `License Plate Number`
  1051. String get license_plate_number {
  1052. return Intl.message(
  1053. 'License Plate Number',
  1054. name: 'license_plate_number',
  1055. desc: '',
  1056. args: [],
  1057. );
  1058. }
  1059. /// `Access Date`
  1060. String get access_date {
  1061. return Intl.message(
  1062. 'Access Date',
  1063. name: 'access_date',
  1064. desc: '',
  1065. args: [],
  1066. );
  1067. }
  1068. /// `Notes`
  1069. String get notes {
  1070. return Intl.message(
  1071. 'Notes',
  1072. name: 'notes',
  1073. desc: '',
  1074. args: [],
  1075. );
  1076. }
  1077. /// `{count} Characters`
  1078. String characters(Object count) {
  1079. return Intl.message(
  1080. '$count Characters',
  1081. name: 'characters',
  1082. desc: '',
  1083. args: [count],
  1084. );
  1085. }
  1086. /// `Sent`
  1087. String get sent {
  1088. return Intl.message(
  1089. 'Sent',
  1090. name: 'sent',
  1091. desc: '',
  1092. args: [],
  1093. );
  1094. }
  1095. /// `In Progress`
  1096. String get in_progress {
  1097. return Intl.message(
  1098. 'In Progress',
  1099. name: 'in_progress',
  1100. desc: '',
  1101. args: [],
  1102. );
  1103. }
  1104. /// `Help us keep your estate beautiful`
  1105. String get feedback_msg_1 {
  1106. return Intl.message(
  1107. 'Help us keep your estate beautiful',
  1108. name: 'feedback_msg_1',
  1109. desc: '',
  1110. args: [],
  1111. );
  1112. }
  1113. /// `there is something that requires ourattention or if you have an awesome suggestion, we would like to hear from you!`
  1114. String get feedback_msg_2 {
  1115. return Intl.message(
  1116. 'there is something that requires ourattention or if you have an awesome suggestion, we would like to hear from you!',
  1117. name: 'feedback_msg_2',
  1118. desc: '',
  1119. args: [],
  1120. );
  1121. }
  1122. /// `Create New FeedBack`
  1123. String get create_new_feedback {
  1124. return Intl.message(
  1125. 'Create New FeedBack',
  1126. name: 'create_new_feedback',
  1127. desc: '',
  1128. args: [],
  1129. );
  1130. }
  1131. /// `Mark All`
  1132. String get mark_all {
  1133. return Intl.message(
  1134. 'Mark All',
  1135. name: 'mark_all',
  1136. desc: '',
  1137. args: [],
  1138. );
  1139. }
  1140. /// `Choose a Category`
  1141. String get choose_category {
  1142. return Intl.message(
  1143. 'Choose a Category',
  1144. name: 'choose_category',
  1145. desc: '',
  1146. args: [],
  1147. );
  1148. }
  1149. /// `Title`
  1150. String get title {
  1151. return Intl.message(
  1152. 'Title',
  1153. name: 'title',
  1154. desc: '',
  1155. args: [],
  1156. );
  1157. }
  1158. /// `Describe Your FeedBack`
  1159. String get describe_your_feedback {
  1160. return Intl.message(
  1161. 'Describe Your FeedBack',
  1162. name: 'describe_your_feedback',
  1163. desc: '',
  1164. args: [],
  1165. );
  1166. }
  1167. /// `Upload Pictures`
  1168. String get upload_pictures {
  1169. return Intl.message(
  1170. 'Upload Pictures',
  1171. name: 'upload_pictures',
  1172. desc: '',
  1173. args: [],
  1174. );
  1175. }
  1176. /// `Send FeedBack`
  1177. String get send_feedback {
  1178. return Intl.message(
  1179. 'Send FeedBack',
  1180. name: 'send_feedback',
  1181. desc: '',
  1182. args: [],
  1183. );
  1184. }
  1185. /// `(Up to 10 images can be uploaded)`
  1186. String get Up_to_max_images {
  1187. return Intl.message(
  1188. '(Up to 10 images can be uploaded)',
  1189. name: 'Up_to_max_images',
  1190. desc: '',
  1191. args: [],
  1192. );
  1193. }
  1194. /// `Published Successfully`
  1195. String get published_successfully {
  1196. return Intl.message(
  1197. 'Published Successfully',
  1198. name: 'published_successfully',
  1199. desc: '',
  1200. args: [],
  1201. );
  1202. }
  1203. /// `Your feedback has been successfully sent! We will reply to you as soon as possible! thank you!`
  1204. String get published_successful_txt {
  1205. return Intl.message(
  1206. 'Your feedback has been successfully sent! We will reply to you as soon as possible! thank you!',
  1207. name: 'published_successful_txt',
  1208. desc: '',
  1209. args: [],
  1210. );
  1211. }
  1212. /// `Back Home`
  1213. String get back_home {
  1214. return Intl.message(
  1215. 'Back Home',
  1216. name: 'back_home',
  1217. desc: '',
  1218. args: [],
  1219. );
  1220. }
  1221. /// `Waiting for the administrator`
  1222. String get waiting_for_the_administrator {
  1223. return Intl.message(
  1224. 'Waiting for the administrator',
  1225. name: 'waiting_for_the_administrator',
  1226. desc: '',
  1227. args: [],
  1228. );
  1229. }
  1230. /// `Administrator Reply`
  1231. String get administrator_reply {
  1232. return Intl.message(
  1233. 'Administrator Reply',
  1234. name: 'administrator_reply',
  1235. desc: '',
  1236. args: [],
  1237. );
  1238. }
  1239. /// `Other`
  1240. String get other {
  1241. return Intl.message(
  1242. 'Other',
  1243. name: 'other',
  1244. desc: '',
  1245. args: [],
  1246. );
  1247. }
  1248. }
  1249. class AppLocalizationDelegate extends LocalizationsDelegate<S> {
  1250. const AppLocalizationDelegate();
  1251. List<Locale> get supportedLocales {
  1252. return const <Locale>[
  1253. Locale.fromSubtags(languageCode: 'en'),
  1254. Locale.fromSubtags(languageCode: 'zh', countryCode: 'CN'),
  1255. Locale.fromSubtags(languageCode: 'zh', countryCode: 'HK'),
  1256. ];
  1257. }
  1258. @override
  1259. bool isSupported(Locale locale) => _isSupported(locale);
  1260. @override
  1261. Future<S> load(Locale locale) => S.load(locale);
  1262. @override
  1263. bool shouldReload(AppLocalizationDelegate old) => false;
  1264. bool _isSupported(Locale locale) {
  1265. for (var supportedLocale in supportedLocales) {
  1266. if (supportedLocale.languageCode == locale.languageCode) {
  1267. return true;
  1268. }
  1269. }
  1270. return false;
  1271. }
  1272. }