Files
rog_app/lib/utils/string_values.dart

51 lines
1.6 KiB
Dart
Raw Normal View History

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