{
if (reloadPanel == null)
{
String text = Strings.message("click.here.to.load.our.collection.of.interesting.feeds");
String overText = Strings.message("load.our.collection.of.interesting.feeds");
ActionLabel label = new ActionLabel(text, new ReloadAction(), overText);
label.setForeground(Color.BLUE);
reloadPanel = new JPanel(new FormLayout("pref:grow", "pref:grow"));
reloadPanel.add(label, new CellConstraints().xy(1, 1, "c, c"));
}
return reloadPanel;