- Timestamp:
- May 30, 2015, 3:14:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/backend/oni/management/Installer.java
r1021 r1023 276 276 private static void combineBSLFolders(TreeSet<Package> mods, 277 277 InstallProgressListener listener, Logger log) { 278 listener.installProgressUpdate(95, 100, "Installing BSL files");278 listener.installProgressUpdate(95, 100, AEInstaller2.globalBundle.getString("modInstaller.installBsl")); 279 279 log.println(); 280 280 log.println("Installing BSL files"); … … 393 393 log.println(); 394 394 log.println("Applying XML patches"); 395 listener.installProgressUpdate(0, 1, "Applying XML patches");395 listener.installProgressUpdate(0, 1, AEInstaller2.globalBundle.getString("modInstaller.applyXmlPatches")); 396 396 397 397 long startMS = new Date().getTime(); … … 551 551 log.println("\tLevel " + l); 552 552 listener.installProgressUpdate(stepsDone, totalSteps, 553 "Installing level " + l);553 AEInstaller2.globalBundle.getString("modInstaller.buildingLevelN").replaceAll("%1", l.toString())); 554 554 555 555 if ((levelsUpdated == null) … … 605 605 606 606 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")); 608 608 log.println(); 609 609 log.println("Copying plain files from mods");
Note:
See TracChangeset
for help on using the changeset viewer.