]> git.saurik.com Git - apt.git/commitdiff
add missing _() around the new "Progress" string
authorMichael Vogt <mvo@debian.org>
Fri, 11 Oct 2013 20:05:38 +0000 (22:05 +0200)
committerMichael Vogt <mvo@debian.org>
Fri, 11 Oct 2013 20:05:38 +0000 (22:05 +0200)
apt-pkg/deb/dpkgpm.cc

index b4d812d26f80baed5b10408382b1b2218bc9ee8c..c29d21574cb7a2927fc920a00037c71d07ede7db 100644 (file)
@@ -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;