Adapt to i18n changes, move language properties to application directory.
[jkeytool.git] / src / net / pterodactylus / jkeytool / gui / swing / SwingInterface.java
index 7574e4a..b67ce84 100644 (file)
@@ -39,6 +39,7 @@ import javax.swing.JToolBar;
 import net.pterodactylus.jkeytool.core.Core;
 import net.pterodactylus.jkeytool.gui.Interface;
 import net.pterodactylus.jkeytool.main.Main;
+import net.pterodactylus.util.i18n.I18n;
 import net.pterodactylus.util.i18n.gui.I18nAction;
 import net.pterodactylus.util.i18n.gui.I18nMenu;
 import net.pterodactylus.util.swing.StatusBar;
@@ -53,6 +54,9 @@ public class SwingInterface implements Interface {
        /** The core to control. */
        private Core core;
 
+       /** The I18n container. */
+       private I18n i18n = new I18n("jkeytool", SwingInterface.class);
+
        /** The main frame. */
        private JFrame mainFrame = new JFrame("jkeytool " + Main.getVersion());
 
@@ -92,14 +96,14 @@ public class SwingInterface implements Interface {
        //
 
        private void createActions() {
-               createKeyStoreAction = new I18nAction("jkeytool.action.createKeyStore") {
+               createKeyStoreAction = new I18nAction(i18n, "jkeytool.action.createKeyStore") {
 
                        @SuppressWarnings("synthetic-access")
                        public void actionPerformed(ActionEvent actionEvent) {
                                createKeyStore();
                        }
                };
-               quitAction = new I18nAction("jkeytool.action.quit") {
+               quitAction = new I18nAction(i18n, "jkeytool.action.quit") {
 
                        /**
                         * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
@@ -131,7 +135,7 @@ public class SwingInterface implements Interface {
        private JMenuBar createMenubar() {
                JMenuBar menubar = new JMenuBar();
 
-               JMenu fileMenu = new I18nMenu("jkeytool.menu.file");
+               JMenu fileMenu = new I18nMenu(i18n, "jkeytool.menu.file");
                menubar.add(fileMenu);
                fileMenu.add(createKeyStoreAction);
                fileMenu.addSeparator();