summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin_manager.cc
diff options
context:
space:
mode:
authorAlexandre Prokoudine <alexandre.prokoudine@gmail.com>2015-12-06 01:00:20 +0100
committerRobin Gareus <robin@gareus.org>2015-12-06 01:00:20 +0100
commit10b715d1ffa24e81eba7f6fe3d4fa98fc637e002 (patch)
treec31de89df946c79f25ebc10aabb4b0b053d0aed7 /libs/ardour/plugin_manager.cc
parent9fa4d3c77fca18ed767c5c7d365c65d06b7efc5b (diff)
Normalize user-visible messages to use 8-bit, 16-bit, 24-bit, 32-bit and 64-bit
Diffstat (limited to 'libs/ardour/plugin_manager.cc')
-rw-r--r--libs/ardour/plugin_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc
index 55c758cb5e..2e1b21e4ef 100644
--- a/libs/ardour/plugin_manager.cc
+++ b/libs/ardour/plugin_manager.cc
@@ -831,13 +831,13 @@ static std::string dll_info (std::string path) {
type = *((uint16_t*) &buf[4]);
switch (type) {
case 0x014c:
- rv = _("i386 (32bit)");
+ rv = _("i386 (32-bit)");
break;
case 0x0200:
rv = _("Itanium");
break;
case 0x8664:
- rv = _("x64 (64bit)");
+ rv = _("x64 (64-bit)");
break;
case 0:
rv = _("Native Architecture");