summaryrefslogtreecommitdiff
path: root/gtk2_ardour/about.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 /gtk2_ardour/about.cc
parent9fa4d3c77fca18ed767c5c7d365c65d06b7efc5b (diff)
Normalize user-visible messages to use 8-bit, 16-bit, 24-bit, 32-bit and 64-bit
Diffstat (limited to 'gtk2_ardour/about.cc')
-rw-r--r--gtk2_ardour/about.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc
index bcaf84e956..2fdd36607b 100644
--- a/gtk2_ardour/about.cc
+++ b/gtk2_ardour/about.cc
@@ -593,17 +593,17 @@ About::About ()
}
#if defined __x86_64__ || defined _M_X64
- const std::string cpu_arch = _("Intel 64 bit");
+ const std::string cpu_arch = _("Intel 64-bit");
#elif defined __i386__ || defined _M_IX86
- const std::string cpu_arch = _("Intel 32 bit");
+ const std::string cpu_arch = _("Intel 32-bit");
#elif defined __ppc__ && defined __LP64__
- const std::string cpu_arch = _("PowerPC 64bit");
+ const std::string cpu_arch = _("PowerPC 64-bit");
#elif defined __ppc__
- const std::string cpu_arch = _("PowerPC 32bit");
+ const std::string cpu_arch = _("PowerPC 32-bit");
#elif defined __LP64__
- const std::string cpu_arch = _("64bit");
+ const std::string cpu_arch = _("64-bit");
#else
- const std::string cpu_arch = _("32bit"); // ARM, ALPHA,..
+ const std::string cpu_arch = _("32-bit"); // ARM, ALPHA,..
#endif
std::string codename = CODENAME;
if (ARDOUR::Profile->get_mixbus() || ARDOUR::Profile->get_trx()) {