wizard.setTitle(MessageText.getString("installPluginsWizard.finish.title"));
wizard.setErrorMessage("");
Composite rootPanel = wizard.getPanel();
GridLayout layout = new GridLayout();
layout.numColumns = 1;
rootPanel.setLayout(layout);
Composite panel = new Composite(rootPanel, SWT.NULL);
GridData gridData = new GridData(GridData.VERTICAL_ALIGN_CENTER | GridData.FILL_HORIZONTAL);
panel.setLayoutData(gridData);
layout = new GridLayout();
layout.numColumns = 1;
panel.setLayout(layout);
Label lblExplanation = new Label(panel,SWT.WRAP);
GridData data = new GridData(GridData.FILL_BOTH);
lblExplanation.setLayoutData(data);
Messages.setLanguageText(lblExplanation,"installPluginsWizard.finish.explanation");