summaryrefslogtreecommitdiff
path: root/libs/ardour/export_format_specification.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2012-06-24 20:00:30 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2012-06-24 20:00:30 +0000
commited51eb8801c95b630d510ec6ced6d37c07544157 (patch)
treeacd11884cd16ad491c3916523a0902a55565e893 /libs/ardour/export_format_specification.cc
parentd54d26e822661e76a56fe7d8bb371f1b3944e066 (diff)
Remove some excess commas from the export format description
git-svn-id: svn://localhost/ardour2/branches/3.0@12920 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/export_format_specification.cc')
-rw-r--r--libs/ardour/export_format_specification.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/export_format_specification.cc b/libs/ardour/export_format_specification.cc
index 66deabc623..c4e61dea39 100644
--- a/libs/ardour/export_format_specification.cc
+++ b/libs/ardour/export_format_specification.cc
@@ -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 != "") {