2010-11-09 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug315307
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / project / dialogs / AddTraceWizardPage.java
index 465dcd0289791e65e08e8a152f5183e1e17cda73..6032b17e3cbea7a0d047c5cce222958515589285 100644 (file)
@@ -38,8 +38,8 @@ public class AddTraceWizardPage extends WizardPage {
        
        protected AddTraceWizardPage(LTTngProjectNode project, String pageName) {
                super(pageName);
-               setTitle("Select traces");
-               setDescription("Select the traces to add to the experiment");
+               setTitle(Messages.AddTraceWizardPage_windowTitle);
+               setDescription(Messages.AddTraceWizardPage_description);
                fProject = project;
        }
 
@@ -64,7 +64,7 @@ public class AddTraceWizardPage extends WizardPage {
 
                final TableColumn tableColumn = new TableColumn(table, SWT.NONE);
                tableColumn.setWidth(200);
-               tableColumn.setText("Trace");
+               tableColumn.setText(Messages.AddTraceWizardPage_columnHeader);
 
         fCheckboxTableViewer.setInput(fProject.getTracesFolder());
        }
This page took 0.023694 seconds and 5 git commands to generate.