Skip to content

Commit f1fe209

Browse files
authored
[UI - Linux] Update FPS limit Text (#4538)
* [FIX] Update FPS limit terminology for DXVK settings * [FIX] Update FPS limit terminology for DirectX settings --------- Co-authored-by: Flavio F Lima <[email protected]>
1 parent 29c34ae commit f1fe209

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

public/locales/en/translation.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@
318318
"disable_logs": "Toggle this checkbox ON to disable most of the writes to log files (critical information is always logged). Make sure to turn OFF this setting before reporting any issue.",
319319
"disablePlaytimeSync": "Disables playtime synchronization with given store's servers (currently only GOG is supported)",
320320
"download_proton_steam": "When enabled, GE-Proton will be downloaded directly to the Steam compatibility tools directory instead of the default Heroic path. It will use the Steam path set in the 'Default Steam path' setting above.",
321+
"dxfpslimit": "Sets a frame rate cap for DirectX Games (9-12)",
321322
"dxvk": "DXVK is a Vulkan-based translational layer for DirectX 9, 10 and 11 games. Enabling may improve compatibility. Might cause issues especially for older DirectX games.",
322-
"dxvkfpslimit": "Sets a frame rate cap for DXVK games",
323323
"dxvknvapi": "DXVK-NVAPI is an implementation of NVAPI built on top of DXVK and the linux native NVAPI, it allows for the usage of DLSS on Nvidia GPUs.",
324324
"esync": "Esync aims to reduce wineserver overhead in CPU-intensive games. Enabling may improve performance.",
325325
"fsync": "Fsync aims to reduce wineserver overhead in CPU-intensive games. Enabling may improve performance on supported Linux kernels.",
@@ -615,7 +615,7 @@
615615
"discordRPC": "Enable Discord Rich Presence",
616616
"download-no-https": "Download games without HTTPS (useful for CDNs e.g. LanCache)",
617617
"download-proton-steam": "Download GE-Proton to Steam directory",
618-
"dxvkfpslimit": "Limit FPS (DX9, 10 and 11)",
618+
"dxfpslimit": "Limit DirectX Games FPS",
619619
"egs-sync": "Sync with Installed Epic Games",
620620
"enableFSRHack": "Enable FSR Hack (Wine version needs to support it)",
621621
"eosOverlay": {

src/frontend/screens/Settings/components/EnableDXVKFpsLimit.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,16 @@ const EnableDXVKFpsLimit = () => {
3636
htmlId="enableDXVKFpsLimit"
3737
value={enableDXVKFpsLimit || false}
3838
handleChange={() => setDXVKFpsLimit(!enableDXVKFpsLimit)}
39-
title={t('setting.dxvkfpslimit', 'Limit FPS (DX9, 10 and 11)')}
39+
title={t('setting.dxfpslimit', 'Limit DirectX Games FPS')}
4040
/>
4141

4242
<FontAwesomeIcon
4343
className="helpIcon"
4444
icon={faCircleInfo}
45-
title={t('help.dxvkfpslimit', 'Sets a frame rate cap for DXVK games')}
45+
title={t(
46+
'help.dxfpslimit',
47+
'Sets a frame rate cap for DirectX Games (9-12)'
48+
)}
4649
/>
4750
</div>
4851

0 commit comments

Comments
 (0)