From d6bd833865b26713877d347e28dec8f0339a6782 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sun, 12 Oct 2014 11:41:23 +0200 Subject: [PATCH] Fix ICU message syntax This apparently led to a crash in ICU, reported on the mailing list. --- src/apps/diskusage/StatusView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/diskusage/StatusView.cpp b/src/apps/diskusage/StatusView.cpp index 586c72a261..9f01ea2145 100644 --- a/src/apps/diskusage/StatusView.cpp +++ b/src/apps/diskusage/StatusView.cpp @@ -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);