l10n.dart
6 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
// GENERATED CODE - DO NOT MODIFY BY HAND
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'intl/messages_all.dart';
// **************************************************************************
// Generator: Flutter Intl IDE plugin
// Made by Localizely
// **************************************************************************
// ignore_for_file: non_constant_identifier_names, lines_longer_than_80_chars
// ignore_for_file: join_return_with_assignment, prefer_final_in_for_each
// ignore_for_file: avoid_redundant_argument_values, avoid_escaping_inner_quotes
class S {
S();
static S? _current;
static S get current {
assert(_current != null,
'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.');
return _current!;
}
static const AppLocalizationDelegate delegate = AppLocalizationDelegate();
static Future<S> load(Locale locale) {
final name = (locale.countryCode?.isEmpty ?? false)
? locale.languageCode
: locale.toString();
final localeName = Intl.canonicalizedLocale(name);
return initializeMessages(localeName).then((_) {
Intl.defaultLocale = localeName;
final instance = S();
S._current = instance;
return instance;
});
}
static S of(BuildContext context) {
final instance = S.maybeOf(context);
assert(instance != null,
'No instance of S present in the widget tree. Did you add S.delegate in localizationsDelegates?');
return instance!;
}
static S? maybeOf(BuildContext context) {
return Localizations.of<S>(context, S);
}
/// `One Poem`
String get title {
return Intl.message(
'One Poem',
name: 'title',
desc: 'Title for the application',
args: [],
);
}
/// `Verification Code Login`
String get verificationCodeLogin {
return Intl.message(
'Verification Code Login',
name: 'verificationCodeLogin',
desc: 'Title for the Login page',
args: [],
);
}
/// `Password Login`
String get passwordLogin {
return Intl.message(
'Password Login',
name: 'passwordLogin',
desc: 'Password Login',
args: [],
);
}
/// `Login`
String get login {
return Intl.message(
'Login',
name: 'login',
desc: 'Login',
args: [],
);
}
/// `Forgot Password`
String get forgotPasswordLink {
return Intl.message(
'Forgot Password',
name: 'forgotPasswordLink',
desc: 'Forgot Password',
args: [],
);
}
/// `Please enter the password`
String get inputPasswordHint {
return Intl.message(
'Please enter the password',
name: 'inputPasswordHint',
desc: 'Please enter the password',
args: [],
);
}
/// `Please input username`
String get inputUsernameHint {
return Intl.message(
'Please input username',
name: 'inputUsernameHint',
desc: 'Please input username',
args: [],
);
}
/// `No account yet? Register now`
String get noAccountRegisterLink {
return Intl.message(
'No account yet? Register now',
name: 'noAccountRegisterLink',
desc: 'No account yet? Register now',
args: [],
);
}
/// `Register`
String get register {
return Intl.message(
'Register',
name: 'register',
desc: 'Register',
args: [],
);
}
/// `Open your account`
String get openYourAccount {
return Intl.message(
'Open your account',
name: 'openYourAccount',
desc: 'Open your account',
args: [],
);
}
/// `Please enter phone number`
String get inputPhoneHint {
return Intl.message(
'Please enter phone number',
name: 'inputPhoneHint',
desc: 'Please enter phone number',
args: [],
);
}
/// `Please enter verification code`
String get inputVerificationCodeHint {
return Intl.message(
'Please enter verification code',
name: 'inputVerificationCodeHint',
desc: 'Please enter verification code',
args: [],
);
}
/// `Please input valid mobile phone number`
String get inputPhoneInvalid {
return Intl.message(
'Please input valid mobile phone number',
name: 'inputPhoneInvalid',
desc: 'Please input valid mobile phone number',
args: [],
);
}
/// `Not really sent, just log in!`
String get verificationButton {
return Intl.message(
'Not really sent, just log in!',
name: 'verificationButton',
desc: 'Not really sent, just log in!',
args: [],
);
}
/// `Get verification code`
String get getVerificationCode {
return Intl.message(
'Get verification code',
name: 'getVerificationCode',
desc: 'Get verification code',
args: [],
);
}
/// `Confirm`
String get confirm {
return Intl.message(
'Confirm',
name: 'confirm',
desc: '',
args: [],
);
}
/// `Reset Login Password`
String get resetLoginPassword {
return Intl.message(
'Reset Login Password',
name: 'resetLoginPassword',
desc: 'Reset login password',
args: [],
);
}
/// `Unregistered mobile phone number, please `
String get registeredTips {
return Intl.message(
'Unregistered mobile phone number, please ',
name: 'registeredTips',
desc: 'Registered Tips',
args: [],
);
}
}
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
const AppLocalizationDelegate();
List<Locale> get supportedLocales {
return const <Locale>[
Locale.fromSubtags(languageCode: 'en'),
Locale.fromSubtags(languageCode: 'zh'),
];
}
@override
bool isSupported(Locale locale) => _isSupported(locale);
@override
Future<S> load(Locale locale) => S.load(locale);
@override
bool shouldReload(AppLocalizationDelegate old) => false;
bool _isSupported(Locale locale) {
for (var supportedLocale in supportedLocales) {
if (supportedLocale.languageCode == locale.languageCode) {
return true;
}
}
return false;
}
}