mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 18:05:33 +02:00
[233678] TVT34:TCT210: RU: concatenated string "Root Connections"
https://bugs.eclipse.org/bugs/show_bug.cgi?id=233678
This commit is contained in:
parent
5d71236868
commit
03ad4169dd
3 changed files with 10 additions and 6 deletions
|
@ -23,6 +23,7 @@
|
||||||
* David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
|
* David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
|
||||||
* David Dykstal (IBM) - [231943] Make "true" and "false" translatable on SystemTypeFieldEditor
|
* David Dykstal (IBM) - [231943] Make "true" and "false" translatable on SystemTypeFieldEditor
|
||||||
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
||||||
|
* David Dykstal (IBM) - [233678] title string is constructed by concatenation, should be substituted
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.ui;
|
package org.eclipse.rse.internal.ui;
|
||||||
|
@ -1036,6 +1037,8 @@ public class SystemResources extends NLS
|
||||||
|
|
||||||
public static String SystemImportConnectionAction_UnexpectedException;
|
public static String SystemImportConnectionAction_UnexpectedException;
|
||||||
|
|
||||||
|
public static String SystemTableViewPart_title;
|
||||||
|
|
||||||
public static String SystemTypeFieldEditor_false;
|
public static String SystemTypeFieldEditor_false;
|
||||||
|
|
||||||
public static String SystemTypeFieldEditor_true;
|
public static String SystemTypeFieldEditor_true;
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
# David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
|
# David Dykstal (IBM) - [216858] Need the ability to Import/Export RSE connections for sharing
|
||||||
# David Dykstal (IBM) - [231943] Make true and false translatable on SystemTypeFieldEditor
|
# David Dykstal (IBM) - [231943] Make true and false translatable on SystemTypeFieldEditor
|
||||||
# David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
# David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
||||||
|
# David Dykstal (IBM) - [233678] title string is constructed by concatenation, should be substituted
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_VAR
|
# NLS_MESSAGEFORMAT_VAR
|
||||||
|
@ -1087,5 +1088,6 @@ SystemImportConnectionAction_FileNotFoundCondition=File {0} does not exist.
|
||||||
SystemImportConnectionAction_FileNotReadableCondition=You do not have permission to read file {0}.
|
SystemImportConnectionAction_FileNotReadableCondition=You do not have permission to read file {0}.
|
||||||
SystemImportConnectionAction_ImportJobName=RSE Connection Import Job
|
SystemImportConnectionAction_ImportJobName=RSE Connection Import Job
|
||||||
SystemImportConnectionAction_UnexpectedException=unexpected exception
|
SystemImportConnectionAction_UnexpectedException=unexpected exception
|
||||||
|
SystemTableViewPart_title={0} {1}
|
||||||
SystemTypeFieldEditor_false=false
|
SystemTypeFieldEditor_false=false
|
||||||
SystemTypeFieldEditor_true=true
|
SystemTypeFieldEditor_true=true
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
* David Dykstal (IBM) - [188150] adding "go up one level" tooltip
|
||||||
* David McKnight (IBM) - [232320] remote system details view restore problem
|
* David McKnight (IBM) - [232320] remote system details view restore problem
|
||||||
* David McKnight (IBM) - [233578] Promptable Filter Displayed 3 times when clicking cancel
|
* David McKnight (IBM) - [233578] Promptable Filter Displayed 3 times when clicking cancel
|
||||||
|
* David Dykstal (IBM) - [233678] title string is constructed by concatenation, should be substituted
|
||||||
*******************************************************/
|
*******************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.ui.view;
|
package org.eclipse.rse.internal.ui.view;
|
||||||
|
@ -139,6 +140,8 @@ import org.eclipse.ui.part.ViewPart;
|
||||||
import org.eclipse.ui.views.properties.IPropertyDescriptor;
|
import org.eclipse.ui.views.properties.IPropertyDescriptor;
|
||||||
import org.osgi.framework.Bundle;
|
import org.osgi.framework.Bundle;
|
||||||
|
|
||||||
|
import com.ibm.icu.text.MessageFormat;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Comment goes here
|
* Comment goes here
|
||||||
*/
|
*/
|
||||||
|
@ -1575,12 +1578,8 @@ public class SystemTableViewPart extends ViewPart
|
||||||
{
|
{
|
||||||
String type = va.getType(object);
|
String type = va.getType(object);
|
||||||
String name = va.getName(object);
|
String name = va.getName(object);
|
||||||
//setPartName(type + " " + name);
|
String title = MessageFormat.format(SystemResources.SystemTableViewPart_title, new String[] {type, name});
|
||||||
|
setContentDescription(title);
|
||||||
setContentDescription(type + " "+ name); //$NON-NLS-1$
|
|
||||||
|
|
||||||
//SystemTableViewProvider provider = (SystemTableViewProvider) _viewer.getContentProvider();
|
|
||||||
//setTitleImage(provider.getImage(object));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue