Author: jflesch
Date: 2007-05-22 19:26:23 +0000 (Tue, 22 May 2007)
New Revision: 13313
Modified:
trunk/apps/Thaw/src/thaw/plugins/index/CommentTab.java
Log:
Doh, I used the wrong string for the title in the comment tab
Modified: trunk/apps/Thaw/src/thaw/plugins/index/CommentTab.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/index/CommentTab.java 2007-05-22
19:24:32 UTC (rev 13312)
+++ trunk/apps/Thaw/src/thaw/plugins/index/CommentTab.java 2007-05-22
19:26:23 UTC (rev 13313)
@@ -145,11 +145,11 @@
if (titleLabel != null) {
if (index != null)
-
titleLabel.setText(I18n.getMessage("thaw.plugin.index.comment.commentList")
+
titleLabel.setText(I18n.getMessage("thaw.plugin.index.comment.commentListTitle")
+" '"+index.toString()+"'"
+" :");
else
-
titleLabel.setText(I18n.getMessage("thaw.plugin.index.comment.commentList")
+
titleLabel.setText(I18n.getMessage("thaw.plugin.index.comment.commentListTitle")
+" (null)"
+" :");
}