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/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());
Note: See TracChangeset for help on using the changeset viewer.