You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rpcs3/rpcs3qt/localized_emu.h
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,11 @@ class localized_emu : public QObject
43
43
case localized_string_id::RSX_OVERLAYS_TROPHY_SILVER: returntr("You have earned a silver trophy.\n%0", "Trophy text").arg(std::forward<Args>(args)...);
44
44
case localized_string_id::RSX_OVERLAYS_TROPHY_GOLD: returntr("You have earned a gold trophy.\n%0", "Trophy text").arg(std::forward<Args>(args)...);
45
45
case localized_string_id::RSX_OVERLAYS_TROPHY_PLATINUM: returntr("You have earned a platinum trophy.\n%0", "Trophy text").arg(std::forward<Args>(args)...);
46
-
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS: returntr("Compiling shaders");
46
+
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS: returntr("Precompiling shader interpreter variants.\nPlease wait...");
47
+
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS_TITLE: returntr("Shader Compilation");
48
+
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS_VULKAN: returntr("Building base variant %0...").arg(std::forward<Args>(args)...);
49
+
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS_OPENGL_BUILD: returntr("Building variant %0...").arg(std::forward<Args>(args)...);
50
+
case localized_string_id::RSX_OVERLAYS_COMPILING_SHADERS_OPENGL_LINK: returntr("Linking variant %0...").arg(std::forward<Args>(args)...);
47
51
case localized_string_id::RSX_OVERLAYS_COMPILING_PPU_MODULES: returntr("Compiling PPU Modules");
48
52
case localized_string_id::RSX_OVERLAYS_MSG_DIALOG_YES: returntr("Yes", "Message Dialog");
49
53
case localized_string_id::RSX_OVERLAYS_MSG_DIALOG_NO: returntr("No", "Message Dialog");
0 commit comments