1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 00:35:49 +02:00

[223204] [cleanup] fix broken nls strings in files.ui and others

This commit is contained in:
David McKnight 2008-03-19 16:35:45 +00:00
parent def83427eb
commit 452c6660c9
12 changed files with 20 additions and 64 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others. * Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -8,6 +8,7 @@
* Contributors: * Contributors:
* David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible * David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
* David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared * David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.importexport; package org.eclipse.rse.internal.importexport;
@ -29,21 +30,17 @@ public class RemoteImportExportResources extends NLS {
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_CLOSE; public static String IMPORT_EXPORT_ERROR_DESCRIPTION_CLOSE;
public static String WizardDataTransfer_existsQuestion; public static String WizardDataTransfer_existsQuestion;
public static String WizardDataTransfer_overwriteNameAndPathQuestion; public static String WizardDataTransfer_overwriteNameAndPathQuestion;
public static String WizardDataTransfer_exceptionMessage;
public static String Question; public static String Question;
public static String FILEMSG_COPY_ROOT; public static String FILEMSG_COPY_ROOT;
public static String FILEMSG_COPY_ROOT_DETAILS;
public static String FILEMSG_IMPORT_ERROR; public static String FILEMSG_IMPORT_ERROR;
public static String FILEMSG_IMPORT_PROBLEMS; public static String FILEMSG_IMPORT_PROBLEMS;
public static String FILEMSG_IMPORT_SELF; public static String FILEMSG_IMPORT_SELF;
public static String FILEMSG_IMPORT_SELF_DETAILS;
public static String FILEMSG_EXPORT_ERROR; public static String FILEMSG_EXPORT_ERROR;
public static String FILEMSG_EXPORT_PROBLEMS; public static String FILEMSG_EXPORT_PROBLEMS;
public static String FILEMSG_NOT_WRITABLE; public static String FILEMSG_NOT_WRITABLE;
public static String FILEMSG_NOT_WRITABLE_DETAILS;
public static String FILEMSG_TARGET_EXISTS; public static String FILEMSG_TARGET_EXISTS;
public static String FILEMSG_TARGET_EXISTS_DETAILS; public static String FILEMSG_TARGET_EXISTS_DETAILS;

View file

@ -36,22 +36,18 @@ IMPORT_EXPORT_IMPORT_ACTION_DELEGATE_TITLE = Remote File Import
#Generic messages #Generic messages
WizardDataTransfer_existsQuestion = ''{0}'' already exists. Would you like to overwrite it? WizardDataTransfer_existsQuestion = ''{0}'' already exists. Would you like to overwrite it?
WizardDataTransfer_overwriteNameAndPathQuestion = Overwrite ''{0}'' in folder ''{1}''? WizardDataTransfer_overwriteNameAndPathQuestion = Overwrite ''{0}'' in folder ''{1}''?
WizardDataTransfer_exceptionMessage = Error occurred during operation: {0}
Question = Question Question = Question
FILEMSG_COPY_ROOT = Can not copy root file system FILEMSG_COPY_ROOT = Can not copy root file system
FILEMSG_COPY_ROOT_DETAILS=The root is not something that can be copied
FILEMSG_IMPORT_ERROR = Unable to import {0}: {1} FILEMSG_IMPORT_ERROR = Unable to import {0}: {1}
FILEMSG_IMPORT_PROBLEMS = Problems were encountered during import FILEMSG_IMPORT_PROBLEMS = Problems were encountered during import
FILEMSG_IMPORT_SELF = Unable to import {0} FILEMSG_IMPORT_SELF = Unable to import {0}
FILEMSG_IMPORT_SELF_DETAILS=The file cannot be copied onto itself
FILEMSG_EXPORT_ERROR = Error occurred while exporting {0}: {1} FILEMSG_EXPORT_ERROR = Error occurred while exporting {0}: {1}
FILEMSG_EXPORT_PROBLEMS = Problems were encountered during export FILEMSG_EXPORT_PROBLEMS = Problems were encountered during export
FILEMSG_NOT_WRITABLE = Cannot overwrite file {0} FILEMSG_NOT_WRITABLE = Cannot overwrite file {0}
FILEMSG_NOT_WRITABLE_DETAILS = The file does not have its write attribute set, so it cannot be written to
FILEMSG_TARGET_EXISTS = Target folder does not exist. Would you like to create it? FILEMSG_TARGET_EXISTS = Target folder does not exist. Would you like to create it?
FILEMSG_TARGET_EXISTS_DETAILS =Press Yes to create the folder {0}, No to cancel FILEMSG_TARGET_EXISTS_DETAILS =Press Yes to create the folder {0}, No to cancel

View file

@ -1,12 +1,12 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others. * Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* IBM Corporation - initial API and implementation * David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.importexport; package org.eclipse.rse.internal.importexport;
@ -14,12 +14,7 @@ import org.eclipse.osgi.util.NLS;
public class SystemImportExportResources extends NLS { public class SystemImportExportResources extends NLS {
private static String BUNDLE_NAME = "org.eclipse.rse.internal.importexport.SystemImportExportResources";//$NON-NLS-1$ private static String BUNDLE_NAME = "org.eclipse.rse.internal.importexport.SystemImportExportResources";//$NON-NLS-1$
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE;
public static String IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_EXISTING_CONTAINER;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_INVALID_EXTENSION;
public static String IMPORT_EXPORT_ERROR_DESCRIPTION_NO_CONTAINER;
// REMOTE FILE EXPORT WIZARD... // REMOTE FILE EXPORT WIZARD...
public static String RESID_FILEEXPORT_TITLE; public static String RESID_FILEEXPORT_TITLE;
public static String RESID_FILEEXPORT_PAGE1_TITLE; public static String RESID_FILEEXPORT_PAGE1_TITLE;
@ -40,8 +35,7 @@ public class SystemImportExportResources extends NLS {
public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_PATH_TOOLTIP; public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_PATH_TOOLTIP;
public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_LABEL; public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_LABEL;
public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP; public static String RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP;
public static String RESID_FILEEXPORT_OPTION_SETTINGS_DELTA_LABEL;
public static String RESID_FILEEXPORT_OPTION_SETTINGS_DELTA_TOOLTIP;
public static String RESID_FILEEXPORT_EXPORTING; public static String RESID_FILEEXPORT_EXPORTING;
// REMOTE FILE IMPORT WIZARD... // REMOTE FILE IMPORT WIZARD...
public static String RESID_FILEIMPORT_TITLE; public static String RESID_FILEIMPORT_TITLE;
@ -61,8 +55,7 @@ public class SystemImportExportResources extends NLS {
public static String RESID_FILEIMPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP; public static String RESID_FILEIMPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP;
public static String RESID_FILEIMPORT_SOURCE_LABEL; public static String RESID_FILEIMPORT_SOURCE_LABEL;
public static String RESID_FILEIMPORT_SOURCE_TOOLTIP; public static String RESID_FILEIMPORT_SOURCE_TOOLTIP;
public static String RESID_FILEIMPORT_SOURCE_BROWSE_LABEL;
public static String RESID_FILEIMPORT_SOURCE_BROWSE_TOOLTIP;
public static String RESID_FILEIMPORT_IMPORTING; public static String RESID_FILEIMPORT_IMPORTING;
public static String RESID_FILEIMPEXP_BUTTON_SELECTALL_LABEL; public static String RESID_FILEIMPEXP_BUTTON_SELECTALL_LABEL;
public static String RESID_FILEIMPEXP_BUTTON_SELECTALL_TOOLTIP; public static String RESID_FILEIMPEXP_BUTTON_SELECTALL_TOOLTIP;

View file

@ -1,12 +1,12 @@
############################################################################### ###############################################################################
# Copyright (c) 2000, 2007 IBM Corporation and others. # Copyright (c) 2000, 2008 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0 # are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html # http://www.eclipse.org/legal/epl-v10.html
# #
# Contributors: # Contributors:
# IBM Corporation - initial API and implementation # David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
############################################################################### ###############################################################################
# NLS_MESSAGEFORMAT_NONE # NLS_MESSAGEFORMAT_NONE
@ -18,8 +18,6 @@
RESID_FILEEXPORT_TITLE=Export RESID_FILEEXPORT_TITLE=Export
RESID_FILEEXPORT_PAGE1_TITLE=Remote file system RESID_FILEEXPORT_PAGE1_TITLE=Remote file system
RESID_FILEEXPORT_PAGE1_DESCRIPTION=Export resources to a remote file system. RESID_FILEEXPORT_PAGE1_DESCRIPTION=Export resources to a remote file system.
RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_LABEL=Description file:
RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_PATH_TOOLTIP=Enter the description file path
RESID_FILEEXPORT_EXPORTING=Exporting: RESID_FILEEXPORT_EXPORTING=Exporting:
RESID_FILEEXPORT_DESTINATION_LABEL=Destination folder, qualified by its remote connection name RESID_FILEEXPORT_DESTINATION_LABEL=Destination folder, qualified by its remote connection name
@ -47,8 +45,6 @@ RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_PATH_TOOLTIP=Enter the description fil
RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_LABEL=Browse... RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_LABEL=Browse...
RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP=Specify the description file by browsing the workspace RESID_FILEEXPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP=Specify the description file by browsing the workspace
RESID_FILEEXPORT_OPTION_SETTINGS_DELTA_LABEL=Export only changed resources
RESID_FILEEXPORT_OPTION_SETTINGS_DELTA_TOOLTIP=Export resources that have changed since last export when description file is used
#============================================================= #=============================================================
@ -79,9 +75,6 @@ RESID_FILEIMPORT_OPTION_SETTINGS_DESCFILE_BROWSE_TOOLTIP=Specify the description
RESID_FILEIMPORT_SOURCE_LABEL=From directory: RESID_FILEIMPORT_SOURCE_LABEL=From directory:
RESID_FILEIMPORT_SOURCE_TOOLTIP=Source folder, qualified by its remote connection name RESID_FILEIMPORT_SOURCE_TOOLTIP=Source folder, qualified by its remote connection name
RESID_FILEIMPORT_SOURCE_BROWSE_LABEL=Browse...
RESID_FILEIMPORT_SOURCE_BROWSE_TOOLTIP=Select the source folder by browsing a remote system for it
RESID_FILEIMPEXP_BUTTON_SELECTALL_LABEL=Select All RESID_FILEIMPEXP_BUTTON_SELECTALL_LABEL=Select All
RESID_FILEIMPEXP_BUTTON_SELECTALL_TOOLTIP=Select all resources RESID_FILEIMPEXP_BUTTON_SELECTALL_TOOLTIP=Select all resources
@ -91,13 +84,3 @@ RESID_FILEIMPEXP_BUTTON_DESELECTALL_TOOLTIP=De-select all resources
RESID_FILEIMPEXP_BUTTON_SELECTTYPES_LABEL=Select Types RESID_FILEIMPEXP_BUTTON_SELECTTYPES_LABEL=Select Types
RESID_FILEIMPEXP_BUTTON_SELECTTYPES_TOOLTIP=Select resource types to subset the selection list by RESID_FILEIMPEXP_BUTTON_SELECTTYPES_TOOLTIP=Select resource types to subset the selection list by
IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_TITLE=
IMPORT_EXPORT_DESCRIPTION_FILE_DIALOG_MESSAGE=
IMPORT_EXPORT_ERROR_DESCRIPTION_ABSOLUTE=
IMPORT_EXPORT_ERROR_DESCRIPTION_EXISTING_CONTAINER=
IMPORT_EXPORT_ERROR_DESCRIPTION_NO_CONTAINER=
IMPORT_EXPORT_ERROR_DESCRIPTION_INVALID_EXTENSION=

View file

@ -9,6 +9,7 @@
* IBM Corporation - initial API and implementation * IBM Corporation - initial API and implementation
* Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui * Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui
* David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible * David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.importexport.files; package org.eclipse.rse.internal.importexport.files;

View file

@ -14,6 +14,7 @@
* Contributors: * Contributors:
* David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible * David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
* David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared * David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.processes.ui; package org.eclipse.rse.internal.processes.ui;
@ -74,7 +75,6 @@ public class SystemProcessesResources extends NLS
public static String RESID_KILL_PROMPT; public static String RESID_KILL_PROMPT;
public static String RESID_KILL_PROMPT_SINGLE; public static String RESID_KILL_PROMPT_SINGLE;
public static String RESID_KILL_BUTTON; public static String RESID_KILL_BUTTON;
public static String RESID_KILL_TIP;
public static String RESID_KILL_SIGNAL_TYPE_LABEL; public static String RESID_KILL_SIGNAL_TYPE_LABEL;
public static String RESID_KILL_SIGNAL_TYPE_TOOLTIP; public static String RESID_KILL_SIGNAL_TYPE_TOOLTIP;
public static String RESID_KILL_SIGNAL_TYPE_DEFAULT; public static String RESID_KILL_SIGNAL_TYPE_DEFAULT;

View file

@ -14,6 +14,7 @@
# Contributors: # Contributors:
# David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible # David McKnight (IBM) - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
# David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared # David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
# David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
############################################################################### ###############################################################################
# NLS_MESSAGEFORMAT_VAR # NLS_MESSAGEFORMAT_VAR
@ -69,7 +70,6 @@ RESID_KILL_TITLE=Send a kill signal
RESID_KILL_PROMPT=Kill selected processes? RESID_KILL_PROMPT=Kill selected processes?
RESID_KILL_PROMPT_SINGLE=Kill selected process? RESID_KILL_PROMPT_SINGLE=Kill selected process?
RESID_KILL_BUTTON=Kill RESID_KILL_BUTTON=Kill
RESID_KILL_TIP=Confirm kill request
RESID_KILL_SIGNAL_TYPE_LABEL=Signal Type RESID_KILL_SIGNAL_TYPE_LABEL=Signal Type
RESID_KILL_SIGNAL_TYPE_TOOLTIP=The type of kill signal to send to the process RESID_KILL_SIGNAL_TYPE_TOOLTIP=The type of kill signal to send to the process
RESID_KILL_SIGNAL_TYPE_DEFAULT=default RESID_KILL_SIGNAL_TYPE_DEFAULT=default

View file

@ -12,6 +12,7 @@
* *
* Contributors: * Contributors:
* Martin Oberhuber (Wind River) - [186640] Add IRSESystemType.testProperty() * Martin Oberhuber (Wind River) - [186640] Add IRSESystemType.testProperty()
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.processes.ui.dialogs; package org.eclipse.rse.internal.processes.ui.dialogs;

View file

@ -12,7 +12,7 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
* *
* Contributors: * Contributors:
* {Name} (company) - description of contribution. * David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.processes.ui.view; package org.eclipse.rse.internal.processes.ui.view;
@ -54,7 +54,6 @@ public class SystemProcessesViewResources extends NLS
// Property sheet values: Processes // Property sheet values: Processes
public static String RESID_PROPERTY_PROCESS_TYPE; public static String RESID_PROPERTY_PROCESS_TYPE;
public static String RESID_PROPERTY_PROCESS_TYPE_ROOT; public static String RESID_PROPERTY_PROCESS_TYPE_ROOT;
public static String RESID_PROPERTY_PROCESS_TYPE_ERROR_VALUE;
public static String RESID_PROPERTY_PROCESS_TYPE_RUNNING_VALUE; public static String RESID_PROPERTY_PROCESS_TYPE_RUNNING_VALUE;
public static String RESID_PROPERTY_PROCESS_TYPE_SLEEPING_VALUE; public static String RESID_PROPERTY_PROCESS_TYPE_SLEEPING_VALUE;
public static String RESID_PROPERTY_PROCESS_TYPE_WAITING_VALUE; public static String RESID_PROPERTY_PROCESS_TYPE_WAITING_VALUE;

View file

@ -1,5 +1,5 @@
############################################################################### ###############################################################################
# Copyright (c) 2005, 2007 IBM Corporation and others. # Copyright (c) 2005, 2008 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0 # are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at # which accompanies this distribution, and is available at
@ -12,7 +12,7 @@
# Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. # Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
# #
# Contributors: # Contributors:
# {Name} (company) - description of contribution. # David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
############################################################################### ###############################################################################
# NLS_MESSAGEFORMAT_VAR # NLS_MESSAGEFORMAT_VAR
@ -23,7 +23,6 @@
#============================================================= #=============================================================
RESID_PROPERTY_PROCESS_TYPE=Process RESID_PROPERTY_PROCESS_TYPE=Process
RESID_PROPERTY_PROCESS_TYPE_ROOT=Init (Root Process) RESID_PROPERTY_PROCESS_TYPE_ROOT=Init (Root Process)
RESID_PROPERTY_PROCESS_TYPE_ERROR_VALUE=Error
RESID_PROPERTY_PROCESS_TYPE_RUNNING_VALUE=Running RESID_PROPERTY_PROCESS_TYPE_RUNNING_VALUE=Running
RESID_PROPERTY_PROCESS_TYPE_SLEEPING_VALUE=Sleeping (Interruptible) RESID_PROPERTY_PROCESS_TYPE_SLEEPING_VALUE=Sleeping (Interruptible)
RESID_PROPERTY_PROCESS_TYPE_WAITING_VALUE=Waiting (Disk Sleep) RESID_PROPERTY_PROCESS_TYPE_WAITING_VALUE=Waiting (Disk Sleep)

View file

@ -10,6 +10,7 @@
* *
* Contributors: * Contributors:
* David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared * David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.services.clientserver.messages; package org.eclipse.rse.services.clientserver.messages;
@ -25,9 +26,7 @@ public class CommonMessages extends NLS {
public static String MSG_COMM_AUTH_FAILED; public static String MSG_COMM_AUTH_FAILED;
public static String MSG_COMM_PWD_INVALID;
public static String MSG_COMM_AUTH_FAILED_DETAILS; public static String MSG_COMM_AUTH_FAILED_DETAILS;
public static String MSG_COMM_PWD_INVALID_DETAILS;
public static String MSG_EXPAND_FAILED; public static String MSG_EXPAND_FAILED;
public static String MSG_EXPAND_CANCELED; public static String MSG_EXPAND_CANCELED;

View file

@ -11,30 +11,18 @@
# #
# Contributors: # Contributors:
# David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared # David McKnight (IBM) - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
# David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
############################################################################### ###############################################################################
# NLS_MESSAGEFORMAT_NONE # NLS_MESSAGEFORMAT_NONE
# NLS_ENCODING=UTF-8 # NLS_ENCODING=UTF-8
MSG_DISCONNECT_FAILED=Disconnect from {0} failed with exception
MSG_DISCONNECT_CANCELED=Disconnect from {0} was canceled
MSG_CONNECT_UNKNOWNHOST=Connect failed. Host {0} not found or not responding
MSG_CONNECT_FAILED=Connect to {0} failed with an unexpected exception
MSG_CONNECT_CANCELED = Connect to {0} was canceled
MSG_OPERATION_CANCELED=Operation canceled.
MSG_OPERATION_FAILED = Operation failed with exception ''{0}''
MSG_EXCEPTION_OCCURRED = An unexpected exception has occurred MSG_EXCEPTION_OCCURRED = An unexpected exception has occurred
MSG_COMM_AUTH_FAILED=Invalid password or user ID MSG_COMM_AUTH_FAILED=Invalid password or user ID
MSG_COMM_AUTH_FAILED_DETAILS=Authentication with {0} failed because the password or user ID is not correct. MSG_COMM_AUTH_FAILED_DETAILS=Authentication with {0} failed because the password or user ID is not correct.
MSG_COMM_PWD_INVALID=The saved password is not correct.
MSG_COMM_PWD_INVALID_DETAILS=The saved password for user ID {0} on host {1} is not correct. Please enter the password and try again.
MSG_ERROR_UNEXPECTED=An unexpected error occurred. MSG_ERROR_UNEXPECTED=An unexpected error occurred.