summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2012-10-14 16:42:32 +0000
committerRobin Gareus <robin@gareus.org>2012-10-14 16:42:32 +0000
commit3769c060f281fb23e8cb8de5ca6755b85f53602c (patch)
tree9162c4716a5ac6f0d43783a49508a1a4d02e86ef /libs/ardour/utils.cc
parentbdcd6dba699d153d80091322b1997284eff9bc02 (diff)
use translatable strings for TC info,
and prepare delta display git-svn-id: svn://localhost/ardour2/branches/3.0@13275 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 904750e9d8..8c990a5e88 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -451,7 +451,11 @@ sync_source_to_string (SyncSource src, bool sh)
}
case MIDIClock:
- return _("MIDI Clock");
+ if (sh) {
+ return _("M-Clock");
+ } else {
+ return _("MIDI Clock");
+ }
case LTC:
return _("LTC");