mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 04:45:38 +02:00
adjusted some messages in the new connection wizard
- replace Launch Type with Connection type - message "Enter name for connection" is not relevant and confusing when user actually entered it already (and it is set by default too), replaced with generic message (only visible in the begging and when no errors) Change-Id: I4deb8b2a0e878084eaf59030c9bd5d09610d2d78 Signed-off-by: Alena Laskavaia <elaskavaia.cdt@gmail.com>
This commit is contained in:
parent
72289d3ce6
commit
566add7ee3
5 changed files with 7 additions and 7 deletions
|
@ -24,7 +24,7 @@ public class Messages extends NLS {
|
|||
public static String JSchConnectionPage_A_connection_with_that_name_already_exists;
|
||||
public static String JSchConnectionPage_Edit_Connection;
|
||||
public static String JSchConnectionPage_Edit_properties_of_an_existing_connection;
|
||||
public static String JSchConnectionPage_Please_enter_name_for_connection;
|
||||
public static String JSchConnectionPage_Initial_Message;
|
||||
public static String JSchConnectionPage_Proxy;
|
||||
public static String JSchConnectionPage_Help;
|
||||
public static String JSchConnectionPage_KeysAtSSH2;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
JSchConnectionPage_A_connection_with_that_name_already_exists=A connection with that name already exists
|
||||
JSchConnectionPage_Edit_Connection=Edit Connection
|
||||
JSchConnectionPage_Edit_properties_of_an_existing_connection=Edit properties of an existing connection
|
||||
JSchConnectionPage_Please_enter_name_for_connection=Please enter a name for the connection
|
||||
JSchConnectionPage_Initial_Message=Specify properties of a new connection
|
||||
JSchConnectionPage_Proxy=SSH Proxy Settings
|
||||
JSchConnectionPage_Help=If 'Local' is selected and proxy command is empty, no proxy is used.\nSee <a>Network Connections</a> for SOCKS and HTTP proxy options.
|
||||
JSchConnectionPage_KeysAtSSH2=Keys are set at <a>Network Connections, SSH2</a>
|
||||
|
|
|
@ -232,7 +232,7 @@ public class JSchConnectionPage extends WizardPage {
|
|||
if (fConnection == null) {
|
||||
setDescription(Messages.JSchNewConnectionPage_New_connection_properties);
|
||||
setTitle(Messages.JSchNewConnectionPage_New_Connection);
|
||||
setMessage(Messages.JSchConnectionPage_Please_enter_name_for_connection);
|
||||
setMessage(Messages.JSchConnectionPage_Initial_Message);
|
||||
} else {
|
||||
setDescription(Messages.JSchConnectionPage_Edit_properties_of_an_existing_connection);
|
||||
setTitle(Messages.JSchConnectionPage_Edit_Connection);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
NewRemoteConnectionTypePage_LaunchTargetType=Launch Target Type
|
||||
NewRemoteConnectionTypePage_SelectTargetType=Select type of launch target to create.
|
||||
NewRemoteConnectionWizard_0=Launch Target Type
|
||||
NewRemoteConnectionTypePage_LaunchTargetType=Connection Type
|
||||
NewRemoteConnectionTypePage_SelectTargetType=Select type of connection to create.
|
||||
NewRemoteConnectionWizard_0=Connection Type
|
||||
OpenTerminalHandler_OpenTerminalDesc=A real terminal would open now
|
||||
OpenTerminalHandler_OpenTerminalTitle=Open Terminal
|
||||
RemoteConnectionPropertyPage_ConnectionName=Connection Name:
|
||||
|
|
|
@ -55,7 +55,7 @@ public class NewRemoteConnectionWizard extends Wizard {
|
|||
|
||||
@Override
|
||||
public boolean canFinish() {
|
||||
// Need to move onto the new target wizard
|
||||
// don't allow to finish since we need to activate actual connection wizard page
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue