-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages_en.dart
More file actions
85 lines (79 loc) · 3.96 KB
/
messages_en.dart
File metadata and controls
85 lines (79 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
// This is a library that provides messages for a en locale. All the
// messages from the main program should be duplicated here with the same
// function name.
// Ignore issues from commonly used lints in this file.
// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new
// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering
// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases
// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes
// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes
import 'package:intl/intl.dart';
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
class MessageLookup extends MessageLookupByLibrary {
String get localeName => 'en';
final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
"appName": MessageLookupByLibrary.simpleMessage("Flutter Target"),
"cookiesAcceptCTA": MessageLookupByLibrary.simpleMessage("Accept"),
"cookiesBody": MessageLookupByLibrary.simpleMessage(
"We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.",
),
"cookiesTitle": MessageLookupByLibrary.simpleMessage(
"This website uses cookies",
),
"ctaLogin": MessageLookupByLibrary.simpleMessage("Login"),
"ctaSignUp": MessageLookupByLibrary.simpleMessage("Sign Up"),
"errorEmailInvalid": MessageLookupByLibrary.simpleMessage(
"Please enter a valid email address.",
),
"errorEmailRequired": MessageLookupByLibrary.simpleMessage(
"Email is required.",
),
"errorPasswordRequired": MessageLookupByLibrary.simpleMessage(
"Password is required.",
),
"errorPasswordWeak": MessageLookupByLibrary.simpleMessage(
"Password is too weak.",
),
"errorPasswordsDoNotMatch": MessageLookupByLibrary.simpleMessage(
"Passwords do not match.",
),
"hintTermsAndConditions": MessageLookupByLibrary.simpleMessage(
"This should open the terms and conditions URL.",
),
"labelAgreeToTerms": MessageLookupByLibrary.simpleMessage(
"I agree to the Terms and Conditions",
),
"labelConfirmPassword": MessageLookupByLibrary.simpleMessage(
"Confirm Password",
),
"labelEmail": MessageLookupByLibrary.simpleMessage("Email"),
"labelPassword": MessageLookupByLibrary.simpleMessage("Password"),
"loginErrorInvalidCredentials": MessageLookupByLibrary.simpleMessage(
"Invalid email or password.",
),
"noConnection": MessageLookupByLibrary.simpleMessage("No connection"),
"passwordInstructions": MessageLookupByLibrary.simpleMessage(
"Min 8 characters long: 1 uppercase letter, 1 lowercase letter, 1 number, and 1 special character.",
),
"pleaseTryAgainLaterWeArenworkingToFixTheIssue":
MessageLookupByLibrary.simpleMessage(
"Please try again later, we are\nworking to fix the issue.",
),
"retry": MessageLookupByLibrary.simpleMessage("Retry"),
"sorryWeDidntFindAnyProduct": MessageLookupByLibrary.simpleMessage(
"Sorry we didn\'t find any product",
),
"titleLogin": MessageLookupByLibrary.simpleMessage("Login"),
"titleLoginSubtitle": MessageLookupByLibrary.simpleMessage(
"Use your email and password to login to your account.",
),
"titleSignUp": MessageLookupByLibrary.simpleMessage("Sign Up"),
"titleSignUpSubtitle": MessageLookupByLibrary.simpleMessage(
"Create an account using your email and password.",
),
};
}