Fix ICU message syntax

This apparently led to a crash in ICU, reported on the mailing list.
This commit is contained in:
Adrien Destugues 2014-10-12 11:41:23 +02:00
parent 6668f854b0
commit d6bd833865
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ StatusView::ShowInfo(const FileInfo* info)
if (info->count > 0) {
static BMessageFormat format(B_TRANSLATE("{0, plural, "
"one{# file}, other{# files}}"));
"one{# file} other{# files}}"));
BString label;
format.Format(label, info->count);
fCountView->SetText(label);