Remove some excess commas from the export format description
authorSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 24 Jun 2012 20:00:30 +0000 (20:00 +0000)
committerSakari Bergen <sakari.bergen@beatwaves.net>
Sun, 24 Jun 2012 20:00:30 +0000 (20:00 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12920 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/export_format_specification.cc

index 66deabc6235977dfbf67143ab8bfb02c78fc9aa4..c4e61dea39211d7aa5777b9fea5034775e80c8e9 100644 (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 != "") {