From a1ae13b84a2b46bd622a742abd6b8f31261befca Mon Sep 17 00:00:00 2001 From: David McKnight Date: Thu, 21 Feb 2008 17:59:14 +0000 Subject: [PATCH] [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible --- .../ConnectorServiceResources.properties | 4 +- .../ssh/SshConnectorResources.properties | 4 +- .../TelnetConnectorResources.properties | 4 +- .../files/ui/FileResources.properties | 4 +- .../ui/SystemProcessesResources.properties | 2 +- .../SystemProcessesViewResources.properties | 2 +- .../miners/UniversalFileSystemMiner.java | 2 +- .../files/core/SystemFileResources.properties | 2 +- .../shells/core/ShellStrings.properties | 2 +- .../org/eclipse/rse/ui/ISystemMessages.java | 237 ------ .../subsystems/SubSystemResources.properties | 6 +- .../org.eclipse.rse.ui/systemmessages.xml | 783 +----------------- 12 files changed, 48 insertions(+), 1004 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/ConnectorServiceResources.properties b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/ConnectorServiceResources.properties index 3e83eff3801..7bd5a8b10c1 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/ConnectorServiceResources.properties +++ b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/ConnectorServiceResources.properties @@ -25,7 +25,7 @@ MSG_CONNECT_UNKNOWNHOST=Connect failed. Host {0} not found or not responding MSG_DISCONNECT_FAILED=Disconnect from {0} failed with exception -MSG_DISCONNECT_CANCELLED=Disconnect from {0} was canceled +MSG_DISCONNECT_CANCELED=Disconnect from {0} was canceled MSG_COMM_CONNECT_FAILED=Connection to {0} could not be established. MSG_COMM_CONNECT_FAILED_DETAILS=A socket connection to {0} could not be established. If you are connecting via the communications daemon make sure the daemon is running on the remote system. If you are connecting directly to the communications server make sure the server is started on the remote system. If you are connecting using REXEC, make sure that the server is installed on the remote system and that the REXEC service is running on that system. @@ -78,7 +78,7 @@ MSG_COMM_INCOMPATIBLE_UPDATE_DETAILS=The host server needs to be updated to work MSG_CONNECT_FAILED=Connect to {0} failed with an unexpected exception -MSG_OPERATION_CANCELLED=Operation canceled. +MSG_OPERATION_CANCELED=Operation canceled. MSG_COMM_INVALID_LOGIN=Invalid password or user ID for {0}. MSG_COMM_INVALID_LOGIN_DETAILS=Message from host: {0} diff --git a/rse/plugins/org.eclipse.rse.connectorservice.ssh/src/org/eclipse/rse/internal/connectorservice/ssh/SshConnectorResources.properties b/rse/plugins/org.eclipse.rse.connectorservice.ssh/src/org/eclipse/rse/internal/connectorservice/ssh/SshConnectorResources.properties index 6fc07229fa9..e87273269dd 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.ssh/src/org/eclipse/rse/internal/connectorservice/ssh/SshConnectorResources.properties +++ b/rse/plugins/org.eclipse.rse.connectorservice.ssh/src/org/eclipse/rse/internal/connectorservice/ssh/SshConnectorResources.properties @@ -35,9 +35,9 @@ KeyboardInteractiveDialog_message=Keyboard Interactive authentication for {0} KeyboardInteractiveDialog_labelConnection=Enter values for the following connection: {0} -MSG_CONNECT_CANCELLED = Connect to {0} was canceled +MSG_CONNECT_CANCELED = Connect to {0} was canceled MSG_DISCONNECT_FAILED = Disconnect from {0} failed with exception -MSG_DISCONNECT_CANCELLED = Disconnect from {0} was canceled +MSG_DISCONNECT_CANCELED = Disconnect from {0} was canceled diff --git a/rse/plugins/org.eclipse.rse.connectorservice.telnet/src/org/eclipse/rse/internal/connectorservice/telnet/TelnetConnectorResources.properties b/rse/plugins/org.eclipse.rse.connectorservice.telnet/src/org/eclipse/rse/internal/connectorservice/telnet/TelnetConnectorResources.properties index 7c0a450c6f2..194798d1684 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.telnet/src/org/eclipse/rse/internal/connectorservice/telnet/TelnetConnectorResources.properties +++ b/rse/plugins/org.eclipse.rse.connectorservice.telnet/src/org/eclipse/rse/internal/connectorservice/telnet/TelnetConnectorResources.properties @@ -28,8 +28,8 @@ 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_CONNECT_CANCELLED = Connect to {0} was canceled +MSG_CONNECT_CANCELED = Connect to {0} was canceled MSG_DISCONNECT_FAILED = Disconnect from {0} failed with exception -MSG_DISCONNECT_CANCELLED = Disconnect from {0} was canceled \ No newline at end of file +MSG_DISCONNECT_CANCELED = Disconnect from {0} was canceled \ No newline at end of file diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/FileResources.properties b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/FileResources.properties index 6ed27d9a8fb..a837e629757 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/FileResources.properties +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/FileResources.properties @@ -453,7 +453,7 @@ MSG_ERROR_PROFILE_NOTFOUND_DETAILS=No profile named {0} currently exists MSG_CONNECT_FAILED = Connect to {0} failed with an unexpected exception MSG_CONNECT_UNKNOWNHOST = Connect failed. Host {0} not found or not responding -MSG_CONNECT_CANCELLED =Connect to {0} was canceled +MSG_CONNECT_CANCELED =Connect to {0} was canceled MSG_EXCEPTION_OCCURRED = An unexpected exception has occurred @@ -477,7 +477,7 @@ MSG_REMOTE_SEARCH_INVALID_REGEX_DETAILS=The value {0} you entered is not a valid MSG_COPY_PROGRESS = Copying '{0}' to '{1}' MSG_EXPAND_FAILED = Expand failed. Try again -MSG_EXPAND_CANCELLED = Expand canceled. Try again +MSG_EXPAND_CANCELED = Expand canceled. Try again # operation status MSG_OPERATION_RUNNING = {0} - Running diff --git a/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/SystemProcessesResources.properties b/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/SystemProcessesResources.properties index 17b4dfd2276..87a9785a32e 100644 --- a/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/SystemProcessesResources.properties +++ b/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/SystemProcessesResources.properties @@ -83,7 +83,7 @@ RESID_REMOTE_PROCESSES_EXECUTABLE_TOOLTIP=Name of executable # generic messages MSG_OPERATION_FAILED = Operation failed with exception '{0}' -MSG_OPERATION_CANCELLED = Operation canceled. +MSG_OPERATION_CANCELED = Operation canceled. MSG_EXPAND_FAILED = Expand failed. Try again MSG_VALIDATE_FILEFILTERSTRING_NOTUNIQUE= Filter string '{0}' already exists in this filter diff --git a/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/view/SystemProcessesViewResources.properties b/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/view/SystemProcessesViewResources.properties index 284e16d876f..f9a8ee6a345 100644 --- a/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/view/SystemProcessesViewResources.properties +++ b/rse/plugins/org.eclipse.rse.processes.ui/src/org/eclipse/rse/internal/processes/ui/view/SystemProcessesViewResources.properties @@ -46,7 +46,7 @@ RESID_PROPERTY_PROCESS_TYPE_ZOS_PTHREADCREATEDTASKS_VALUE=One or more pthread cr RESID_PROPERTY_PROCESS_TYPE_ZOS_SWAPPEDOUT_VALUE=Swapped out (z/OS) RESID_PROPERTY_PROCESS_TYPE_ZOS_PTHREADCREATED_VALUE=Pthread created (z/OS) RESID_PROPERTY_PROCESS_TYPE_ZOS_OTHERKERNELWAIT_VALUE=Other kernel wait (z/OS) -RESID_PROPERTY_PROCESS_TYPE_ZOS_CANCELLED_VALUE=Canceled (z/OS) +RESID_PROPERTY_PROCESS_TYPE_ZOS_CANCELED_VALUE=Canceled (z/OS) RESID_PROPERTY_PROCESS_TYPE_ZOS_MULTITHREAD_VALUE=Multi-thread (z/OS) RESID_PROPERTY_PROCESS_TYPE_ZOS_MEDIUMWEIGHTTHREAD_VALUE=Medium weight thread (z/OS) RESID_PROPERTY_PROCESS_TYPE_ZOS_ASYNCHRONOUSTHREAD_VALUE=Asynchronous thread (z/OS) diff --git a/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java b/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java index 63b50e0317f..8a11331f87b 100644 --- a/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java +++ b/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java @@ -1594,7 +1594,7 @@ public class UniversalFileSystemMiner extends Miner { createCommandDescriptor(FileDescriptors._deUniversalFolderObject, "SetPermissions", IUniversalDataStoreConstants.C_SET_FILE_PERMISSIONS); //$NON-NLS-1$ createCommandDescriptor(FileDescriptors._deUniversalFileObject, "SetPermissions", IUniversalDataStoreConstants.C_SET_FILE_PERMISSIONS); //$NON-NLS-1$ createCommandDescriptor(FileDescriptors._deUniversalArchiveFileObject, "SetPermissions",IUniversalDataStoreConstants.C_SET_FILE_PERMISSIONS); //$NON-NLS-1$ - } + } } diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/internal/subsystems/files/core/SystemFileResources.properties b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/internal/subsystems/files/core/SystemFileResources.properties index c8c43cb506d..dd5c67e80b0 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/internal/subsystems/files/core/SystemFileResources.properties +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/internal/subsystems/files/core/SystemFileResources.properties @@ -230,7 +230,7 @@ MSG_VALIDATE_NAME_NOTVALID = Name not valid MSG_VALIDATE_NAME_NOTVALID_DETAILS =The name entered does not have valid syntax MSG_CONNECT_FAILED = Connect to {0} failed with an unexpected exception -MSG_OPERATION_CANCELLED = Operation canceled. +MSG_OPERATION_CANCELED = Operation canceled. FILEMSG_FOLDER_NOTEMPTY = Folder is not empty. Cannot delete FILEMSG_FOLDER_NOTEMPTY_DETAILS =The operation failed. One possible reason is that the folder is not empty diff --git a/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/internal/subsystems/shells/core/ShellStrings.properties b/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/internal/subsystems/shells/core/ShellStrings.properties index d674278f2be..a4e2e3ef828 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/internal/subsystems/shells/core/ShellStrings.properties +++ b/rse/plugins/org.eclipse.rse.subsystems.shells.core/src/org/eclipse/rse/internal/subsystems/shells/core/ShellStrings.properties @@ -27,5 +27,5 @@ RSESubSystemOperation_Send_command_to_Shell_message = Send command to Shell RSESubSystemOperation_Refresh_Output = Refresh Output MSG_CONNECT_FAILED = Connect to {0} failed with an unexpected exception -MSG_OPERATION_CANCELLED = Operation canceled. +MSG_OPERATION_CANCELED = Operation canceled. diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/ISystemMessages.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/ISystemMessages.java index 73e51572bc3..56f6e54ea27 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/ISystemMessages.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/ISystemMessages.java @@ -29,246 +29,9 @@ package org.eclipse.rse.ui; */ public interface ISystemMessages { - - /***************************************************/ - /* Unused messages (that may still be usable) - /***************************************************/ - public static final String MSG_VALIDATE_RENAME_EMPTY = "RSEG1012"; //MSG_VALIDATE_PREFIX + "ReName.Required"; //$NON-NLS-1$ - public static final String MSG_VALIDATE_RENAME_NOTVALID = "RSEG1011"; //MSG_VALIDATE_PREFIX + "ReName.NotValid"; //$NON-NLS-1$ - - public static final String MSG_VALIDATE_CONNECTIONNAME_NOTVALID = "RSEG1023"; //$NON-NLS-1$ - - public static final String MSG_VALIDATE_FILTERPOOLNAME_NOTVALID = "RSEG1039"; //$NON-NLS-1$ - - public static final String MSG_VALIDATE_FILTERNAME_NOTVALID = "RSEG1044"; //$NON-NLS-1$ - - public static final String MSG_VALIDATE_PASSWORD_EXPIRED = "RSEG1036"; //MSG_VALIDATE_PREFIX + "PasswordExpired"; //$NON-NLS-1$ - public static final String MSG_VALIDATE_PASSWORD_INVALID = "RSEG1297"; //$NON-NLS-1$ - - public static final String MSG_CONFIRM_DELETEREMOTE = "RSEG1130"; //$NON-NLS-1$ - public static final String MSG_CONFIRM_DELETEPROFILE = "RSEG1053"; //$NON-NLS-1$ - - public static final String MSG_CONFIRM_CHANGES_CANCELABLE = "RSEG1202"; //$NON-NLS-1$ - - //public static final String MSG_CONNECT_PREFIX = MSG_PREFIX + "Connect."; - public static final String MSG_CONNECT_PROGRESS = "RSEG1054"; //MSG_CONNECT_PREFIX + "Connecting"; //$NON-NLS-1$ - public static final String MSG_CONNECTWITHPORT_PROGRESS = "RSEG1055"; //MSG_CONNECT_PREFIX + "ConnectingWithPort"; //$NON-NLS-1$ - public static final String MSG_CONNECT_FAILED = "RSEG1056"; //MSG_CONNECT_PREFIX + "Failed"; //$NON-NLS-1$ - public static final String MSG_CONNECT_UNKNOWNHOST = "RSEG1057"; //MSG_CONNECT_PREFIX + "UnknownHost"; //$NON-NLS-1$ - public static final String MSG_CONNECT_CANCELED = "RSEG1058"; //MSG_CONNECT_PREFIX + "Cancelled"; //$NON-NLS-1$ - - public static final String MSG_CONNECT_DAEMON_FAILED = "RSEG1242"; //MSG_CONNECT_PREFIX + "Failed"; //$NON-NLS-1$ - public static final String MSG_CONNECT_DAEMON_FAILED_EXCEPTION = "RSEG1243"; //MSG_CONNECT_PREFIX + "Failed"; //$NON-NLS-1$ - public static final String MSG_CONNECT_SSL_EXCEPTION = "RSEC2307"; //MSG_CONNECT_PREFIX + "Failed"; //$NON-NLS-1$ - - public static final String MSG_STARTING_SERVER_VIA_REXEC = "RSEC2310"; //$NON-NLS-1$ - public static final String MSG_STARTING_SERVER_VIA_DAEMON = "RSEC2311"; //$NON-NLS-1$ - public static final String MSG_CONNECTING_TO_SERVER= "RSEC2312"; //$NON-NLS-1$ - public static final String MSG_INITIALIZING_SERVER= "RSEC2313"; //$NON-NLS-1$ - public static final String MSG_PORT_OUT_RANGE = "RSEC2316"; //$NON-NLS-1$ - - - //public static final String MSG_DISCONNECT_PREFIX = MSG_PREFIX + "Disconnect."; - public static final String MSG_DISCONNECT_PROGRESS = "RSEG1059"; //MSG_DISCONNECT_PREFIX + "Disconnecting"; //$NON-NLS-1$ - public static final String MSG_DISCONNECTWITHPORT_PROGRESS = "RSEG1060"; //MSG_DISCONNECT_PREFIX + "DisconnectingWithPort"; //$NON-NLS-1$ - public static final String MSG_DISCONNECT_FAILED = "RSEG1061"; // MSG_DISCONNECT_PREFIX + "Failed"; //$NON-NLS-1$ - public static final String MSG_DISCONNECT_CANCELED = "RSEG1062"; //MSG_DISCONNECT_PREFIX + "Cancelled"; //$NON-NLS-1$ - - public static final String MSG_RESTORE_FAILED = "RSEG1051"; //$NON-NLS-1$ - public static final String MSG_SAVE_CHANGES_PENDING = "RSEG1201"; //$NON-NLS-1$ - - public static final String MSG_EXCEPTION_MOVING = "RSEG1065"; //MSG_EXCEPTION_PREFIX + "Moving"; //$NON-NLS-1$ - - //public static final String MSG_RESOLVE_PREFIX = MSG_PREFIX + "Resolve."; - public static final String MSG_RESOLVE_PROGRESS = "RSEG1070"; //$NON-NLS-1$ - - public static final String MSG_QUERY_PROPERTIES_PROGRESS = "RSEG1096"; //$NON-NLS-1$ - - //public static final String MSG_SET_PREFIX = MSG_PREFIX + "Set."; - public static final String MSG_SET_PROGRESS = "RSEG1093"; //$NON-NLS-1$ - public static final String MSG_SET_PROPERTIES_PROGRESS = "RSEG1094"; //$NON-NLS-1$ - - //public static final String MSG_RUN_PREFIX = MSG_PREFIX + "Run."; - public static final String MSG_RUN_PROGRESS = "RSEG1071"; //$NON-NLS-1$ - - public static final String MSG_COPYSUBSYSTEMS_PROGRESS = "RSEG1081"; //$NON-NLS-1$ - - - public static final String MSG_DOWNLOAD_PROGRESS = "RSEG1280"; //$NON-NLS-1$ - public static final String MSG_UPLOAD_PROGRESS = "RSEG1281"; //$NON-NLS-1$ - public static final String MSG_SYNCHRONIZE_PROGRESS = "RSEG1282"; //$NON-NLS-1$ - public static final String MSG_EXTRACT_PROGRESS = "RSEG1285"; //$NON-NLS-1$ - public static final String MSG_PERCENT_DONE = "RSEG1290"; //$NON-NLS-1$ - public static final String MSG_DOWNLOADING_PROGRESS = "RSEG1295"; //$NON-NLS-1$ - public static final String MSG_UPLOADING_PROGRESS = "RSEG1296"; //$NON-NLS-1$ - - public static final String MSG_MOVE_PROGRESS = "RSEG1083"; // "moving %1 to %2" //$NON-NLS-1$ - - public static final String MSG_CREATEFILEGENERIC_PROGRESS = "RSEG1143"; //$NON-NLS-1$ - public static final String MSG_CREATEFOLDERGENERIC_PROGRESS = "RSEG1144"; //$NON-NLS-1$ - - - public static final String MSG_SAVING_PROGRESS = "RSEG1119"; //$NON-NLS-1$ - - - public static final String FILEMSG_ARCHIVE_CORRUPTED = "RSEG1122"; //$NON-NLS-1$ - public static final String MSG_FOLDER_INUSE = "RSEG1150"; // defect 42138 //$NON-NLS-1$ - public static final String MSG_FILE_INUSE = "RSEG1151"; // defect 42332 //$NON-NLS-1$ - - - //public static final String MSG_LOADING_PREFIX = MSG_PREFIX + "Loading."; - public static final String MSG_LOADING_PROFILE_SHOULDBE_ACTIVATED = "RSEG1068"; //$NON-NLS-1$ - public static final String MSG_LOADING_PROFILE_SHOULDNOTBE_DEACTIVATED = "RSEG1069"; //$NON-NLS-1$ - public static final String MSG_WIZARD_PAGE_ERROR = "RSEG1240"; //$NON-NLS-1$ - // universal find files - public static final String MSG_UFF_PATTERN_EMPTY = "RSEG1250"; //$NON-NLS-1$ - public static final String MSG_UFF_PATTERN_INVALID_REGEX = "RSEG1251"; //$NON-NLS-1$ - - // universal commands - public static final String MSG_UCMD_INVOCATION_EMPTY = "RSEG1260"; //$NON-NLS-1$ - - // operation status - public static final String MSG_OPERATION_RUNNING = "RSEG1255"; //$NON-NLS-1$ - public static final String MSG_OPERATION_FINISHED = "RSEG1256"; //$NON-NLS-1$ - public static final String MSG_OPERTION_STOPPED = "RSEG1257"; //$NON-NLS-1$ - public static final String MSG_OPERATION_DISCONNECTED = "RSEG1258"; //$NON-NLS-1$ - - public static final String FILEMSG_VALIDATE_FILEFILTERSTRING_EMPTY = "RSEF1011"; //$NON-NLS-1$ - public static final String FILEMSG_VALIDATE_FILEFILTERSTRING_NOTUNIQUE= "RSEF1007"; //$NON-NLS-1$ - public static final String FILEMSG_VALIDATE_FILEFILTERSTRING_NOTVALID = "RSEF1008"; //$NON-NLS-1$ - public static final String FILEMSG_VALIDATE_FILEFILTERSTRING_NOINCLUDES = "RSEF1009"; //$NON-NLS-1$ - public static final String FILEMSG_DELETE_FILE_FAILED = "RSEF1300"; //$NON-NLS-1$ - public static final String FILEMSG_RENAME_FILE_FAILED = "RSEF1301"; //$NON-NLS-1$ - public static final String FILEMSG_CREATE_FILE_FAILED = "RSEF1302"; //$NON-NLS-1$ - public static final String FILEMSG_CREATE_FILE_FAILED_EXIST = "RSEF1303"; //$NON-NLS-1$ - public static final String FILEMSG_CREATE_FOLDER_FAILED = "RSEF1304"; //$NON-NLS-1$ - public static final String FILEMSG_CREATE_FOLDER_FAILED_EXIST = "RSEF1309"; //$NON-NLS-1$ - public static final String FILEMSG_CREATE_RESOURCE_NOTVISIBLE = "RSEF1310"; //$NON-NLS-1$ - public static final String FILEMSG_RENAME_RESOURCE_NOTVISIBLE = "RSEF1311"; //$NON-NLS-1$ - public static final String FILEMSG_ERROR_NOFILETYPES = "RSEF1010"; //$NON-NLS-1$ - public static final String FILEMSG_COPY_FILE_FAILED = "RSEF1306"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_FILE_FAILED = "RSEF1307"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_TARGET_EQUALS_SOURCE = "RSEF1308"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_TARGET_EQUALS_PARENT_OF_SOURCE = "RSEF1314"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_TARGET_DESCENDS_FROM_SOURCE = "RSEF1312"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_FILTER_NOT_VALID = "RSEF1313"; //$NON-NLS-1$ - public static final String FILEMSG_DELETING = "RSEF1315"; //$NON-NLS-1$ - public static final String FILEMSG_MOVE_INTERRUPTED = "RSEG1245"; //$NON-NLS-1$ - - public static final String FILEMSG_COPY_INTERRUPTED = "RSEG1248"; //$NON-NLS-1$ - - // ------------------------- - // IMPORT/EXPORT MESSAGES... - // ------------------------- - public static final String FILEMSG_COPY_ROOT = "RSEF8050"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_ERROR = "RSEF8052"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_PROBLEMS = "RSEF8054"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_SELF = "RSEF8056"; //$NON-NLS-1$ - public static final String FILEMSG_EXPORT_ERROR = "RSEF8057"; //$NON-NLS-1$ - public static final String FILEMSG_EXPORT_PROBLEMS = "RSEF8058"; //$NON-NLS-1$ - public static final String FILEMSG_NOT_WRITABLE = "RSEF8059"; //$NON-NLS-1$ - - public static final String FILEMSG_TARGET_EXISTS = "RSEF8060"; //$NON-NLS-1$ - public static final String FILEMSG_FOLDER_IS_FILE = "RSEF8061"; //$NON-NLS-1$ - public static final String FILEMSG_DESTINATION_CONFLICTING = "RSEF8062"; //$NON-NLS-1$ - public static final String FILEMSG_SOURCE_IS_FILE = "RSEF8063"; //$NON-NLS-1$ - public static final String FILEMSG_SOURCE_EMPTY = "RSEF8066"; //$NON-NLS-1$ - public static final String FILEMSG_EXPORT_FAILED = "RSEF8067"; //$NON-NLS-1$ - public static final String FILEMSG_EXPORT_NONE_SELECTED = "RSEF8068"; //$NON-NLS-1$ - public static final String FILEMSG_DESTINATION_EMPTY = "RSEF8069"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_FAILED = "RSEF8070"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_NONE_SELECTED = "RSEF8071"; //$NON-NLS-1$ - public static final String FILEMSG_IMPORT_FILTERING = "RSEF8072"; //$NON-NLS-1$ - - - // Remote File Exception Messages - public static final String FILEMSG_SECURITY_ERROR = "RSEF1001"; //$NON-NLS-1$ - public static final String FILEMSG_IO_ERROR = "RSEF1002"; //$NON-NLS-1$ - - public static final String FILEMSG_FOLDER_NOTEMPTY = "RSEF1003"; //$NON-NLS-1$ - public static final String FILEMSG_FOLDER_NOTFOUND = "RSEF1004"; //$NON-NLS-1$ - public static final String FILEMSG_FOLDER_NOTFOUND_WANTTOCREATE = "RSEF1005"; //$NON-NLS-1$ - public static final String FILEMSG_FILE_NOTFOUND = "RSEF1006"; //$NON-NLS-1$ - - - - public static final String MSG_ERROR_FOLDER_NOTFOUND = "RSEG1105"; //$NON-NLS-1$ - public static final String MSG_ERROR_FOLDERORFILE_NOTFOUND = "RSEG1107"; //$NON-NLS-1$ - public static final String MSG_ERROR_ARCHIVEMANAGEMENT_NOTSUPPORTED = "RSEG1304"; //$NON-NLS-1$ - - public static final String MSG_GENERIC_I_TWOPARMS_HELP = "RSEO1005"; //$NON-NLS-1$ - public static final String MSG_GENERIC_W_TWOPARMS_HELP = "RSEO1006"; //$NON-NLS-1$ - public static final String MSG_GENERIC_E_TWOPARMS_HELP = "RSEO1007"; //$NON-NLS-1$ - public static final String MSG_GENERIC_U_TWOPARMS_HELP = "RSEO1008"; //$NON-NLS-1$ - public static final String MSG_GENERIC_Q_TWOPARMS_HELP = "RSEO1009"; //$NON-NLS-1$ - - public static final String MSG_COMM_CONNECT_FAILED = "RSEC1001"; //$NON-NLS-1$ - public static final String MSG_COMM_AUTH_FAILED = "RSEC1002"; //$NON-NLS-1$ - - public static final String MSG_COMM_SERVER_NOTSTARTED = "RSEC2301"; //$NON-NLS-1$ - public static final String MSG_COMM_INVALID_LOGIN = "RSEC2302"; //$NON-NLS-1$ - - public static final String MSG_COMM_INCOMPATIBLE_PROTOCOL = "RSEC2303"; //$NON-NLS-1$ - public static final String MSG_COMM_INCOMPATIBLE_UPDATE = "RSEC2304"; //$NON-NLS-1$ - - public static final String MSG_COMM_REXEC_NOTSTARTED = "RSEC2305"; //$NON-NLS-1$ - - - public static final String MSG_COMM_SERVER_OLDER_WARNING = "RSEC2308"; //$NON-NLS-1$ - public static final String MSG_COMM_CLIENT_OLDER_WARNING = "RSEC2309"; //$NON-NLS-1$ - - public static final String MSG_COMM_USING_SSL = "RSEC2314"; //$NON-NLS-1$ - public static final String MSG_COMM_NOT_USING_SSL = "RSEC2315"; //$NON-NLS-1$ - - // Connection doesn't exist - public static final String MSG_CONNECTION_DELETED = "RSEF5011"; //$NON-NLS-1$ - - // Remote editing messages - public static final String MSG_DOWNLOAD_NO_WRITE = "RSEF5002"; //$NON-NLS-1$ - public static final String MSG_DOWNLOAD_ALREADY_OPEN_IN_EDITOR = "RSEF5009"; //$NON-NLS-1$ - public static final String MSG_UPLOAD_FILE_EXISTS = "RSEF5012"; //$NON-NLS-1$ - - public static final String MSG_FOLDER_UNREADABLE = "RSEF5020"; //$NON-NLS-1$ - - // General error message - public static final String MSG_ERROR_GENERAL = "RSEO1002"; //$NON-NLS-1$ - - - // remote error list title message - public static final String MSG_ERROR_LIST_TITLE = "RSEG1500"; //$NON-NLS-1$ - - // name validation - public static final String MSG_ERROR_EXTENSION_EMPTY = "RSEF6001"; //$NON-NLS-1$ - public static final String MSG_ERROR_FILENAME_INVALID = "RSEF6002"; //$NON-NLS-1$ - - - // cache preferences - public static final String MSG_CACHE_UPLOAD_BEFORE_DELETE = "RSEF6101"; //$NON-NLS-1$ - public static final String MSG_CACHE_UNABLE_TO_SYNCH = "RSEF6102"; //$NON-NLS-1$ - - // remote search messages - public static final String MSG_REMOTE_SEARCH_INVALID_REGEX = "RSEG1601"; //$NON-NLS-1$ - - - // yantzi: artemis 6.0, offline messages - public static final String MSG_OFFLINE_CANT_CONNECT = "RSEC3001"; //$NON-NLS-1$ - - // file import/export messages - public static final String MSG_IMPORT_EXPORT_UNABLE_TO_USE_CONNECTION = "RSEF5101"; //$NON-NLS-1$ - public static final String MSG_IMPORT_EXPORT_UNEXPECTED_EXCEPTION = "RSEF5102"; //$NON-NLS-1$ - - // jar export messages - public static final String MSG_REMOTE_JAR_EXPORT_OVERWRITE_FILE = "RSEF5103"; //$NON-NLS-1$ - - - /***************************************************/ - /* End of Unused messages (that may still be usable - /***************************************************/ - - public static final String MSG_CONFIRM_RELOADRSE = "RSEG1002"; //$NON-NLS-1$ public static final String MSG_VALIDATE_NAME_EMPTY = "RSEG1006"; //$NON-NLS-1$ diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/internal/ui/subsystems/SubSystemResources.properties b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/internal/ui/subsystems/SubSystemResources.properties index 4b66beddcbe..436ebcfab8c 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/internal/ui/subsystems/SubSystemResources.properties +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/internal/ui/subsystems/SubSystemResources.properties @@ -20,15 +20,15 @@ MSG_CONNECT_PROGRESS = Connecting to {0} MSG_CONNECTWITHPORT_PROGRESS = Connecting to {0} at port {1} MSG_CONNECT_FAILED = Connect to {0} failed with an unexpected exception MSG_CONNECT_UNKNOWNHOST = Connect failed. Host {0} not found or not responding -MSG_CONNECT_CANCELLED = Connect to {0} was canceled +MSG_CONNECT_CANCELED = Connect to {0} was canceled MSG_DISCONNECT_PROGRESS = Disconnecting from {0} MSG_DISCONNECTWITHPORT_PROGRESS = Disconnecting from {0} at port {1} MSG_DISCONNECT_FAILED = Disconnect from {0} failed with exception -MSG_DISCONNECT_CANCELLED = Disconnect from {0} was canceled +MSG_DISCONNECT_CANCELED = Disconnect from {0} was canceled MSG_OPERATION_FAILED = Operation failed with exception '{0}' -MSG_OPERATION_CANCELLED = Operation canceled. +MSG_OPERATION_CANCELED = Operation canceled. MSG_LOADING_PROFILE_SHOULDBE_ACTIVATED = Warning. Profile '{0}' should be made active. Active connection '{1}' contains a reference to it. MSG_LOADING_PROFILE_SHOULDNOTBE_DEACTIVATED = Warning. Profile '{0}' should be active. Active connection '{1}' contains a reference to it. diff --git a/rse/plugins/org.eclipse.rse.ui/systemmessages.xml b/rse/plugins/org.eclipse.rse.ui/systemmessages.xml index 6dd02a0ab5c..72e6eebd19d 100644 --- a/rse/plugins/org.eclipse.rse.ui/systemmessages.xml +++ b/rse/plugins/org.eclipse.rse.ui/systemmessages.xml @@ -42,30 +42,13 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Enter name You must enter a name in the field where the cursor is positioned. - - Name in use - This name is already used by another resource. Enter a unique name. - - - Name not valid - The name entered does not have valid syntax - - - You must rename %1 - You have left the new name the same as the old name. Enter a new name that is different from the old name. - + Name %1 is specified more than once Two or more resources have been renamed to the same new name. Each resource must have a unique name. - - Name %1 not valid - The name %1 does not have valid syntax - - - Enter new name - You have the new name entry field empty. You must enter a unique new name. - + + Expand failed or canceled. Try again. When expanding a node in the tree, and retrieving the resources, either an error occurred or you cancelled the operation. The expand is cancelled. @@ -106,10 +89,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Connection name is not unique for the selected profile. Connection names must be unique to the profile that contains the connection. Specify a name not already in use. - - Invalid connection name. Must be a valid folder name in the underlying file system. - The connection name is not syntactically valid. The name must be a valid folder name within the workbench and the underlying file system. - + Enter host name or IP address You must specify a host name or TCP/IP address for the remote system. @@ -158,10 +138,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Enter password You must specify your password. - - Password has expired - Your password has expired, and must be reset before continuing. - + Enter filter pool name You must specify a name for your filter pool. Filter pool names are arbitrary, but typically reflect the contents of the filters, such as "Release 1" or "Accounts Payable". @@ -170,10 +147,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Filter pool name already exists in this profile A filter pool with this name already exists in the profile. - - Filter pool name not valid - The filter pool name you specified is not a valid name. The name must be a valid folder name in the workbench, and must not contain the pound sign '#'. It must also not exceed 50 characters in length. - + Profile name %1 is reserved The given profile name is reserved. Specify another name for the profile. @@ -190,10 +164,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Filter name already exists in this filter pool The filter name you specified is in use. You must specify a name unique for the parent filter pool. - - Filter name not valid - The filter name you specified is not a valid name. The name must be a valid file name in the workbench, and must not contain the pound sign '#'. It must also not exceed 100 characters in length. - + Enter filtering information You must specify filtering information @@ -218,54 +189,14 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Save to disk failed with an unexpected exception %1 - - Restore of data failed with unexpected exception - %1 - + Delete selected resources? This is a permanent deletion of the selected resources and cannot be undone - - Delete profile '%1'? - Do you want to delete this profile, including all of its connections, filters and user actions? Select Yes to delete, or No to cancel the delete request - - - Connecting to %1 - - - - Connecting to %1 at port %2 - - - - Connect to %1 failed with an unexpected exception - %2 - - - Connect failed. Host %1 not found or not responding - - - - Connect to %1 was cancelled - - - - Disconnecting from %1 - - - - Disconnecting from %1 at port %2 - - - - Disconnect from %1 failed with exception - %2 - - - Disconnect from %1 was cancelled - - + + + Unexpected error deleting %1 %2 @@ -274,34 +205,17 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Unexpected error renaming %1 %2 - - Unexpected error moving %1 - - + Operation failed with exception '%1' - Operation cancelled. - - - - Warning. Profile '%1' should be made active. Active connection '%2' contains a reference to it. - - - - Warning. Profile '%1' should be active. Active connection '%2' contains a reference to it. - - - - Resolving %1 - - - - Running %1 + Operation canceled. + + Copying '%1' to '%2' @@ -338,18 +252,11 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Copying filter string %1 - - Copying subsystems - - + Filter pool(s) successfully copied to '%1'. You must create a new filter pool reference to see it (them). - - Moving '%1' to '%2' - - Moving connection %1 @@ -386,22 +293,12 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Filter pool(s) successfully moved to '%1'. You must create a new filter pool reference to see it (them). - - Setting %1 - - - - Setting properties - - + Querying %1 - - Querying properties - - + Running %1 @@ -434,18 +331,12 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Profile %1 not found No profile named %1 currently exists - - Folder %1 not found on host %2 - - + File %1 not found on host %2 - - File or folder %1 not found on host %2 - - + Connection created successfully. Expand this again to create another @@ -482,66 +373,18 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Moving %1... - - Saving %1... - - + %1 is not a valid archive name. You must give a filename with an extension that is recognized as a valid archive type extension. - - The archive is corrupted or unreadable. - The archive cannot be opened because its format is unrecognized, or its contents are damaged in some way. - - - Cannot create archive. - There was an error creating the empty archive. The archive was not created. - - - Creation of the virtual file or folder %1 failed. - There was an error creating the virtual file or folder. The virtual file or folder was not created. - - - Deletion of the virtual file or folder %1 failed. - There was an error deleting the virtual file or folder. The virtual file or folder was not deleted. - - - Could not move the virtual file or folder %1. - There was an error moving the virtual file or folder. The virtual file or folder was not moved. - - - Permanently delete selected remote resource(s)? - This is a permanent deletion of the selected remote resources from disk. This action cannot be undone - - - Error occurred while loading the user-defined action information from file: %1 - %2 - - - The xml file '%1' appears to be corrupted. It has been replaced - Expected root tag to be named '%2'. The corrupted file has been renamed to '%3' and a new file created for you - + Rename %1... - - Creating file %1... - - - - Creating folder %1... - - - - Unable to perform action as the underlying file system folder is in use - The file system folder %1 is in use by another task and cannot be removed or modified - - - Unable to perform action as the underlying file system file is in use - The file system file %1 is in use by another task and cannot be removed or modified - + + Filter pool %1 created. Create a reference to it in the selected subsystem? New filter pools are not accessible until a reference is added to them in a subsystem. Select Yes to add a reference to the new filter pool in selected subsystem %2 @@ -646,14 +489,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files Compile command string "%1" is not valid The given string is not a valid command. - - Changes pending. Save changes? - You have changes pending. Select Yes to save those changes. Select No to discard those changes - - - Changes pending. Continue? - You have changes pending. Select Yes to discard those changes. Select No to cancel the operation so you can first save your changes - + Host name '%1' not found or valid A remote system of host name '%1' was not found. If you are working disconnected, de-select the checkbox to verify the host name @@ -674,24 +510,11 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files There is an error on another page Another page of the wizard has an error that must be corrected before the wizard can be finished - - Daemon failed to launch server on %1 using port %2 - %3 - - - Failed to connect to the daemon on %1 using port %2 with an unexpected exception - %3 - The selected encoding is not supported. - - Operation interrupted. Some objects have been moved. - - The following objects have been moved: -%1 - + Operation interrupted. Some objects have been renamed. @@ -704,125 +527,15 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files The following objects have been deleted: %1 - - Operation interrupted. Some objects have been copied to the destination. - - The following objects have been copied: -%1 - - - - - The pattern may not be blank - - - - Invalid regular expression - The value %1 you entered is not a valid regular expression - - - - - %1 - Running - - - - %1 - Finished - - - - %1 - Cancelled - - - - %1 - Disconnected - - - - - The invocation may not be blank - - Invalid transfer operation The source %1 cannot be transferred into the target %2 - - Downloading %1 - - - - Uploading %1 - - - - Synchronizing Resources... - - - - Extracting %1 - - - - %1 of %2 complete (%3) - - - - Downloading resources... - - - - Uploading resources... - - - - The new password is invalid. - The remote system indicated that the new password is unacceptable. Please ensure the new password follows all password rules for the remote system. - - - - The FTP service is unavailable on the remote system. - The RSE server needs to be installed manually. - - - The Telnet service is unavailable on the remote system. - The RSE server needs to be started manually or a system administrator needs to install the RSE daemon. - - - Unable to start the RSE server. - - - - Unable to install the RSE server. - - - - Archive Management is not supported by the current File subsystem's configuration. - In the properties for the File subsystem, choose a configuration that supports Archive Management. - - - - - - - Remote Error List: %1 - - - - - - Folder path must not be empty. - Select a folder from the dropdown list or click the Browse... button and select a folder from the dialog. - - - Regular expression is not valid. - The value %1 you entered is not a valid regular expression. - @@ -837,10 +550,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files %1 %2 - - %1 - %2 - + %1 %2 @@ -849,26 +559,7 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files %1 %2 - - %1: %2 - %3 - - - %1: %2 - %3 - - - %1: %2 - %3 - - - %1: %2 - %3 - - - %1: %2 - %3 - + %1 @@ -893,250 +584,15 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files - - - Operation failed. Security violation - Message reported from file system: %1 - - - Operation failed. File system input or output error - Message reported from file system: %1 - - - Folder is not empty. Cannot delete - The operation failed. One possible reason is that the folder is not empty - - - Folder '%1' not found - - - - Folder '%1' not found. Would you like to create it? - The folder you specified does not exist. Select Yes to create it, No to cancel the operation - - - File '%1' not found - - - - - Enter file name pattern - - - - Filter string '%1' already exists in this filter - - - - Filter string name pattern not valid - - - - You must include files or folders or both - - - - No file types specified - Either specify one or more file types, or select to subset by file name - - - Create a new File - - - - Create a new Folder - - - - Enter folder name - - - - Names cannot begin or end with whitespace. - - - - %1 is an invalid character in a name. - - - - Enter file name - - - - Deletion of the object %1 failed - Either the object does not exist or you do not have enough authority to delete the object. If this is a folder, the folder may not be empty - - - Renaming of the object %1 failed - Rename operation failed because, the object to rename does not exist, or the object with new object name already exists, or the user does not have enough authority to rename the object - - - No authority or file name not valid - The file could not be created because of one of the following reasons: - - the user does not have enough authority to create the file - - the file name is not valid - - - File already exists - The new file %1 already exists - - - Creation of the folder failed - The folder %1 could not be created because of one of the following reasons: - - the user does not have enough authority to create the folder - - the folder name is not valid - - - The operation did not complete successfully. See additional messages in the Remote Shell view - The operation requested failed. Look in the Remote Shell view to see additional messages indicating the cause of the failure - - - Copy of the file or folder %1 failed - The file system reported the copy operation failed. You may not have authority to the target folder, or it may be in use - - - Move of the file or folder %1 failed - The file system reported the move operation failed. You may not have authority to the source folder or file, or you may not have authority to the target folder, or it may be in use - - - Target folder cannot equal source folder - It is impossible to move a folder to itself. - - - Folder already exists - The new folder %1 already exists - - - New resource will not be visible due to subsetting. Create it anyway? - The name of the resource you are creating does not match the current filter criteria. If you select Yes to create the resource, it will not be visible within the current filter. - - - Resource will not be visible due to subsetting. Rename it anyway? - The new name of the resource does not match the current filter criteria. If you select Yes to rename the resource, it will not be visible within the current filter. - - - Target folder cannot descend from source folder - It is impossible to move a folder to one of its subfolders. - - - Selected filter is not a valid destination. - Some filters, such as the Root or Drives filter, do not designate locations on the remote file system and cannot have files moved into them. - - - Target folder cannot equal parent of source file/folder. - A file or folder cannot be moved into the directory in which it exists. If you wish to rename the file, use the rename action. - + Deleting %1... - - - File %1 on %2 can not be opened. You do not have read access to the file. - Change file permissions to ensure you have read access to the file. - - - You do not have write access to file %1 on %2. Do you want to open the file in browse mode? - You do not have write permission to the file %1 on %2. You can open the file in browse (read-only) mode. If you want to edit the file, change file permissions to allow write access to the file. - - - File %1 can not be saved on %2. You do not have write access to the file. - Change file permissions to ensure you have write access to the file. - - - File %1 can not be saved on %2. You do not have write access to the file. - Change file permissions to ensure you have write access to the file. - - - File %1 on %2 was modified since you opened this file or saved the file on the server. Do you want to replace the current contents of the file on the server? - The file %1 was changed on the server after it was retrieved from %2 or since the last time the file was saved on the server. Choose Yes to replace the contents of the file. Choose No to leave the file on the server with its current contents. - - - File %1 was not completely saved on %2. The file was saved in the local file system. - An error occurred while saving the file on the server. A possible cause is the connection to the server was terminated. The file may only have been saved partially on the server. However, it was saved locally to help you recover. You will be asked to save the local copy to the server the next time you connect. - - - File %1 on %2 may not have been saved completely during an earlier edit session. The file was saved on the local file system. Do you want to replace the file with the local copy now? - An error occurred during an earlier attempt to save the file. But a local copy of the file was saved for recovery. Choose Yes to save the local copy on the server. Choose No if recovery is not required. - - - File %1 does not exist on %2. Do you want to create the file? - Choose Yes to create the file on the server and save the contents to the file. Choose No if you do not want the file to be created. - - - You are currently editing file %1 on %2. Do you want to open the file in browse mode? - You are allowed to edit a file in one editor only. You can, however, open the file in another editor for browsing. Browsing lets you view the file but does not allow you to edit its contents. - - - Profile named %1 does not exist. - Profile may have been renamed or deleted. - - - Connection named %1 does not exist. - Connection may have been renamed or deleted. - - - - File %1 already exists. Do you want to replace it? - - - - Parent folder %1 does not exist. Do you want to create it? - The parent folder must be created for the file to be created. - - - Parent folder %1 does not exist. Verify that the correct path was entered. - - - - - - Folder %1 is not readable. Cannot expand - - - - - Unable to use connection. - Please correct, or select alternate connection. - - - Unexpected exception received: %1. - Please see error log for details. - - - The file '%1' already exists on %2. Do you want to overwrite it? - Click Yes to overwrite the existing file, or click No to cancel the export. - - - - - File type extension can not be empty. - - - - File type extension must not contain '*' or '.' - - - - The encoding is not supported. - - - - - - - One or more cached files have changes that have not been saved on the host. - - - - Unable to synchronize cache changes to host. Operation cancelled. - - @@ -1164,128 +620,16 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files - - An unknown error occurred. - %1 - An unexpected error occurred. %1 - - Value is not valid - %1 - - - Input %1 is not valid - %1 - - - - Can not copy root file system - The root is not something that can be copied - - - Could not close import stream for %1 - - - - Unable to import %1: %2 - %3 - - - Creating folder %1 - - - - Problems were encountered during import - %1 - - - Error opening input stream for %1 - %2 - - - Unable to import %1 - The file cannot be copied onto itself - - - Error occurred while exporting %1: %2 - %3 - - - Problems were encountered during export - %1 - - - Cannot overwrite file %1 - The file does not have its write attribute set, so it cannot be written to - - - Target folder does not exist. Would you like to create it? - Press Yes to create the folder %1, No to cancel - - - Target folder already exists, as a file - The remote resource %1 already exists, but as a file, not a folder - - - Destination folder conflicts with location of %1 - You are attempting to export to the local file system, to a location that overlaps the resources being exported. - - - Source is a file, not a folder - The remote resource %1 is a file, but a folder is required - - - There are no resources currently selected for import - - - - Select the source directory - - - - Enter or select a source folder - You have left the source folder empty, but it must be set to continue. - - - Export problems - %1 - - - There are no resources currently selected for export - Select resources to be exported and try again - - - Please enter a destination folder - The destination folder is empty. You must select a destination folder. - - - Import problems - %1 - - - There are no resources currently selected for import - Select resources to be imported and try again - - - Filtering selection... - - + - - Connection to %1 could not be established. - A socket connection to %1 could not be established. If you are connecting via the communications daemon make sure the daemon is running on the remote system. If you are connecting directly to the communications server make sure the server is started on the remote system. If you are connecting using REXEC, make sure that the server is installed on the remote system and that the REXEC service is running on that system. - - - Invalid password or user ID - Authentication with %1 failed because the password or user ID is not correct. - The user ID %1 is not valid The user ID %1 on host %2 is not valid. Change the user ID and try again. @@ -1328,75 +672,12 @@ Kevin Doyle (IBM) - [160769] Added message for invalid filter when moving files The password information preference page is a centralized place for Workbench tools to save password information. Each tool registers and provides its own encryption algorithm. There are no tools installed that have registered with the password information preference page. - - Unable to launch server on host %1. - Message from host: %2 - - - Invalid password or user ID for %1. - Message from host: %2 - - - Incompatible host server running on remote system %1. - The host server is not a Remote System Explorer server. - - - Incompatible Remote System Explorer host server running on remote system %1. - The host server needs to be updated to work with the current client. - - - Unable to connect to REXEC host service on port %1 of host %2 - Message from host: %3 - + Port %1 is normally used for the %2 service. - - Unable to establish a secure connection with the Remote System Explorer host server. - Make sure both the client and server are configured to use SSL. The SSL handshake between client and server failed with the following exception: %1 - - - The host server running on remote system %1 is an older version than the RSE client. - It is recommended that the client and server versions match. - - - The host server running on remote system %1 is a newer version than the RSE client. - It is recommended that the client and server versions match. - - - Starting Remote System Explorer host server using REXEC - - - - Starting Remote System Explorer host server using daemon - - - - Connecting to Remote System Explorer host server on port %1 - - - - Initializing Remote System Explorer host server - - - - - Communication with the remote system %1 has been secured using SSL. Continue? - - - - Connection %1 has not been secured using SSL. Proceed anyway? - - - - The specified server port is out of the allowed range: %1 - - - - The connection %1 is currently offline and cannot be connected. - You have performed an action which requires a live connection to the remote system. Switch the connection to online and perform the action again. To switch the connection online, right click on the connection %1 and select the Work Offline action. - +