[Ktutorial-commits] SF.net SVN: ktutorial:[318] trunk/ktutorial/ktutorial-editor/src/view/ Reaction
Status: Alpha
Brought to you by:
danxuliu
From: <dan...@us...> - 2011-06-08 14:44:18
|
Revision: 318 http://ktutorial.svn.sourceforge.net/ktutorial/?rev=318&view=rev Author: danxuliu Date: 2011-06-08 14:44:12 +0000 (Wed, 08 Jun 2011) Log Message: ----------- Fix missing i18n call. Modified Paths: -------------- trunk/ktutorial/ktutorial-editor/src/view/ReactionTreeItem.cpp Modified: trunk/ktutorial/ktutorial-editor/src/view/ReactionTreeItem.cpp =================================================================== --- trunk/ktutorial/ktutorial-editor/src/view/ReactionTreeItem.cpp 2011-06-08 12:48:46 UTC (rev 317) +++ trunk/ktutorial/ktutorial-editor/src/view/ReactionTreeItem.cpp 2011-06-08 14:44:12 UTC (rev 318) @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by Daniel Calviño Sánchez * + * Copyright (C) 2010-2011 by Daniel Calviño Sánchez * * dan...@gm... * * * * This program is free software; you can redistribute it and/or modify * @@ -116,7 +116,7 @@ } if (reaction->customCode().isEmpty()) { - mResponseCustomCodeItem->setText("(No code set)"); + mResponseCustomCodeItem->setText(i18nc("@item", "(No code set)")); } else { mResponseCustomCodeItem->setText(reaction->customCode()); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |