Skip to content

Commit

Permalink
revise naming, UX to conform closer to legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
jcm committed Oct 8, 2023
1 parent 9cc36b5 commit 7342c5b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions src/Ryujinx.Ava/Assets/Locales/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,16 @@
"SettingsTabSystemSystemLanguageTraditionalChinese": "Traditional Chinese",
"SettingsTabSystemSystemTimeZone": "System Time Zone:",
"SettingsTabSystemSystemTime": "System Time:",
"SettingsTabSystemPresentIntervalState": "Present Interval Mode (VSync):",
"SettingsTabSystemEnableCustomPresentInterval": "Enable toggle for custom present interval",
"SettingsTabSystemPresentIntervalStateSwitch": "60 (VSync ON)",
"SettingsTabSystemPresentIntervalStateUnbounded": "Unbounded (VSync OFF)",
"SettingsTabSystemPresentIntervalStateCustom": "Custom",
"SettingsTabSystemPresentIntervalStateTooltip": "Previously VSync. Use the Custom mode to set a specific refresh interval target. In some titles, the custom mode will act as an FPS cap. In others, it may lead to unpredictable behavior or do nothing at all. \n\nLeave at 60 (VSync ON) if unsure.",
"SettingsTabSystemEnableCustomPresentIntervalTooltip": "The present interval mode toggle will also cycle through the custom interval mode.",
"SettingsTabSystemCustomPresentIntervalValueTooltip": "The custom present interval target value.",
"SettingsTabSystemCustomPresentIntervalSliderTooltip": "The custom present interval target, as a percentage of the normal Switch interval.",
"SettingsTabSystemCustomPresentIntervalValue": "Custom Present Interval Value:",
"SettingsTabSystemPresentIntervalState": "VSync:",
"SettingsTabSystemEnableCustomPresentInterval": "Enable toggle through custom refresh rate",
"SettingsTabSystemPresentIntervalStateSwitch": "On",
"SettingsTabSystemPresentIntervalStateUnbounded": "Off",
"SettingsTabSystemPresentIntervalStateCustom": "Custom Refresh Rate",
"SettingsTabSystemPresentIntervalStateTooltip": "Emulated Vertical Sync. 'On' emulates the Switch's refresh rate of 60Hz. 'Off' is an unbounded refresh rate. 'Custom' allows the user to specify a custom emulated refresh rate. In some titles, the custom rate will act as an FPS cap. In others, it may lead to unpredictable behavior. \n\nLeave ON if unsure.",
"SettingsTabSystemEnableCustomPresentIntervalTooltip": "The VSync toggle will also cycle through the custom refresh rate mode.",
"SettingsTabSystemCustomPresentIntervalValueTooltip": "The custom refresh rate target value.",
"SettingsTabSystemCustomPresentIntervalSliderTooltip": "The custom refresh rate, as a percentage of the normal Switch refresh rate.",
"SettingsTabSystemCustomPresentIntervalValue": "Custom Refresh Rate Value:",
"SettingsTabSystemEnablePptc": "PPTC (Profiled Persistent Translation Cache)",
"SettingsTabSystemEnableFsIntegrityChecks": "FS Integrity Checks",
"SettingsTabSystemAudioBackend": "Audio Backend:",
Expand Down
2 changes: 1 addition & 1 deletion src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ private void Update_StatusBar(object sender, StatusUpdatedEventArgs args)
PresentIntervalStateColor = new SolidColorBrush((Color)color);
}

PresentIntervalStateText = args.PresentIntervalState;
PresentIntervalStateText = args.PresentIntervalState == "Custom" ? "Custom" : "VSync";
ShowCustomPresentIntervalPicker =
args.PresentIntervalState == PresentIntervalState.Custom.ToString();
DockedStatusText = args.DockedMode;
Expand Down

0 comments on commit 7342c5b

Please sign in to comment.