HaikuDepot: Add accidentally removed space

Re-add the space between currently downloaded package and number
of packages to be downloaded in status view.

I accidentally removed that in hrev52432.
This commit is contained in:
Humdinger 2018-11-27 18:58:06 +01:00
parent 278d03da22
commit 1eca0c487b

View File

@ -163,7 +163,8 @@ WorkStatusView::_SetTextDownloading(const BString& title)
if (!fPendingPackages.empty()) {
BString count;
count << fPendingPackages.size();
BString more(B_TRANSLATE("(%count% more to download)"));
BString more(" ");
more += B_TRANSLATE("(%count% more to download)");
more.ReplaceFirst("%count%", count);
text += more;
}