13
0

MCP GUI make surface numbering the same as port numbering and more explanatory.

This commit is contained in:
Len Ovens 2017-01-28 09:35:42 -08:00
parent 390ce9bc4f
commit c8892f411a

View File

@ -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:");