From: Michael Vogt Date: Fri, 11 Oct 2013 20:05:38 +0000 (+0200) Subject: add missing _() around the new "Progress" string X-Git-Tag: 0.9.12.1~3^2~2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/f28eef6df2a9fd2befedacf8ccd6248e5b3618db add missing _() around the new "Progress" string --- diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index b4d812d26..c29d21574 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -901,7 +901,7 @@ void pkgDPkgPM::SendTerminalProgress(float percentage) return; std::string progress_str; - strprintf(progress_str, "Progress: [%3i%%]", (int)percentage); + strprintf(progress_str, _("Progress: [%3i%%]"), (int)percentage); if (d->fancy_progress_output) { int row = d->nr_terminal_rows;