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

AEI 2.23: More strings in localization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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");
Note: See TracChangeset for help on using the changeset viewer.