diff options
author | Michael Vogt <mvo@debian.org> | 2013-10-11 22:05:38 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-10-11 22:05:38 +0200 |
commit | f28eef6df2a9fd2befedacf8ccd6248e5b3618db (patch) | |
tree | 72c014f32a7c51689ed08a4a294f921928fe0b40 /apt-pkg | |
parent | 46cffd8a0ad4c1b1da93f9e3e1e31eddd7cbe7cb (diff) |
add missing _() around the new "Progress" string
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |