mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 15:25:49 +02:00
[267226] Fixed name and description in TelnetTerminalService.
This commit is contained in:
parent
6d2d659e17
commit
f8991f6ca1
3 changed files with 11 additions and 8 deletions
|
@ -8,6 +8,7 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - initial API and implementation
|
||||
* Sheldon D'souza (Celunite) - adapted form SshServiceResources
|
||||
* Anna Dushistova (MontaVista) - [267226] Wrong name and description in TelnetTerminalService
|
||||
*******************************************************************************/
|
||||
package org.eclipse.rse.internal.services.telnet;
|
||||
|
||||
|
@ -19,9 +20,9 @@ public class TelnetServiceResources extends NLS {
|
|||
|
||||
public static String TelnetPlugin_Unexpected_Exception;
|
||||
|
||||
public static String TelnetShellService_Description;
|
||||
public static String TelnetTerminalService_Description;
|
||||
|
||||
public static String TelnetShellService_Name;
|
||||
public static String TelnetTerminalService_Name;
|
||||
|
||||
static {
|
||||
// initialize resource bundle
|
||||
|
|
|
@ -8,11 +8,12 @@
|
|||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
# Sheldon D'souza (Celunite) - adapted from SshServiceResources
|
||||
# Anna Dushistova (MontaVista) - [267226] Wrong name and description in TelnetTerminalService
|
||||
################################################################################
|
||||
|
||||
# NLS_MESSAGEFORMAT_VAR
|
||||
# NLS_ENCODING=UTF-8
|
||||
|
||||
TelnetPlugin_Unexpected_Exception=Unexpected {0}: {1}
|
||||
TelnetShellService_Name=Telnet Shell Service
|
||||
TelnetShellService_Description=Telnet Shell Service Description
|
||||
TelnetTerminalService_Name=Telnet Terminal Service
|
||||
TelnetTerminalService_Description=Telnet Terminal Service Description
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
* Martin Oberhuber (Wind River) - initial API and implementation
|
||||
* Anna Dushistova (MontaVista) - adapted from SshTerminalService
|
||||
* Anna Dushistova (MontaVista) - [240523] [rseterminals] Provide a generic adapter factory that adapts any ITerminalService to an IShellService
|
||||
* Anna Dushistova (MontaVista) - [267226] Wrong name and description in TelnetTerminalService
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.services.telnet.terminal;
|
||||
|
@ -45,11 +46,11 @@ public class TelnetTerminalService extends AbstractTerminalService implements IT
|
|||
}
|
||||
|
||||
public String getName() {
|
||||
return TelnetServiceResources.TelnetShellService_Name;
|
||||
return TelnetServiceResources.TelnetTerminalService_Name;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return TelnetServiceResources.TelnetShellService_Description;
|
||||
return TelnetServiceResources.TelnetTerminalService_Description;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue