summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-13 18:27:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-14 06:19:19 -0400
commit81a10a26e02f458188e40b9eadcb2c8b3400953d (patch)
treedd612b67d6eed605c153ecb344630b6245f6597e /libs/ardour/io.cc
parent22de00b247a039bdc0e6359812cacf7d0c5d2a9c (diff)
regenerate and manually fix all PO files so that ./waf i18n doesn't generate unnecessary errors
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index ab667815cc..2931e8d23a 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -1579,13 +1579,13 @@ IO::bundle_channel_name (uint32_t c, uint32_t n, DataType t) const
case 2:
return c == 0 ? _("L") : _("R");
default:
- snprintf (buf, sizeof(buf), _("%d"), (c + 1));
+ snprintf (buf, sizeof(buf), "%d", (c + 1));
return buf;
}
} else {
- snprintf (buf, sizeof(buf), _("%d"), (c + 1));
+ snprintf (buf, sizeof(buf), "%d", (c + 1));
return buf;
}