diff --git a/src/localization/en/en.json b/src/localization/en/en.json index 9c9c86e3..46732734 100644 --- a/src/localization/en/en.json +++ b/src/localization/en/en.json @@ -58,6 +58,14 @@ "Bio": "Bio" } }, + "friends_locations": { + "online_friends": "Online Friends", + "spacing": "Spacing", + "scale": "Scale", + "separate_same_instance_friends": "Separate Same Instance Friends", + "no_matching_friends": "No Matching Friends", + "loading_more": "Loading more..." + }, "game_log": { "filter_placeholder": "Filter", "search_placeholder": "Search", diff --git a/src/localization/ja/en.json b/src/localization/ja/en.json index c0aed871..5cdd41fd 100644 --- a/src/localization/ja/en.json +++ b/src/localization/ja/en.json @@ -1,12 +1,14 @@ { "language": "日本語 (ja)", - "translator": "Assault1892, Yuu198, paralleltree, kazu3jp, Cayahuanca, ecto0310", + "translator": "Assault1892, Yuu198, paralleltree, kazu3jp, Cayahuanca, ecto0310, Map1en", "nav_tooltip": { "feed": "フィード", + "friends_locations": "フレンドの現在地", "game_log": "ゲームログ", "player_list": "プレイヤーリスト", "search": "検索", "favorites": "お気に入り", + "social": "ソーシャル", "friend_log": "フレンドログ", "moderation": "モデレーション", "notification": "通知", @@ -14,7 +16,16 @@ "charts": "チャート", "tools": "ツール", "profile": "プロフィール", - "settings": "設定" + "settings": "設定", + "help_support": "ヘルプ & サポート" + }, + "nav_menu": { + "resources": "お役立ちリンク", + "wiki": "ウィキ", + "get_help": "困った時はこちら", + "github": "バグ報告・提案 (GitHub)", + "discord": "みんなと話そう (Discord)", + "whats_new": "新機能(更新履歴)" }, "view": { "login": { @@ -46,6 +57,13 @@ "Bio": "自己紹介" } }, + "friends_locations": { + "loading_more": "読み込み中...", + "no_matching_friends": "該当するフレンドはいません", + "scale": "サイズ", + "spacing": "表示間隔", + "separate_same_instance_friends": "同じインスタンスのフレンドを分ける" + }, "game_log": { "filter_placeholder": "フィルター", "search_placeholder": "検索", diff --git a/src/localization/zh-CN/en.json b/src/localization/zh-CN/en.json index 8f9ac609..5cf4a7ce 100644 --- a/src/localization/zh-CN/en.json +++ b/src/localization/zh-CN/en.json @@ -1,6 +1,6 @@ { "language": "简体中文 (zh-CN)", - "translator": "flower_elf,Yingxue,Map1en,Stabrinai", + "translator": "flower_elf, Yingxue, Map1en, Stabrinai", "nav_tooltip": { "friends_locations": "好友位置", "feed": "好友动态", @@ -58,6 +58,14 @@ "Bio": "简介变更" } }, + "friends_locations": { + "online_friends": "在线好友", + "scale": "缩放", + "spacing": "卡片间距", + "separate_same_instance_friends": "分开显示处于同一房间的好友", + "no_matching_friends": "没有找到匹配的好友", + "loading_more": "加载中..." + }, "game_log": { "filter_placeholder": "筛选游戏日志", "search_placeholder": "搜索游戏日志", diff --git a/src/views/FriendsLocations/FriendsLocations.vue b/src/views/FriendsLocations/FriendsLocations.vue index 35816af5..24974258 100644 --- a/src/views/FriendsLocations/FriendsLocations.vue +++ b/src/views/FriendsLocations/FriendsLocations.vue @@ -9,7 +9,7 @@ :prefix-icon="Search" clearable placeholder="Search Friend"> - +
- Separate Same Instance + {{ + t('view.friends_locations.separate_same_instance_friends') + }}
- Scale + {{ t('view.friends_locations.scale') }}
{{ cardScalePercentLabel }} 
- Spacing + {{ t('view.friends_locations.spacing') }}
{{ cardSpacingPercentLabel }} 
- Loading preferences... + {{ t('view.friends_locations.loading_more') }}
- Loading more... + {{ t('view.friends_locations.loading_more') }}
@@ -178,11 +180,11 @@ storeToRefs(friendStore); const SEGMENTED_BASE_OPTIONS = [ - { label: 'Online', value: 'online' }, - { label: 'Favorite', value: 'favorite' }, - { label: 'Same Instance', value: 'same-instance' }, - { label: 'Active', value: 'active' }, - { label: 'Offline', value: 'offline' } + { label: t('side_panel.online'), value: 'online' }, + { label: t('side_panel.favorite'), value: 'favorite' }, + { label: t('side_panel.same_instance'), value: 'same-instance' }, + { label: t('side_panel.active'), value: 'active' }, + { label: t('side_panel.offline'), value: 'offline' } ]; const segmentedOptions = computed(() =>