diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2022-09-21 12:02:46 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2022-09-21 12:02:46 +0000 |
commit | 2b7e05b42e19a2da936c8feebbf271a27746e1e9 (patch) | |
tree | aecf5d94a4540c464db0f2aa0ef87202cd448f5a /src/yuzu/multiplayer/message.cpp | |
parent | ef159da40bcea8b2cef95ebc52ab182d76c8d14c (diff) |
"Merge Tagged PR 8876"
Diffstat (limited to 'src/yuzu/multiplayer/message.cpp')
-rw-r--r-- | src/yuzu/multiplayer/message.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/multiplayer/message.cpp b/src/yuzu/multiplayer/message.cpp index 758b5b731d..6d8f18274f 100644 --- a/src/yuzu/multiplayer/message.cpp +++ b/src/yuzu/multiplayer/message.cpp @@ -49,9 +49,9 @@ const ConnectionError ErrorManager::PERMISSION_DENIED( QT_TR_NOOP("You do not have enough permission to perform this action.")); const ConnectionError ErrorManager::NO_SUCH_USER(QT_TR_NOOP( "The user you are trying to kick/ban could not be found.\nThey may have left the room.")); -const ConnectionError ErrorManager::NO_INTERFACE_SELECTED( - QT_TR_NOOP("No network interface is selected.\nPlease go to Configure -> System -> Network and " - "make a selection.")); +const ConnectionError ErrorManager::NO_INTERFACE_SELECTED(QT_TR_NOOP( + "No valid network interface is selected.\nPlease go to Configure -> System -> Network and " + "make a selection.")); static bool WarnMessage(const std::string& title, const std::string& text) { return QMessageBox::Ok == QMessageBox::warning(nullptr, QObject::tr(title.c_str()), |