diff options
author | liushuyu <liushuyu011@gmail.com> | 2021-12-22 10:26:17 +0100 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2021-12-22 10:33:01 +0100 |
commit | 14fc1bec1798e1bbd5f5a169965fea073cc80b41 (patch) | |
tree | 8e0d745c80ccbdf5d3e9e33d07dbf0cc670f4446 | |
parent | main: fix wake lock in Flatpak ... (diff) | |
download | yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar.gz yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar.bz2 yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar.lz yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar.xz yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.tar.zst yuzu-14fc1bec1798e1bbd5f5a169965fea073cc80b41.zip |
-rw-r--r-- | src/yuzu/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 975f6dd11..1e02d715b 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1250,9 +1250,10 @@ static std::optional<QDBusObjectPath> HoldWakeLockLinux(u32 window_id = 0) { return {}; } QVariantMap options = {}; - //: TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the computer from sleeping + //: TRANSLATORS: This string is shown to the user to explain why yuzu needs to prevent the + //: computer from sleeping options.insert(QString::fromLatin1("reason"), - QCoreApplication::translate("GMainWindow", "yuzu is emulating a game")); + QCoreApplication::translate("GMainWindow", "yuzu is running a game")); // 0x4: Suspend lock; 0x8: Idle lock QDBusReply<QDBusObjectPath> reply = xdp.call(QString::fromLatin1("Inhibit"), |