1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 23:16:09 +00:00

Localization + theme

This commit is contained in:
Yan Maniez 2020-03-03 16:03:31 +01:00
parent 622b6a3196
commit 1197df6527
13 changed files with 223 additions and 95 deletions

View file

@ -21,11 +21,14 @@ class MessageLookup extends MessageLookupByLibrary {
final messages = _notInlinedMessages(_notInlinedMessages);
static _notInlinedMessages(_) => <String, Function> {
"about_title" : MessageLookupByLibrary.simpleMessage("About..."),
"app_title" : MessageLookupByLibrary.simpleMessage("Hello World"),
"bookmarks_title" : MessageLookupByLibrary.simpleMessage("Bookmarks"),
"library_title" : MessageLookupByLibrary.simpleMessage("Library"),
"pceditor_title" : MessageLookupByLibrary.simpleMessage("Player Characters"),
"search_title" : MessageLookupByLibrary.simpleMessage("Search")
"aboutTitle" : MessageLookupByLibrary.simpleMessage("About..."),
"appTitle" : MessageLookupByLibrary.simpleMessage("Hello World"),
"backgroundTitle" : MessageLookupByLibrary.simpleMessage("Background"),
"bookmarksTitle" : MessageLookupByLibrary.simpleMessage("Bookmarks"),
"classTitle" : MessageLookupByLibrary.simpleMessage("Class"),
"libraryTitle" : MessageLookupByLibrary.simpleMessage("Library"),
"pceditorTitle" : MessageLookupByLibrary.simpleMessage("Player Characters"),
"raceTitle" : MessageLookupByLibrary.simpleMessage("Race"),
"searchTitle" : MessageLookupByLibrary.simpleMessage("Search")
};
}