codegen_loader.g.dart 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // DO NOT EDIT. This is code generated via package:easy_localization/generate.dart
  2. // ignore_for_file: prefer_single_quotes
  3. import 'dart:ui';
  4. import 'package:easy_localization/easy_localization.dart' show AssetLoader;
  5. class CodegenLoader extends AssetLoader{
  6. const CodegenLoader();
  7. @override
  8. Future<Map<String, dynamic>> load(String fullPath, Locale locale ) {
  9. return Future.value(mapLocales[locale.toString()]);
  10. }
  11. static const Map<String,dynamic> en = {
  12. "appName": "Appflowy",
  13. "defaultUsername": "Me",
  14. "welcomeText": "Welcome to @:appName",
  15. "githubStarText": "Star on GitHub",
  16. "subscribeNewsletterText": "Subscribe to Newsletter",
  17. "letsGoButtonText": "Let's Go",
  18. "title": "Title",
  19. "signUp": {
  20. "buttonText": "Sign Up",
  21. "title": "Sign Up to @:appName",
  22. "getStartedText": "Get Started",
  23. "emptyPasswordError": "Password can't be empty",
  24. "repeatPasswordEmptyError": "Repeat password can't be empty",
  25. "unmatchedPasswordError": "Repeat password is not the same as password",
  26. "alreadyHaveAnAccount": "Already have an account?",
  27. "emailHint": "Email",
  28. "passwordHint": "Password",
  29. "repeatPasswordHint": "Repeat password"
  30. },
  31. "signIn": {
  32. "loginTitle": "Login to @:appName",
  33. "loginButtonText": "Login",
  34. "buttonText": "Sign In",
  35. "forgotPassword": "Forgot Password?",
  36. "emailHint": "Email",
  37. "passwordHint": "Password",
  38. "dontHaveAnAccount": "Don't have an account?",
  39. "repeatPasswordEmptyError": "Repeat password can't be empty",
  40. "unmatchedPasswordError": "Repeat password is not the same as password"
  41. },
  42. "workspace": {
  43. "create": "Create workspace",
  44. "hint": "workspace",
  45. "notFoundError": "Workspace not found"
  46. },
  47. "shareAction": {
  48. "buttonText": "Share",
  49. "workInProgress": "Work in progress",
  50. "markdown": "Markdown",
  51. "copyLink": "Copy Link"
  52. },
  53. "disclosureAction": {
  54. "rename": "Rename",
  55. "delete": "Delete",
  56. "duplicate": "Duplicate"
  57. },
  58. "blankPageTitle": "Blank page",
  59. "newPageText": "New page",
  60. "trash": {
  61. "text": "Trash",
  62. "restoreAll": "Restore All",
  63. "deleteAll": "Delete All",
  64. "pageHeader": {
  65. "fileName": "File name",
  66. "lastModified": "Last Modified",
  67. "created": "Created"
  68. }
  69. },
  70. "deletePagePrompt": {
  71. "text": "This page is in Trash",
  72. "restore": "Restore page",
  73. "deletePermanent": "Delete permanently"
  74. },
  75. "dialogCreatePageNameHint": "Page name",
  76. "questionBubble": {
  77. "whatsNew": "What's new?",
  78. "help": "Help & Support"
  79. },
  80. "menuAppHeader": {
  81. "addPageTooltip": "Quickly add a page inside",
  82. "defaultNewPageName": "Untitles",
  83. "renameDialog": "Rename"
  84. },
  85. "toolbar": {
  86. "undo": "Undo",
  87. "redo": "Redo",
  88. "bold": "Bold",
  89. "italic": "Italic",
  90. "underline": "Underline",
  91. "strike": "Strikethrough",
  92. "numList": "Numbered List",
  93. "bulletList": "Bulleted List",
  94. "checkList": "Check List",
  95. "inlineCode": "Inline Code",
  96. "quote": "Quote Block"
  97. },
  98. "contactsPage": {
  99. "title": "Contacts",
  100. "whatsHappening": "What's happening this week?",
  101. "addContact": "Add Contact",
  102. "editContact": "Edit Contact"
  103. },
  104. "button": {
  105. "OK": "OK",
  106. "Cancel": "Cancel",
  107. "signIn": "Sign In",
  108. "signOut": "Sign Out",
  109. "complete": "Complete",
  110. "save": "Save"
  111. },
  112. "label": {
  113. "welcome": "Welcome!",
  114. "firstName": "First Name",
  115. "middleName": "Middle Name",
  116. "lastName": "Last Name",
  117. "stepX": "Step {X}"
  118. },
  119. "oAuth": {
  120. "err": {
  121. "failedTitle": "Unable to connect to your account.",
  122. "failedMsg": "Please make sure you've completed the sign-in process in your browser."
  123. },
  124. "google": {
  125. "title": "GOOGLE SIGN-IN",
  126. "instruction1": "In order to import your Google Contacts, you'll need to authorize this application using your web browser.",
  127. "instruction2": "Copy this code to your clipboard by clicking the icon or selecting the text:",
  128. "instruction3": "Navigate to the following link in your web browser, and enter the above code:",
  129. "instruction4": "Press the button below when you've completed signup:"
  130. }
  131. }
  132. };
  133. static const Map<String, Map<String,dynamic>> mapLocales = {"en": en};
  134. }