backend
This commit is contained in:
parent
193ae3b0ea
commit
3e374d24f6
13 changed files with 126 additions and 3 deletions
|
@ -22,6 +22,7 @@ class MessageLookup extends MessageLookupByLibrary {
|
|||
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
|
||||
"image": MessageLookupByLibrary.simpleMessage("Image"),
|
||||
"somethingWentWrong":
|
||||
MessageLookupByLibrary.simpleMessage("Something went wrong")
|
||||
};
|
||||
|
|
|
@ -59,6 +59,16 @@ class Strings {
|
|||
args: [],
|
||||
);
|
||||
}
|
||||
|
||||
/// `Image`
|
||||
String get image {
|
||||
return Intl.message(
|
||||
'Image',
|
||||
name: 'image',
|
||||
desc: '',
|
||||
args: [],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppLocalizationDelegate extends LocalizationsDelegate<Strings> {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"@@locale": "en",
|
||||
"somethingWentWrong": "Something went wrong"
|
||||
"somethingWentWrong": "Something went wrong",
|
||||
|
||||
"image": "Image"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue