Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #7800 from JosJuice/string-fixes
Browse files Browse the repository at this point in the history
Minor fixes to translatable strings
  • Loading branch information
lioncash committed Feb 13, 2019
2 parents 131f493 + 5067e96 commit 51e741e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Core/NetPlayClient.cpp
Expand Up @@ -1439,7 +1439,7 @@ void NetPlayClient::SyncCodeResponse(const bool success)
// If something failed, immediately report back that code sync failed
if (!success)
{
m_dialog->AppendChat(GetStringT("Error processing Codes."));
m_dialog->AppendChat(GetStringT("Error processing codes."));

sf::Packet response_packet;
response_packet << static_cast<MessageId>(NP_MSG_SYNC_CODES);
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/NetPlayServer.cpp
Expand Up @@ -1115,7 +1115,7 @@ bool NetPlayServer::RequestStartGame()
m_start_pending = true;
if (!SyncCodes())
{
PanicAlertT("Error synchronizing save gecko codes!");
PanicAlertT("Error synchronizing cheat codes!");
m_start_pending = false;
return false;
}
Expand Down
Expand Up @@ -296,7 +296,7 @@ void EnhancementsWidget::AddDescriptions()
"effects, and textures.\n\nIf unsure, select None.");

static const char TR_ANISOTROPIC_FILTERING_DESCRIPTION[] = QT_TR_NOOP(
"Enables anisotropic filtering, which enhances the visual quality of textures that "
"Enables anisotropic filtering, which enhances the visual quality of textures that "
"are at oblique viewing angles.\n\nMight cause issues in a small "
"number of games.\n\nIf unsure, select 1x.");

Expand Down

0 comments on commit 51e741e

Please sign in to comment.