This commit is contained in:
2020-12-23 00:43:59 -05:00
parent 0fd880f57b
commit 86c845b49b
54 changed files with 3638 additions and 107 deletions

View File

@@ -21,6 +21,35 @@ class MessageLookup extends MessageLookupByLibrary {
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> {
"about" : MessageLookupByLibrary.simpleMessage("About"),
"about_us" : MessageLookupByLibrary.simpleMessage("About us"),
"blog" : MessageLookupByLibrary.simpleMessage("Blog"),
"contact_us" : MessageLookupByLibrary.simpleMessage("Contact us"),
"developer_of" : MessageLookupByLibrary.simpleMessage("Developers of"),
"download" : MessageLookupByLibrary.simpleMessage("Download"),
"home" : MessageLookupByLibrary.simpleMessage("Home"),
"information" : MessageLookupByLibrary.simpleMessage("Information"),
"learn_more" : MessageLookupByLibrary.simpleMessage("Learn more..."),
"license_agreement" : MessageLookupByLibrary.simpleMessage("License agreement"),
"loading_please_wait" : MessageLookupByLibrary.simpleMessage("Loading, please wait..."),
"login" : MessageLookupByLibrary.simpleMessage("Login"),
"logout" : MessageLookupByLibrary.simpleMessage("Logout"),
"main_content_1" : MessageLookupByLibrary.simpleMessage("Since 1999, we have been committed to developing a complete and powerful sales system, helping thousands of small businesses handle sales smoothly. Currently we have two main products."),
"minipos" : MessageLookupByLibrary.simpleMessage("MiniPOS"),
"navigation" : MessageLookupByLibrary.simpleMessage("Navigation"),
"point_of_sale_system_solution" : MessageLookupByLibrary.simpleMessage("Point of sale system solution"),
"privacy_policy" : MessageLookupByLibrary.simpleMessage("Privacy policy"),
"recalculating" : MessageLookupByLibrary.simpleMessage("Recalculating..."),
"renew_license" : MessageLookupByLibrary.simpleMessage("Renew license"),
"return_policy" : MessageLookupByLibrary.simpleMessage("Return policy"),
"service_policy" : MessageLookupByLibrary.simpleMessage("Service policy"),
"shop" : MessageLookupByLibrary.simpleMessage("Shop"),
"submitting" : MessageLookupByLibrary.simpleMessage("Submitting..."),
"submitting_please_wait" : MessageLookupByLibrary.simpleMessage("Submitting, please wait..."),
"support" : MessageLookupByLibrary.simpleMessage("Support"),
"support_ticket" : MessageLookupByLibrary.simpleMessage("Support ticket"),
"tap_back_again_to_exit" : MessageLookupByLibrary.simpleMessage("Tap back again to exit"),
"tutorials" : MessageLookupByLibrary.simpleMessage("Tutorials"),
"wiki" : MessageLookupByLibrary.simpleMessage("Wiki")
};
}