diff options
author | Michael Vogt <egon@debian-devbox> | 2013-03-01 12:06:50 +0100 |
---|---|---|
committer | Michael Vogt <egon@debian-devbox> | 2013-03-01 12:06:50 +0100 |
commit | 01b810674a34e30eb8bb913b94351cdaccd57e1c (patch) | |
tree | 93b684196c659d2b61bf256ec8eb99eea543e867 /apt-pkg/contrib | |
parent | ca3965066270db678649ffd19479a157d95b429f (diff) | |
parent | 0597dcd8fa8f933d8bf0d7fbea395408bf3b7e5d (diff) |
merged from the debian-sid branch
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/progress.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/progress.cc b/apt-pkg/contrib/progress.cc index 317048845..17a6b70e9 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -176,7 +176,7 @@ void OpTextProgress::Update() if (OldOp.empty() == false) cout << endl; OldOp = "a"; - cout << Op << "..." << flush; + cout << Op << _("...") << flush; } return; @@ -192,7 +192,7 @@ void OpTextProgress::Update() } // Print the spinner - snprintf(S,sizeof(S),"\r%s... %u%%",Op.c_str(),(unsigned int)Percent); + snprintf(S,sizeof(S),_("\r%s... %u%%"),Op.c_str(),(unsigned int)Percent); Write(S); OldOp = Op; |