69 lines
2.6 KiB
Dart
69 lines
2.6 KiB
Dart
import 'package:get/get.dart';
|
|
|
|
class StringValues extends Translations{
|
|
@override
|
|
Map<String, Map<String, String>> get keys => {
|
|
'en_US': {
|
|
'drawer_title':'Rogaining participants can view checkpoints by logging in',
|
|
'app_title': '- Rogaining -',
|
|
'address':'address',
|
|
'email':'Email',
|
|
'password':'Password',
|
|
'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',
|
|
'logout':'Logout',
|
|
'sign_up':'Sign up',
|
|
'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',
|
|
'rog_web': 'rog website',
|
|
'no_values': 'No Values',
|
|
'email_and_password_required': 'Email and password required',
|
|
'rogaining_user_need_tosign_up': "Rogaining participants do need to sign up.",
|
|
'add_location': 'Add Location'
|
|
},
|
|
'ja_JP': {
|
|
'drawer_title':'ロゲイニング参加者はログイン するとチェックポイントが参照 できます',
|
|
'app_title': '旅行工程表',
|
|
'address':'住所',
|
|
'email':'Eメール(ロゲではゼッケン番号)',
|
|
'password':'パスワード',
|
|
'web':'ウェブ',
|
|
'wikipedia':'ウィキペディア',
|
|
'video':'ビデオ',
|
|
'description':'説明',
|
|
'telephone':'電話',
|
|
'how_nice':'いいね',
|
|
'want_to_go': '行きたい',
|
|
'like': 'お気に入り',
|
|
'checkin': 'チェックイン',
|
|
'schedule_point': '予定地点',
|
|
'login': 'ログイン',
|
|
'logout':'ログアウト',
|
|
'sign_up': 'サインアップ',
|
|
'change_password': 'パスワード変更',
|
|
'profile': 'プロフィール',
|
|
'recommended_route': '推奨ルート',
|
|
'point_rank': '地点ランキング',
|
|
'game_rank': 'ゲームランキング',
|
|
'my_route': 'マイルート',
|
|
'visit_history': '訪問履歴',
|
|
'rog_web': 'ロゲイニングウェブサイト',
|
|
'no_values': '値なし',
|
|
'email_and_password_required': 'メールとパスワードが必要です',
|
|
'rogaining_user_need_tosign_up': "ロゲイニング参加者はサインアップの必要はありません。",
|
|
'add_location': '目的地選択'
|
|
},
|
|
};
|
|
} |