From 01123cf9ed2cdd931e7d5210cbe58692874acfd8 Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Mon, 1 Aug 2011 07:03:00 +0000 Subject: [PATCH] Switched to a B_TRANSLATE_COMMENT because it's nt obvious that %MIT license% isn't a variable and has to be translated. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42531 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/aboutsystem/AboutSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index 0e85b30c3a..c48e55d40b 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -1236,12 +1236,12 @@ AboutView::_CreateCreditsView() "respective license.]\n\n")); // Haiku license - BString haikuLicense = B_TRANSLATE("The code that is unique to Haiku, " + BString haikuLicense = B_TRANSLATE_COMMENT("The code that is unique to Haiku, " "especially the kernel and all code that applications may link " "against, is distributed under the terms of the %MIT license%. " "Some system libraries contain third party code distributed under the " "LGPL license. You can find the copyrights to third party code below.\n" - "\n"); + "\n", "%MIT license% isn't a variable and has to be translated."); int32 licensePart1 = haikuLicense.FindFirst("%"); int32 licensePart2 = haikuLicense.FindLast("%"); BString part;