Changeset 15587 in josm


Ignore:
Timestamp:
2019-12-13T02:28:04+01:00 (5 years ago)
Author:
Don-vip
Message:

see #16220 - add translation context for "Available" plugins, to distinguish from "Available" tools in toolbar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java

    r15586 r15587  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.trc;
    56import static org.openstreetmap.josm.tools.I18n.trn;
    67
     
    178179        ButtonGroup bg = new ButtonGroup();
    179180        JPanel radios = new JPanel();
    180         addRadioButton(bg, radios, new JRadioButton(tr("All"), true), gc, PluginInstallation.ALL);
    181         addRadioButton(bg, radios, new JRadioButton(tr("Installed")), gc, PluginInstallation.INSTALLED);
    182         addRadioButton(bg, radios, new JRadioButton(tr("Available")), gc, PluginInstallation.AVAILABLE);
     181        addRadioButton(bg, radios, new JRadioButton(trc("plugins", "All"), true), gc, PluginInstallation.ALL);
     182        addRadioButton(bg, radios, new JRadioButton(trc("plugins", "Installed")), gc, PluginInstallation.INSTALLED);
     183        addRadioButton(bg, radios, new JRadioButton(trc("plugins", "Available")), gc, PluginInstallation.AVAILABLE);
    183184        pnl.add(radios, gc);
    184185
Note: See TracChangeset for help on using the changeset viewer.