Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-08-09 09:15:06 +0000
committerUwe Stieber2012-08-09 09:15:06 +0000
commitec531d22c43aa3ecae948aa20b4defdfe4877ace (patch)
tree62b34c1a929c62d3553ac9ce27520b4b686fe0d9 /target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls
parent2c9db2f4f297f92647e3c36d8d46d5d9f7b26ae9 (diff)
downloadorg.eclipse.tcf-ec531d22c43aa3ecae948aa20b4defdfe4877ace.tar.gz
org.eclipse.tcf-ec531d22c43aa3ecae948aa20b4defdfe4877ace.tar.xz
org.eclipse.tcf-ec531d22c43aa3ecae948aa20b4defdfe4877ace.zip
Target Explorer: Unify properties editor page save handling and provide StatusHandlerUtil
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java4
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties6
2 files changed, 9 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
index 756e19902..628b34df7 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
@@ -49,7 +49,10 @@ public class Messages extends NLS {
// **** Declare externalized string id's down here *****
+ public static String PossibleCause;
+
public static String OverviewEditorPage_title;
+ public static String OverviewEditorPage_error_save;
public static String GeneralInformationSection_title;
public static String GeneralInformationSection_description;
@@ -60,6 +63,7 @@ public class Messages extends NLS {
public static String GeneralInformationSection_state_1;
public static String GeneralInformationSection_state_2;
public static String GeneralInformationSection_state_3;
+ public static String GeneralInformationSection_error_delete;
public static String LabelProviderDelegate_state_0;
public static String LabelProviderDelegate_state_1;
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
index fab741b7c..bcf21384a 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
@@ -8,7 +8,10 @@
# Wind River Systems - initial API and implementation
###############################################################################
+PossibleCause=Possible Cause:\n{0}
+
OverviewEditorPage_title=Overview
+OverviewEditorPage_error_save=Failed to save target: {0}.\n\n{1}
GeneralInformationSection_title=General Information
GeneralInformationSection_description=This section describes general information about this target.
@@ -19,6 +22,7 @@ GeneralInformationSection_state_0=Reachable
GeneralInformationSection_state_1=Communicating
GeneralInformationSection_state_2=Not Reachable. Connection attempt timed out.
GeneralInformationSection_state_3=Not Reachable. Connection attempt failed.
+GeneralInformationSection_error_delete=Failed to remove old target: {0}.\n\n{1}
LabelProviderDelegate_state_0=Reachable
LabelProviderDelegate_state_1=Communicating
@@ -84,7 +88,7 @@ PeerAttributesTablePart_edit_title=Edit Attribute
PeerAttributesTablePart_edit_message=Edit the selected target attribute.
DeleteHandler_error_title=Error
-DeleteHandler_error_deleteFailed=Failed to delete static target.
+DeleteHandler_error_deleteFailed=Failed to delete static target.\n\n{0}
DeleteHandlerDelegate_DialogTitle=Confirm Delete
DeleteHandlerDelegate_MsgDeleteMultiplePeers=Are you sure you want to delete these {0} targets?
DeleteHandlerDelegate_MsgDeleteOnePeer=Are you sure you want to delete target ''{0}''?

Back to the top