Updating UI and Fastpath.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@4881 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2006-08-10 20:55:07 +00:00
committed by derek
parent a89e1552b9
commit 675a9b3893
5 changed files with 11 additions and 10 deletions

View File

@ -1106,7 +1106,7 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
}
}
};
closeThisAction.putValue(Action.NAME, "Close this room");
closeThisAction.putValue(Action.NAME, "Close this chat");
popup.add(closeThisAction);
@ -1125,7 +1125,7 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
}
};
closeOthersAction.putValue(Action.NAME, "Close all other rooms");
closeOthersAction.putValue(Action.NAME, "Close all other chats");
popup.add(closeOthersAction);
Action closeOldAction = new AbstractAction() {
@ -1135,7 +1135,7 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
}
}
};
closeOldAction.putValue(Action.NAME, "Close stale rooms");
closeOldAction.putValue(Action.NAME, "Close stale chats");
popup.add(closeOldAction);
}