diff plugin/PluginScan.cpp @ 1505:d7fdc77252c6

Wording change
author Chris Cannam
date Mon, 03 Sep 2018 16:15:03 +0100
parents 2765b9db402b
children 830972646ccd
line wrap: on
line diff
--- a/plugin/PluginScan.cpp	Mon Sep 03 16:14:56 2018 +0100
+++ b/plugin/PluginScan.cpp	Mon Sep 03 16:15:03 2018 +0100
@@ -207,10 +207,10 @@
         case PluginCheckCode::FAIL_WRONG_ARCHITECTURE:
             if (tag == "64" || (sizeof(void *) == 8 && tag == "")) {
                 userMessage = QObject::tr
-                    ("Library has wrong architecture - possibly a 32-bit plugin installed in a folder for 64-bit plugins");
+                    ("Library has wrong architecture - possibly a 32-bit plugin installed in a 64-bit plugin folder");
             } else if (tag == "32" || (sizeof(void *) == 4 && tag == "")) {
                 userMessage = QObject::tr
-                    ("Library has wrong architecture - possibly a 64-bit plugin installed in a folder for 32-bit plugins");
+                    ("Library has wrong architecture - possibly a 64-bit plugin installed in a 32-bit plugin folder");
             }
             break;