From c8892f411a2a979ecb1e795e5ed68f4488dbc8ea Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Sat, 28 Jan 2017 09:35:42 -0800 Subject: [PATCH] MCP GUI make surface numbering the same as port numbering and more explanatory. --- libs/surfaces/mackie/gui.cc | 8 ++++---- 1 file 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:");