summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-01-28 09:35:42 -0800
committerLen Ovens <len@ovenwerks.net>2017-01-28 09:35:42 -0800
commitc8892f411a2a979ecb1e795e5ed68f4488dbc8ea (patch)
tree11144a147b1e02170696619e73a1989789f66587 /libs/surfaces
parent390ce9bc4f1c7c294a980a50d9b6e59c4de00c5e (diff)
MCP GUI make surface numbering the same as port numbering and more explanatory.
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/mackie/gui.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/surfaces/mackie/gui.cc b/libs/surfaces/mackie/gui.cc
index b05a29fc95..15be6394ef 100644
--- a/libs/surfaces/mackie/gui.cc
+++ b/libs/surfaces/mackie/gui.cc
@@ -389,11 +389,11 @@ MackieControlProtocolGUI::device_dependent_widget ()
if (n_surfaces > 1) {
if (n == main_pos) {
- send_string = _("Main surface sends via:");
- receive_string = _("Main surface receives via:");
+ send_string = string_compose(_("Main surface at position %1 sends via:"), n + 1);
+ receive_string = string_compose(_("Main surface at position %1 receives via:"), n + 1);
} else {
- send_string = string_compose (_("Extender %1 sends via:"), n);
- receive_string = string_compose (_("Extender %1 receives via:"), n);
+ send_string = string_compose (_("Extender at position %1 sends via:"), n + 1);
+ receive_string = string_compose (_("Extender at position %1 receives via:"), n + 1);
}
} else {
send_string = _("Surface sends via:");