Compare commits

...

5 commits

Author SHA1 Message Date
Neo
81406cfcb6 Merge branch 'fr-locale-update' into 'master'
Update French Translation

See merge request [ryubing/ryujinx!67](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/67)
2025-06-19 21:22:43 -05:00
Coxxs
5d136980a3 fix: UI deadlock when launching a game with "Trace Logs" enabled (ryubing/ryujinx!70)
See merge request ryubing/ryujinx!70
2025-06-19 20:51:11 -05:00
_Neo_
82b5b0776e Quick French Grammar Fix 2025-06-19 16:28:52 +03:00
_Neo_
19b5bfe34e Fix Updated French Translation
Adjusted French translations based on feedback
2025-06-19 15:17:18 +03:00
_Neo_
86986d17be Update French Translation
Some French translations were missing entries or were incomplete/incorrectly translating their English equivalent.
2025-06-19 11:49:37 +03:00
2 changed files with 278 additions and 278 deletions

File diff suppressed because it is too large Load diff

View file

@ -213,13 +213,13 @@ namespace Ryujinx.Ava.UI.Windows
} }
} }
public void Application_Opened(object sender, ApplicationOpenedEventArgs args) public async void Application_Opened(object sender, ApplicationOpenedEventArgs args)
{ {
if (args.Application != null) if (args.Application != null)
{ {
ViewModel.SelectedIcon = args.Application.Icon; ViewModel.SelectedIcon = args.Application.Icon;
ViewModel.LoadApplication(args.Application).Wait(); await ViewModel.LoadApplication(args.Application);
} }
args.Handled = true; args.Handled = true;