[haiku-commits] haiku: hrev47972 - src/apps/aboutsystem

  • From: pulkomandy@xxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 7 Oct 2014 10:12:21 +0200 (CEST)

hrev47972 adds 1 changeset to branch 'master'
old head: 53382a8aa7d12cc7d72e36acd6ac7c70429eddf0
new head: 7fb90215099b811a1bc9ea482f77ae29ce5a54cc
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=7fb9021+%5E53382a8

----------------------------------------------------------------------------

7fb9021: Fix singular for Processor count.

                                 [ Adrien Destugues <pulkomandy@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47972
Commit:      7fb90215099b811a1bc9ea482f77ae29ce5a54cc
URL:         http://cgit.haiku-os.org/haiku/commit/?id=7fb9021
Author:      Adrien Destugues <pulkomandy@xxxxxxxxx>
Date:        Tue Oct  7 08:12:02 2014 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/aboutsystem/AboutSystem.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/apps/aboutsystem/AboutSystem.cpp 
b/src/apps/aboutsystem/AboutSystem.cpp
index fd1a68b..d1d284e 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;


Other related posts:

  • » [haiku-commits] haiku: hrev47972 - src/apps/aboutsystem - pulkomandy