Fix name of OK button text property.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sat, 23 Jan 2010 21:13:13 +0000 (22:13 +0100)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Sat, 23 Jan 2010 21:13:13 +0000 (22:13 +0100)
src/de/todesbaum/jsite/gui/ProjectInsertPage.java

index e8e2154..e43510d 100644 (file)
@@ -358,7 +358,7 @@ public class ProjectInsertPage extends TWizardPage implements InsertListener, Cl
        public void projectInsertFinished(Project project, boolean success, Throwable cause) {
                if (success) {
                        String copyURILabel = I18n.getMessage("jsite.insert.okay-copy-uri");
-                       int selectedValue = JOptionPane.showOptionDialog(this, I18n.getMessage("jsite.insert.inserted"), I18n.getMessage("jsite.insert.done.title"), 0, JOptionPane.INFORMATION_MESSAGE, null, new Object[] { I18n.getMessage("jsite.general.okay"), copyURILabel }, copyURILabel);
+                       int selectedValue = JOptionPane.showOptionDialog(this, I18n.getMessage("jsite.insert.inserted"), I18n.getMessage("jsite.insert.done.title"), 0, JOptionPane.INFORMATION_MESSAGE, null, new Object[] { I18n.getMessage("jsite.general.ok"), copyURILabel }, copyURILabel);
                        if (selectedValue == 1) {
                                actionCopyURI();
                        }