//TABLE_PLUGS
final JScrollPane installedPluginsScrollPanel = new JScrollPane();
installedPluginsScrollPanel.setPreferredSize(new Dimension(300,100));
tablePlugins = new JTable();
PluginsTableModel tablePluginsModel = new PluginsTableModel(plugins);
String[] i18nColumnsName = {GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Name"),GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Version"),GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Author")};
tablePluginsModel.setColumnNames(i18nColumnsName);
tablePlugins.setModel(tablePluginsModel);
tablePlugins.setGridColor(Color.LIGHT_GRAY);
tablePlugins.setFocusable(false);
tablePlugins.setRowSelectionAllowed(false);
tablePlugins.setIntercellSpacing(new Dimension(2, 2));