From 7a24fe76cabca7a22d33574251a60eab128b1d98 Mon Sep 17 00:00:00 2001 From: David Inglis Date: Mon, 1 Nov 2004 15:16:40 +0000 Subject: [PATCH] missing NLS markup --- .../org/eclipse/cdt/debug/internal/core/CDebugAdapter.java | 2 +- .../src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/CDebugAdapter.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/CDebugAdapter.java index 9aeb0a331a6..acd9abbed6f 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/CDebugAdapter.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/CDebugAdapter.java @@ -85,7 +85,7 @@ public class CDebugAdapter implements ICDIDebugger { protected String renderDebuggerProcessLabel() { String format = "{0} ({1})"; //$NON-NLS-1$ String timestamp = DateFormat.getInstance().format(new Date(System.currentTimeMillis())); - String message = InternalDebugCoreMessages.getString("CDebugAdapter.1"); + String message = InternalDebugCoreMessages.getString("CDebugAdapter.1"); //$NON-NLS-1$ return MessageFormat.format(format, new String[]{message, timestamp}); //$NON-NLS-1$ } diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java index 35103a9bcc9..fa7270ec419 100644 --- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java +++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate.java @@ -745,10 +745,10 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat } catch (IOException e) { } Throwable exception = new FileNotFoundException(LaunchMessages.getFormattedString( - "AbstractCLaunchDelegate.PROGRAM_PATH_not_binary", exePath.toOSString())); + "AbstractCLaunchDelegate.PROGRAM_PATH_not_binary", exePath.toOSString())); //$NON-NLS-1$ int code = ICDTLaunchConfigurationConstants.ERR_PROGRAM_NOT_BINARY; MultiStatus status = new MultiStatus(getPluginID(), code, LaunchMessages - .getString("AbstractCLaunchDelegate.Program_is_not_a_recongnized_executable"), exception); + .getString("AbstractCLaunchDelegate.Program_is_not_a_recongnized_executable"), exception); //$NON-NLS-1$ status.add(new Status(IStatus.ERROR, getPluginID(), code, exception == null ? "" : exception.getLocalizedMessage(), //$NON-NLS-1$ exception)); throw new CoreException(status);