Ignore:
Timestamp:
May 30, 2015, 3:14:44 PM (9 years ago)
Author:
alloc
Message:

AEI 2.23: More strings in localization

Location:
java/installer2/src/net/oni2/aeinstaller
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/AEInstaller.properties

    r1020 r1023  
    11appname=AE Installer 2
    2 appversion=.22
     2appversion=.23
  • java/installer2/src/net/oni2/aeinstaller/AEInstaller2.java

    r988 r1023  
    5555        private static ResourceBundle basicBundle = ResourceBundle
    5656                        .getBundle("net.oni2.aeinstaller.AEInstaller");
    57         private static ResourceBundle globalBundle;
     57        public static ResourceBundle globalBundle;
    5858
    5959        private static Application app = null;
  • java/installer2/src/net/oni2/aeinstaller/backend/oni/management/Initializer.java

    r749 r1023  
    1111import java.util.Vector;
    1212
     13import net.oni2.aeinstaller.AEInstaller2;
    1314import net.oni2.aeinstaller.backend.Paths;
    1415import net.oni2.aeinstaller.backend.oni.OniSplit;
     
    6869
    6970                        listener.installProgressUpdate(stepsDone, totalSteps,
    70                                         "Cleaning up directories");
     71                                        AEInstaller2.globalBundle.getString("coreInitializer.cleanup"));
    7172                        createEmptyPath(Paths.getVanillaOnisPath());
    7273                        createEmptyPath(init);
     
    8788                                log.println("\t\tExporting");
    8889                                listener.installProgressUpdate(stepsDone, totalSteps,
    89                                                 "Exporting vanilla level " + levelNumber);
     90                                                AEInstaller2.globalBundle.getString("coreInitializer.exportVanilla").replaceAll("%1", String.valueOf(levelNumber)));
    9091
    9192                                // Edition/GameDataFolder/level*_Final/
     
    116117                                log.println("\t" + levelName);
    117118                                listener.installProgressUpdate(stepsDone, totalSteps,
    118                                                 "Creating globalized " + levelName);
     119                                                AEInstaller2.globalBundle.getString("coreInitializer.globalize").replaceAll("%1", levelName));
    119120
    120121                                Vector<File> folders = new Vector<File>();
     
    132133
    133134                        listener.installProgressUpdate(stepsDone, totalSteps,
    134                                         "Copying basic files");
     135                                        AEInstaller2.globalBundle.getString("coreInitializer.copyBasicFiles"));
    135136                        // Copy Oni-configs
    136137                        File persistVanilla = new File(Paths.getOniBasePath(),
  • java/installer2/src/net/oni2/aeinstaller/backend/oni/management/Installer.java

    r1021 r1023  
    276276        private static void combineBSLFolders(TreeSet<Package> mods,
    277277                        InstallProgressListener listener, Logger log) {
    278                 listener.installProgressUpdate(95, 100, "Installing BSL files");
     278                listener.installProgressUpdate(95, 100, AEInstaller2.globalBundle.getString("modInstaller.installBsl"));
    279279                log.println();
    280280                log.println("Installing BSL files");
     
    393393                log.println();
    394394                log.println("Applying XML patches");
    395                 listener.installProgressUpdate(0, 1, "Applying XML patches");
     395                listener.installProgressUpdate(0, 1, AEInstaller2.globalBundle.getString("modInstaller.applyXmlPatches"));
    396396
    397397                long startMS = new Date().getTime();
     
    551551                        log.println("\tLevel " + l);
    552552                        listener.installProgressUpdate(stepsDone, totalSteps,
    553                                         "Installing level " + l);
     553                                        AEInstaller2.globalBundle.getString("modInstaller.buildingLevelN").replaceAll("%1", l.toString()));
    554554
    555555                        if ((levelsUpdated == null)
     
    605605
    606606        private static void copyPlainFiles(final Logger log, TreeSet<Package> mods, InstallProgressListener listener) {
    607                 listener.installProgressUpdate(97, 100, "Copying plain files");
     607                listener.installProgressUpdate(97, 100, AEInstaller2.globalBundle.getString("modInstaller.copyPlainFiles"));
    608608                log.println();
    609609                log.println("Copying plain files from mods");
  • java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java

    r1019 r1023  
    277277                                for (final Package m : mods) {
    278278                                        size += m.getZipSize();
    279                                         JCheckBox check = new JCheckBox("Mod: " + m.getName()
     279                                        JCheckBox check = new JCheckBox(bundle.getString("mod") + ": " + m.getName()
    280280                                                        + " (" + SizeFormatter.format(m.getZipSize(), 1)
    281281                                                        + ")");
     
    302302                                for (final Package m : tools) {
    303303                                        size += m.getZipSize();
    304                                         JCheckBox check = new JCheckBox("Tool: " + m.getName()
     304                                        JCheckBox check = new JCheckBox(bundle.getString("tool") + ": " + m.getName()
    305305                                                        + " (" + SizeFormatter.format(m.getZipSize(), 1)
    306306                                                        + ")");
     
    425425                                                + bundle.getString("newPackages.text") + "</html>";
    426426                                if (modsString.length() > 0) {
    427                                         modsString.insert(0, "Mods:<ul>");
     427                                        modsString.insert(0, bundle.getString("mods") + ":<ul>");
    428428                                        modsString.append("</ul>");
    429429                                        message = message.replaceAll("%1", modsString.toString());
     
    432432                                }
    433433                                if (toolsString.length() > 0) {
    434                                         toolsString.insert(0, "Tools:<ul>");
     434                                        toolsString.insert(0, bundle.getString("tools") + ":<ul>");
    435435                                        toolsString.append("</ul>");
    436436                                        message = message.replaceAll("%2", toolsString.toString());
  • java/installer2/src/net/oni2/aeinstaller/localization/Global.properties

    r804 r1023  
    1313aeiUpdateAvailable.title=Update available!
    1414aeiUpdateAvailable.text=An update for the AEInstaller is available.\nPlease update now by selecting Yes.
     15
     16
     17modInstaller.applyXmlPatches=Applying XML patches
     18modInstaller.buildingLevelN=Installing level %1
     19modInstaller.copyPlainFiles=Copying plain files
     20modInstaller.installBsl=Installing BSL files
     21
     22coreInitializer.cleanup=Cleaning up directories
     23coreInitializer.exportVanilla=Exporting vanilla level %1
     24coreInitializer.globalize=Creating globalized level %1
     25coreInitializer.copyBasicFiles=Copying basic files
  • java/installer2/src/net/oni2/aeinstaller/localization/MainWin.properties

    r988 r1023  
    138138exeNotFound.text=Executable was not found.
    139139exeNotFound.title=Exe not found
     140
     141mod=Mod
     142mods=Mods
     143tool=Tool
     144tools=Tools
Note: See TracChangeset for help on using the changeset viewer.