Pārlūkot izejas kodu

add missing _() around the new "Progress" string

Michael Vogt 12 gadi atpakaļ
vecāks
revīzija
f28eef6df2
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      apt-pkg/deb/dpkgpm.cc

+ 1 - 1
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;