Remove some excess commas from the export format description

git-svn-id: svn://localhost/ardour2/branches/3.0@12920 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen
2012-06-24 20:00:30 +00:00
parent d54d26e822
commit ed51eb8801

View File

@@ -530,15 +530,15 @@ ExportFormatSpecification::description (bool include_name)
list<string> components;
if (_normalize) {
components.push_back (_("normalize, "));
components.push_back (_("normalize"));
}
if (_trim_beginning && _trim_end) {
components.push_back ( _("trim, "));
components.push_back ( _("trim"));
} else if (_trim_beginning) {
components.push_back (_("trim start, "));
components.push_back (_("trim start"));
} else if (_trim_end) {
components.push_back (_("trim end, "));
components.push_back (_("trim end"));
}
if (_format_name != "") {