MCP GUI make surface numbering the same as port numbering and more explanatory.
This commit is contained in:
parent
390ce9bc4f
commit
c8892f411a
@ -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:");
|
||||
|
Loading…
Reference in New Issue
Block a user