tmf: Fix some NLS Message strings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / dialogs / ManageCustomParsersDialog.java
index 367f4865ccc505e4f59957553198f7e42c4cda64..459a66016c8e487a25f995856d820808aa30954d 100644 (file)
@@ -212,7 +212,7 @@ public class ManageCustomParsersDialog extends Dialog {
                 boolean confirm = MessageDialog.openQuestion(
                         getShell(),
                         Messages.ManageCustomParsersDialog_DeleteParserDialogHeader,
-                        Messages.ManageCustomParsersDialog_DeleteConfirmation + parserList.getSelection()[0] + "?"); //$NON-NLS-1$
+                        NLS.bind(Messages.ManageCustomParsersDialog_DeleteConfirmation, parserList.getSelection()[0]));
                 if (confirm) {
                     String selection = parserList.getSelection()[0];
                     String category = selection.substring(0, selection.indexOf(SEP));
@@ -273,7 +273,7 @@ public class ManageCustomParsersDialog extends Dialog {
             @Override
             public void widgetSelected(SelectionEvent e) {
                 FileDialog dialog = new FileDialog(Display.getCurrent().getActiveShell(), SWT.SAVE);
-                dialog.setText(Messages.ManageCustomParsersDialog_ExportParserSelection + parserList.getSelection()[0]);
+                dialog.setText(NLS.bind(Messages.ManageCustomParsersDialog_ExportParserSelection, parserList.getSelection()[0]));
                 dialog.setFilterExtensions(new String[] { "*.xml", "*" }); //$NON-NLS-1$ //$NON-NLS-2$
                 String path = dialog.open();
                 if (path != null) {
This page took 0.030518 seconds and 5 git commands to generate.