mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 23:55:26 +02:00
[223103] [cleanup] fix broken externalized strings
This commit is contained in:
parent
1e7e7531ad
commit
fb582b513a
33 changed files with 83 additions and 724 deletions
|
@ -17,6 +17,7 @@
|
|||
* David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
|
||||
* David McKnight (IBM) - [216252] [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) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.files.ui;
|
||||
|
@ -478,6 +479,8 @@ public class FileResources extends NLS
|
|||
// preferences
|
||||
public static String MSG_ERROR_FILENAME_INVALID;
|
||||
|
||||
public static String EditorManager_saveResourcesTitle;
|
||||
|
||||
static
|
||||
{
|
||||
// load message values from bundle file
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
# David McKnight(IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
|
||||
# David McKnight (IBM)- [216252] [nls] Resources 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) - [223103] [cleanup] fix broken externalized strings
|
||||
###############################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_VAR
|
||||
|
@ -478,5 +479,5 @@ MSG_UCMD_INVOCATION_EMPTY = The invocation may not be blank
|
|||
# preferences
|
||||
MSG_ERROR_FILENAME_INVALID = File type extension must not contain '*' or '.'
|
||||
|
||||
|
||||
EditorManager_saveResourcesTitle = Save Resources
|
||||
|
|
@ -46,7 +46,6 @@ import org.eclipse.rse.internal.files.ui.FileResources;
|
|||
import org.eclipse.rse.internal.files.ui.ISystemFileConstants;
|
||||
import org.eclipse.rse.internal.files.ui.resources.SystemRemoteEditManager;
|
||||
import org.eclipse.rse.internal.subsystems.files.core.ISystemFilePreferencesConstants;
|
||||
import org.eclipse.rse.internal.ui.GenericMessages;
|
||||
import org.eclipse.rse.internal.ui.view.SystemTableViewProvider;
|
||||
import org.eclipse.rse.services.clientserver.messages.SimpleSystemMessage;
|
||||
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
||||
|
@ -642,7 +641,7 @@ public class SystemCachePreferencePage extends PreferencePage implements IWorkbe
|
|||
|
||||
dlg.setInitialSelections(input.getChildren());
|
||||
// TODO: Cannot use WorkbenchMessages -- it's internal
|
||||
dlg.setTitle(GenericMessages.EditorManager_saveResourcesTitle);
|
||||
dlg.setTitle(FileResources.EditorManager_saveResourcesTitle);
|
||||
|
||||
int result = dlg.open();
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* David Dykstal (IBM) - [186589] move user types, user actions, and compile commands
|
||||
* API to the user actions plugin
|
||||
* Radoslav Gerganov (ProSyst) - [181563] Fix hardcoded Ctrl+Space for remote shell content assist
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.shells.ui.view;
|
||||
|
@ -234,25 +235,33 @@ public class SystemCommandEditor extends SourceViewer
|
|||
{
|
||||
_undoAction = new TextViewerAction(this, UNDO);
|
||||
_undoAction.setText(SystemResources.ACTION_UNDO_LABEL);
|
||||
_undoAction.setToolTipText(SystemResources.ACTION_UNDO_TOOLTIP);
|
||||
fGlobalActions.put(ITextEditorActionConstants.UNDO, _undoAction);
|
||||
_undoAction.setEnabled(false); // defect 46369
|
||||
|
||||
_cutAction = new TextViewerAction(this, CUT);
|
||||
_cutAction.setText(SystemResources.ACTION_CUT_LABEL);
|
||||
_cutAction.setToolTipText(SystemResources.ACTION_CUT_TOOLTIP);
|
||||
fGlobalActions.put(ITextEditorActionConstants.CUT, _cutAction);
|
||||
_cutAction.setEnabled(false); // defect 46369
|
||||
|
||||
_copyAction = new TextViewerAction(this, COPY);
|
||||
_copyAction.setText(SystemResources.ACTION_COPY_LABEL);
|
||||
_copyAction.setToolTipText(SystemResources.ACTION_COPY_TOOLTIP);
|
||||
fGlobalActions.put(ITextEditorActionConstants.COPY, _copyAction);
|
||||
_copyAction.setEnabled(false); // defect 46369
|
||||
|
||||
_pasteAction = new TextViewerAction(this, PASTE);
|
||||
_pasteAction.setText(SystemResources.ACTION_PASTE_LABEL);
|
||||
_pasteAction.setToolTipText(SystemResources.ACTION_PASTE_TOOLTIP);
|
||||
fGlobalActions.put(ITextEditorActionConstants.PASTE, _pasteAction);
|
||||
_pasteAction.setEnabled(false); // defect 46369
|
||||
if (_pasteAction != null) {
|
||||
_pasteAction.update();
|
||||
}
|
||||
_selectAllAction = new TextViewerAction(this, SELECT_ALL);
|
||||
_selectAllAction.setText(SystemResources.ACTION_SELECT_ALL_LABEL);
|
||||
_selectAllAction.setText(SystemResources.ACTION_SELECT_ALL_LABEL);
|
||||
_selectAllAction.setToolTipText(SystemResources.ACTION_SELECT_ALL_TOOLTIP);
|
||||
fGlobalActions.put(ITextEditorActionConstants.SELECT_ALL, _selectAllAction);
|
||||
_selectAllAction.setEnabled(false); // defect 46369
|
||||
_caAction = new TextViewerAction(this, CONTENTASSIST_PROPOSALS);
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* 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) - [220309] [nls] Some GenericMessages and SubSystemResources should move from UI to Core
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui;
|
||||
|
@ -26,29 +27,11 @@ public class GenericMessages extends NLS
|
|||
|
||||
public static String ResourceNavigator_goto;
|
||||
|
||||
public static String RefreshAction_text;
|
||||
public static String RefreshAction_toolTip;
|
||||
public static String RefreshAction_progressMessage;
|
||||
public static String RefreshAction_problemTitle;
|
||||
public static String RefreshAction_problemMessage;
|
||||
public static String RefreshAction_locationDeletedMessage;
|
||||
public static String RefreshAction_dialogTitle;
|
||||
|
||||
public static String TransferOperation_message;
|
||||
|
||||
// ==============================================================================
|
||||
// Property Pages
|
||||
// ==============================================================================
|
||||
public static String PropertyDialog_messageTitle;
|
||||
public static String PropertyDialog_noPropertyMessage;
|
||||
public static String PropertyDialog_propertyMessage;
|
||||
|
||||
// ==============================================================================
|
||||
// Editor Framework
|
||||
// ==============================================================================
|
||||
public static String EditorManager_saveResourcesMessage;
|
||||
public static String EditorManager_saveResourcesTitle;
|
||||
|
||||
|
||||
public static String TypesFiltering_title;
|
||||
public static String TypesFiltering_message;
|
||||
public static String TypesFiltering_otherExtensions;
|
||||
|
@ -57,7 +40,6 @@ public class GenericMessages extends NLS
|
|||
|
||||
public static String FileExtension_extensionEmptyMessage;
|
||||
public static String FileExtension_fileNameInvalidMessage;
|
||||
public static String FilteredPreferenceDialog_PreferenceSaveFailed;
|
||||
|
||||
public static String RSEQuery_task;
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# 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) - [220309] [nls] Some GenericMessages and SubSystemResources should move from UI to Core
|
||||
# David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
###############################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_VAR
|
||||
|
@ -21,17 +22,6 @@
|
|||
|
||||
ResourceNavigator_goto = Goto
|
||||
|
||||
RefreshAction_text = Re&fresh
|
||||
RefreshAction_toolTip = Refresh
|
||||
RefreshAction_progressMessage = Refreshing...
|
||||
RefreshAction_problemTitle = Refresh Problems
|
||||
RefreshAction_problemMessage = Problems occurred refreshing the selected resources.
|
||||
RefreshAction_locationDeletedMessage = The location for project ''{0}'' ({1}) has been deleted.\n Delete ''{0}'' from the workspace?
|
||||
RefreshAction_dialogTitle = Project location has been deleted
|
||||
|
||||
EditorManager_saveResourcesMessage = Select the &resources to save:
|
||||
EditorManager_saveResourcesTitle = Save Resources
|
||||
|
||||
# ==============================================================================
|
||||
# Editors
|
||||
# ==============================================================================
|
||||
|
@ -43,14 +33,9 @@ TypesFiltering_typeDelimiter = ,
|
|||
|
||||
FileExtension_extensionEmptyMessage = The file extension cannot be empty
|
||||
FileExtension_fileNameInvalidMessage = The file name cannot include the wild card character (*) in the current location
|
||||
FilteredPreferenceDialog_PreferenceSaveFailed=Preferences save failed.
|
||||
|
||||
TransferOperation_message = Transfer Operation
|
||||
|
||||
PropertyDialog_messageTitle = Properties
|
||||
PropertyDialog_noPropertyMessage = Properties
|
||||
PropertyDialog_propertyMessage = Properties for {0}
|
||||
|
||||
RSEQuery_task = RSE Query
|
||||
|
||||
Error=Error
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||
* Copyright (c) 2006, 2008 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui;
|
||||
|
@ -34,9 +34,6 @@ public class SystemPropertyResources extends NLS
|
|||
public static String RESID_PROPERTY_TYPE_LABEL;
|
||||
public static String RESID_PROPERTY_TYPE_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_DESCRIPTION_LABEL;
|
||||
public static String RESID_PROPERTY_DESCRIPTION_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_FILTERTYPE_VALUE;
|
||||
|
||||
public static String RESID_TERM_NOTAPPLICABLE;
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - [195399] Improve String display for default port 0
|
||||
# David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
###############################################################################
|
||||
|
||||
##############################################################
|
||||
|
@ -26,8 +27,6 @@ RESID_PROPERTY_NAME_LABEL=Name
|
|||
RESID_PROPERTY_NAME_TOOLTIP=Name of resources
|
||||
RESID_PROPERTY_TYPE_LABEL=Type
|
||||
RESID_PROPERTY_TYPE_TOOLTIP=Type of resource
|
||||
RESID_PROPERTY_DESCRIPTION_LABEL=Description
|
||||
RESID_PROPERTY_DESCRIPTION_TOOLTIP=Description of resource
|
||||
|
||||
RESID_TERM_NOTAPPLICABLE=Not applicable
|
||||
RESID_TERM_NOTAVAILABLE=Not available
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
* Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point
|
||||
* David McKnight (IBM) - [210229] table refresh needs unique table-specific tooltip-text
|
||||
* David McKnight (IBM) - [216252] [nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui;
|
||||
|
@ -40,12 +41,8 @@ public class SystemResources extends NLS
|
|||
public static String BUTTON_ADD;
|
||||
public static String BUTTON_CREATE_LABEL;
|
||||
public static String BUTTON_CREATE_TOOLTIP;
|
||||
public static String BUTTON_APPLY_LABEL;
|
||||
public static String BUTTON_APPLY_TOOLTIP;
|
||||
public static String BUTTON_RESET_LABEL;
|
||||
public static String BUTTON_RESET_TOOLTIP;
|
||||
|
||||
public static String BUTTON_CANCEL_ALL;
|
||||
public static String BUTTON_CANCEL_ALL_TOOLTIP;
|
||||
|
||||
// THESE TERMS ARE USED POTENTIALLY ANYWHERE
|
||||
public static String TERM_YES;
|
||||
|
@ -54,7 +51,7 @@ public class SystemResources extends NLS
|
|||
public static String TERM_TRUE;
|
||||
public static String TERM_FALSE;
|
||||
|
||||
public static String TERM_LOCAL;
|
||||
|
||||
public static String TERM_ALL;
|
||||
|
||||
public static String RESID_MSGLINE_TIP;
|
||||
|
@ -76,8 +73,6 @@ public class SystemResources extends NLS
|
|||
// GENERIC SINGLE-SELECT RENAME DIALOG...
|
||||
|
||||
public static String RESID_SIMPLE_RENAME_PROMPT_LABEL;
|
||||
public static String RESID_SIMPLE_RENAME_PROMPT_TOOLTIP;
|
||||
|
||||
|
||||
|
||||
public static String RESID_SIMPLE_RENAME_RESOURCEPROMPT_LABEL;
|
||||
|
@ -100,16 +95,9 @@ public class SystemResources extends NLS
|
|||
public static String RESID_DELETE_PROMPT_SINGLE;
|
||||
|
||||
|
||||
public static String RESID_DELETE_RESOURCEPROMPT_LABEL;
|
||||
public static String RESID_DELETE_RESOURCEPROMPT_TOOLTIP;
|
||||
|
||||
public static String RESID_DELETE_TIP;
|
||||
|
||||
public static String RESID_DELETE_WARNING_LABEL;
|
||||
public static String RESID_DELETE_WARNING_TOOLTIP;
|
||||
|
||||
public static String RESID_DELETE_WARNINGLOCAL_LABEL;
|
||||
public static String RESID_DELETE_WARNINGLOCAL_TOOLTIP;
|
||||
|
||||
public static String RESID_DELETE_COLHDG_OLDNAME;
|
||||
|
||||
|
@ -126,7 +114,7 @@ public class SystemResources extends NLS
|
|||
public static String RESID_COPY_PROMPT;
|
||||
public static String RESID_COPY_TARGET_PROFILE_PROMPT;
|
||||
public static String RESID_COPY_TARGET_FILTERPOOL_PROMPT;
|
||||
public static String RESID_COPY_TARGET_FILTER_PROMPT;
|
||||
|
||||
|
||||
// GENERIC MOVE DIALOG...
|
||||
public static String RESID_MOVE_TITLE;
|
||||
|
@ -134,17 +122,12 @@ public class SystemResources extends NLS
|
|||
public static String RESID_MOVE_PROMPT;
|
||||
public static String RESID_MOVE_TARGET_PROFILE_PROMPT;
|
||||
public static String RESID_MOVE_TARGET_FILTERPOOL_PROMPT;
|
||||
public static String RESID_MOVE_TARGET_FILTER_PROMPT;
|
||||
|
||||
// GENERIC RESOURCE NAME COLLISION DIALOG...
|
||||
public static String RESID_COLLISION_RENAME_TITLE;
|
||||
public static String RESID_COLLISION_RENAME_VERBIAGE;
|
||||
public static String RESID_COLLISION_RENAME_LABEL;
|
||||
public static String RESID_COLLISION_RENAME_TOOLTIP;
|
||||
|
||||
// GENERIC SELECT CONNECTION DIALOG...
|
||||
public static String RESID_SELECTCONNECTION_TITLE;
|
||||
public static String RESID_SELECTCONNECTION_VERBIAGE;
|
||||
|
||||
// -------------------------
|
||||
// WIZARD AND DIALOG STRINGS
|
||||
|
@ -160,10 +143,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_NEWPROFILE_VERBIAGE;
|
||||
|
||||
// RENAME DEFAULT PROFILE WIZARD PAGE...
|
||||
public static String RESID_RENAMEDEFAULTPROFILE_PAGE1_TITLE;
|
||||
|
||||
public static String RESID_RENAMEDEFAULTPROFILE_PAGE1_DESCRIPTION;
|
||||
|
||||
public static String RESID_PROFILE_PROFILENAME_LABEL;
|
||||
public static String RESID_PROFILE_PROFILENAME_TIP;
|
||||
public static String RESID_PROFILE_PROFILENAME_VERBIAGE;
|
||||
|
@ -177,7 +156,6 @@ public class SystemResources extends NLS
|
|||
|
||||
// NEW SYSTEM CONNECTION WIZARD...
|
||||
public static String RESID_NEWCONN_PROMPT_LABEL;
|
||||
public static String RESID_NEWCONN_PROMPT_TOOLTIP;
|
||||
public static String RESID_NEWCONN_PROMPT_VALUE;
|
||||
public static String RESID_NEWCONN_EXPANDABLEPROMPT_VALUE;
|
||||
public static String RESID_NEWCONN_TITLE;
|
||||
|
@ -198,7 +176,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_CONNECTION_TYPE_VALUE;
|
||||
public static String RESID_CONNECTION_SYSTEMTYPE_LABEL;
|
||||
public static String RESID_CONNECTION_SYSTEMTYPE_TIP;
|
||||
public static String RESID_CONNECTION_SYSTEMTYPE_READONLY_LABEL;
|
||||
public static String RESID_CONNECTION_SYSTEMTYPE_READONLY_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_CONNECTIONNAME_LABEL;
|
||||
|
@ -207,30 +184,20 @@ public class SystemResources extends NLS
|
|||
public static String RESID_CONNECTION_HOSTNAME_LABEL;
|
||||
public static String RESID_CONNECTION_HOSTNAME_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_HOSTNAME_READONLY_LABEL;
|
||||
public static String RESID_CONNECTION_HOSTNAME_READONLY_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_VERIFYHOSTNAME_LABEL;
|
||||
public static String RESID_CONNECTION_VERIFYHOSTNAME_TOOLTIP;
|
||||
|
||||
public static String RESID_CONNECTION_USERID_LABEL;
|
||||
public static String RESID_CONNECTION_USERID_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_DEFAULTUSERID_LABEL;
|
||||
public static String RESID_CONNECTION_DEFAULTUSERID_TIP;
|
||||
public static String RESID_CONNECTION_DEFAULTUSERID_INHERITBUTTON_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_RUNNING_PORT_LABEL;
|
||||
public static String RESID_CONNECTION_RUNNING_PORT_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_PORT_LABEL;
|
||||
public static String RESID_CONNECTION_PORT_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_DAEMON_PORT_LABEL;
|
||||
public static String RESID_CONNECTION_DAEMON_PORT_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_DEFAULTPORT_LABEL;
|
||||
public static String RESID_CONNECTION_DEFAULTPORT_TIP;
|
||||
|
||||
public static String RESID_CONNECTION_DESCRIPTION_LABEL;
|
||||
public static String RESID_CONNECTION_DESCRIPTION_TIP;
|
||||
|
@ -240,16 +207,6 @@ public class SystemResources extends NLS
|
|||
|
||||
public static String RESID_CONNECTION_PROFILE_READONLY_TIP;
|
||||
|
||||
// CHANGE SYSTEM CONNECTION DIALOG...
|
||||
public static String RESID_CHGCONN_TITLE;
|
||||
|
||||
// SET DEFAULT USERID PER SYSTEM TYPE DIALOG...
|
||||
public static String RESID_USERID_PER_SYSTEMTYPE_TITLE;
|
||||
public static String RESID_USERID_PER_SYSTEMTYPE_SYSTEMTYPE_LABEL;
|
||||
public static String RESID_USERID_PER_SYSTEMTYPE_SYSTEMTYPE_TOOLTIP;
|
||||
public static String RESID_USERID_PER_SYSTEMTYPE_LABEL;
|
||||
public static String RESID_USERID_PER_SYSTEMTYPE_TOOLTIP;
|
||||
|
||||
|
||||
|
||||
// NEW FILTER POOL WIZARD...
|
||||
|
@ -284,7 +241,6 @@ public class SystemResources extends NLS
|
|||
// MAIN PAGE (page 1) OF NEW FILTER WIZARD...
|
||||
public static String RESID_NEWFILTER_PAGE1_DESCRIPTION;
|
||||
|
||||
public static String RESID_NEWFILTER_POOLTIP;
|
||||
|
||||
// NAME PAGE (page 2) OF NEW FILTER WIZARD...
|
||||
public static String RESID_NEWFILTER_PAGE2_DESCRIPTION;
|
||||
|
@ -314,13 +270,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_NEWFILTER_PAGE3_STRINGS_VERBIAGE;
|
||||
public static String RESID_NEWFILTER_PAGE3_POOLS_VERBIAGE;
|
||||
|
||||
public static String RESID_FILTERALIAS_LABEL;
|
||||
public static String RESID_FILTERALIAS_TIP;
|
||||
public static String RESID_FILTERPARENTPOOL_LABEL;
|
||||
public static String RESID_FILTERPARENTPOOL_TIP;
|
||||
public static String RESID_FILTERSTRINGS_LABEL;
|
||||
public static String RESID_FILTERSTRINGS_TIP;
|
||||
|
||||
|
||||
// CHANGE SYSTEM FILTER DIALOG...
|
||||
public static String RESID_CHGFILTER_TITLE;
|
||||
|
@ -341,56 +290,28 @@ public class SystemResources extends NLS
|
|||
public static String RESID_CHGFILTER_BUTTON_APPLY_TOOLTIP;
|
||||
public static String RESID_CHGFILTER_BUTTON_REVERT_LABEL;
|
||||
public static String RESID_CHGFILTER_BUTTON_REVERT_TOOLTIP;
|
||||
public static String RESID_CHGFILTER_BUTTON_CREATE_LABEL;
|
||||
public static String RESID_CHGFILTER_BUTTON_CREATE_TOOLTIP;
|
||||
|
||||
|
||||
// CREATE UNNAMED FILTER DIALOG...
|
||||
public static String RESID_CRTFILTER_TITLE;
|
||||
|
||||
// RENAME SYSTEM FILTER DIALOG...
|
||||
public static String RESID_RENAME_FILTER_TITLE;
|
||||
|
||||
public static String RESID_RENAME_FILTER_PROMPT;
|
||||
|
||||
// COPY SYSTEM FILTER DIALOG...
|
||||
public static String RESID_COPY_FILTER_TITLE;
|
||||
|
||||
public static String RESID_COPY_FILTER_PROMPT;
|
||||
|
||||
// NEW SYSTEM FILTER STRING WIZARD...
|
||||
public static String RESID_NEWFILTERSTRING_TITLE;
|
||||
public static String RESID_NEWFILTERSTRING_ADD_TITLE;
|
||||
public static String RESID_NEWFILTERSTRING_PAGE1_TITLE;
|
||||
public static String RESID_NEWFILTERSTRING_PAGE1_DESCRIPTION;
|
||||
|
||||
public static String RESID_NEWFILTERSTRING_PREFIX_LABEL;
|
||||
public static String RESID_NEWFILTERSTRING_PREFIX_TOOLTIP;
|
||||
public static String RESID_NEWFILTERSTRING_PREFIX_PROMPT;
|
||||
|
||||
public static String RESID_FILTERSTRING_STRING_LABEL;
|
||||
public static String RESID_FILTERSTRING_STRING_TIP;
|
||||
|
||||
// CHANGE FILTER STRING ACTION AND DIALOG...
|
||||
public static String RESID_CHGFILTERSTRING_PREFIX_LABEL;
|
||||
public static String RESID_CHGFILTERSTRING_PREFIX_TOOLTIP;
|
||||
public static String RESID_CHGFILTERSTRING_TITLE;
|
||||
public static String RESID_CHGFILTERSTRING_PREFIX_PROMPT;
|
||||
|
||||
|
||||
// TEST SYSTEM FILTER STRING DIALOG...
|
||||
public static String RESID_TESTFILTERSTRING_TITLE;
|
||||
|
||||
public static String RESID_TESTFILTERSTRING_PROMPT_LABEL;
|
||||
public static String RESID_TESTFILTERSTRING_PROMPT_TOOLTIP;
|
||||
|
||||
public static String RESID_TESTFILTERSTRING_TREE_TIP;
|
||||
|
||||
|
||||
// WORK WITH HISTORY DIALOG...
|
||||
public static String RESID_WORKWITHHISTORY_TITLE;
|
||||
public static String RESID_WORKWITHHISTORY_VERBIAGE;
|
||||
public static String RESID_WORKWITHHISTORY_PROMPT;
|
||||
public static String RESID_WORKWITHHISTORY_BUTTON_LABEL;
|
||||
public static String RESID_WORKWITHHISTORY_BUTTON_TIP;
|
||||
|
||||
// PROMPT FOR PASSWORD DIALOG...
|
||||
|
@ -432,7 +353,7 @@ public class SystemResources extends NLS
|
|||
// TABLE view column selection
|
||||
public static String RESID_TABLE_SELECT_COLUMNS_LABEL;
|
||||
public static String RESID_TABLE_SELECT_COLUMNS_TOOLTIP;
|
||||
|
||||
|
||||
public static String RESID_TABLE_SELECT_COLUMNS_ADD_LABEL;
|
||||
public static String RESID_TABLE_SELECT_COLUMNS_ADD_TOOLTIP;
|
||||
|
||||
|
@ -469,15 +390,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_TEAMVIEW_CATEGORY_FILTERPOOLS_LABEL;
|
||||
public static String RESID_TEAMVIEW_CATEGORY_FILTERPOOLS_TOOLTIP;
|
||||
|
||||
public static String RESID_TEAMVIEW_CATEGORY_USERACTIONS_LABEL;
|
||||
public static String RESID_TEAMVIEW_CATEGORY_USERACTIONS_TOOLTIP;
|
||||
|
||||
public static String RESID_TEAMVIEW_CATEGORY_COMPILECMDS_LABEL;
|
||||
public static String RESID_TEAMVIEW_CATEGORY_COMPILECMDS_TOOLTIP;
|
||||
|
||||
public static String RESID_TEAMVIEW_CATEGORY_TARGETS_LABEL;
|
||||
public static String RESID_TEAMVIEW_CATEGORY_TARGETS_TOOLTIP;
|
||||
|
||||
// ------------------------------
|
||||
// REUSABLE WIDGET STRINGS...
|
||||
// ------------------------------
|
||||
|
@ -492,16 +404,10 @@ public class SystemResources extends NLS
|
|||
public static String RESID_SELECTFILES_DESELECTALL_BUTTON_ROOT_TOOLTIP;
|
||||
|
||||
|
||||
// ------------------------------
|
||||
// PROPERTY PAGE STRINGS...
|
||||
// ------------------------------
|
||||
// SYSTEMREGISTRY PROPERTIES PAGE...
|
||||
public static String RESID_SYSTEMREGISTRY_TEXT;
|
||||
|
||||
public static String RESID_SYSTEMREGISTRY_CONNECTIONS;
|
||||
|
||||
// SUBSYSTEM PROPERTIES PAGE...
|
||||
public static String RESID_SUBSYSTEM_TITLE;
|
||||
public static String RESID_SUBSYSTEM_TYPE_LABEL;
|
||||
public static String RESID_SUBSYSTEM_TYPE_VALUE;
|
||||
public static String RESID_SUBSYSTEM_VENDOR_LABEL;
|
||||
|
@ -512,15 +418,11 @@ public class SystemResources extends NLS
|
|||
public static String RESID_SUBSYSTEM_PORT_LABEL;
|
||||
public static String RESID_SUBSYSTEM_PORT_TIP;
|
||||
public static String RESID_SUBSYSTEM_PORT_INHERITBUTTON_TIP;
|
||||
public static String RESID_SUBSYSTEM_PORT_INHERITBUTTON_INHERIT_TIP;
|
||||
public static String RESID_SUBSYSTEM_PORT_INHERITBUTTON_LOCAL_TIP;
|
||||
|
||||
public static String RESID_SUBSYSTEM_USERID_LABEL;
|
||||
public static String RESID_SUBSYSTEM_USERID_TIP;
|
||||
|
||||
public static String RESID_SUBSYSTEM_USERID_INHERITBUTTON_TIP;
|
||||
public static String RESID_SUBSYSTEM_USERID_INHERITBUTTON_INHERIT_TIP;
|
||||
public static String RESID_SUBSYSTEM_USERID_INHERITBUTTON_LOCAL_TIP;
|
||||
|
||||
public static String RESID_SUBSYSTEM_SSL_LABEL;
|
||||
public static String RESID_SUBSYSTEM_SSL_TIP;
|
||||
|
@ -534,7 +436,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_SUBSYSTEM_NONSSL_ALERT_LABEL;
|
||||
public static String RESID_SUBSYSTEM_NONSSL_ALERT_TIP;
|
||||
|
||||
public static String RESID_SUBSYSTEM_ENVVAR_TITLE;
|
||||
public static String RESID_SUBSYSTEM_ENVVAR_DESCRIPTION;
|
||||
public static String RESID_SUBSYSTEM_ENVVAR_TOOLTIP;
|
||||
|
||||
|
@ -563,7 +464,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_PP_PROPERTIES_TYPE_TOOLTIP;
|
||||
|
||||
// FILTER POOL PROPERTIES PAGE...
|
||||
public static String RESID_FILTERPOOL_TITLE;
|
||||
public static String RESID_FILTERPOOL_TYPE_VALUE;
|
||||
|
||||
public static String RESID_FILTERPOOL_NAME_LABEL;
|
||||
|
@ -579,7 +479,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_FILTERPOOL_RELATEDCONNECTION_TOOLTIP;
|
||||
|
||||
// FILTER POOL REFERENCE PROPERTIES PAGE...
|
||||
public static String RESID_FILTERPOOLREF_TITLE;
|
||||
public static String RESID_FILTERPOOLREF_TYPE_VALUE;
|
||||
|
||||
public static String RESID_FILTERPOOLREF_NAME_LABEL;
|
||||
|
@ -595,12 +494,12 @@ public class SystemResources extends NLS
|
|||
public static String RESID_FILTERPOOLREF_PROFILE_TOOLTIP;
|
||||
|
||||
// FILTER PROPERTIES PAGE...
|
||||
public static String RESID_PP_FILTER_TITLE_LABEL;
|
||||
public static String RESID_PP_FILTER_TYPE_VALUE;
|
||||
|
||||
public static String RESID_PP_FILTER_TYPE_PROMPTABLE_VALUE;
|
||||
public static String RESID_PP_FILTER_TYPE_PROMPTABLE_TOOLTIP;
|
||||
|
||||
|
||||
public static String RESID_PP_FILTER_NAME_LABEL;
|
||||
public static String RESID_PP_FILTER_NAME_TOOLTIP;
|
||||
|
||||
|
@ -617,11 +516,8 @@ public class SystemResources extends NLS
|
|||
public static String RESID_PP_FILTER_ISCONNECTIONPRIVATE_TOOLTIP;
|
||||
|
||||
// FILTER STRING PROPERTIES PAGE...
|
||||
public static String RESID_PP_FILTERSTRING_TITLE;
|
||||
public static String RESID_PP_FILTERSTRING_TYPE_VALUE;
|
||||
|
||||
public static String RESID_PP_FILTERSTRING_STRING_LABEL;
|
||||
public static String RESID_PP_FILTERSTRING_STRING_TOOLTIP;
|
||||
|
||||
public static String RESID_PP_FILTERSTRING_FILTER_LABEL;
|
||||
public static String RESID_PP_FILTERSTRING_FILTER_TOOLTIP;
|
||||
|
@ -634,7 +530,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_PP_FILTERSTRING_PROFILE_TOOLTIP;
|
||||
|
||||
// SUBSYSTEM FACTORY PROPERTIES PAGE...
|
||||
public static String RESID_PP_SUBSYSFACTORY_TITLE;
|
||||
public static String RESID_PP_SUBSYSFACTORY_ID_LABEL;
|
||||
public static String RESID_PP_SUBSYSFACTORY_ID_TOOLTIP;
|
||||
|
||||
|
@ -648,7 +543,6 @@ public class SystemResources extends NLS
|
|||
|
||||
// REMOTE SERVER LAUNCH PROPERTIES PAGE...
|
||||
public static String RESID_PROP_SERVERLAUNCHER_MEANS;
|
||||
public static String RESID_PROP_SERVERLAUNCHER_MEANS_LABEL;
|
||||
public static String RESID_PROP_SERVERLAUNCHER_RADIO_DAEMON;
|
||||
public static String RESID_PROP_SERVERLAUNCHER_RADIO_REXEC;
|
||||
public static String RESID_PROP_SERVERLAUNCHER_RADIO_NONE;
|
||||
|
@ -666,11 +560,10 @@ public class SystemResources extends NLS
|
|||
// ---------------------------
|
||||
// RE-USABLE WIDGET STRINGS...
|
||||
// ---------------------------
|
||||
|
||||
|
||||
// WIDGETS IN SYSTEMCONNECTIONCOMBO.JAVA
|
||||
public static String WIDGET_CONNECTION_LABEL;
|
||||
public static String WIDGET_CONNECTION_TOOLTIP;
|
||||
public static String WIDGET_CONNECTION_NAME;
|
||||
|
||||
public static String WIDGET_BUTTON_NEWCONNECTION_LABEL;
|
||||
public static String WIDGET_BUTTON_NEWCONNECTION_TOOLTIP;
|
||||
|
@ -679,7 +572,6 @@ public class SystemResources extends NLS
|
|||
// PREFERENCES...
|
||||
// -------------------------
|
||||
public static String RESID_PREF_ROOT_PAGE;
|
||||
public static String RESID_PREF_ROOT_TITLE;
|
||||
|
||||
public static String RESID_PREF_SYSTYPE_COLHDG_NAME;
|
||||
public static String RESID_PREF_SYSTYPE_COLHDG_ENABLED;
|
||||
|
@ -689,7 +581,6 @@ public class SystemResources extends NLS
|
|||
//
|
||||
// Signon Information Preferences Page
|
||||
//
|
||||
public static String RESID_PREF_SIGNON_DESCRIPTION;
|
||||
|
||||
public static String RESID_PREF_SIGNON_HOSTNAME_TITLE;
|
||||
public static String RESID_PREF_SIGNON_HOSTNAME_LABEL;
|
||||
|
@ -722,36 +613,16 @@ public class SystemResources extends NLS
|
|||
|
||||
public static String RESID_PREF_SIGNON_CHANGE_DIALOG_TITLE;
|
||||
|
||||
// Unable to load message
|
||||
public static String RESID_MSG_UNABLETOLOAD;
|
||||
|
||||
// Default filter pool name
|
||||
public static String RESID_DEFAULT_FILTERPOOL;
|
||||
|
||||
public static String RESID_PERCONNECTION_FILTERPOOL;
|
||||
|
||||
// RSE Communication Preferences
|
||||
public static String RESID_PREF_IP_ADDRESS_LABEL;
|
||||
public static String RESID_PREF_IP_AUTO_LABEL;
|
||||
public static String RESID_PREF_IP_AUTO_TOOLTIP;
|
||||
public static String RESID_PREF_IP_MANUAL_LABEL;
|
||||
public static String RESID_PREF_IP_MANUAL_TOOLTIP;
|
||||
public static String RESID_PREF_IP_MANUAL_ENTER_LABEL;
|
||||
public static String RESID_PREF_IP_MANUAL_ENTER_TOOLTIP;
|
||||
|
||||
// Offline constants (yantzi:3.0)
|
||||
public static String RESID_OFFLINE_LABEL;
|
||||
public static String RESID_OFFLINE_WORKOFFLINE_LABEL;
|
||||
public static String RESID_OFFLINE_WORKOFFLINE_TOOLTIP;
|
||||
public static String RESID_OFFLINE_WORKOFFLINE_DESCRIPTION;
|
||||
|
||||
// -------------------------------------------
|
||||
// remote search view constants
|
||||
// -------------------------------------------
|
||||
|
||||
// Search view constants
|
||||
public static String RESID_SEARCH_VIEW_DEFAULT_TITLE;
|
||||
|
||||
// Remove selected matches action
|
||||
public static String RESID_SEARCH_REMOVE_SELECTED_MATCHES_LABEL;
|
||||
public static String RESID_SEARCH_REMOVE_SELECTED_MATCHES_TOOLTIP;
|
||||
|
@ -767,12 +638,6 @@ public class SystemResources extends NLS
|
|||
/** ******************************************* */
|
||||
/* Generated Vars */
|
||||
/** ******************************************* */
|
||||
public static String RESID_PREF_SYSTEMTYPE_PREFIX_LABEL;
|
||||
public static String RESID_PREF_SYSTEMTYPE_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_PREF_USERID_PREFIX_LABEL;
|
||||
public static String RESID_PREF_USERID_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_PREF_USERID_PERTYPE_PREFIX_LABEL;
|
||||
public static String RESID_PREF_USERID_PERTYPE_PREFIX_TOOLTIP;
|
||||
|
||||
|
@ -788,8 +653,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_PREF_REMEMBERSTATE_PREFIX_LABEL;
|
||||
public static String RESID_PREF_REMEMBERSTATE_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_PREF_USEDEFERREDQUERIES_PREFIX_LABEL;
|
||||
public static String RESID_PREF_USEDEFERREDQUERIES_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_PREF_RESTOREFROMCACHE_PREFIX_LABEL;
|
||||
public static String RESID_PREF_RESTOREFROMCACHE_PREFIX_TOOLTIP;
|
||||
|
@ -846,36 +709,15 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_REMOTESERVER_STOP_LABEL;
|
||||
public static String ACTION_REMOTESERVER_STOP_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_EXPAND_LABEL;
|
||||
public static String ACTION_CASCADING_EXPAND_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_EXPAND_TO_LABEL;
|
||||
public static String ACTION_CASCADING_EXPAND_TO_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_EXPAND_ALL_LABEL;
|
||||
public static String ACTION_CASCADING_EXPAND_ALL_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_EXPAND_BY_LABEL;
|
||||
public static String ACTION_CASCADING_EXPAND_BY_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_EXPAND_WORKWITH_LABEL;
|
||||
public static String ACTION_CASCADING_EXPAND_WORKWITH_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_VIEW_LABEL;
|
||||
public static String ACTION_CASCADING_VIEW_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_USERID_LABEL;
|
||||
public static String ACTION_CASCADING_USERID_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_PREFERENCES_LABEL;
|
||||
public static String ACTION_CASCADING_PREFERENCES_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_TEAM_LABEL;
|
||||
public static String ACTION_CASCADING_TEAM_TOOLTIP;
|
||||
|
||||
public static String ACTION_TEAM_SYNC_LABEL;
|
||||
public static String ACTION_TEAM_SYNC_TOOLTIP;
|
||||
|
||||
public static String ACTION_CASCADING_PULLDOWN_LABEL;
|
||||
public static String ACTION_CASCADING_PULLDOWN_TOOLTIP;
|
||||
|
||||
|
@ -885,9 +727,6 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_TEAM_RELOAD_LABEL;
|
||||
public static String ACTION_TEAM_RELOAD_TOOLTIP;
|
||||
|
||||
public static String ACTION_PROFILE_ACTIVATE_LABEL;
|
||||
public static String ACTION_PROFILE_ACTIVATE_TOOLTIP;
|
||||
|
||||
public static String ACTION_PROFILE_MAKEACTIVE_LABEL;
|
||||
public static String ACTION_PROFILE_MAKEACTIVE_TOOLTIP;
|
||||
|
||||
|
@ -921,36 +760,18 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_ANOTHERCONN_LABEL;
|
||||
public static String ACTION_ANOTHERCONN_TOOLTIP;
|
||||
|
||||
public static String ACTION_UPDATECONN_LABEL;
|
||||
public static String ACTION_UPDATECONN_TOOLTIP;
|
||||
|
||||
public static String ACTION_NEWFILTERSTRING_LABEL;
|
||||
public static String ACTION_NEWFILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String ACTION_ADDFILTERSTRING_LABEL;
|
||||
public static String ACTION_ADDFILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String ACTION_UPDATEFILTERSTRING_LABEL;
|
||||
public static String ACTION_UPDATEFILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String ACTION_TESTFILTERSTRING_LABEL;
|
||||
public static String ACTION_TESTFILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String ACTION_NEWFILTER_LABEL;
|
||||
public static String ACTION_NEWFILTER_TOOLTIP;
|
||||
|
||||
public static String ACTION_NEWNESTEDFILTER_LABEL;
|
||||
public static String ACTION_NEWNESTEDFILTER_TOOLTIP;
|
||||
|
||||
public static String ACTION_UPDATEFILTER_LABEL;
|
||||
public static String ACTION_UPDATEFILTER_TOOLTIP;
|
||||
|
||||
public static String ACTION_NEWFILTERPOOL_LABEL;
|
||||
public static String ACTION_NEWFILTERPOOL_TOOLTIP;
|
||||
|
||||
public static String ACTION_ADDFILTERPOOLREF_LABEL;
|
||||
public static String ACTION_ADDFILTERPOOLREF_TOOLTIP;
|
||||
|
||||
public static String ACTION_RMVFILTERPOOLREF_LABEL;
|
||||
public static String ACTION_RMVFILTERPOOLREF_TOOLTIP;
|
||||
|
||||
|
@ -969,9 +790,6 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_RUN_LABEL;
|
||||
public static String ACTION_RUN_TOOLTIP;
|
||||
|
||||
public static String ACTION_SIMPLERENAME_LABEL;
|
||||
public static String ACTION_SIMPLERENAME_TOOLTIP;
|
||||
|
||||
public static String ACTION_REFRESH_ALL_LABEL;
|
||||
public static String ACTION_REFRESH_ALL_TOOLTIP;
|
||||
|
||||
|
@ -999,7 +817,7 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_MOVEDOWN_LABEL;
|
||||
public static String ACTION_MOVEDOWN_TOOLTIP;
|
||||
|
||||
public static String ACTION_MOVEUPLEVEL_LABEL;
|
||||
public static String ACTION_MOVEUPLEVEL_LABEL; // used but leaving for now since the tooltip is used
|
||||
public static String ACTION_MOVEUPLEVEL_TOOLTIP;
|
||||
|
||||
public static String ACTION_CONNECT_LABEL;
|
||||
|
@ -1041,10 +859,6 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_HISTORY_MOVEBACKWARD_LABEL;
|
||||
public static String ACTION_HISTORY_MOVEBACKWARD_TOOLTIP;
|
||||
|
||||
|
||||
public static String ACTION_SHOW_TOOLTIP_INFORMATION;
|
||||
|
||||
|
||||
public static String ACTION_COPY_LABEL;
|
||||
public static String ACTION_COPY_TOOLTIP;
|
||||
|
||||
|
@ -1084,18 +898,12 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_MOVE_FILTERSTRING_LABEL;
|
||||
public static String ACTION_MOVE_FILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String ACTION_TEAM_BROWSEHISTORY_LABEL;
|
||||
public static String ACTION_TEAM_BROWSEHISTORY_TOOLTIP;
|
||||
|
||||
public static String ACTION_TABLE_LABEL;
|
||||
public static String ACTION_TABLE_TOOLTIP;
|
||||
|
||||
public static String ACTION_MONITOR_LABEL;
|
||||
public static String ACTION_MONITOR_TOOLTIP;
|
||||
|
||||
public static String ACTION_ERROR_LIST_LABEL;
|
||||
public static String ACTION_ERROR_LIST_TOOLTIP;
|
||||
|
||||
public static String ACTION_SEARCH_LABEL;
|
||||
public static String ACTION_SEARCH_TOOLTIP;
|
||||
|
||||
|
@ -1121,28 +929,9 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_SELECTCOLUMNS_LABEL;
|
||||
public static String ACTION_SELECTCOLUMNS_TOOLTIP;
|
||||
|
||||
public static String ACTION_OPENEXPLORER_CASCADE_LABEL;
|
||||
public static String ACTION_OPENEXPLORER_CASCADE_TOOLTIP;
|
||||
|
||||
public static String ACTION_OPENEXPLORER_SAMEPERSP_LABEL;
|
||||
public static String ACTION_OPENEXPLORER_SAMEPERSP_TOOLTIP;
|
||||
|
||||
public static String ACTION_OPENEXPLORER_DIFFPERSP_LABEL;
|
||||
public static String ACTION_OPENEXPLORER_DIFFPERSP_TOOLTIP;
|
||||
|
||||
public static String ACTION_OPENEXPLORER_DIFFPERSP2_LABEL;
|
||||
public static String ACTION_OPENEXPLORER_DIFFPERSP2_TOOLTIP;
|
||||
|
||||
public static String ACTION_REMOTE_PROPERTIES_LABEL;
|
||||
public static String ACTION_REMOTE_PROPERTIES_TOOLTIP;
|
||||
|
||||
public static String ACTION_VIEWFORM_REFRESH_LABEL;
|
||||
public static String ACTION_VIEWFORM_REFRESH_TOOLTIP;
|
||||
|
||||
public static String ACTION_VIEWFORM_GETLIST_LABEL;
|
||||
public static String ACTION_VIEWFORM_GETLIST_TOOLTIP;
|
||||
|
||||
|
||||
public static String ACTION_EXPAND_SELECTED_LABEL;
|
||||
public static String ACTION_EXPAND_SELECTED_TOOLTIP;
|
||||
|
||||
|
@ -1152,15 +941,9 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_COLLAPSE_ALL_LABEL;
|
||||
public static String ACTION_COLLAPSE_ALL_TOOLTIP;
|
||||
|
||||
public static String ACTION_EXPAND_BY_LABEL;
|
||||
public static String ACTION_EXPAND_BY_TOOLTIP;
|
||||
|
||||
public static String ACTION_EXPAND_ALL_LABEL;
|
||||
public static String ACTION_EXPAND_ALL_TOOLTIP;
|
||||
|
||||
public static String ACTION_EXPAND_OTHER_LABEL;
|
||||
public static String ACTION_EXPAND_OTHER_TOOLTIP;
|
||||
|
||||
public static String ACTION_SELECT_ALL_LABEL;
|
||||
public static String ACTION_SELECT_ALL_TOOLTIP;
|
||||
|
||||
|
@ -1168,26 +951,6 @@ public class SystemResources extends NLS
|
|||
public static String ACTION_SELECT_INPUT_DLG;
|
||||
public static String ACTION_SELECT_INPUT_TOOLTIP;
|
||||
|
||||
public static String ACTION_SELECTCONNECTION_LABEL;
|
||||
public static String ACTION_SELECTCONNECTION_TOOLTIP;
|
||||
|
||||
public static String RESID_CHANGE_PREFIX_LABEL;
|
||||
public static String RESID_CHANGE_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_CHANGEVIAENTRY_PREFIX_LABEL;
|
||||
public static String RESID_CHANGEVIAENTRY_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_ADDVIAENTRY_PREFIX_LABEL;
|
||||
public static String RESID_ADDVIAENTRY_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_COPYFROM_PREFIX_LABEL;
|
||||
public static String RESID_COPYFROM_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_COPYTO_PREFIX_LABEL;
|
||||
public static String RESID_COPYTO_PREFIX_TOOLTIP;
|
||||
|
||||
public static String RESID_DUPLICATE_PREFIX_LABEL;
|
||||
public static String RESID_DUPLICATE_PREFIX_TOOLTIP;
|
||||
|
||||
|
||||
// services and connector services property pages
|
||||
|
@ -1195,8 +958,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_PROPERTIES_SERVICES_LABEL;
|
||||
public static String RESID_PROPERTIES_SERVICES_TOOLTIP;
|
||||
public static String RESID_PROPERTIES_DESCRIPTION_LABEL;
|
||||
public static String RESID_PROPERTIES_CONNECTOR_SERVICES_LABEL;
|
||||
public static String RESID_PROPERTIES_CONNECTOR_SERVICES_TOOLTIP;
|
||||
public static String RESID_PROPERTIES_FACTORIES_LABEL;
|
||||
public static String RESID_PROPERTIES_FACTORIES_TOOLTIP;
|
||||
public static String RESID_PROPERTIES_PROPERTIES_LABEL;
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
# David McKnight (IBM) - [216252] [nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
|
||||
# David Dykstal (IBM) - [181331] new filter wizard title should be "New Filter"
|
||||
# David Dykstal (IBM) - [142452] copy operations for connections, filterpools, and filters should be named "Copy..."
|
||||
# David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
################################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_VAR
|
||||
|
@ -31,18 +32,12 @@ BUTTON_TEST=Test
|
|||
BUTTON_ADD=Add
|
||||
BUTTON_CREATE_LABEL=Create
|
||||
BUTTON_CREATE_TOOLTIP=Press to create the new resource
|
||||
BUTTON_APPLY_LABEL=Apply
|
||||
BUTTON_APPLY_TOOLTIP=Press to apply pending changes
|
||||
BUTTON_RESET_LABEL=Reset
|
||||
BUTTON_RESET_TOOLTIP=Press to reset to original values
|
||||
BUTTON_CANCEL_ALL = Cancel All
|
||||
BUTTON_CANCEL_ALL_TOOLTIP = Cancel for all
|
||||
|
||||
TERM_YES=Yes
|
||||
TERM_NO=No
|
||||
TERM_TRUE=True
|
||||
TERM_FALSE=False
|
||||
TERM_LOCAL=Local
|
||||
TERM_ALL=All
|
||||
|
||||
#=============================================================
|
||||
|
@ -51,7 +46,6 @@ TERM_ALL=All
|
|||
# RE-USABLE CONNECTION-SELECTION COMPOSITE WIDGETS
|
||||
WIDGET_CONNECTION_LABEL=Connection:
|
||||
WIDGET_CONNECTION_TOOLTIP=Select remote system connection
|
||||
WIDGET_CONNECTION_NAME=%1 in profile %2
|
||||
WIDGET_BUTTON_NEWCONNECTION_LABEL=New...
|
||||
WIDGET_BUTTON_NEWCONNECTION_TOOLTIP=Create a new remote system connection
|
||||
|
||||
|
@ -65,11 +59,6 @@ RESID_MSGLINE_TIP=Press to see additional message details
|
|||
# Preference pages
|
||||
##############################################################
|
||||
RESID_PREF_ROOT_PAGE=Remote Systems
|
||||
RESID_PREF_ROOT_TITLE=Remote Systems Overall Preferences
|
||||
RESID_PREF_SYSTEMTYPE_PREFIX_LABEL=Default System Type
|
||||
RESID_PREF_SYSTEMTYPE_PREFIX_TOOLTIP=Default for New Connection wizard
|
||||
RESID_PREF_USERID_PREFIX_LABEL=Overall Default User ID
|
||||
RESID_PREF_USERID_PREFIX_TOOLTIP=Overall default, overriddable per system type
|
||||
RESID_PREF_USERID_PERTYPE_PREFIX_LABEL=System type information
|
||||
RESID_PREF_USERID_PERTYPE_PREFIX_TOOLTIP=Set enablement state and default user ID for the selected system type. Press F1 for details.
|
||||
#RESID_PREF_USERID_PERTYPE_SYSTEMTYPES_LABEL=System Types
|
||||
|
@ -82,8 +71,6 @@ RESID_PREF_QUALIFYCONNECTIONNAMES_PREFIX_LABEL=Show connection names prefixed by
|
|||
RESID_PREF_QUALIFYCONNECTIONNAMES_PREFIX_TOOLTIP=Select this if two connections or filter pools have the same name across different profiles
|
||||
RESID_PREF_REMEMBERSTATE_PREFIX_LABEL=Re-open Remote Systems view to previous state
|
||||
RESID_PREF_REMEMBERSTATE_PREFIX_TOOLTIP=Re-expand previously expanded connections when starting up
|
||||
RESID_PREF_USEDEFERREDQUERIES_PREFIX_LABEL=Use deferred queries in the Remote Systems view
|
||||
RESID_PREF_USEDEFERREDQUERIES_PREFIX_TOOLTIP=Select this if, when expanding nodes in the Remote Systems view, you would like queries to happen asynchronously
|
||||
RESID_PREF_RESTOREFROMCACHE_PREFIX_LABEL=Use cached information to restore the Remote Systems view
|
||||
RESID_PREF_RESTOREFROMCACHE_PREFIX_TOOLTIP=If cached information is available then it is used to restore the Remote Systems view instead of connecting to the remote system
|
||||
RESID_PREF_SYSTYPE_COLHDG_NAME=System Type
|
||||
|
@ -91,17 +78,6 @@ RESID_PREF_SYSTYPE_COLHDG_ENABLED=Enabled
|
|||
RESID_PREF_SYSTYPE_COLHDG_DESC=Description
|
||||
RESID_PREF_SYSTYPE_COLHDG_USERID=Default User ID
|
||||
|
||||
##############################################################
|
||||
# Preference pages for general communications
|
||||
##############################################################
|
||||
RESID_PREF_IP_ADDRESS_LABEL= Workstation network address
|
||||
RESID_PREF_IP_AUTO_LABEL= Automatically detect IP address of workstation
|
||||
RESID_PREF_IP_AUTO_TOOLTIP= Allow automatic detection of the IP address of your workstation. This setting should work in most cases
|
||||
RESID_PREF_IP_MANUAL_LABEL= Specify IP address or host name of workstation
|
||||
RESID_PREF_IP_MANUAL_TOOLTIP= Specify the IP address or host name of your workstation
|
||||
RESID_PREF_IP_MANUAL_ENTER_LABEL= IP address or host name:
|
||||
RESID_PREF_IP_MANUAL_ENTER_TOOLTIP= Enter the IP address or host name of your workstation
|
||||
|
||||
##############################################################
|
||||
# Miscellaneous Actions that appear as either buttons and/or menu items.
|
||||
# Actions use the following keys:
|
||||
|
@ -137,7 +113,6 @@ RESID_PREF_IP_MANUAL_ENTER_TOOLTIP= Enter the IP address or host name of your wo
|
|||
#=============================================================
|
||||
RESID_RENAME_SINGLE_TITLE=Rename Resource
|
||||
RESID_SIMPLE_RENAME_PROMPT_LABEL=New name
|
||||
RESID_SIMPLE_RENAME_PROMPT_TOOLTIP=Enter unique new resource name
|
||||
RESID_SIMPLE_RENAME_RESOURCEPROMPT_LABEL=Resource type:
|
||||
RESID_SIMPLE_RENAME_RESOURCEPROMPT_TOOLTIP=Type of object being renamed
|
||||
RESID_SIMPLE_RENAME_RADIO_OVERWRITE_LABEL =Overwrite
|
||||
|
@ -174,14 +149,8 @@ RESID_DELETE_PROMPT_SINGLE=Delete selected resource?
|
|||
RESID_DELETE_COLHDG_OLDNAME=Resource
|
||||
RESID_DELETE_COLHDG_TYPE=Resource Type
|
||||
RESID_DELETE_BUTTON=Delete
|
||||
RESID_DELETE_TIP=Confirm delete request
|
||||
|
||||
RESID_DELETE_RESOURCEPROMPT_LABEL=Selected resource(s) type:
|
||||
RESID_DELETE_RESOURCEPROMPT_TOOLTIP=Type of object(s) being deleted
|
||||
RESID_DELETE_WARNING_LABEL=WARNING! Remote objects are permanently deleted!
|
||||
RESID_DELETE_WARNING_TOOLTIP=You are confirming permanent deletion of the selected resource(s) from the remote system. This action cannot be undone
|
||||
RESID_DELETE_WARNINGLOCAL_LABEL=WARNING! Local objects are permanently deleted!
|
||||
RESID_DELETE_WARNINGLOCAL_TOOLTIP=You are confirming permanent deletion of the selected resource(s) from the local system. This action cannot be undone
|
||||
|
||||
# SPECIALIZED PROMPTS FOR SPECIFIC TYPES OF RESOURCES...
|
||||
RESID_DELETE_PROFILES_PROMPT=Delete selected profiles, including their connections, filters and user actions?
|
||||
|
@ -195,7 +164,6 @@ RESID_COPY_TITLE=Copy Resources
|
|||
RESID_COPY_PROMPT=Select the copy destination
|
||||
RESID_COPY_TARGET_PROFILE_PROMPT=Select the active profile to copy into
|
||||
RESID_COPY_TARGET_FILTERPOOL_PROMPT=Select the filter pool to copy into
|
||||
RESID_COPY_TARGET_FILTER_PROMPT=Select the filter to copy into
|
||||
|
||||
#=============================================================
|
||||
# GENERIC MOVE DIALOG...
|
||||
|
@ -205,7 +173,6 @@ RESID_MOVE_TITLE=Move Resources
|
|||
RESID_MOVE_PROMPT=Select the move destination
|
||||
RESID_MOVE_TARGET_PROFILE_PROMPT=Select the active profile to move into
|
||||
RESID_MOVE_TARGET_FILTERPOOL_PROMPT=Select the filter pool to move into
|
||||
RESID_MOVE_TARGET_FILTER_PROMPT=Select the filter to move into
|
||||
|
||||
#=============================================================
|
||||
# GENERIC COPY/MOVE NAME-COLLISION DIALOG...
|
||||
|
@ -213,25 +180,8 @@ RESID_MOVE_TARGET_FILTER_PROMPT=Select the filter to move into
|
|||
RESID_COLLISION_RENAME_TITLE=Duplicate Name Collision
|
||||
RESID_COLLISION_RENAME_VERBIAGE=A resource named "&1" already exists.
|
||||
RESID_COLLISION_RENAME_LABEL=Rename to
|
||||
RESID_COLLISION_RENAME_TOOLTIP=Enter unique new resource name
|
||||
|
||||
|
||||
#=============================================================
|
||||
# USERID PER SYSTEMTYPE DIALOG...
|
||||
#=============================================================
|
||||
RESID_USERID_PER_SYSTEMTYPE_TITLE=Default User ID Preference
|
||||
RESID_USERID_PER_SYSTEMTYPE_SYSTEMTYPE_LABEL=System type:
|
||||
RESID_USERID_PER_SYSTEMTYPE_SYSTEMTYPE_TOOLTIP=The system type to set the default user ID for
|
||||
RESID_USERID_PER_SYSTEMTYPE_LABEL=User ID
|
||||
RESID_USERID_PER_SYSTEMTYPE_TOOLTIP=Enter default user ID to use for all connections of this system type
|
||||
|
||||
|
||||
#=============================================================
|
||||
# SELECT CONNECTION DIALOG...
|
||||
#=============================================================
|
||||
RESID_SELECTCONNECTION_TITLE=Select Connection
|
||||
RESID_SELECTCONNECTION_VERBIAGE=Select a connection
|
||||
|
||||
#=============================================================
|
||||
# NEW PROFILE WIZARD...
|
||||
#=============================================================
|
||||
|
@ -248,7 +198,6 @@ RESID_NEWPROFILE_MAKEACTIVE_TOOLTIP=Show connections in this profile
|
|||
# NEW CONNECTION PROMPT ("New Connection..." SPECIAL CONNECTION IN RSE)
|
||||
#======================================================================
|
||||
RESID_NEWCONN_PROMPT_LABEL=New Connection
|
||||
RESID_NEWCONN_PROMPT_TOOLTIP=Expand to create a new connection to a remote system
|
||||
RESID_NEWCONN_PROMPT_VALUE=A prompt for a new connection
|
||||
RESID_NEWCONN_EXPANDABLEPROMPT_VALUE=An expandable prompt for a new connection
|
||||
|
||||
|
@ -275,8 +224,6 @@ RESID_NEWCONN_SUBSYSTEMPAGE_FILES_VERBIAGE2=If you manually start the communicat
|
|||
#=============================================================
|
||||
# RENAME PROFILE PAGE...
|
||||
#=============================================================
|
||||
RESID_RENAMEDEFAULTPROFILE_PAGE1_TITLE=Name personal profile
|
||||
RESID_RENAMEDEFAULTPROFILE_PAGE1_DESCRIPTION=Uniquely name user profile
|
||||
RESID_PROFILE_PROFILENAME_LABEL=Profile
|
||||
RESID_PROFILE_PROFILENAME_TIP=New name for the profile
|
||||
RESID_PROFILE_PROFILENAME_VERBIAGE=Welcome to Remote Systems. Connections can be sharable by the team or private to you. Enter a profile name to uniquely identify you from your team members. You will decide for each new connection whether it is owned by the team profile or your profile.
|
||||
|
@ -292,15 +239,12 @@ RESID_COPY_PROFILE_PROMPT_TOOLTIP=Enter a unique name for the new profile
|
|||
#=============================================================
|
||||
# UPDATE CONNECTION DIALOG...
|
||||
#=============================================================
|
||||
RESID_CHGCONN_TITLE=Change Connection
|
||||
|
||||
RESID_CONNECTION_TYPE_LABEL=Resource type
|
||||
RESID_CONNECTION_TYPE_VALUE=Connection to remote system
|
||||
|
||||
RESID_CONNECTION_SYSTEMTYPE_LABEL=System type
|
||||
RESID_CONNECTION_SYSTEMTYPE_TIP=Operating system type of the remote host
|
||||
|
||||
RESID_CONNECTION_SYSTEMTYPE_READONLY_LABEL=System type
|
||||
RESID_CONNECTION_SYSTEMTYPE_READONLY_TIP=Operating system type of the remote host
|
||||
|
||||
RESID_CONNECTION_CONNECTIONNAME_LABEL=Connection name
|
||||
|
@ -309,28 +253,17 @@ RESID_CONNECTION_CONNECTIONNAME_TIP=Arbitrary name for this connection, unique t
|
|||
RESID_CONNECTION_HOSTNAME_LABEL=Host name
|
||||
RESID_CONNECTION_HOSTNAME_TIP=Hostname or IP address of target system
|
||||
|
||||
RESID_CONNECTION_HOSTNAME_READONLY_LABEL=Host name
|
||||
RESID_CONNECTION_HOSTNAME_READONLY_TIP=Hostname or IP address of system this connects to
|
||||
|
||||
RESID_CONNECTION_USERID_LABEL=User ID
|
||||
RESID_CONNECTION_USERID_TIP=User ID to use when connecting
|
||||
|
||||
RESID_CONNECTION_DEFAULTUSERID_LABEL=Default User ID
|
||||
RESID_CONNECTION_DEFAULTUSERID_TIP=Default user ID for subsystems that don't specify a user ID
|
||||
RESID_CONNECTION_DEFAULTUSERID_INHERITBUTTON_TIP=Inherit from preferences, or set locally for this connection
|
||||
|
||||
RESID_CONNECTION_RUNNING_PORT_LABEL=Running Server Port
|
||||
RESID_CONNECTION_RUNNING_PORT_TIP=Port number used by a running server
|
||||
|
||||
RESID_CONNECTION_PORT_LABEL=Port
|
||||
RESID_CONNECTION_PORT_TIP=Port number used to do the connection
|
||||
|
||||
RESID_CONNECTION_DAEMON_PORT_LABEL=Daemon Port
|
||||
RESID_CONNECTION_DAEMON_PORT_TIP=Port number used to connect to the daemon that launches Remote System Explorer servers
|
||||
|
||||
RESID_CONNECTION_DEFAULTPORT_LABEL=Default port
|
||||
RESID_CONNECTION_DEFAULTPORT_TIP=Default port for subsystems
|
||||
|
||||
RESID_CONNECTION_DESCRIPTION_LABEL=Description
|
||||
RESID_CONNECTION_DESCRIPTION_TIP=Commentary description of the connection
|
||||
|
||||
|
@ -346,13 +279,11 @@ RESID_CONNECTION_VERIFYHOSTNAME_TOOLTIP=Verify a host of the given name or IP ad
|
|||
#=============================================================
|
||||
# SYSTEMREGISTRY PROPERTY PAGE DIALOG...
|
||||
#=============================================================
|
||||
RESID_SYSTEMREGISTRY_TEXT=RemoteSystemsConnections project
|
||||
RESID_SYSTEMREGISTRY_CONNECTIONS=Connections
|
||||
|
||||
#=============================================================
|
||||
# SUBSYSTEM PROPERTY PAGE DIALOG...
|
||||
#=============================================================
|
||||
RESID_SUBSYSTEM_TITLE=Properties for Subsystem
|
||||
RESID_SUBSYSTEM_NAME_LABEL=Name
|
||||
RESID_SUBSYSTEM_TYPE_LABEL=Resource type
|
||||
RESID_SUBSYSTEM_TYPE_VALUE=Subsystem
|
||||
|
@ -362,13 +293,9 @@ RESID_SUBSYSTEM_PROFILE_LABEL=Parent profile
|
|||
RESID_SUBSYSTEM_PORT_LABEL=Port
|
||||
RESID_SUBSYSTEM_PORT_TIP=Port number to connect with
|
||||
RESID_SUBSYSTEM_PORT_INHERITBUTTON_TIP=Use first available port, or explicitly set the port number
|
||||
RESID_SUBSYSTEM_PORT_INHERITBUTTON_INHERIT_TIP=Click to explicitly set the port number
|
||||
RESID_SUBSYSTEM_PORT_INHERITBUTTON_LOCAL_TIP=Click to use first available port
|
||||
RESID_SUBSYSTEM_USERID_LABEL=User ID
|
||||
RESID_SUBSYSTEM_USERID_TIP=User ID to connect with
|
||||
RESID_SUBSYSTEM_USERID_INHERITBUTTON_TIP=Inherit user ID from connection, or set locally for this subsystem
|
||||
RESID_SUBSYSTEM_USERID_INHERITBUTTON_INHERIT_TIP=Click to explicitly set the user ID for this subsystem
|
||||
RESID_SUBSYSTEM_USERID_INHERITBUTTON_LOCAL_TIP=Click to inherit the user ID from the connection
|
||||
|
||||
# Communications property page
|
||||
RESID_SUBSYSTEM_SSL_LABEL=Use SSL for network communications
|
||||
|
@ -383,7 +310,6 @@ RESID_SUBSYSTEM_NONSSL_ALERT_TIP=Show a confirmation dialog when no security lay
|
|||
# Single signon (Kerberos) Properties Page
|
||||
|
||||
# Environment Properties Page
|
||||
RESID_SUBSYSTEM_ENVVAR_TITLE= Environment Variables
|
||||
RESID_SUBSYSTEM_ENVVAR_DESCRIPTION= Specify the environment variables that will be set when a connection is established:
|
||||
RESID_SUBSYSTEM_ENVVAR_TOOLTIP= The environment variables that will be set when a connection is established
|
||||
|
||||
|
@ -412,7 +338,6 @@ RESID_SUBSYSTEM_ENVVAR_CHANGE_TITLE= Change Environment Variable
|
|||
# PROPERTY PAGE DIALOG...
|
||||
#=============================================================
|
||||
RESID_PROP_SERVERLAUNCHER_MEANS=Indicate how the remote server should be launched
|
||||
RESID_PROP_SERVERLAUNCHER_MEANS_LABEL=Launcher
|
||||
RESID_PROP_SERVERLAUNCHER_RADIO_DAEMON=Remote daemon
|
||||
RESID_PROP_SERVERLAUNCHER_RADIO_REXEC=REXEC
|
||||
RESID_PROP_SERVERLAUNCHER_RADIO_NONE=Connect to running server
|
||||
|
@ -446,7 +371,6 @@ RESID_PP_PROPERTIES_TYPE_TOOLTIP=What type of artifact is this?
|
|||
#=============================================================
|
||||
# FILTERPOOL PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_FILTERPOOL_TITLE=Properties for Filter Pool
|
||||
RESID_FILTERPOOL_TYPE_VALUE=Filter pool
|
||||
|
||||
RESID_FILTERPOOL_NAME_LABEL=Name
|
||||
|
@ -464,7 +388,6 @@ RESID_FILTERPOOL_RELATEDCONNECTION_TOOLTIP=Name of the single connection this po
|
|||
#=============================================================
|
||||
# FILTERPOOL REFERENCE PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_FILTERPOOLREF_TITLE=Properties for Filter Pool Reference
|
||||
RESID_FILTERPOOLREF_TYPE_VALUE=Reference to filter pool
|
||||
|
||||
RESID_FILTERPOOLREF_NAME_LABEL=Name
|
||||
|
@ -482,7 +405,6 @@ RESID_FILTERPOOLREF_PROFILE_TOOLTIP=The profile which owns the connection contai
|
|||
#=============================================================
|
||||
# FILTER PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_PP_FILTER_TITLE_LABEL=Properties for Filter
|
||||
RESID_PP_FILTER_TYPE_VALUE=Filter
|
||||
RESID_PP_FILTER_TYPE_PROMPTABLE_VALUE=Prompting filter
|
||||
RESID_PP_FILTER_TYPE_PROMPTABLE_TOOLTIP=Whether this is a filter that prompts the user when its expanded
|
||||
|
@ -502,22 +424,12 @@ RESID_PP_FILTER_PROFILE_TOOLTIP=The profile which contains the filter pool with
|
|||
RESID_PP_FILTER_ISCONNECTIONPRIVATE_LABEL=Connection private
|
||||
RESID_PP_FILTER_ISCONNECTIONPRIVATE_TOOLTIP=Whether this is a filter contained in a filter pool that is private to a single connection
|
||||
|
||||
#=============================================================
|
||||
# FILTERSTRING PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_PP_FILTERSTRING_TITLE=Properties for Filter String
|
||||
RESID_PP_FILTERSTRING_TYPE_VALUE=Filter string
|
||||
|
||||
#=============================================================
|
||||
# FILTERSTRING PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_PP_FILTERSTRING_TITLE=Properties for Filter String
|
||||
|
||||
RESID_PP_FILTERSTRING_TYPE_VALUE==Filter string
|
||||
|
||||
RESID_PP_FILTERSTRING_STRING_LABEL=String
|
||||
RESID_PP_FILTERSTRING_STRING_TOOLTIP=The actual filter string
|
||||
|
||||
RESID_PP_FILTERSTRING_FILTER_LABEL=Parent filter
|
||||
RESID_PP_FILTERSTRING_FILTER_TOOLTIP=The filter that contains this filter string
|
||||
|
||||
|
@ -530,7 +442,6 @@ RESID_PP_FILTERSTRING_PROFILE_TOOLTIP=The profile that contains the filter pool
|
|||
#=============================================================
|
||||
# SUBSYSTEMFACTORY PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
RESID_PP_SUBSYSFACTORY_TITLE=Properties for SubSystem Factory
|
||||
RESID_PP_SUBSYSFACTORY_VERBIAGE=A subsystem factory is responsible for creating and owning subsystem instances, one per connection typically. They may also contain, per profile, team-sharable artifacts.
|
||||
|
||||
RESID_PP_SUBSYSFACTORY_ID_LABEL=Identifier
|
||||
|
@ -561,15 +472,6 @@ RESID_NEWFILTER_PAGE3_DESCRIPTION=Additional Information
|
|||
RESID_NEWFILTER_PAGE3_STRINGS_VERBIAGE=Tip: Filters can contain multiple filter strings, although this wizard only prompts for one. To add more filter strings, select the filter in the Remote Systems view, and select the Change action from its pop-up menu.
|
||||
RESID_NEWFILTER_PAGE3_POOLS_VERBIAGE=Tip: Too many filters? Turn on "Show filter pools in Remote Systems view." Select Preferences from the Window pulldown, then Remote Systems.
|
||||
|
||||
RESID_FILTERALIAS_LABEL=Filter name:
|
||||
RESID_FILTERALIAS_TIP=Enter filter name unique for this filter pool
|
||||
RESID_FILTERPARENTPOOL_LABEL=Parent filter pool:
|
||||
RESID_FILTERPARENTPOOL_TIP=Filter pool in which this filter will be created
|
||||
RESID_FILTERSTRINGS_LABEL=Filter Strings
|
||||
RESID_FILTERSTRINGS_TIP=Strings to filter by. Use the pop-up menu for additional actions
|
||||
RESID_NEWFILTER_POOLTIP=Tip: too many filters? Turn on "Show filter pools in Remote Systems view." Select Preferences from the Windows pulldown, then Remote Systems.
|
||||
|
||||
|
||||
#=============================================================
|
||||
# CHANGE SYSTEM FILTER DIALOG...
|
||||
#=============================================================
|
||||
|
@ -581,7 +483,6 @@ RESID_CHGFILTER_POOL_LABEL=Parent filter pool:
|
|||
RESID_CHGFILTER_POOL_TOOLTIP=Filter pool in which this filter exists
|
||||
RESID_CHGFILTER_LIST_LABEL=Filter strings:
|
||||
RESID_CHGFILTER_LIST_TOOLTIP=Strings to filter by. Use the pop-up menu for additional actions
|
||||
RESID_CHGFILTER_LIST_NEWITEM=New filter string
|
||||
RESID_CHGFILTER_FILTERSTRING_LABEL=Selected filter string:
|
||||
RESID_CHGFILTER_FILTERSTRING_TOOLTIP=Edit the filter string and press Apply to change it in the list
|
||||
RESID_CHGFILTER_NEWFILTERSTRING_LABEL=New filter string:
|
||||
|
@ -592,47 +493,19 @@ RESID_CHGFILTER_BUTTON_APPLY_LABEL=Apply
|
|||
RESID_CHGFILTER_BUTTON_APPLY_TOOLTIP=Press to apply the changes to the currently selected filter string
|
||||
RESID_CHGFILTER_BUTTON_REVERT_LABEL=Revert
|
||||
RESID_CHGFILTER_BUTTON_REVERT_TOOLTIP=Press to revert to the last saved values for the currently selected filter string
|
||||
RESID_CHGFILTER_BUTTON_CREATE_LABEL=Create
|
||||
RESID_CHGFILTER_BUTTON_CREATE_TOOLTIP=Press to create a new filter string in this filter
|
||||
|
||||
#=============================================================
|
||||
# CREATE UNNAMED FILTER DIALOG...
|
||||
#=============================================================
|
||||
RESID_CRTFILTER_TITLE=Create Filter
|
||||
|
||||
#=============================================================
|
||||
# RENAME FILTER DIALOG...
|
||||
#=============================================================
|
||||
RESID_RENAME_FILTER_TITLE=Rename Filter
|
||||
RESID_RENAME_FILTER_PROMPT=Enter the new filter name
|
||||
#=============================================================
|
||||
# COPY FILTER DIALOG...
|
||||
#=============================================================
|
||||
RESID_COPY_FILTER_TITLE=Copy Filter
|
||||
RESID_COPY_FILTER_PROMPT=Select system to copy to
|
||||
|
||||
#=============================================================
|
||||
# NEW FILTER STRING ACTION AND WIZARD...
|
||||
#=============================================================
|
||||
RESID_NEWFILTERSTRING_TITLE=New System Filter
|
||||
RESID_NEWFILTERSTRING_ADD_TITLE=Add...
|
||||
RESID_NEWFILTERSTRING_PAGE1_TITLE=System Filter String
|
||||
RESID_NEWFILTERSTRING_PAGE1_DESCRIPTION=Create a new filter string
|
||||
|
||||
RESID_NEWFILTERSTRING_PREFIX_LABEL=Add...
|
||||
RESID_NEWFILTERSTRING_PREFIX_TOOLTIP=Add a new filter string
|
||||
|
||||
RESID_NEWFILTERSTRING_PREFIX_PROMPT=Enter a filter string
|
||||
|
||||
RESID_FILTERSTRING_STRING_LABEL=Filter string:
|
||||
RESID_FILTERSTRING_STRING_TIP=Enter a filter string
|
||||
|
||||
#=============================================================
|
||||
# CHANGE FILTER STRING ACTION AND DIALOG...
|
||||
#=============================================================
|
||||
RESID_CHGFILTERSTRING_PREFIX_LABEL=Change...
|
||||
RESID_CHGFILTERSTRING_PREFIX_TOOLTIP=Change selected filter string
|
||||
RESID_CHGFILTERSTRING_TITLE=Change Filter String
|
||||
RESID_CHGFILTERSTRING_PREFIX_PROMPT=Edit the filter string
|
||||
|
||||
#=============================================================
|
||||
# TEST FILTER STRING DIALOG...
|
||||
|
@ -640,19 +513,8 @@ RESID_CHGFILTERSTRING_PREFIX_PROMPT=Edit the filter string
|
|||
RESID_TESTFILTERSTRING_TITLE=Test Filter String
|
||||
RESID_TESTFILTERSTRING_PROMPT_LABEL=Filter string:
|
||||
RESID_TESTFILTERSTRING_PROMPT_TOOLTIP=Filter string being tested
|
||||
RESID_TESTFILTERSTRING_TREE_TIP=Results of resolving the filter string
|
||||
|
||||
|
||||
#=============================================================
|
||||
# SELECT REMOTE OBJECT DIALOG...
|
||||
#=============================================================
|
||||
# unused
|
||||
#RESID_SELECTREMOTEOBJECT_PREFIX_QUICKFILTERSTRINGS_LABEL=Quick filter string:
|
||||
#RESID_SELECTREMOTEOBJECT_PREFIX_QUICKFILTERSTRINGS_TOOLTIP=Enter simple or generic name to change contents of tree view
|
||||
#RESID_SELECTREMOTEOBJECT_PREFIX_GETLISTBUTTON_LABEL=Get list
|
||||
#RESID_SELECTREMOTEOBJECT_PREFIX_GETLISTBUTTON_TOOLTIP=Resolves entered filter string and populates tree
|
||||
#RESID_SELECTREMOTEOBJECT_EXISTINGFILTERSTRINGS=Existing filter strings
|
||||
|
||||
#=============================================================
|
||||
# PROMPT FOR PASSWORD DIALOG...
|
||||
#=============================================================
|
||||
|
@ -697,7 +559,6 @@ RESID_WORKWITHFILTERPOOLS_PROMPT=Work with filter pools
|
|||
RESID_WORKWITHHISTORY_TITLE=Work With History
|
||||
RESID_WORKWITHHISTORY_VERBIAGE=Remove or re-order history for this GUI control
|
||||
RESID_WORKWITHHISTORY_PROMPT=History
|
||||
RESID_WORKWITHHISTORY_BUTTON_LABEL=...
|
||||
RESID_WORKWITHHISTORY_BUTTON_TIP=Bring up the Work With History dialog
|
||||
|
||||
#=============================================================
|
||||
|
@ -713,16 +574,6 @@ RESID_TEAMVIEW_CATEGORY_CONNECTIONS_TOOLTIP=Lists all connections in this profil
|
|||
RESID_TEAMVIEW_CATEGORY_FILTERPOOLS_LABEL=Filter pools
|
||||
RESID_TEAMVIEW_CATEGORY_FILTERPOOLS_TOOLTIP=Lists all filter pools and filters in this profile, per subsystem type that contains them.
|
||||
|
||||
RESID_TEAMVIEW_CATEGORY_USERACTIONS_LABEL=User actions
|
||||
RESID_TEAMVIEW_CATEGORY_USERACTIONS_TOOLTIP=Lists all user actions defined in this profile, per subsystem type that contains them.
|
||||
|
||||
RESID_TEAMVIEW_CATEGORY_COMPILECMDS_LABEL=Compile commands
|
||||
RESID_TEAMVIEW_CATEGORY_COMPILECMDS_TOOLTIP=Lists all compile commands defined in this profile, per subsystem type that contains them.
|
||||
|
||||
RESID_TEAMVIEW_CATEGORY_TARGETS_LABEL=Targets
|
||||
RESID_TEAMVIEW_CATEGORY_TARGETS_TOOLTIP=Lists all targets defined in this profile, per subsystem type that contains them. Targets are used in remote-enabled projects.
|
||||
|
||||
|
||||
#=============================================================
|
||||
# Specific actions. All actions support:
|
||||
# .label for button/menu-item text
|
||||
|
@ -756,31 +607,15 @@ ACTION_REMOTESERVER_START_TOOLTIP=Start this server/daemon on the remote system
|
|||
ACTION_REMOTESERVER_STOP_LABEL=Stop
|
||||
ACTION_REMOTESERVER_STOP_TOOLTIP=Stop this server/daemon on the remote system
|
||||
|
||||
ACTION_CASCADING_EXPAND_LABEL=Expand
|
||||
ACTION_CASCADING_EXPAND_TOOLTIP=Expand children with or without subsetting criteria
|
||||
ACTION_CASCADING_EXPAND_TO_LABEL=Expand To
|
||||
ACTION_CASCADING_EXPAND_TO_TOOLTIP=Expand children with subsetting criteria
|
||||
ACTION_CASCADING_EXPAND_ALL_LABEL=All
|
||||
ACTION_CASCADING_EXPAND_ALL_TOOLTIP=Expand to show all children
|
||||
ACTION_CASCADING_EXPAND_BY_LABEL=By New Expansion Filter...
|
||||
ACTION_CASCADING_EXPAND_BY_TOOLTIP=Specify subsetting criteria for children
|
||||
ACTION_CASCADING_EXPAND_WORKWITH_LABEL=History...
|
||||
ACTION_CASCADING_EXPAND_WORKWITH_TOOLTIP=Work with history of expansion filters
|
||||
|
||||
ACTION_CASCADING_VIEW_LABEL=View
|
||||
ACTION_CASCADING_VIEW_TOOLTIP=Set viewing options
|
||||
|
||||
ACTION_CASCADING_USERID_LABEL=Default User ID
|
||||
ACTION_CASCADING_USERID_TOOLTIP=Set default user ID per remote system type
|
||||
|
||||
ACTION_CASCADING_PREFERENCES_LABEL=Preferences
|
||||
ACTION_CASCADING_PREFERENCES_TOOLTIP=Go to the appropriate preferences page
|
||||
|
||||
ACTION_CASCADING_TEAM_LABEL=Team
|
||||
ACTION_CASCADING_TEAM_TOOLTIP=Team repository related actions
|
||||
ACTION_TEAM_SYNC_LABEL=Synchronize with Stream
|
||||
ACTION_TEAM_SYNC_TOOLTIP=Send and receive changes to and from team repository
|
||||
|
||||
ACTION_CASCADING_PULLDOWN_LABEL=Profile actions
|
||||
ACTION_CASCADING_PULLDOWN_TOOLTIP=Remote system profile actions
|
||||
|
||||
|
@ -790,9 +625,6 @@ ACTION_CASCADING_FILTERPOOL_NEWREFERENCE_TOOLTIP=Add new reference to existing f
|
|||
ACTION_TEAM_RELOAD_LABEL=Reload Remote System Explorer
|
||||
ACTION_TEAM_RELOAD_TOOLTIP=Reload the Remote System Explorer contents, after synchronizing with a shared repository
|
||||
|
||||
ACTION_PROFILE_ACTIVATE_LABEL=Active
|
||||
ACTION_PROFILE_ACTIVATE_TOOLTIP=Toggle profile between active and not active
|
||||
|
||||
ACTION_PROFILE_MAKEACTIVE_LABEL=Make Active
|
||||
ACTION_PROFILE_MAKEACTIVE_TOOLTIP=Make the selected profile(s) active, so its connections, filters and so on are visible in the Remote Systems view.
|
||||
|
||||
|
@ -826,36 +658,18 @@ ACTION_NEWCONN_TOOLTIP=Define a connection to remote system
|
|||
ACTION_ANOTHERCONN_LABEL=Connection...
|
||||
ACTION_ANOTHERCONN_TOOLTIP=Define another connection to the same or another remote system
|
||||
|
||||
ACTION_UPDATECONN_LABEL=Change
|
||||
ACTION_UPDATECONN_TOOLTIP=Change information
|
||||
|
||||
ACTION_NEWFILTERSTRING_LABEL=Filter String...
|
||||
ACTION_NEWFILTERSTRING_TOOLTIP=Create new filter string for this filter
|
||||
|
||||
ACTION_ADDFILTERSTRING_LABEL=Add...
|
||||
ACTION_ADDFILTERSTRING_TOOLTIP=Create new filter string
|
||||
|
||||
ACTION_UPDATEFILTER_LABEL=Change...
|
||||
ACTION_UPDATEFILTER_TOOLTIP=Change this filter's name or contents
|
||||
|
||||
ACTION_UPDATEFILTERSTRING_LABEL=Change
|
||||
ACTION_UPDATEFILTERSTRING_TOOLTIP=Change this filter string
|
||||
|
||||
ACTION_TESTFILTERSTRING_LABEL=Test
|
||||
ACTION_TESTFILTERSTRING_TOOLTIP=Test this filter string by resolving it
|
||||
|
||||
ACTION_NEWFILTER_LABEL=Filter...
|
||||
ACTION_NEWFILTER_TOOLTIP=Create new filter for this filter pool
|
||||
|
||||
ACTION_NEWNESTEDFILTER_LABEL=Nested Filter...
|
||||
ACTION_NEWNESTEDFILTER_TOOLTIP=Create new filter inside this filter
|
||||
|
||||
ACTION_NEWFILTERPOOL_LABEL=Filter Pool...
|
||||
ACTION_NEWFILTERPOOL_TOOLTIP=Create new pool to hold filters
|
||||
|
||||
ACTION_ADDFILTERPOOLREF_LABEL=Add Filter Pool Reference
|
||||
ACTION_ADDFILTERPOOLREF_TOOLTIP=Add a reference to another existing filter pool
|
||||
|
||||
ACTION_RMVFILTERPOOLREF_LABEL=Remove Reference
|
||||
ACTION_RMVFILTERPOOLREF_TOOLTIP=Remove filter pool reference
|
||||
|
||||
|
@ -886,8 +700,6 @@ ACTION_WORKWITH_PROFILES_TOOLTIP=Switch to the Team view to work with profiles
|
|||
ACTION_RUN_LABEL=Run
|
||||
ACTION_RUN_TOOLTIP=Run this prompt. Same as expanding it
|
||||
|
||||
ACTION_SIMPLERENAME_LABEL=Rename...
|
||||
ACTION_SIMPLERENAME_TOOLTIP=Rename selected resources
|
||||
|
||||
ACTION_REFRESH_ALL_LABEL=Refresh All
|
||||
ACTION_REFRESH_ALL_TOOLTIP=Refresh all resource information
|
||||
|
@ -923,6 +735,7 @@ ACTION_MOVEUP_TOOLTIP=Move selected resources up by one
|
|||
ACTION_MOVEDOWN_LABEL=Move Down
|
||||
ACTION_MOVEDOWN_TOOLTIP=Move selected resources down by one
|
||||
|
||||
# leave moveuplevel for now even though used since the tooltip is used
|
||||
ACTION_MOVEUPLEVEL_LABEL=Move up one level
|
||||
ACTION_MOVEUPLEVEL_TOOLTIP=Move selected resources up one level
|
||||
|
||||
|
@ -1004,18 +817,12 @@ ACTION_MOVE_FILTER_TOOLTIP=Move selected filter to a different filter pool
|
|||
ACTION_MOVE_FILTERSTRING_LABEL=Move...
|
||||
ACTION_MOVE_FILTERSTRING_TOOLTIP=Move selected filter string to a different filter
|
||||
|
||||
ACTION_TEAM_BROWSEHISTORY_LABEL=Show in Resource History
|
||||
ACTION_TEAM_BROWSEHISTORY_TOOLTIP=Display the version history of this resource
|
||||
|
||||
ACTION_TABLE_LABEL=Show in Table
|
||||
ACTION_TABLE_TOOLTIP=Display the contents of this resource in a table
|
||||
|
||||
ACTION_MONITOR_LABEL=Monitor
|
||||
ACTION_MONITOR_TOOLTIP=Display the contents of this resource in a monitoring table
|
||||
|
||||
ACTION_ERROR_LIST_LABEL=Show Subsequent Problems in Error List
|
||||
ACTION_ERROR_LIST_TOOLTIP=Display all errors, warnings and informational messages that appear from here on in this shell in the Remote Error List view.
|
||||
|
||||
ACTION_SEARCH_LABEL=Search...
|
||||
ACTION_SEARCH_TOOLTIP=Opens a dialog to search for text and files
|
||||
|
||||
|
@ -1040,27 +847,9 @@ ACTION_PRINTLIST_TOOLTIP=Print the current table
|
|||
ACTION_SELECTCOLUMNS_LABEL=Customize Table...
|
||||
ACTION_SELECTCOLUMNS_TOOLTIP=Select columns to display in the table
|
||||
|
||||
ACTION_OPENEXPLORER_CASCADE_LABEL=Open Explorer
|
||||
ACTION_OPENEXPLORER_CASCADE_TOOLTIP=Explore this resource in its own view
|
||||
|
||||
ACTION_OPENEXPLORER_SAMEPERSP_LABEL=In Same Perspective
|
||||
ACTION_OPENEXPLORER_SAMEPERSP_TOOLTIP=Open a new Remote Systems view rooted at this resource
|
||||
|
||||
ACTION_OPENEXPLORER_DIFFPERSP_LABEL=In New Perspective
|
||||
ACTION_OPENEXPLORER_DIFFPERSP_TOOLTIP=Open a new Remote System Explorer perspective rooted at this resource
|
||||
|
||||
ACTION_OPENEXPLORER_DIFFPERSP2_LABEL=Open in New Window
|
||||
ACTION_OPENEXPLORER_DIFFPERSP2_TOOLTIP=Open a new workbench window, with the Remote Systems view rooted at this resource
|
||||
|
||||
ACTION_REMOTE_PROPERTIES_LABEL=Properties
|
||||
ACTION_REMOTE_PROPERTIES_TOOLTIP=Shows remote object properties
|
||||
|
||||
ACTION_VIEWFORM_REFRESH_LABEL=Refresh
|
||||
ACTION_VIEWFORM_REFRESH_TOOLTIP=Refresh all resource information from disk
|
||||
|
||||
ACTION_VIEWFORM_GETLIST_LABEL=Get List
|
||||
ACTION_VIEWFORM_GETLIST_TOOLTIP=Retrieve list and populate tree view
|
||||
|
||||
ACTION_EXPAND_SELECTED_LABEL=Expand
|
||||
ACTION_EXPAND_SELECTED_TOOLTIP=Expand selected elements. '+'
|
||||
|
||||
|
@ -1070,15 +859,9 @@ ACTION_COLLAPSE_SELECTED_TOOLTIP=Collapse selected elements. '-'
|
|||
ACTION_COLLAPSE_ALL_LABEL=Collapse All
|
||||
ACTION_COLLAPSE_ALL_TOOLTIP=Collapse whole tree. Ctrl+-
|
||||
|
||||
ACTION_EXPAND_BY_LABEL=Expand By
|
||||
ACTION_EXPAND_BY_TOOLTIP=Expand with subsetting
|
||||
|
||||
ACTION_EXPAND_ALL_LABEL=All
|
||||
ACTION_EXPAND_ALL_TOOLTIP=Show all contents
|
||||
|
||||
ACTION_EXPAND_OTHER_LABEL=All
|
||||
ACTION_EXPAND_OTHER_TOOLTIP=Specify subset criteria for expansion
|
||||
|
||||
ACTION_SELECT_ALL_LABEL=Select All
|
||||
ACTION_SELECT_ALL_TOOLTIP=Select all child elements. '+'
|
||||
|
||||
|
@ -1086,149 +869,11 @@ ACTION_SELECT_INPUT_LABEL=Select Input...
|
|||
ACTION_SELECT_INPUT_DLG=Select Input
|
||||
ACTION_SELECT_INPUT_TOOLTIP=Select the input for the view
|
||||
|
||||
ACTION_SELECTCONNECTION_LABEL=Select Connection
|
||||
ACTION_SELECTCONNECTION_TOOLTIP=Bring up a dialog for selecting a connection
|
||||
|
||||
RESID_USERID_PER_SYSTEMTYPE_LABEL=Default User ID
|
||||
RESID_USERID_PER_SYSTEMTYPE_TOOLTIP=Set default user ID per remote system type
|
||||
|
||||
#=============================================================
|
||||
# Common actions OR menuitems. All actions support:
|
||||
# .label for button/menu-item text
|
||||
# .tooltip for hover help on pushbuttons
|
||||
#=============================================================
|
||||
RESID_CHANGE_PREFIX_LABEL=Change
|
||||
RESID_CHANGE_PREFIX_TOOLTIP=Change selected item
|
||||
|
||||
RESID_CHANGEVIAENTRY_PREFIX_LABEL=Change
|
||||
RESID_CHANGEVIAENTRY_PREFIX_TOOLTIP=Replace selected list item with entry field contents
|
||||
|
||||
RESID_ADDVIAENTRY_PREFIX_LABEL=Add
|
||||
RESID_ADDVIAENTRY_PREFIX_TOOLTIP=Add entry field contents to list
|
||||
|
||||
RESID_COPYFROM_PREFIX_LABEL=Copy From...
|
||||
RESID_COPYFROM_PREFIX_TOOLTIP=Copy items here from another source
|
||||
|
||||
RESID_COPYTO_PREFIX_LABEL=Copy To...
|
||||
RESID_COPYTO_PREFIX_TOOLTIP=Copy selected items
|
||||
|
||||
RESID_DUPLICATE_PREFIX_LABEL=Duplicate
|
||||
RESID_DUPLICATE_PREFIX_TOOLTIP=Create copy of selected item
|
||||
|
||||
|
||||
##############################################################
|
||||
# Content Assist action
|
||||
##############################################################
|
||||
ACTION_SHOW_TOOLTIP_INFORMATION=Show Tooltip Description@F2
|
||||
|
||||
##############################################################
|
||||
# COMMON POPUP MENU ITEMS. MNEMONICS WILL BE ASSIGNED AUTOMATICALLY, DON'T SET THEM HERE.
|
||||
# THESE ARE MENU-ONLY ITEMS, VS MENU OR BUTTON ACTIONS.
|
||||
# THEY GENERALLY ARE USED IN THE SYSTEM TREE VIEW SOMEWHERE.
|
||||
##############################################################
|
||||
|
||||
|
||||
|
||||
|
||||
##############################################################
|
||||
# ERROR MESSAGES
|
||||
##############################################################
|
||||
|
||||
RESID_MSG_UNABLETOLOAD=Unable to load message &1
|
||||
|
||||
|
||||
##############################################################
|
||||
# REMOTE FILE SYSTEM TRANSLATABLE STRINGS
|
||||
##############################################################
|
||||
#=============================================================
|
||||
# DEFAULT FILTERS...
|
||||
#=============================================================
|
||||
#=============================================================
|
||||
# NEW FILE FILTER WIZARD...
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# NEW FILE FILTER STRING WIZARD...
|
||||
#=============================================================
|
||||
|
||||
|
||||
#=============================================================
|
||||
# CHANGE FILE FILTER DIALOG...
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# CHANGE FILE FILTER STRING DIALOG...
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# SELECT DIRECTORY DIALOG...
|
||||
#=============================================================
|
||||
|
||||
|
||||
#=============================================================
|
||||
# SELECT FILE DIALOG...
|
||||
#=============================================================
|
||||
|
||||
|
||||
#=============================================================
|
||||
# SELECT FILE OR MEMBER DIALOG...
|
||||
#=============================================================
|
||||
|
||||
|
||||
#=============================================================
|
||||
# PROMPT FOR HOME FOLDER DIALOG...
|
||||
#=============================================================
|
||||
|
||||
|
||||
#=============================================================
|
||||
# FILE SUBSYSTEM ACTIONS...
|
||||
#=============================================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#=============================================================
|
||||
# REMOTE FILE SYSTEM PROPERTY VALUES
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# REMOTE FILE PROPERTIES PAGE...
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# RE-USABLE COMPOSITE FILE SYSTEM WIDGETS
|
||||
#=============================================================
|
||||
#=============================================================
|
||||
# REMOTE FILE SYSTEM EXCEPTION ERROR MESSAGES
|
||||
#=============================================================
|
||||
|
||||
#=============================================================
|
||||
# REMOTE FILE SYSTEM ERROR MESSAGES
|
||||
#=============================================================
|
||||
|
||||
# Remote editing progress monitor messages
|
||||
|
||||
# Remote edit functionality
|
||||
|
||||
# iSeries Editor Save As... Dialog
|
||||
|
||||
# CODE editor
|
||||
|
||||
# Default Filter Pool names
|
||||
RESID_DEFAULT_FILTERPOOL=%1 Filter Pool
|
||||
RESID_PERCONNECTION_FILTERPOOL=%1 Filter Pool for connection %2
|
||||
|
||||
# Default Team profile name
|
||||
|
||||
#==============================================================
|
||||
# Signon Information Preferences Page
|
||||
#==============================================================
|
||||
RESID_PREF_SIGNON_DESCRIPTION= The following user IDs have password information associated with them:
|
||||
|
||||
RESID_PREF_SIGNON_HOSTNAME_TITLE= Host Name
|
||||
RESID_PREF_SIGNON_HOSTNAME_LABEL= Host name:
|
||||
RESID_PREF_SIGNON_HOSTNAME_TOOLTIP= Hostname or IP address of target system
|
||||
|
@ -1262,7 +907,6 @@ RESID_PREF_SIGNON_CHANGE_DIALOG_TITLE= Change Saved Password
|
|||
###################################################################################
|
||||
######################## Remote Search View ############################
|
||||
###################################################################################
|
||||
RESID_SEARCH_VIEW_DEFAULT_TITLE= Remote Search
|
||||
RESID_SEARCH_REMOVE_SELECTED_MATCHES_LABEL= Remove Selected Matches
|
||||
RESID_SEARCH_REMOVE_SELECTED_MATCHES_TOOLTIP= Remove selected matches
|
||||
RESID_SEARCH_REMOVE_ALL_MATCHES_LABEL= Remove All Matches
|
||||
|
@ -1270,14 +914,6 @@ RESID_SEARCH_REMOVE_ALL_MATCHES_TOOLTIP= Remove all matches
|
|||
RESID_SEARCH_CLEAR_HISTORY_LABEL= Clear History
|
||||
RESID_SEARCH_CLEAR_HISTORY_TOOLTIP= Clear all search results
|
||||
|
||||
###################################################################################
|
||||
############################ Table View Dlgs ############################
|
||||
###################################################################################
|
||||
RESID_TABLE_SELECT_COLUMNS_AVAILABLE_LABEL= Available contents:
|
||||
RESID_TABLE_SELECT_COLUMNS_DISPLAYED_LABEL= Displayed contents:
|
||||
RESID_TABLE_SELECT_COLUMNS_DESCRIPTION_LABEL= Choose contents to display in the table view.
|
||||
|
||||
|
||||
|
||||
###################################################################################
|
||||
############################ Monitor View ############################
|
||||
|
@ -1333,7 +969,6 @@ RESID_SELECTFILES_DESELECTALL_BUTTON_ROOT_TOOLTIP=Deselect all files
|
|||
RESID_OFFLINE_LABEL= Offline
|
||||
RESID_OFFLINE_WORKOFFLINE_LABEL= Work Offline
|
||||
RESID_OFFLINE_WORKOFFLINE_TOOLTIP= Switch the connection between offline and online modes
|
||||
RESID_OFFLINE_WORKOFFLINE_DESCRIPTION= Switch the connection between offline and online modes
|
||||
|
||||
#=============================================================
|
||||
# ENTER OR SELECT FILE DIALOG...
|
||||
|
@ -1392,8 +1027,6 @@ RESID_PROPERTIES_SERVICES_NAME=Services
|
|||
RESID_PROPERTIES_SERVICES_LABEL=Available Services
|
||||
RESID_PROPERTIES_SERVICES_TOOLTIP=
|
||||
RESID_PROPERTIES_DESCRIPTION_LABEL=Description
|
||||
RESID_PROPERTIES_CONNECTOR_SERVICES_LABEL=Connector Services
|
||||
RESID_PROPERTIES_CONNECTOR_SERVICES_TOOLTIP=
|
||||
RESID_PROPERTIES_FACTORIES_LABEL=Configuration
|
||||
RESID_PROPERTIES_FACTORIES_TOOLTIP=
|
||||
RESID_PROPERTIES_PROPERTIES_LABEL=Properties
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
|
||||
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -49,6 +50,7 @@ public class SystemCopyConnectionAction extends SystemBaseCopyAction
|
|||
public SystemCopyConnectionAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_COPY_CONNECTION_LABEL, MODE_COPY);
|
||||
setToolTipText(SystemResources.ACTION_COPY_CONNECTION_TOOLTIP);
|
||||
sr = RSECorePlugin.getTheSystemRegistry();
|
||||
setHelp(RSEUIPlugin.HELPPREFIX+"actn0019"); //$NON-NLS-1$
|
||||
setDialogHelp(RSEUIPlugin.HELPPREFIX+"dccn0000"); //$NON-NLS-1$
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [186748] Move ISubSystemConfigurationAdapter from UI/rse.core.subsystems.util
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -56,6 +57,7 @@ public class SystemFilterCopyFilterAction extends SystemBaseCopyAction
|
|||
public SystemFilterCopyFilterAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_COPY_FILTER_LABEL, MODE_COPY);
|
||||
setToolTipText(SystemResources.ACTION_COPY_FILTER_TOOLTIP);
|
||||
promptString = SystemResources.RESID_COPY_PROMPT;
|
||||
}
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* Martin Oberhuber (Wind River) - [186748] Move ISubSystemConfigurationAdapter from UI/rse.core.subsystems.util
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* David Dykstal (IBM) - [194268] fixed updateSelection to disable when selection is empty
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -56,6 +57,7 @@ public class SystemFilterCopyFilterPoolAction extends SystemBaseCopyAction
|
|||
public SystemFilterCopyFilterPoolAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_COPY_FILTERPOOL_LABEL, MODE_COPY);
|
||||
setToolTipText(SystemResources.ACTION_COPY_FILTERPOOL_TOOLTIP);
|
||||
promptString = SystemResources.RESID_COPY_PROMPT;
|
||||
}
|
||||
/**
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [186748] Move ISubSystemConfigurationAdapter from UI/rse.core.subsystems.util
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -56,6 +57,7 @@ public class SystemFilterMoveFilterAction extends SystemBaseCopyAction
|
|||
public SystemFilterMoveFilterAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_MOVE_FILTER_LABEL, MODE_MOVE);
|
||||
setToolTipText(SystemResources.ACTION_MOVE_FILTER_TOOLTIP);
|
||||
promptString = SystemResources.RESID_MOVE_PROMPT;
|
||||
}
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* Martin Oberhuber (Wind River) - [186748] Move ISubSystemConfigurationAdapter from UI/rse.core.subsystems.util
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* David Dykstal (IBM) - [194268] fixed updateSelection() to disable when selection is empty
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -58,6 +59,7 @@ public class SystemFilterMoveFilterPoolAction extends SystemBaseCopyAction
|
|||
public SystemFilterMoveFilterPoolAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_MOVE_FILTERPOOL_LABEL, MODE_MOVE);
|
||||
setToolTipText(SystemResources.ACTION_MOVE_FILTERPOOL_TOOLTIP);
|
||||
promptString = SystemResources.RESID_MOVE_PROMPT;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [186748] Move ISubSystemConfigurationAdapter from UI/rse.core.subsystems.util
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -60,6 +61,7 @@ public class SystemFilterMoveFilterStringAction extends SystemBaseCopyAction
|
|||
public SystemFilterMoveFilterStringAction(Shell parent)
|
||||
{
|
||||
super(parent, SystemResources.ACTION_MOVE_FILTERSTRING_LABEL, MODE_MOVE);
|
||||
setToolTipText(SystemResources.ACTION_MOVE_FILTERSTRING_TOOLTIP);
|
||||
promptString = SystemResources.RESID_MOVE_PROMPT;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
|
||||
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.actions;
|
||||
|
@ -52,6 +53,7 @@ public class SystemMoveConnectionAction extends SystemBaseCopyAction
|
|||
{
|
||||
super(parent, SystemResources.ACTION_MOVE_CONNECTION_LABEL, MODE_MOVE);
|
||||
//allowOnMultipleSelection(false); // too hard to handle, for now!
|
||||
setToolTipText(SystemResources.ACTION_MOVE_CONNECTION_TOOLTIP);
|
||||
sr = RSECorePlugin.getTheSystemRegistry();
|
||||
setHelp(RSEUIPlugin.HELPPREFIX+"actn0020"); //$NON-NLS-1$
|
||||
setDialogHelp(RSEUIPlugin.HELPPREFIX+"dmcn0000"); //$NON-NLS-1$
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||
* Copyright (c) 2002, 2008 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.propertypages;
|
||||
|
@ -111,8 +111,10 @@ public class SystemFilterPropertyPage extends SystemBasePropertyPage
|
|||
// name
|
||||
labelName.setText(filter.getName());
|
||||
// type
|
||||
if (filter.isPromptable())
|
||||
if (filter.isPromptable()){
|
||||
labelType.setText(SystemResources.RESID_PP_FILTER_TYPE_PROMPTABLE_VALUE);
|
||||
labelType.setToolTipText(SystemResources.RESID_PP_FILTER_TYPE_PROMPTABLE_TOOLTIP);
|
||||
}
|
||||
if (!isTransient)
|
||||
{
|
||||
// pool
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
* David McKnight (IBM) - [187543] use view filter to only show containers for set input dialog
|
||||
* David McKnight (IBM) - [210229] table refresh needs unique table-specific tooltip-text
|
||||
* Martin Oberhuber (Wind River) - [215820] Move SystemRegistry implementation to Core
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view;
|
||||
|
@ -237,7 +238,6 @@ public class SystemTableViewPart extends ViewPart
|
|||
public UpAction()
|
||||
{
|
||||
super(SystemResources.ACTION_MOVEUPLEVEL_TOOLTIP, getEclipseImageDescriptor("elcl16/up_nav.gif")); //$NON-NLS-1$
|
||||
|
||||
setDisabledImageDescriptor(getEclipseImageDescriptor("dlcl16/up_nav.gif")); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
|
@ -820,6 +820,7 @@ public class SystemTableViewPart extends ViewPart
|
|||
public SelectColumnsDialog(Shell shell, ISystemViewElementAdapter viewAdapter, SystemTableViewColumnManager columnManager)
|
||||
{
|
||||
super(shell, SystemResources.RESID_TABLE_SELECT_COLUMNS_LABEL);
|
||||
setToolTipText(SystemResources.RESID_TABLE_SELECT_COLUMNS_TOOLTIP);
|
||||
_adapter = viewAdapter;
|
||||
_columnManager = columnManager;
|
||||
_uniqueDescriptors = viewAdapter.getUniquePropertyDescriptors();
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* Contributors:
|
||||
* David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
|
||||
* David McKnight (IBM) - [216252] [nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view;
|
||||
|
@ -33,9 +34,6 @@ public class SystemViewResources extends NLS {
|
|||
// Property sheet values: Common
|
||||
public static String RESID_PROPERTY_NBRCHILDREN_LABEL;
|
||||
public static String RESID_PROPERTY_NBRCHILDREN_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_NBRCHILDRENRETRIEVED_LABEL;
|
||||
public static String RESID_PROPERTY_NBRCHILDRENRETRIEVED_TOOLTIP;
|
||||
|
||||
// Property sheet values: Connections
|
||||
public static String RESID_PROPERTY_PROFILE_TYPE_VALUE;
|
||||
|
@ -58,9 +56,6 @@ public class SystemViewResources extends NLS {
|
|||
|
||||
public static String RESID_PROPERTY_CONNECTIONSTATUS_DISCONNECTED_VALUE;
|
||||
|
||||
|
||||
public static String RESID_PROPERTY_ALIASNAME_LABEL;
|
||||
public static String RESID_PROPERTY_ALIASNAME_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_HOSTNAME_LABEL;
|
||||
public static String RESID_PROPERTY_HOSTNAME_TOOLTIP;
|
||||
|
@ -105,17 +100,9 @@ public class SystemViewResources extends NLS {
|
|||
public static String RESID_PROPERTY_FILTERPOOLREFERENCE_IS_CONNECTIONPRIVATE_TOOLTIP;
|
||||
|
||||
// Property sheet values: Filters
|
||||
public static String RESID_PROPERTY_FILTERTYPE_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERTYPE_VALUE;
|
||||
public static String RESID_PROPERTY_FILTERTYPE_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_FILTERSTRING_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERSTRING_VALUE;
|
||||
public static String RESID_PROPERTY_FILTERSTRING_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_FILTERSTRINGS_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERSTRINGS_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_FILTERSTRINGS_COUNT_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERSTRINGS_COUNT_TOOLTIP;
|
||||
|
||||
|
@ -124,10 +111,6 @@ public class SystemViewResources extends NLS {
|
|||
|
||||
public static String RESID_PROPERTY_FILTERPARENTPOOL_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERPARENTPOOL_TOOLTIP;
|
||||
|
||||
public static String RESID_PROPERTY_FILTERS_LABEL;
|
||||
public static String RESID_PROPERTY_FILTERS_DESCRIPTION;
|
||||
|
||||
|
||||
// files - still needed outside of files.ui
|
||||
public static String RESID_PROPERTY_FILE_TYPE_FILE_VALUE;
|
||||
|
@ -146,9 +129,6 @@ public class SystemViewResources extends NLS {
|
|||
public static String RESID_PROPERTY_TEAM_SSFACTORY_TYPE_VALUE;
|
||||
|
||||
// Miscellaneous / common
|
||||
public static String RESID_PROPERTY_LINKINGACTION_TEXT;
|
||||
public static String RESID_PROPERTY_LINKINGACTION_TOOLTIP;
|
||||
|
||||
public static String RESID_SCRATCHPAD;
|
||||
public static String RESID_REMOTE_SCRATCHPAD;
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
# Contributors:
|
||||
# David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
|
||||
# David McKnight (IBM) - [216252] [nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
|
||||
# David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
###############################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_VAR
|
||||
|
@ -22,9 +23,6 @@
|
|||
#COMMON PROPERTIES
|
||||
RESID_PROPERTY_NBRCHILDREN_LABEL=Number of children
|
||||
RESID_PROPERTY_NBRCHILDREN_TOOLTIP=Number of children currently under this parent
|
||||
RESID_PROPERTY_NBRCHILDRENRETRIEVED_LABEL=Last retrieved
|
||||
RESID_PROPERTY_NBRCHILDRENRETRIEVED_TOOLTIP=Number of children last retrieved
|
||||
|
||||
|
||||
#CONNECTION PROPERTIES
|
||||
RESID_PROPERTY_SYSTEMTYPE_LABEL=Remote system type
|
||||
|
@ -40,9 +38,6 @@ RESID_PROPERTY_CONNECTIONSTATUS_TOOLTIP=Connection status of subsystems
|
|||
RESID_PROPERTY_CONNECTIONSTATUS_CONNECTED_VALUE=Some subsystems connected
|
||||
RESID_PROPERTY_CONNECTIONSTATUS_DISCONNECTED_VALUE=No subsystems connected
|
||||
|
||||
RESID_PROPERTY_ALIASNAME_LABEL=Connection name
|
||||
RESID_PROPERTY_ALIASNAME_TOOLTIP=Unique name for this connection
|
||||
|
||||
RESID_PROPERTY_HOSTNAME_LABEL=Host name
|
||||
RESID_PROPERTY_HOSTNAME_TOOLTIP=Host name or IP address of remote system
|
||||
|
||||
|
@ -87,17 +82,9 @@ RESID_PROPERTY_FILTERPOOLREFERENCE_IS_CONNECTIONPRIVATE_TOOLTIP=Is this is a con
|
|||
|
||||
|
||||
#FILTER PROPERTIES
|
||||
RESID_PROPERTY_FILTERTYPE_LABEL=Filter
|
||||
RESID_PROPERTY_FILTERTYPE_VALUE=Remote system filter
|
||||
RESID_PROPERTY_FILTERTYPE_TOOLTIP=Remote system filter
|
||||
|
||||
RESID_PROPERTY_FILTERSTRING_LABEL=Filter string
|
||||
RESID_PROPERTY_FILTERSTRING_VALUE=Remote system filter string
|
||||
RESID_PROPERTY_FILTERSTRING_TOOLTIP=Filter string used to get this resource
|
||||
|
||||
RESID_PROPERTY_FILTERSTRINGS_LABEL=Filter strings
|
||||
RESID_PROPERTY_FILTERSTRINGS_TOOLTIP=Filter strings used to retrieve list of remote system objects
|
||||
|
||||
|
||||
RESID_PROPERTY_FILTERSTRINGS_COUNT_LABEL=Number of filter strings
|
||||
RESID_PROPERTY_FILTERSTRINGS_COUNT_TOOLTIP=How many filter strings contained in this filter
|
||||
|
||||
|
@ -107,9 +94,6 @@ RESID_PROPERTY_FILTERPARENTFILTER_TOOLTIP=Filter containing this nested filter
|
|||
RESID_PROPERTY_FILTERPARENTPOOL_LABEL=Parent filter pool
|
||||
RESID_PROPERTY_FILTERPARENTPOOL_TOOLTIP=Filter pool that directly or indirectly contains this filter
|
||||
|
||||
RESID_PROPERTY_FILTERS_LABEL=Filter Strings
|
||||
RESID_PROPERTY_FILTERS_DESCRIPTION=List of file system filters for this named filter
|
||||
|
||||
# generic files - needed outside of files.ui
|
||||
RESID_PROPERTY_FILE_TYPE_FILE_VALUE=File
|
||||
RESID_PROPERTY_FILE_TYPE_FOLDER_VALUE=Folder
|
||||
|
@ -124,10 +108,6 @@ RESID_PROPERTY_MESSAGE_TYPE_VALUE=Message
|
|||
RESID_PROPERTY_TEAM_CATEGORY_TYPE_VALUE=Category
|
||||
RESID_PROPERTY_TEAM_SSFACTORY_TYPE_VALUE=SubSystem factory
|
||||
|
||||
#MISCELLANEOUS PROPERTIES
|
||||
RESID_PROPERTY_LINKINGACTION_TEXT = &Link with Editor
|
||||
RESID_PROPERTY_LINKINGACTION_TOOLTIP = Link with Editor
|
||||
|
||||
|
||||
RESID_SCRATCHPAD=Scratchpad
|
||||
RESID_REMOTE_SCRATCHPAD=Remote Scratchpad
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* Xuan Chen (IBM) - [160775] [api] rename (at least within a zip) blocks UI thread
|
||||
* David Dykstal (IBM) - [217556] remove service subsystem types
|
||||
* Martin Oberhuber (Wind River) - [195399] Improve String display for default port 0
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view;
|
||||
|
@ -239,6 +240,7 @@ public class SystemViewSubSystemAdapter extends AbstractSystemViewAdapter
|
|||
// port
|
||||
propertyPortDescriptor = new TextPropertyDescriptor(ISystemPropertyConstants.P_PORT,
|
||||
SystemViewResources.RESID_PROPERTY_PORT_LABEL);
|
||||
propertyPortDescriptor.setDescription(SystemViewResources.RESID_PROPERTY_PORT_TOOLTIP);
|
||||
propertyPortDescriptor.setValidator(new ValidatorPortInput());
|
||||
propertyDescriptorArray[++idx] = propertyPortDescriptor;
|
||||
//propertyDescriptorArray[++idx] = getPortDescriptor();
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2004, 2007 IBM Corporation and others.
|
||||
* Copyright (c) 2004, 2008 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view.monitor;
|
||||
|
@ -30,7 +30,7 @@ public class ClearAction extends BrowseAction
|
|||
super(view, SystemResources.ACTION_CLEAR_ALL_LABEL,
|
||||
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_CLEAR_ALL_ID));
|
||||
|
||||
|
||||
setToolTipText(SystemResources.ACTION_CLEAR_ALL_TOOLTIP);
|
||||
// TODO DKM - get help for this!
|
||||
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.CLEAR_CONSOLE_ACTION);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2004, 2007 IBM Corporation and others.
|
||||
* Copyright (c) 2004, 2008 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view.monitor;
|
||||
|
@ -32,6 +32,7 @@ public class ClearSelectedAction extends BrowseAction
|
|||
super(view, SystemResources.ACTION_CLEAR_SELECTED_LABEL,
|
||||
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_CLEAR_SELECTED_ID));
|
||||
|
||||
setToolTipText(SystemResources.ACTION_CLEAR_SELECTED_TOOLTIP);
|
||||
// TODO DKM - get help for this!
|
||||
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.CLEAR_CONSOLE_ACTION);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2002, 2007 IBM Corporation and others. All rights reserved.
|
||||
* Copyright (c) 2002, 2008 IBM Corporation and others. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
@ -18,6 +18,7 @@
|
|||
* Kevin Doyle (IBM) - [160378] Subset action should be disabled when there are no tabs in Monitor
|
||||
* Kevin Doyle (IBM) - [196582] ClassCastException when doing copy/paste
|
||||
* Kevin Doyle (IBM) - [212940] Duplicate Help Context Identifiers
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view.monitor;
|
||||
|
@ -327,6 +328,7 @@ class SubSetAction extends BrowseAction
|
|||
public SelectColumnsDialog(Shell shell, ISystemViewElementAdapter viewAdapter, SystemTableViewColumnManager columnManager)
|
||||
{
|
||||
super(shell, SystemResources.RESID_TABLE_SELECT_COLUMNS_LABEL);
|
||||
setToolTipText(SystemResources.RESID_TABLE_SELECT_COLUMNS_TOOLTIP);
|
||||
_adapter = viewAdapter;
|
||||
_columnManager = columnManager;
|
||||
_uniqueDescriptors = viewAdapter.getUniquePropertyDescriptors();
|
||||
|
|
|
@ -36,7 +36,7 @@ public class ClearAction extends BrowseAction
|
|||
super(view, SystemResources.ACTION_CLEAR_ALL_LABEL,
|
||||
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_CLEAR_ALL_ID));
|
||||
|
||||
|
||||
setToolTipText(SystemResources.ACTION_CLEAR_ALL_TOOLTIP);
|
||||
// TODO DKM - get help for this!
|
||||
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.CLEAR_CONSOLE_ACTION);
|
||||
}
|
||||
|
|
|
@ -37,6 +37,7 @@ public class ClearSelectedAction extends BrowseAction
|
|||
super(view, SystemResources.ACTION_CLEAR_SELECTED_LABEL,
|
||||
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_CLEAR_SELECTED_ID));
|
||||
|
||||
setToolTipText(SystemResources.ACTION_CLEAR_SELECTED_TOOLTIP);
|
||||
// TODO DKM - get help for this!
|
||||
//PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugHelpContextIds.CLEAR_CONSOLE_ACTION);
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
|
||||
* Martin Oberhuber (Wind River) - [186128][refactoring] Move IProgressMonitor last in public base classes
|
||||
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.actions;
|
||||
|
@ -73,6 +74,7 @@ public abstract class SystemBaseCopyAction extends SystemBaseDialogAction
|
|||
public SystemBaseCopyAction(Shell parent, int mode)
|
||||
{
|
||||
this(parent, mode==MODE_COPY ? SystemResources.ACTION_COPY_LABEL : SystemResources.ACTION_MOVE_LABEL, mode);
|
||||
setToolTipText(mode==MODE_COPY ? SystemResources.ACTION_COPY_TOOLTIP : SystemResources.ACTION_MOVE_TOOLTIP);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* Martin Oberhuber (Wind River) - [175262] IHost.getSystemType() should return IRSESystemType
|
||||
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
|
||||
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.actions;
|
||||
|
@ -71,7 +72,7 @@ public class SystemCopyToClipboardAction extends SystemBaseAction implements IV
|
|||
shell);
|
||||
|
||||
_clipboard = clipboard;
|
||||
|
||||
setToolTipText(SystemResources.ACTION_COPY_TOOLTIP);
|
||||
allowOnMultipleSelection(true);
|
||||
setContextMenuGroup(ISystemContextMenuConstants.GROUP_REORGANIZE);
|
||||
setHelp(RSEUIPlugin.HELPPREFIX+"actn0116"); //$NON-NLS-1$
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
*
|
||||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - [184095] Replace systemTypeName by IRSESystemType
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.dialogs;
|
||||
|
@ -109,7 +110,7 @@ public final class SystemPasswordPersistencePrompt extends SystemPromptDialog im
|
|||
|
||||
// Confirm password prompt
|
||||
SystemWidgetHelpers.createLabel(page, SystemResources.RESID_PREF_SIGNON_PASSWORD_VERIFY_LABEL);
|
||||
passwordVerify = SystemWidgetHelpers.createTextField(page, null,SystemResources.RESID_PREF_SIGNON_PASSWORD_TOOLTIP);
|
||||
passwordVerify = SystemWidgetHelpers.createTextField(page, null,SystemResources.RESID_PREF_SIGNON_PASSWORD_VERIFY_TOOLTIP);
|
||||
passwordVerify.setEchoChar('*');
|
||||
passwordVerify.addModifyListener(this);
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.filters.actions;
|
||||
|
@ -98,7 +98,7 @@ public class SystemNewFilterAction
|
|||
*/
|
||||
public SystemNewFilterAction(Shell shell, ISystemFilterPool parentPool)
|
||||
{
|
||||
this(shell, parentPool, SystemResources.ACTION_NEWFILTER_LABEL, SystemResources.ACTION_NEWFILE_TOOLTIP,
|
||||
this(shell, parentPool, SystemResources.ACTION_NEWFILTER_LABEL, SystemResources.ACTION_NEWFILTER_TOOLTIP,
|
||||
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_NEWFILTER_ID), false);
|
||||
}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
*
|
||||
* Contributors:
|
||||
* {Name} (company) - description of contribution.
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.widgets.services;
|
||||
|
@ -87,6 +87,7 @@ public class ConnectorServicesForm extends SystemBaseForm
|
|||
|
||||
Label propertiesLabel = new Label(servicePropertiesComposite, SWT.NONE);
|
||||
propertiesLabel.setText(SystemResources.RESID_PROPERTIES_PROPERTIES_LABEL);
|
||||
propertiesLabel.setToolTipText(SystemResources.RESID_PROPERTIES_PROPERTIES_TOOLTIP);
|
||||
createPropertiesViewer(servicePropertiesComposite);
|
||||
|
||||
// description composite
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
*
|
||||
* Contributors:
|
||||
* David McKnight (IBM) [196632] make sure selected element is marked selected
|
||||
* David McKnight (IBM) - [223103] [cleanup] fix broken externalized strings
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.ui.widgets.services;
|
||||
|
@ -87,6 +88,7 @@ public class ServicesForm extends SystemBaseForm implements ICheckStateListener
|
|||
factoryViewerComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
|
||||
Label factoryLabel = new Label(factoryViewerComposite, SWT.NONE);
|
||||
factoryLabel.setText(SystemResources.RESID_PROPERTIES_FACTORIES_LABEL);
|
||||
factoryLabel.setToolTipText(SystemResources.RESID_PROPERTIES_FACTORIES_TOOLTIP);
|
||||
createFactoryViewer(factoryViewerComposite);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue