51 lines
1.6 KiB
Dart
51 lines
1.6 KiB
Dart
import 'package:get/get.dart';
|
|
|
|
class StringValues extends Translations{
|
|
@override
|
|
Map<String, Map<String, String>> get keys => {
|
|
'en_US': {
|
|
'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': '旅行工程表',
|
|
'address':'住所',
|
|
'email':'Eメール',
|
|
'web':'ウェブ',
|
|
'wikipedia':'ウィキペディア',
|
|
'video':'ビデオ',
|
|
'description':'説明',
|
|
'telephone':'電話',
|
|
'how_nice':'いいね',
|
|
'want_to_go': '行きたい',
|
|
'like': 'お気に入り',
|
|
'checkin': 'チェックイン',
|
|
'schedule_point': '予定地点',
|
|
'login': 'ログインする',
|
|
'change_password': 'パスワード変更',
|
|
'profile': 'プロフィール',
|
|
'recommended_route': '推奨ルート',
|
|
'point_rank': '地点ランキング',
|
|
'game_rank': 'ゲームランキング',
|
|
'my_route': 'マイルート',
|
|
'visit_history': '訪問履歴'
|
|
},
|
|
};
|
|
} |