mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-04-28 13:47:59 +03:00
Fixed encrypted+.3ds warning string being poorly formatted
This commit is contained in:
parent
22934aa46e
commit
ffb8bf15b2
2 changed files with 5 additions and 5 deletions
|
@ -40,7 +40,7 @@
|
|||
<string name="select_citra_user_folder_home_description">Changes the files that Azahar uses to load applications</string>
|
||||
<string name="theme_and_color_description">Modify the look of the app</string>
|
||||
<string name="install_cia_title">Install CIA</string>
|
||||
<string name="warning_3ds_files">Encrypted files and .3ds files are no longer supported. Decrypting and/or renaming to .cci may be necessary. <a href=\"https://azahar-emu.org/blog/game-loading-changes/\">Learn more.</a></string>
|
||||
<string name="warning_3ds_files"><![CDATA[Encrypted files and .3ds files are no longer supported. Decrypting and/or renaming to .cci may be necessary. <a href="https://azahar-emu.org/blog/game-loading-changes/">Learn more.</a>]]></string>
|
||||
|
||||
<!-- GPU driver installation -->
|
||||
<string name="select_gpu_driver">Select GPU driver</string>
|
||||
|
|
|
@ -355,10 +355,10 @@ GameList::GameList(PlayTime::PlayTimeManager& play_time_manager_, GMainWindow* p
|
|||
|
||||
warning_layout = new QHBoxLayout;
|
||||
deprecated_3ds_warning = new QLabel;
|
||||
deprecated_3ds_warning->setText(
|
||||
tr("IMPORTANT: Encrypted files and .3ds files are no longer supported. Decrypting "
|
||||
"and/or renaming to .cci may be necessary. <a "
|
||||
"href=\"https://azahar-emu.org/blog/game-loading-changes/\">Learn more.</a>"));
|
||||
deprecated_3ds_warning->setText(tr(
|
||||
"IMPORTANT: Encrypted files and .3ds files are no longer supported. Decrypting "
|
||||
"and/or renaming to .cci may be necessary. <a "
|
||||
"href="https://azahar-emu.org/blog/game-loading-changes/">Learn more.</a>"));
|
||||
deprecated_3ds_warning->setOpenExternalLinks(true);
|
||||
deprecated_3ds_warning->setStyleSheet(
|
||||
QString::fromStdString("color: black; font-weight: bold;"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue