diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2013-01-09 08:25:14 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2013-01-09 08:25:14 +0100 |
commit | d52f514fd380cdeef7ff68a54f81b82932d113cf (patch) | |
tree | 3c0d1ef2843fda42c8695fee49e53cfa5081a880 /apt-pkg/contrib/progress.cc | |
parent | 34c2a164242d06b206abfde18e28990908aa9c58 (diff) | |
parent | 50816ce74432f24135aefc590361bbb8ccfc71f1 (diff) |
merge train fixes
Diffstat (limited to 'apt-pkg/contrib/progress.cc')
-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; |