Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2011-04-21 21:08:26 +0000
committerVivian Kong2011-04-21 21:08:26 +0000
commita3fc8296c81f2d8a3cb8e86ae976fac0e0003231 (patch)
tree1fc96473b3dfb115486c1fc3e0a8515429c4df30 /build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal
parent60e7c6cda07788b28d400fa5efccc7ceea815f96 (diff)
downloadorg.eclipse.cdt-a3fc8296c81f2d8a3cb8e86ae976fac0e0003231.tar.gz
org.eclipse.cdt-a3fc8296c81f2d8a3cb8e86ae976fac0e0003231.tar.xz
org.eclipse.cdt-a3fc8296c81f2d8a3cb8e86ae976fac0e0003231.zip
Bug 133881 - Make refreshing after building optional - UI changes
Work in progress.
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java4
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties4
2 files changed, 6 insertions, 2 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java
index a3cca00b841..7d4180d427f 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java
@@ -211,6 +211,8 @@ public class Messages extends NLS {
public static String PropertyPageDefsTab_9;
public static String PropertyPageDefsTab_showIncludeFileTab;
public static String RefreshPolicyExceptionDialog_addDialogLabel;
+ public static String RefreshPolicyExceptionDialog_AddExceptionInfoDialog_message;
+ public static String RefreshPolicyExceptionDialog_AddExceptionInfoDialog_title;
public static String RefreshPolicyExceptionDialog_editDialogLabel;
public static String RefreshPolicyExceptionDialog_exceptionPropertiesGroupLabel;
public static String RefreshPolicyExceptionDialog_exceptionTypeDropdownLabel;
@@ -222,7 +224,7 @@ public class Messages extends NLS {
public static String RefreshPolicyTab_deleteConfirmationDialog_question_exception;
public static String RefreshPolicyTab_deleteConfirmationDialog_question_resource;
public static String RefreshPolicyTab_deleteConfirmationDialog_title;
- public static String RefreshPolicyTab_editButtonLabel;
+ public static String RefreshPolicyTab_editExceptionButtonLabel;
public static String RefreshPolicyTab_exceptionsLabel;
public static String RefreshPolicyTab_resourcesGroupLabel;
public static String RefreshPolicyTab_tabLabel;
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
index e49908ecb54..ed842bcf3bc 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties
@@ -200,6 +200,8 @@ NewBuildMacroDialog_label_list_title=Value of Build Variable
# ----------- Refresh Policy Tab and Exception Dialog -----------
RefreshPolicyExceptionDialog_addDialogLabel=Add Exception
+RefreshPolicyExceptionDialog_AddExceptionInfoDialog_message=Exceptions of all available exception types already exist for the selection. Please edit the existing exclusions instead.
+RefreshPolicyExceptionDialog_AddExceptionInfoDialog_title=Cannot Add Exception
RefreshPolicyExceptionDialog_editDialogLabel=Edit Exception
RefreshPolicyExceptionDialog_exceptionPropertiesGroupLabel=Exception Properties
RefreshPolicyExceptionDialog_exceptionTypeDropdownLabel=Exception Type:
@@ -211,7 +213,7 @@ RefreshPolicyTab_deleteButtonLabel=Delete...
RefreshPolicyTab_deleteConfirmationDialog_question_exception=You are removing an exception that has nested exceptions. Removing this exception will remove all nested exceptions. Do you want to continue?
RefreshPolicyTab_deleteConfirmationDialog_question_resource=You are removing a resource that has exceptions. Removing this resource will also remove all associated exceptions. Do you want to continue?
RefreshPolicyTab_deleteConfirmationDialog_title=Delete
-RefreshPolicyTab_editButtonLabel=Edit...
+RefreshPolicyTab_editExceptionButtonLabel=Edit Exception...
RefreshPolicyTab_exceptionsLabel=Exceptions
RefreshPolicyTab_resourcesGroupLabel=Resources
RefreshPolicyTab_tabLabel=The following resources will be refreshed after the project is built:

Back to the top