summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-18 23:17:29 +0100
committerRobin Gareus <robin@gareus.org>2016-12-18 23:17:29 +0100
commitbd0fc8cafcf725fa1e03f3c6781b3df48577ce68 (patch)
tree7ae5d406fca7fb36a190fe39eefb46aa1cfd7808 /libs/ardour/utils.cc
parent2cb9f4167a962981e7d9ef6082e1cb86a3438f0d (diff)
Shorten sync-button label/size
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 8e57cdeac3..8b89107748 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -475,27 +475,27 @@ ARDOUR::sync_source_to_string (SyncSource src, bool sh)
/* no other backends offer sync for now ... deal with this if we
* ever have to.
*/
- return _("JACK");
+ return S_("SyncSource|JACK");
case MTC:
if (sh) {
- return _("MTC");
+ return S_("SyncSource|MTC");
} else {
return _("MIDI Timecode");
}
case MIDIClock:
if (sh) {
- return _("M-Clock");
+ return S_("SyncSource|M-Clk");
} else {
return _("MIDI Clock");
}
case LTC:
- return _("LTC");
+ return S_("SyncSource|LTC");
}
/* GRRRR .... stupid, stupid gcc - you can't get here from there, all enum values are handled */
- return _("JACK");
+ return S_("SyncSource|JACK");
}
float