mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-22 02:57:03 +02:00
changed strings
This commit is contained in:
parent
d085a6d4d6
commit
26f50c08b5
2 changed files with 3 additions and 3 deletions
|
|
@ -858,7 +858,7 @@
|
||||||
<string name="loader_error_file_not_found">ROM file does not exist</string>
|
<string name="loader_error_file_not_found">ROM file does not exist</string>
|
||||||
|
|
||||||
<string name="loader_requires_firmware">Game Requires Firmware</string>
|
<string name="loader_requires_firmware">Game Requires Firmware</string>
|
||||||
<string name="loader_requires_firmware_description"><![CDATA[The game you are trying to launch requires firmware to work. Press \"OK\" to launch anyways.]]></string>
|
<string name="loader_requires_firmware_description"><![CDATA[This game may require firmware to function properly, and you don't have any installed. Please install firmware before launching, or press "OK" to launch anyways.]]></string>
|
||||||
|
|
||||||
<!-- Intent Launch strings -->
|
<!-- Intent Launch strings -->
|
||||||
<string name="searching_for_game">Searching for game...</string>
|
<string name="searching_for_game">Searching for game...</string>
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,8 @@ bool CheckGameFirmware(u64 program_id) {
|
||||||
!FirmwareManager::CheckFirmwarePresence(*system)) {
|
!FirmwareManager::CheckFirmwarePresence(*system)) {
|
||||||
auto result = QtCommon::Frontend::Warning(
|
auto result = QtCommon::Frontend::Warning(
|
||||||
tr("Game Requires Firmware"),
|
tr("Game Requires Firmware"),
|
||||||
tr("The game you are trying to launch requires firmware to work. "
|
tr("This game may require firmware to function properly, and you don't have any installed. "
|
||||||
"Press \"OK\" to launch anyways."),
|
"Please install firmware before launching, or press \"OK\" to launch anyways."),
|
||||||
QtCommon::Frontend::Ok | QtCommon::Frontend::Cancel);
|
QtCommon::Frontend::Ok | QtCommon::Frontend::Cancel);
|
||||||
|
|
||||||
return result == QtCommon::Frontend::Ok;
|
return result == QtCommon::Frontend::Ok;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue