- Timestamp:
- May 30, 2015, 3:14:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
r1019 r1023 277 277 for (final Package m : mods) { 278 278 size += m.getZipSize(); 279 JCheckBox check = new JCheckBox( "Mod: " + m.getName()279 JCheckBox check = new JCheckBox(bundle.getString("mod") + ": " + m.getName() 280 280 + " (" + SizeFormatter.format(m.getZipSize(), 1) 281 281 + ")"); … … 302 302 for (final Package m : tools) { 303 303 size += m.getZipSize(); 304 JCheckBox check = new JCheckBox( "Tool: " + m.getName()304 JCheckBox check = new JCheckBox(bundle.getString("tool") + ": " + m.getName() 305 305 + " (" + SizeFormatter.format(m.getZipSize(), 1) 306 306 + ")"); … … 425 425 + bundle.getString("newPackages.text") + "</html>"; 426 426 if (modsString.length() > 0) { 427 modsString.insert(0, "Mods:<ul>");427 modsString.insert(0, bundle.getString("mods") + ":<ul>"); 428 428 modsString.append("</ul>"); 429 429 message = message.replaceAll("%1", modsString.toString()); … … 432 432 } 433 433 if (toolsString.length() > 0) { 434 toolsString.insert(0, "Tools:<ul>");434 toolsString.insert(0, bundle.getString("tools") + ":<ul>"); 435 435 toolsString.append("</ul>"); 436 436 message = message.replaceAll("%2", toolsString.toString());
Note:
See TracChangeset
for help on using the changeset viewer.