diff --git a/src/localization/en.json b/src/localization/en.json index e53753cb..00adad3e 100644 --- a/src/localization/en.json +++ b/src/localization/en.json @@ -791,7 +791,6 @@ "rpc": { "vr": "VR", "desktop": "Desktop", - "join_button": "Join", "powered_by_vrcx": "Powered by VRCX", "private_world": "Private World" } diff --git a/src/localization/ja.json b/src/localization/ja.json index 4f495565..c6a69aac 100644 --- a/src/localization/ja.json +++ b/src/localization/ja.json @@ -754,7 +754,6 @@ "rpc": { "vr": "VR", "desktop": "デスクトップ", - "join_button": "参加", "powered_by_vrcx": "Powered by VRCX", "private_world": "プライベート" } diff --git a/src/localization/pl.json b/src/localization/pl.json index 1a8601b8..29c43d77 100644 --- a/src/localization/pl.json +++ b/src/localization/pl.json @@ -626,7 +626,6 @@ "rpc": { "vr": "VR", "desktop": "PC", - "join_button": "Dołącz", "powered_by_vrcx": "Obsługiwane przez VRCX", "private_world": "Prywatny świat" } diff --git a/src/localization/ru.json b/src/localization/ru.json index 81c04d0f..46f939a7 100644 --- a/src/localization/ru.json +++ b/src/localization/ru.json @@ -524,7 +524,6 @@ "rpc": { "vr": "VR", "desktop": "Десктоп‑режим", - "join_button": "Присоединиться", "powered_by_vrcx": "Powered by VRCX", "private_world": "Приватный мир" } diff --git a/src/localization/zh-CN.json b/src/localization/zh-CN.json index 34a12983..8c59c5b5 100644 --- a/src/localization/zh-CN.json +++ b/src/localization/zh-CN.json @@ -753,7 +753,6 @@ "rpc": { "vr": "VR 模式", "desktop": "桌面模式", - "join_button": "加入", "powered_by_vrcx": "由 VRCX 强力驱动", "private_world": "私人世界" } diff --git a/src/localization/zh-TW.json b/src/localization/zh-TW.json index c6290a6a..551779d8 100644 --- a/src/localization/zh-TW.json +++ b/src/localization/zh-TW.json @@ -653,7 +653,6 @@ "rpc": { "vr": "VR 模式", "desktop": "桌面模式", - "join_button": "加入", "powered_by_vrcx": "由 VRCX 提供", "private_world": "私人世界" } diff --git a/src/stores/settings/discordPresence.js b/src/stores/settings/discordPresence.js index d15198e4..89acae51 100644 --- a/src/stores/settings/discordPresence.js +++ b/src/stores/settings/discordPresence.js @@ -338,9 +338,7 @@ export const useDiscordPresenceSettingsStore = defineStore( partyMaxSize = 0; stateText = ''; } - let buttonText = t( - 'view.settings.discord_presence.rpc.join_button' - ); + let buttonText = 'Join'; let buttonUrl = state.lastLocationDetails.joinUrl; if (!discordJoinButton.value) { buttonText = ''; diff --git a/src/views/Settings/components/Tabs/AdvancedTab.vue b/src/views/Settings/components/Tabs/AdvancedTab.vue index 767e9671..574e0730 100644 --- a/src/views/Settings/components/Tabs/AdvancedTab.vue +++ b/src/views/Settings/components/Tabs/AdvancedTab.vue @@ -1,7 +1,7 @@