|
|
@@ -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;
|