Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkeye116477 committed Jan 23, 2024
1 parent 0fe4e56 commit de24ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LegendaryLibrarySettingsView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private async void LoginBtn_Click(object sender, RoutedEventArgs e)
}
else
{
var answer = playniteAPI.Dialogs.ShowMessage(ResourceProvider.GetString(LOC.LegendarySignOutConfirm).Format(clientApi.GetUsername()), LOC.LegendarySignOut, MessageBoxButton.YesNo);
var answer = playniteAPI.Dialogs.ShowMessage(ResourceProvider.GetString(LOC.LegendarySignOutConfirm), LOC.LegendarySignOut, MessageBoxButton.YesNo);
if (answer == MessageBoxResult.Yes)
{
var result = await Cli.Wrap(LegendaryLauncher.ClientExecPath)
Expand Down
2 changes: 1 addition & 1 deletion src/Localization/en_US.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@
<sys:String x:Key="LOCLegendaryEANotice">It is currently unknown which game requires activation, so an attempt will be made to activate everything. If EA App asks you to install game rather than to activate, then it has already been activated and the dialog can be dismissed.</sys:String>
<sys:String x:Key="LOCLegendaryStarWarsMessage">May the Force be with you, Padawan.</sys:String>
<sys:String x:Key="LOCLegendarySignedInAs">Signed in as {0}</sys:String>
<sys:String x:Key="LOCLegendarySignOutConfirm">Are you sure you want to sign out {0}?</sys:String>
<sys:String x:Key="LOCLegendarySignOutConfirm">Are you sure you want to sign out?</sys:String>
</ResourceDictionary>

0 comments on commit de24ed7

Please sign in to comment.