This commit is contained in:
Mohamed Nouffer
2022-03-15 18:19:34 +05:30
parent 9090a76cf3
commit 92bb6b8dcd
13 changed files with 363 additions and 95 deletions

View File

@ -5,10 +5,46 @@ class StringValues extends Translations{
// TODO: implement keys
Map<String, Map<String, String>> get keys => {
'en_US': {
'app_title': '- Rogaining -'
'app_title': '- Rogaining -',
'address':'address',
'email':'Email',
'web':'Web',
'wikipedia':'Wikipedia',
'video':'video',
'description':'Description',
'telephone':'Tel',
'how_nice': 'How nice',
'want_to_go': "Want to Go",
'schedule_point': "Schedule point",
'login': 'Login',
'change_password': 'Change Password',
'profile': 'Profile',
'recommended_route': 'Recommended Route',
'point_rank': 'Point Rank',
'game_rank': 'Game Rank',
'my_route': 'My Route',
'visit_history': 'Visit History'
},
'ja_JP': {
'app_title': '旅行工程表'
'app_title': '旅行工程表',
'address':'住所',
'email':'Eメール',
'web':'Eメール',
'wikipedia':'ウィキペディア',
'video':'ビデオ',
'description':'説明',
'telephone':'電話',
'how_nice':'いいね',
'want_to_go': '行きたい',
'schedule_point': '予定地点',
'login': 'ログインする',
'change_password': 'パスワード変更',
'profile': 'プロフィール',
'recommended_route': '推奨ルート',
'point_rank': '地点ランキング',
'game_rank': 'ゲームランキング',
'my_route': 'マイルート',
'visit_history': '訪問履歴'
},
};
}