Tons of plugin code cleanup, including adding plugins to intellij configs.

[SPARK-912] Incorporated patches submitted for a wealth of localization improvements, also includes new confirmation when clearing transcript, ability to globally override spark properties, and ability to disable or change spark update check frequency.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@9710 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Daniel Henninger
2008-01-02 06:19:09 +00:00
committed by dhenninger
parent 518bcb21b4
commit 11c7ef79d2
74 changed files with 2736 additions and 1300 deletions

View File

@ -137,7 +137,7 @@ public abstract class ChatRoom extends BackgroundPanel implements ActionListener
transcriptWindow.addMouseListener(transcriptWindowMouseListener);
chatAreaButton = new ChatAreaSendField(SparkRes.getString(SparkRes.SEND));
chatAreaButton = new ChatAreaSendField(Res.getString("button.send"));
/*{
public Dimension getPreferredSize() {
Dimension dim = super.getPreferredSize();
@ -966,7 +966,7 @@ public abstract class ChatRoom extends BackgroundPanel implements ActionListener
saveTranscript();
}
};
saveAction.putValue(Action.NAME, "Save");
saveAction.putValue(Action.NAME, Res.getString("action.save"));
saveAction.putValue(Action.SMALL_ICON, SparkRes.getImageIcon(SparkRes.SAVE_AS_16x16));