13
0

port names are NOT translatable

git-svn-id: svn://localhost/ardour2/branches/3.0@14024 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-01-28 21:34:17 +00:00
parent 0d7ee3fbd3
commit 03b4633e47

View File

@ -1342,9 +1342,9 @@ IO::build_legal_port_name (DataType type)
string suffix;
if (type == DataType::AUDIO) {
suffix = _("audio");
suffix = X_("audio");
} else if (type == DataType::MIDI) {
suffix = _("midi");
suffix = X_("midi");
} else {
throw unknown_type();
}