From 7fb90215099b811a1bc9ea482f77ae29ce5a54cc Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 7 Oct 2014 10:12:02 +0200 Subject: [PATCH] Fix singular for Processor count. --- src/apps/aboutsystem/AboutSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index fd1a68b203..d1d284e1d8 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -445,7 +445,7 @@ AboutView::AboutView() // CPU count, type and clock speed BString processorLabel; BMessageFormat().Format(processorLabel, B_TRANSLATE_COMMENT( - "{0, plural, one{Processors:} other{# Processors:}}", + "{0, plural, one{Processor:} other{# Processors:}}", "\"Processor:\" or \"2 Processors:\""), systemInfo.cpu_count); uint32 topologyNodeCount = 0;