/**
* Default constructor.
*/
public AboutAction()
{
final IconTheme iconTheme = new DefaultIconTheme();
this.putValue(Action.NAME, resources.getString("action.about.name"));
this.putValue(Action.SHORT_DESCRIPTION, resources.getString("action.about.description"));
this.putValue(ActionDowngrade.MNEMONIC_KEY,
resources.getMnemonic("action.about.mnemonic"));
this.putValue(Action.SMALL_ICON, iconTheme.getSmallIcon(Locale.getDefault(), "action.about.small-icon"));
this.putValue("ICON24", iconTheme.getLargeIcon(Locale.getDefault(), "action.about.icon"));
}