From 78c70b5d907102ed6162cb0925164b3807eaeba1 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Sun, 8 Dec 2024 11:20:35 +0700 Subject: [PATCH] Change "Max FPS" to "Limit FPS" --- dist/better-xcloud.lite.user.js | 4 ++-- dist/better-xcloud.user.js | 4 ++-- src/utils/settings-storages/global-settings-storage.ts | 2 +- src/utils/translation.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/better-xcloud.lite.user.js b/dist/better-xcloud.lite.user.js index ba60417..cd50375 100755 --- a/dist/better-xcloud.lite.user.js +++ b/dist/better-xcloud.lite.user.js @@ -343,13 +343,13 @@ var SUPPORTED_LANGUAGES = { large: "Large", layout: "Layout", "left-stick": "Left stick", + "limit-fps": "Limit FPS", "load-failed-message": "Failed to run Better xCloud", "loading-screen": "Loading screen", "local-co-op": "Local co-op", "lowest-quality": "Lowest quality", manage: "Manage", "map-mouse-to": "Map mouse to", - "max-fps": "Max FPS", "may-not-work-properly": "May not work properly!", menu: "Menu", microphone: "Microphone", @@ -1707,7 +1707,7 @@ class GlobalSettingsStorage extends BaseSettingsStore { } }, "video.maxFps": { - label: t("max-fps"), + label: t("limit-fps"), default: 60, min: 10, max: 60, diff --git a/dist/better-xcloud.user.js b/dist/better-xcloud.user.js index 78b49e0..e02848c 100755 --- a/dist/better-xcloud.user.js +++ b/dist/better-xcloud.user.js @@ -372,13 +372,13 @@ var SUPPORTED_LANGUAGES = { large: "Large", layout: "Layout", "left-stick": "Left stick", + "limit-fps": "Limit FPS", "load-failed-message": "Failed to run Better xCloud", "loading-screen": "Loading screen", "local-co-op": "Local co-op", "lowest-quality": "Lowest quality", manage: "Manage", "map-mouse-to": "Map mouse to", - "max-fps": "Max FPS", "may-not-work-properly": "May not work properly!", menu: "Menu", microphone: "Microphone", @@ -1782,7 +1782,7 @@ class GlobalSettingsStorage extends BaseSettingsStore { } }, "video.maxFps": { - label: t("max-fps"), + label: t("limit-fps"), default: 60, min: 10, max: 60, diff --git a/src/utils/settings-storages/global-settings-storage.ts b/src/utils/settings-storages/global-settings-storage.ts index 42607da..636ab85 100755 --- a/src/utils/settings-storages/global-settings-storage.ts +++ b/src/utils/settings-storages/global-settings-storage.ts @@ -652,7 +652,7 @@ export class GlobalSettingsStorage extends BaseSettingsStorage { }, }, [PrefKey.VIDEO_MAX_FPS]: { - label: t('max-fps'), + label: t('limit-fps'), default: 60, min: 10, max: 60, diff --git a/src/utils/translation.ts b/src/utils/translation.ts index bcebef0..3c1ff08 100755 --- a/src/utils/translation.ts +++ b/src/utils/translation.ts @@ -157,13 +157,13 @@ const Texts = { "large": "Large", "layout": "Layout", "left-stick": "Left stick", + "limit-fps": "Limit FPS", "load-failed-message": "Failed to run Better xCloud", "loading-screen": "Loading screen", "local-co-op": "Local co-op", "lowest-quality": "Lowest quality", "manage": "Manage", "map-mouse-to": "Map mouse to", - "max-fps": "Max FPS", "may-not-work-properly": "May not work properly!", "menu": "Menu", "microphone": "Microphone",