From 9094f0c24f91b0f5ffe37bdbcd8d791c042b87fe Mon Sep 17 00:00:00 2001 From: Niels Sascha Reedijk Date: Sat, 16 May 2020 17:21:45 +0100 Subject: [PATCH] AboutSystem: localize copyright string Change-Id: Ia43004bbe56bebdb32bcfd3394135ffb9b9914af Reviewed-on: https://review.haiku-os.org/c/haiku/+/2711 Reviewed-by: waddlesplash --- src/apps/aboutsystem/AboutSystem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index dd5d71618e..a12279e12e 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -912,7 +912,8 @@ AboutView::_CreateCreditsView() if (year < 2008) year = 2008; snprintf(string, sizeof(string), - COPYRIGHT_STRING "2001-%" B_PRId32 " The Haiku project. ", year); + B_TRANSLATE(COPYRIGHT_STRING "2001-%" B_PRId32 " The Haiku project. "), + year); fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &kDarkGrey); fCreditsView->Insert(string);