mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
Fix typos, improve consistency
Fixes typos where spelling or grammar is objectively wrong. Changes wording and capitalization in some areas to be more consistent with other areas.
This commit is contained in:
parent
4ecb06c901
commit
dabb2cc9a0
@ -158,6 +158,6 @@ AudioChannelCnt AudioBackend::convert_channel_count(u64 raw)
|
||||
case 1:
|
||||
return AudioChannelCnt::STEREO;
|
||||
case 0:
|
||||
fmt::throw_exception("Usupported channel count");
|
||||
fmt::throw_exception("Unsupported channel count");
|
||||
}
|
||||
}
|
||||
|
@ -543,7 +543,7 @@ void CubebBackend::device_collection_changed_cb(cubeb* context, void* user_ptr)
|
||||
|
||||
if (context != cubeb->m_ctx)
|
||||
{
|
||||
Cubeb.error("device_collection_changed_cb called with unkown context");
|
||||
Cubeb.error("device_collection_changed_cb called with unknown context");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,7 @@ error_code cellHttpUtilParseUri(vm::ptr<CellHttpUri> uri, vm::cptr<char> str, vm
|
||||
parseError = "Error, URI didn't contain a slash";
|
||||
break;
|
||||
default:
|
||||
parseError = "Error, unkown error #" + std::to_string(static_cast<int>(URL.m_ErrorCode));
|
||||
parseError = "Error, unknown error #" + std::to_string(static_cast<int>(URL.m_ErrorCode));
|
||||
break;
|
||||
}
|
||||
cellHttpUtil.error("%s, while parsing URI, %s.", parseError, str.get_ptr());
|
||||
|
@ -1952,7 +1952,7 @@ void ppu_thread::exec_task()
|
||||
|
||||
ppu_thread::~ppu_thread()
|
||||
{
|
||||
perf_log.notice("Perf stats for STCX reload: successs %u, failure %u", last_succ, last_fail);
|
||||
perf_log.notice("Perf stats for STCX reload: success %u, failure %u", last_succ, last_fail);
|
||||
perf_log.notice("Perf stats for instructions: total %u", exec_bytes / 4);
|
||||
}
|
||||
|
||||
|
@ -1821,7 +1821,7 @@ spu_thread::~spu_thread()
|
||||
utils::memory_release(ls - SPU_LS_SIZE * 2, SPU_LS_SIZE * 5);
|
||||
|
||||
perf_log.notice("Perf stats for transactions: success %u, failure %u", stx, ftx);
|
||||
perf_log.notice("Perf stats for PUTLLC reload: successs %u, failure %u", last_succ, last_fail);
|
||||
perf_log.notice("Perf stats for PUTLLC reload: success %u, failure %u", last_succ, last_fail);
|
||||
}
|
||||
|
||||
u8* spu_thread::map_ls(utils::shm& shm, void* ptr)
|
||||
|
@ -312,7 +312,7 @@ namespace rpcn
|
||||
*utils::bless<be_t<u32, 1>>(&ping[9]) = local_addr_sig;
|
||||
if (send_packet_from_p2p_port(ping, addr_rpcn_udp) == -1)
|
||||
{
|
||||
rpcn_log.error("Failed to send ping to rpcn!");
|
||||
rpcn_log.error("Failed to send ping to RPCN!");
|
||||
}
|
||||
last_ping_time = now;
|
||||
}
|
||||
@ -397,7 +397,7 @@ namespace rpcn
|
||||
}
|
||||
else
|
||||
{
|
||||
rpcn_log.error("Tried to forward a reply whose packet_id marks it as internal to rpcn");
|
||||
rpcn_log.error("Tried to forward a reply whose packet_id marks it as internal to RPCN");
|
||||
}
|
||||
}
|
||||
|
||||
@ -2126,7 +2126,7 @@ namespace rpcn
|
||||
if (!fb_mdata->communicationId() || fb_mdata->communicationId()->size() == 0 || fb_mdata->communicationId()->size() > 9 ||
|
||||
!fb_mdata->subject() || !fb_mdata->body() || !fb_mdata->data())
|
||||
{
|
||||
rpcn_log.warning("Discarded invalid messaged!");
|
||||
rpcn_log.warning("Discarded invalid message!");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ namespace gl
|
||||
|
||||
if (!ext_count)
|
||||
{
|
||||
rsx_log.error("Coult not initialize GL driver capabilities. Is OpenGL initialized?");
|
||||
rsx_log.error("Could not initialize GL driver capabilities. Is OpenGL initialized?");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -529,7 +529,7 @@ VKGSRender::VKGSRender(utils::serial* ar) noexcept : GSRender(ar)
|
||||
}
|
||||
else
|
||||
{
|
||||
rsx_log.fatal("Could not find a vulkan compatible GPU driver. Your GPU(s) may not support Vulkan, or you need to install the vulkan runtime and drivers");
|
||||
rsx_log.fatal("Could not find a Vulkan compatible GPU driver. Your GPU(s) may not support Vulkan, or you need to install the Vulkan runtime and drivers");
|
||||
m_device = VK_NULL_HANDLE;
|
||||
return;
|
||||
}
|
||||
@ -799,7 +799,7 @@ VKGSRender::VKGSRender(utils::serial* ar) noexcept : GSRender(ar)
|
||||
#endif
|
||||
if (backend_config.supports_passthrough_dma)
|
||||
{
|
||||
rsx_log.error("AMDGPU kernel driver on linux and INTEL driver on some platforms cannot support passthrough DMA buffers.");
|
||||
rsx_log.error("AMDGPU kernel driver on Linux and INTEL driver on some platforms cannot support passthrough DMA buffers.");
|
||||
backend_config.supports_passthrough_dma = false;
|
||||
}
|
||||
break;
|
||||
@ -1442,7 +1442,7 @@ void VKGSRender::on_init_thread()
|
||||
{
|
||||
if (m_device == VK_NULL_HANDLE)
|
||||
{
|
||||
fmt::throw_exception("No vulkan device was created");
|
||||
fmt::throw_exception("No Vulkan device was created");
|
||||
}
|
||||
|
||||
GSRender::on_init_thread();
|
||||
@ -3010,7 +3010,7 @@ void VKGSRender::begin_conditional_rendering(const std::vector<rsx::reports::occ
|
||||
else if (m_program)
|
||||
{
|
||||
// This can sometimes happen when shaders are compiling, only log if there is a program hit
|
||||
rsx_log.warning("Dubious query data pushed to cond render!, Please report to developers(q.pending=%d)", sources.front()->pending);
|
||||
rsx_log.warning("Dubious query data pushed to cond render! Please report to developers(q.pending=%d)", sources.front()->pending);
|
||||
}
|
||||
|
||||
rsx::thread::begin_conditional_rendering(sources);
|
||||
|
@ -207,7 +207,7 @@ namespace vk
|
||||
get_physical_device_features(allow_extensions);
|
||||
get_physical_device_properties(allow_extensions);
|
||||
|
||||
rsx_log.always()("Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
||||
rsx_log.always()("Found Vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
||||
|
||||
if (get_driver_vendor() == driver_vendor::RADV && get_name().find("LLVM 8.0.0") != umax)
|
||||
{
|
||||
|
@ -128,7 +128,7 @@ void fmt_class_string<game_boot_result>::format(std::string& out, u64 arg)
|
||||
case game_boot_result::firmware_missing: return "Firmware is missing";
|
||||
case game_boot_result::unsupported_disc_type: return "This disc type is not supported yet";
|
||||
case game_boot_result::savestate_corrupted: return "Savestate data is corrupted or it's not an RPCS3 savestate";
|
||||
case game_boot_result::savestate_version_unsupported: return "Savestate versioning data differes from your RPCS3 build";
|
||||
case game_boot_result::savestate_version_unsupported: return "Savestate versioning data differs from your RPCS3 build";
|
||||
case game_boot_result::still_running: return "Game is still running";
|
||||
}
|
||||
return unknown;
|
||||
@ -2576,9 +2576,9 @@ void Emulator::Kill(bool allow_autoexit, bool savestate)
|
||||
try_lock_spu_threads_in_a_state_compatible_with_savestates(true);
|
||||
|
||||
sys_log.error("Failed to savestate: HLE VDEC (video decoder) context(s) exist."
|
||||
"\nLLE libvdec.sprx by selecting it in Adavcned tab -> Firmware Libraries."
|
||||
"\nYou need to close the game for to take effect."
|
||||
"\nIf you cannot close the game due to losing important progress your best chance is to skip the current cutscenes if any are played and retry.");
|
||||
"\nLLE libvdec.sprx by selecting it in Advanced tab -> Firmware Libraries."
|
||||
"\nYou need to close the game for it to take effect."
|
||||
"\nIf you cannot close the game due to losing important progress, your best chance is to skip the current cutscenes if any are played and retry.");
|
||||
|
||||
return;
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ bool is_savestate_version_compatible(const std::vector<std::pair<u16, u16>>& dat
|
||||
{
|
||||
if (identifier >= s_serial_versions.size())
|
||||
{
|
||||
(is_boot_check ? sys_log.error : sys_log.trace)("Savestate version identider is unknown! (category=%u, version=%u)", identifier, version);
|
||||
(is_boot_check ? sys_log.error : sys_log.trace)("Savestate version identifier is unknown! (category=%u, version=%u)", identifier, version);
|
||||
ok = false; // Log all mismatches
|
||||
}
|
||||
else if (!s_serial_versions[identifier].compatible_versions.count(version))
|
||||
@ -234,7 +234,7 @@ bool boot_last_savestate(bool testing)
|
||||
|
||||
if (game_boot_result error = Emu.BootGame(savestate_path, "", true); error != game_boot_result::no_errors)
|
||||
{
|
||||
sys_log.error("Failed to booting savestate \'%s\' using the Reload shortcut. (error: %s)", savestate_path, error);
|
||||
sys_log.error("Failed to boot savestate \'%s\' using the Reload shortcut. (error: %s)", savestate_path, error);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -214,7 +214,7 @@ void hid_pad_handler<Device>::update_devices()
|
||||
{
|
||||
hid_log.error("One or more %s pads were detected but couldn't be interacted with directly", m_type);
|
||||
#if defined(_WIN32) || defined(__linux__)
|
||||
hid_log.error("Check https://wiki.rpcs3.net/index.php?title=Help:Controller_Configuration for intructions on how to solve this issue");
|
||||
hid_log.error("Check https://wiki.rpcs3.net/index.php?title=Help:Controller_Configuration for instructions on how to solve this issue");
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
@ -852,7 +852,7 @@ cheat_manager_dialog::cheat_manager_dialog(QWidget* parent)
|
||||
{
|
||||
if (g_cheat.exist(name, offset))
|
||||
{
|
||||
if (QMessageBox::question(this, tr("Cheat already exist"), tr("Do you want to overwrite the existing cheat?"), QMessageBox::Ok | QMessageBox::Cancel) != QMessageBox::Ok)
|
||||
if (QMessageBox::question(this, tr("Cheat already exists"), tr("Do you want to overwrite the existing cheat?"), QMessageBox::Ok | QMessageBox::Cancel) != QMessageBox::Ok)
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -699,7 +699,7 @@ void debugger_frame::keyPressEvent(QKeyEvent* event)
|
||||
|
||||
if (!cpu->state.all_of(cpu_flag::wait + cpu_flag::dbg_pause))
|
||||
{
|
||||
QMessageBox::warning(this, QObject::tr("Pause the SPU Thread!"), QObject::tr("Cannot perform SPU capture due to the thread need manual pausing!"));
|
||||
QMessageBox::warning(this, QObject::tr("Pause the SPU Thread!"), QObject::tr("Cannot perform SPU capture due to the thread needing manual pausing!"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
||||
case camera_flip::none: return tr("No", "Camera flip");
|
||||
case camera_flip::horizontal: return tr("Flip horizontally", "Camera flip");
|
||||
case camera_flip::vertical: return tr("Flip vertically", "Camera flip");
|
||||
case camera_flip::both: return tr("Flip both axis", "Camera flip");
|
||||
case camera_flip::both: return tr("Flip both axes", "Camera flip");
|
||||
}
|
||||
break;
|
||||
case emu_settings_type::Camera:
|
||||
|
@ -86,7 +86,7 @@ private:
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010004: return tr("Memory allocation failed.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010005: return tr("The resource with the specified identifier does not exist.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010006: return tr("The file does not exist.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010007: return tr("The file is in unrecognized format / The file is not a valid ELF file.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010007: return tr("The file is in an unrecognized format / The file is not a valid ELF file.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010008: return tr("Resource deadlock is avoided.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010009: return tr("Operation not permitted.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_8001000A: return tr("The device or resource is busy.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
@ -135,7 +135,7 @@ private:
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010036: return tr("Not empty.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010037: return tr("Not supported.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010038: return tr("File-system specific error.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010039: return tr("Overflow occured.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_80010039: return tr("Overflow occurred.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_8001003A: return tr("Filesystem not mounted.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_8001003B: return tr("Not SData.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
case localized_string_id::CELL_MSG_DIALOG_ERROR_8001003C: return tr("Incorrect version in sys_load_param.\n(%0)", "Error code").arg(std::forward<Args>(args)...);
|
||||
|
@ -445,7 +445,7 @@ void main_window::show_boot_error(game_boot_result status)
|
||||
message = tr("Savestate data is corrupted or it's not an RPCS3 savestate.");
|
||||
break;
|
||||
case game_boot_result::savestate_version_unsupported:
|
||||
message = tr("Savestate versioning data differes from your RPCS3 build.");
|
||||
message = tr("Savestate versioning data differs from your RPCS3 build.");
|
||||
break;
|
||||
case game_boot_result::still_running:
|
||||
message = tr("A game or PS3 application is still running or has yet to be fully stopped.");
|
||||
@ -1317,7 +1317,7 @@ void main_window::ExtractTar()
|
||||
if (!error.isEmpty())
|
||||
{
|
||||
pdlg.hide();
|
||||
QMessageBox::critical(this, tr("Tar extraction failed"), error);
|
||||
QMessageBox::critical(this, tr("TAR extraction failed"), error);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@ midi_creator::midi_creator()
|
||||
// We need to recreate the localized string because the midi creator is currently only created once.
|
||||
QString midi_creator::get_none()
|
||||
{
|
||||
return tr("None", "Midi device");
|
||||
return tr("None", "MIDI device");
|
||||
}
|
||||
|
||||
void midi_creator::refresh_list()
|
||||
@ -49,11 +49,11 @@ void midi_creator::refresh_list()
|
||||
s32 size = sizeof(buf);
|
||||
if (rtmidi_get_port_name(midi_in.get(), port_number, buf, &size) == -1)
|
||||
{
|
||||
cfg_log.error("Error getting midi port name for port %d: %s", port_number, midi_in->msg);
|
||||
cfg_log.error("Error getting MIDI port name for port %d: %s", port_number, midi_in->msg);
|
||||
continue;
|
||||
}
|
||||
|
||||
cfg_log.notice("Found midi device with name: %s", buf);
|
||||
cfg_log.notice("Found MIDI device with name: %s", buf);
|
||||
m_midi_list.append(QString::fromUtf8(buf));
|
||||
}
|
||||
}
|
||||
|
@ -257,10 +257,10 @@ rpcn_account_dialog::rpcn_account_dialog(QWidget* parent)
|
||||
case rpcn::ErrorType::CreationExistingUsername: error_message = tr("An account with that username already exists!"); break;
|
||||
case rpcn::ErrorType::CreationBannedEmailProvider: error_message = tr("This email provider is banned!"); break;
|
||||
case rpcn::ErrorType::CreationExistingEmail: error_message = tr("An account with that email already exists!"); break;
|
||||
case rpcn::ErrorType::CreationError: error_message = tr("Unknown creation error"); break;
|
||||
case rpcn::ErrorType::CreationError: error_message = tr("Unknown creation error!"); break;
|
||||
default: error_message = tr("Unknown error"); break;
|
||||
}
|
||||
QMessageBox::critical(this, tr("Error Creating Account"), tr("Failed to create the account:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Creating Account!"), tr("Failed to create the account:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -361,12 +361,12 @@ rpcn_add_server_dialog::rpcn_add_server_dialog(QWidget* parent)
|
||||
|
||||
if (description.isEmpty())
|
||||
{
|
||||
QMessageBox::critical(this, tr("Missing Description"), tr("You must enter a description!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Missing Description!"), tr("You must enter a description!"), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
if (host.isEmpty())
|
||||
{
|
||||
QMessageBox::critical(this, tr("Missing Hostname"), tr("You must enter a hostname for the server!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Missing Hostname!"), tr("You must enter a hostname for the server!"), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -413,12 +413,12 @@ rpcn_ask_username_dialog::rpcn_ask_username_dialog(QWidget* parent, const QStrin
|
||||
|
||||
if (username.empty())
|
||||
{
|
||||
QMessageBox::critical(this, tr("Missing Username"), tr("You must enter a username!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Missing Username!"), tr("You must enter a username!"), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
if (!validate_rpcn_username(username))
|
||||
{
|
||||
QMessageBox::critical(this, tr("Invalid Username"), tr("Please enter a valid username!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Invalid Username!"), tr("Please enter a valid username!"), QMessageBox::Ok);
|
||||
}
|
||||
|
||||
m_username = username;
|
||||
@ -729,7 +729,7 @@ void rpcn_account_edit_dialog::resend_token()
|
||||
if (auto result = rpcn->wait_for_connection(); result != rpcn::rpcn_state::failure_no_failure)
|
||||
{
|
||||
const QString error_message = tr("Failed to connect to RPCN server:\n%0").arg(QString::fromStdString(rpcn::rpcn_state_to_string(result)));
|
||||
QMessageBox::critical(this, tr("Error Connecting"), error_message, QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Connecting!"), error_message, QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -745,7 +745,7 @@ void rpcn_account_edit_dialog::resend_token()
|
||||
case rpcn::ErrorType::LoginError: error_message = tr("The username/password pair is invalid!"); break;
|
||||
default: error_message = tr("Unknown error"); break;
|
||||
}
|
||||
QMessageBox::critical(this, tr("Error Sending Token"), tr("Failed to send the token:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Sending Token!"), tr("Failed to send the token:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -778,7 +778,7 @@ void rpcn_account_edit_dialog::change_password()
|
||||
if (auto result = rpcn->wait_for_connection(); result != rpcn::rpcn_state::failure_no_failure)
|
||||
{
|
||||
const QString error_message = tr("Failed to connect to RPCN server:\n%0").arg(QString::fromStdString(rpcn::rpcn_state_to_string(result)));
|
||||
QMessageBox::critical(this, tr("Error Connecting"), error_message, QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Connecting!"), error_message, QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -792,9 +792,9 @@ void rpcn_account_edit_dialog::change_password()
|
||||
case rpcn::ErrorType::TooSoon: error_message = tr("You can only ask for a reset password token once every 24 hours!"); break;
|
||||
case rpcn::ErrorType::EmailFail: error_message = tr("The mail couldn't be sent successfully!"); break;
|
||||
case rpcn::ErrorType::LoginError: error_message = tr("The username/email pair is invalid!"); break;
|
||||
default: error_message = tr("Unknown error"); break;
|
||||
default: error_message = tr("Unknown error!"); break;
|
||||
}
|
||||
QMessageBox::critical(this, tr("Error Sending Password Reset Token"), tr("Failed to send the password reset token:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Sending Password Reset Token!"), tr("Failed to send the password reset token:\n%0").arg(error_message), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -822,7 +822,7 @@ void rpcn_account_edit_dialog::change_password()
|
||||
if (auto result = rpcn->wait_for_connection(); result != rpcn::rpcn_state::failure_no_failure)
|
||||
{
|
||||
const QString error_message = tr("Failed to connect to RPCN server:\n%0").arg(QString::fromStdString(rpcn::rpcn_state_to_string(result)));
|
||||
QMessageBox::critical(this, tr("Error Connecting"), error_message, QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error Connecting!"), error_message, QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -964,7 +964,7 @@ rpcn_friends_dialog::rpcn_friends_dialog(QWidget* parent)
|
||||
{
|
||||
if (!m_rpcn->remove_friend(str_sel_friend))
|
||||
{
|
||||
QMessageBox::critical(this, tr("Error removing a friend!"), tr("An error occured trying to remove a friend!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error removing a friend!"), tr("An error occurred while trying to remove a friend!"), QMessageBox::Ok);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1000,7 +1000,7 @@ rpcn_friends_dialog::rpcn_friends_dialog(QWidget* parent)
|
||||
{
|
||||
if (!m_rpcn->add_friend(str_sel_friend))
|
||||
{
|
||||
QMessageBox::critical(this, tr("Error adding a friend!"), tr("An error occured trying to add a friend!"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error adding a friend!"), tr("An error occurred while trying to add a friend!"), QMessageBox::Ok);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1031,17 +1031,17 @@ rpcn_friends_dialog::rpcn_friends_dialog(QWidget* parent)
|
||||
break;
|
||||
}
|
||||
|
||||
QMessageBox::critical(this, tr("Error validating username"), tr("The username you entered is invalid"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error validating username!"), tr("The username you entered is invalid!"), QMessageBox::Ok);
|
||||
}
|
||||
|
||||
if (!m_rpcn->add_friend(str_friend_username))
|
||||
{
|
||||
QMessageBox::critical(this, tr("Error adding friend"), tr("An error occured adding friend"), QMessageBox::Ok);
|
||||
QMessageBox::critical(this, tr("Error adding friend!"), tr("An error occurred while adding a friend!"), QMessageBox::Ok);
|
||||
}
|
||||
else
|
||||
{
|
||||
add_update_list(m_lst_requests, QString::fromStdString(str_friend_username), m_orange_icon, QVariant(false));
|
||||
QMessageBox::information(this, tr("Friend added"), tr("Friend was successfully added!"), QMessageBox::Ok);
|
||||
QMessageBox::information(this, tr("Friend added!"), tr("Friend was successfully added!"), QMessageBox::Ok);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -1590,7 +1590,7 @@
|
||||
<item row="2" column="2">
|
||||
<widget class="QGroupBox" name="gb_ghltar_emulated">
|
||||
<property name="title">
|
||||
<string>Guitar Hero Live emulated guitar</string>
|
||||
<string>Guitar Hero Live Emulated Guitar</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="gb_ghltar_emulated_layout">
|
||||
<item>
|
||||
@ -1614,7 +1614,7 @@
|
||||
<item row="1" column="2">
|
||||
<widget class="QGroupBox" name="gb_turntable_emulated">
|
||||
<property name="title">
|
||||
<string>DJ Hero emulated turntable</string>
|
||||
<string>DJ Hero Emulated Turntable</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="gb_turntable_emulated_layout">
|
||||
<item>
|
||||
@ -1638,7 +1638,7 @@
|
||||
<item row="0" column="2">
|
||||
<widget class="QGroupBox" name="gb_buzz_emulated">
|
||||
<property name="title">
|
||||
<string>Buzz! emulated controller</string>
|
||||
<string>Buzz! Emulated Controller</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="gb_buzz_emulated_layout">
|
||||
<item>
|
||||
@ -1722,7 +1722,7 @@
|
||||
<item row="3" column="2">
|
||||
<widget class="QGroupBox" name="gb_midi_1">
|
||||
<property name="title">
|
||||
<string>Emulated Midi device 1</string>
|
||||
<string>Emulated MIDI Device 1</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="midLayout1">
|
||||
<item>
|
||||
@ -1741,7 +1741,7 @@
|
||||
<item row="6" column="2">
|
||||
<widget class="QGroupBox" name="gb_midi_3">
|
||||
<property name="title">
|
||||
<string>Emulated Midi device 3</string>
|
||||
<string>Emulated MIDI Device 3</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="midLayout3">
|
||||
<item>
|
||||
@ -1760,7 +1760,7 @@
|
||||
<item row="5" column="2">
|
||||
<widget class="QGroupBox" name="gb_midi_2">
|
||||
<property name="title">
|
||||
<string>Emulated Midi device 2</string>
|
||||
<string>Emulated MIDI Device 2</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="midLayout2">
|
||||
<item>
|
||||
@ -2040,7 +2040,7 @@
|
||||
<item>
|
||||
<widget class="QGroupBox" name="gb_DiskCacheClearing">
|
||||
<property name="title">
|
||||
<string>Disk cache</string>
|
||||
<string>Disk Cache</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="gb_DiskCacheClearing_layout">
|
||||
<item>
|
||||
|
@ -49,13 +49,13 @@ public:
|
||||
const QString wake_up_delay = tr("Controls how much time it takes for RSX to start processing after waking up by the Cell processor.\nIncreasing wakeup delay improves stability, but very high values can lower RSX/GPU performance.\nIt is recommend to adjust this at 20µs to 40µs increments until the best value for optimal stability is reached.");
|
||||
const QString disabled_from_global = tr("Do not change this setting globally.\nRight-click a game in the game list and choose \"Configure\" instead.");
|
||||
const QString vulkan_async_scheduler = tr("Determines how to schedule GPU async compute jobs when using asynchronous streaming.\nUse 'Safe' mode for more spec compliant behavior at the cost of some CPU overhead. This setting works with all devices.\nUse 'Fast' to use a faster but hacky version. This option is internally disabled for NVIDIA GPUs due to causing GPU hangs.");
|
||||
const QString disable_msl_fast_math = tr("Disables Fast Math for MSL shaders, which may violate the IEEE 754 standard.\nDisabling it may fix some artefacts especially on Apple GPUs, at the cost of performance.");
|
||||
const QString suspend_savestates = tr("When this mode is on, emulation exits when saving and the savestate file is concealed after loading it, preventing reuse by RPCS3.\nThis mode is like hibernation of emulation: if you don't want to be able to cheat using savestates when playing the game, consider using this mode.\nDo note that the savestate file is not gone completely just ignored by RPCS3, you can manually relaunch it if needed.");
|
||||
const QString disable_msl_fast_math = tr("Disables Fast Math for MSL shaders, which may violate the IEEE 754 standard.\nDisabling it may fix some artifacts, especially on Apple GPUs, at the cost of performance.");
|
||||
const QString suspend_savestates = tr("When this mode is on, emulation exits when saving and the savestate file is concealed after loading it, preventing reuse by RPCS3.\nThis mode is like hibernation of emulation: if you don't want to be able to cheat using savestates when playing the game, consider using this mode.\nDo note that the savestate file is not gone completely, just ignored by RPCS3. You can manually relaunch it if needed.");
|
||||
const QString paused_savestates = tr("When this mode is on, savestates are loaded and paused on the first frame.\nThis allows players to prepare for gameplay without being thrown into the action immediately.");
|
||||
|
||||
// audio
|
||||
|
||||
const QString audio_out = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nXAudio2 uses native Windows sounds system, is the next best alternative.");
|
||||
const QString audio_out = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nXAudio2 uses native Windows sounds system and is the next best alternative.");
|
||||
const QString audio_out_linux = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nIf it's not available, FAudio could be used instead.");
|
||||
const QString audio_provider = tr("Controls which PS3 audio API is used.\nGames use CellAudio, while VSH requires RSXAudio.");
|
||||
const QString audio_avport = tr("Controls which avport is used to sample audio data from.");
|
||||
@ -86,7 +86,7 @@ public:
|
||||
const QString enable_tsx = tr("Enable usage of TSX instructions.\nNeeds to be forced on some Haswell or Broadwell CPUs or CPUs with the TSX-FA instruction set.\nForcing TSX in these cases may lead to system and performance instability, use it with caution.");
|
||||
const QString spu_block_size = tr("This option controls the SPU analyser, particularly the size of compiled units. The Mega and Giga modes may improve performance by tying smaller units together, decreasing the number of compiled units but increasing their size.\nUse the Safe mode for maximum compatibility.");
|
||||
const QString preferred_spu_threads = tr("Some SPU stages are sensitive to race conditions and allowing a limited number at a time helps alleviate performance stalls.\nSetting this to a smaller value might improve performance and reduce stuttering in some games.\nLeave this on auto if performance is negatively affected when setting a small value.");
|
||||
const QString max_cpu_preempt = tr("Reduces CPU usage and power consumption, on mobile devices improves battery life. (0 means disabled)\nHigher values cause a more pronounced effect, but may cause audio or performance issues. A value of 50 or less is recommended.\nThis option forces an FPS limit because it's active when framerate is stable.\nThe lighter the game is on the hardware, the more power is saved by it. (until the preemption count barrier is reached)");
|
||||
const QString max_cpu_preempt = tr("Reduces CPU usage and power consumption, improving battery life on mobile devices. (0 means disabled)\nHigher values cause a more pronounced effect, but may cause audio or performance issues. A value of 50 or less is recommended.\nThis option forces an FPS limit because it's active when framerate is stable.\nThe lighter the game is on the hardware, the more power is saved by it. (until the preemption count barrier is reached)");
|
||||
|
||||
// debug
|
||||
|
||||
@ -102,7 +102,7 @@ public:
|
||||
const QString accurate_cache_line_stores = tr("Accurately processes PPU DCBZ instruction.\nIn addition, when combined with Accurate SPU DMA, SPU PUT cache line accesses will be processed atomically.");
|
||||
const QString mfc_delay_command = tr("Forces delaying any odd MFC command, waits for at least 2 pending commands to execute them in a random order.\nMust be used with either SPU interpreters currently.\nSeverely degrades performance! If unsure, don't use this option.");
|
||||
const QString hook_static_functions = tr("Allows to hook some functions like 'memcpy' replacing them with high-level implementations. May do nothing or break things. Experimental.");
|
||||
const QString renderdoc_compatibility = tr("Enables use of classic OpenGL buffers which allows capturing tools to work with RPCS3 e.g RenderDoc.\nAlso allows vulkan to use debug markers for nicer Renderdoc captures.\nIf unsure, don't use this option.");
|
||||
const QString renderdoc_compatibility = tr("Enables use of classic OpenGL buffers which allows capturing tools to work with RPCS3 e.g RenderDoc.\nAlso allows Vulkan to use debug markers for nicer Renderdoc captures.\nIf unsure, don't use this option.");
|
||||
const QString force_high_pz = tr("Only useful when debugging differences in GPU hardware.\nNot necessary for average users.\nIf unsure, don't use this option.");
|
||||
const QString debug_output = tr("Enables the selected API's inbuilt debugging functionality.\nWill cause severe performance degradation especially with Vulkan.\nOnly useful to developers.\nIf unsure, don't use this option.");
|
||||
const QString debug_overlay = tr("Provides a graphical overlay of various debugging information.\nIf unsure, don't use this option.");
|
||||
@ -132,7 +132,7 @@ public:
|
||||
const QString disable_kb_hotkeys = tr("Disables keyboard hotkeys such as Ctrl+S, Ctrl+E, Ctrl+R, Ctrl+P while the game screen is active.\nThis does not include Ctrl+L (hide and lock mouse) and Alt+Enter (toggle fullscreen).\nCheck this if you want to play with mouse and keyboard.");
|
||||
const QString max_llvm_threads = tr("Limits the maximum number of threads used for the initial PPU and SPU module compilation.\nLower this in order to increase performance of other open applications.\nThe default uses all available threads.");
|
||||
const QString show_mouse_in_fullscreen = tr("Shows the mouse cursor when the fullscreen mode is active.\nCurrently this may not work every time.");
|
||||
const QString lock_mouse_in_fullscreen = tr("Locks the mouse cursor at center when the fullscreen mode is active.");
|
||||
const QString lock_mouse_in_fullscreen = tr("Locks the mouse cursor to the center when the fullscreen mode is active.");
|
||||
const QString hide_mouse_on_idle = tr("Hides the mouse cursor if no mouse movement is detected for the configured time.");
|
||||
const QString show_shader_compilation_hint = tr("Shows 'Compiling shaders' hint using the native overlay.");
|
||||
const QString show_ppu_compilation_hint = tr("Shows 'Compiling PPU modules' hint using the native overlay.");
|
||||
@ -164,13 +164,13 @@ public:
|
||||
const QString resolution = tr("This setting will be ignored if the Resolution Scale is set to anything other than 100%!\nLeave this on 1280x720. Every PS3 game is compatible with this resolution.\nOnly use 1920x1080 if the game supports it.\nRarely due to emulation bugs some games will only render at low resolutions like 480p.");
|
||||
const QString graphics_adapter = tr("On multi GPU systems select which GPU to use in RPCS3 when using Vulkan.\nThis is not needed when using OpenGL.");
|
||||
const QString aspect_ratio = tr("Leave this on 16:9 unless you have a 4:3 monitor.");
|
||||
const QString frame_limit = tr("Off is the fastest option.\nUsing the frame limiter will add extra overhead and slow down the game. However, some games will crash if the frame rate is too high.\nPS3 native should only be used if Auto is not working correctly as it can introduce frame-pacing issues.\nInfinite adds a positive feedback loop which adds another vblank signal per frame allowing more games to be fps limitless.");
|
||||
const QString frame_limit = tr("Off is the fastest option.\nUsing the frame limiter will add extra overhead and slow down the game. However, some games will crash if the framerate is too high.\nPS3 native should only be used if Auto is not working correctly as it can introduce frame-pacing issues.\nInfinite adds a positive feedback loop which adds another vblank signal per frame allowing more games to be fps limitless.");
|
||||
const QString anti_aliasing = tr("Emulate PS3 multisampling layout.\nCan fix some otherwise difficult to solve graphics glitches.\nLow to moderate performance hit depending on your GPU hardware.");
|
||||
const QString anisotropic_filter = tr("Higher values increase sharpness of textures on sloped surfaces at the cost of GPU resources.\nModern GPUs can handle this setting just fine, even at 16x.\nKeep this on Automatic if you want to use the original setting used by a real PS3.");
|
||||
const QString resolution_scale = tr("Scales the game's resolution by the given percentage.\nThe base resolution is always 1280x720.\nSet this value to 100% if you want to use the normal Resolution options.\nValues below 100% will usually not improve performance.");
|
||||
const QString minimum_scalable_dimension = tr("Only framebuffers greater than this size will be upscaled.\nIncreasing this value might fix problems with missing graphics when upscaling, especially when Write Color Buffers is enabled.\nIf unsure, don't change this option.");
|
||||
const QString dump_color = tr("Enable this option if you get missing graphics or broken lighting ingame.\nMight degrade performance and introduce stuttering in some cases.\nRequired for Demon's Souls.");
|
||||
const QString vsync = tr("By having this off you might obtain a higher frame rate at the cost of tearing artifacts in the game.");
|
||||
const QString vsync = tr("By having this off you might obtain a higher framerate at the cost of tearing artifacts in the game.");
|
||||
const QString strict_rendering_mode = tr("Enforces strict compliance to the API specification.\nMight result in degraded performance in some games.\nCan resolve rare cases of missing graphics and flickering.\nIf unsure, don't use this option.");
|
||||
const QString stretch_to_display_area = tr("Overrides the aspect ratio and stretches the image to the full display area.");
|
||||
const QString multithreaded_rsx = tr("Offloads some RSX operations to a secondary thread.\nImproves performance for high-core processors.\nMay cause slowdown in weaker CPUs due to the extra worker thread load.");
|
||||
@ -218,7 +218,7 @@ public:
|
||||
const QString music_handler = tr("Currently only used for cellMusic emulation.\nSelect Qt to use the default output device of your operating system.\nThis may not be able to play all audio formats.");
|
||||
const QString camera = tr("Select Qt Camera to use the default camera device of your operating system.");
|
||||
const QString camera_type = tr("Depending on the game, you may need to select a specific camera type.");
|
||||
const QString camera_flip = tr("Flips the camera image either horizontally, vertically, or on both axis.");
|
||||
const QString camera_flip = tr("Flips the camera image either horizontally, vertically, or on both axes.");
|
||||
const QString camera_id = tr("Select the camera that you want to use during gameplay.");
|
||||
const QString move = tr("PlayStation Move support.\nFake: Experimental! This maps Move controls to DS3 controller mappings.\nMouse: Emulate PSMove with Mouse handler.");
|
||||
const QString buzz = tr("Buzz! support.\nSelect 1 or 2 controllers if the game requires Buzz! controllers and you don't have real controllers.\nSelect Null if the game has support for DualShock or if you have real Buzz! controllers.");
|
||||
@ -226,7 +226,7 @@ public:
|
||||
const QString ghltar = tr("Guitar Hero Live (GHL) Guitar controller support.\nSelect 1 or 2 controllers if the game requires GHL Guitar controllers and you don't have real guitar controllers.\nSelect Null if the game has support for DualShock or if you have real guitar controllers.\nA real guitar controller can be used at the same time as an emulated guitar controller.");
|
||||
const QString background_input = tr("Allows pad and keyboard input while the game window is unfocused.");
|
||||
const QString show_move_cursor = tr("Shows the raw position of the PS Move input.\nThis can be very helpful during calibration screens.");
|
||||
const QString midi_devices = tr("Select up to 3 emulated midi devices and their type.");
|
||||
const QString midi_devices = tr("Select up to 3 emulated MIDI devices and their types.");
|
||||
|
||||
const QString lock_overlay_input_to_player_one = tr("Locks the native overlay input to the first player.");
|
||||
|
||||
@ -247,7 +247,7 @@ public:
|
||||
const QString enter_button_assignment = tr("The button used for enter/accept/confirm in system dialogs.\nChange this to use the Circle button instead, which is the default configuration on Japanese systems and in many Japanese games.\nIn these cases having the cross button assigned can often lead to confusion.");
|
||||
const QString enable_host_root = tr("Required for some Homebrew.\nIf unsure, don't use this option.");
|
||||
const QString limit_cache_size = tr("Automatically removes older files from disk cache on boot if it grows larger than the specified value.\nGames can use the cache folder to temporarily store data outside of system memory. It is not used for long-term storage.\n\nThis setting is only available in the global configuration.");
|
||||
const QString console_time_offset = tr("Sets the time to be used within the console. This will be applied as an offset that tracks wall clock time.\nCan be reset to current wallclock time by clicking \"Set to Now\".");
|
||||
const QString console_time_offset = tr("Sets the time to be used within the console. This will be applied as an offset that tracks wall clock time.\nCan be reset to current wall clock time by clicking \"Set to Now\".");
|
||||
} settings;
|
||||
|
||||
const struct gamepad_settings
|
||||
@ -265,7 +265,7 @@ public:
|
||||
const QString dualsense_linux = tr("The DualSense handler is recommended for official DualSense controllers.");
|
||||
const QString dualsense_other = tr("The DualSense handler is recommended for official DualSense controllers.");
|
||||
const QString xinput = tr("The XInput handler will work with Xbox controllers and many third-party PC-compatible controllers. Pressure sensitive buttons from SCP are supported when SCP's XInput1_3.dll is placed in the main RPCS3 directory. For more details, see the <a %0 href=\"https://wiki.rpcs3.net/index.php?title=Help:Controller_Configuration\">RPCS3 Wiki</a>.").arg(gui::utils::get_link_style());
|
||||
const QString evdev = tr("The evdev handler should work with any controller that has linux support.<br>If your joystick is not being centered properly, read the <a %0 href=\"https://wiki.rpcs3.net/index.php?title=Help:Controller_Configuration\">RPCS3 Wiki</a> for instructions.").arg(gui::utils::get_link_style());
|
||||
const QString evdev = tr("The evdev handler should work with any controller that has Linux support.<br>If your joystick is not being centered properly, read the <a %0 href=\"https://wiki.rpcs3.net/index.php?title=Help:Controller_Configuration\">RPCS3 Wiki</a> for instructions.").arg(gui::utils::get_link_style());
|
||||
const QString mmjoy = tr("The MMJoystick handler should work with almost any controller recognized by Windows. However, it is recommended that you use the more specific handlers if you have a controller that supports them.");
|
||||
const QString sdl = tr("The SDL handler supports a variety of controllers across different platforms.");
|
||||
|
||||
@ -281,7 +281,7 @@ public:
|
||||
const QString mouse_deadzones = tr("The mouse deadzones represent the games' own deadzones on the x and y axes. Games usually enforce their own deadzones to filter out small unwanted stick movements. In consequence, mouse input feels unintuitive since it relies on immediate responsiveness. You can change these values temporarily during gameplay in order to find out the optimal values for your game (Alt+T and Alt+Y for x, Alt+U and Alt+I for y).");
|
||||
const QString mouse_acceleration = tr("The mouse acceleration can be used to amplify your mouse movements on the x and y axes. Increase these values if your mouse movements feel too slow while playing a game. You can change these values temporarily during gameplay in order to find out the optimal values (Alt+G and Alt+H for x, Alt+J and Alt+K for y). Keep in mind that modern mice usually provide different modes and settings that can be used to change mouse movement speeds as well.");
|
||||
const QString mouse_movement = tr("The mouse movement mode determines how the mouse movement is translated to pad input.<br>Use the relative mode for traditional mouse movement.<br>Use the absolute mode to use the mouse's distance to the center of the screen as input value.");
|
||||
const QString button_assignment = tr("Left-click: remap this button.<br>Shift + Left-click: add an addition button mapping.<br>Right-click: clear this button mapping.");
|
||||
const QString button_assignment = tr("Left-click: remap this button.<br>Shift + Left-click: add an additional button mapping.<br>Right-click: clear this button mapping.");
|
||||
|
||||
} gamepad_settings;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user