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

@ -417,7 +417,7 @@ public final class MainWindow extends ChatFrame implements ActionListener {
}
};
viewErrors.putValue(Action.NAME, "View Logs");
viewErrors.putValue(Action.NAME, Res.getString("menuitem.view.logs"));
final Action viewHelpGuideAction = new AbstractAction() {
public void actionPerformed(ActionEvent actionEvent) {
@ -588,7 +588,7 @@ public final class MainWindow extends ChatFrame implements ActionListener {
*/
private static void showAboutBox() {
JOptionPane.showMessageDialog(SparkManager.getMainWindow(), Default.getString(Default.APPLICATION_NAME) + " " + JiveInfo.getVersion(),
"About", JOptionPane.INFORMATION_MESSAGE);
Res.getString("title.about"), JOptionPane.INFORMATION_MESSAGE);
}
/**
@ -612,7 +612,7 @@ public final class MainWindow extends ChatFrame implements ActionListener {
frame.add(new JScrollPane(pane), BorderLayout.CENTER);
final JButton copyButton = new JButton("Copy To Clipboard");
final JButton copyButton = new JButton(Res.getString("button.copy.to.clipboard"));
frame.add(copyButton, BorderLayout.SOUTH);
copyButton.addActionListener(new ActionListener() {