Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2011-02-25 19:55:03 +0000
committerVivian Kong2011-02-25 19:55:03 +0000
commitf561817d6e0f2fa0110f659c747ab08f25acb9b4 (patch)
tree1f4ef0768cbbf128967ce34568bd4a468c3deabc /build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse
parent101d5367d050c1755b4aadb989000353723a4276 (diff)
downloadorg.eclipse.cdt-f561817d6e0f2fa0110f659c747ab08f25acb9b4.tar.gz
org.eclipse.cdt-f561817d6e0f2fa0110f659c747ab08f25acb9b4.tar.xz
org.eclipse.cdt-f561817d6e0f2fa0110f659c747ab08f25acb9b4.zip
Bug 133881 - Make refreshing after building optional
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.java21
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/Messages.properties22
2 files changed, 41 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 0c2734a774a..c1ad0e73e77 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2010 Andrew Gvozdev and others.
+ * Copyright (c) 2010, 2011 Andrew Gvozdev and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,6 +7,7 @@
*
* Contributors:
* Andrew Gvozdev - Initial API and implementation
+ * IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.managedbuilder.internal.ui;
@@ -209,6 +210,24 @@ public class Messages extends NLS {
public static String PropertyPageDefsTab_8;
public static String PropertyPageDefsTab_9;
public static String PropertyPageDefsTab_showIncludeFileTab;
+ public static String RefreshPolicyExceptionDialog_addButtonLabel;
+ public static String RefreshPolicyExceptionDialog_addDialogLabel;
+ public static String RefreshPolicyExceptionDialog_contentTypeDropdownLabel;
+ public static String RefreshPolicyExceptionDialog_deleteButtonLabel;
+ public static String RefreshPolicyExceptionDialog_editDialogLabel;
+ public static String RefreshPolicyExceptionDialog_exceptionPropertiesGroupLabel;
+ public static String RefreshPolicyExceptionDialog_exceptionTypeContentType;
+ public static String RefreshPolicyExceptionDialog_exceptionTypeDropdownLabel;
+ public static String RefreshPolicyExceptionDialog_exceptionTypeResourceNamePattern;
+ public static String RefreshPolicyExceptionDialog_exceptionTypeResources;
+ public static String RefreshPolicyExceptionDialog_patternsGroupLabel;
+ public static String RefreshPolicyTab_addExceptionButtonLabel;
+ public static String RefreshPolicyTab_addResourceButtonLabel;
+ public static String RefreshPolicyTab_deleteButtonLabel;
+ public static String RefreshPolicyTab_editButtonLabel;
+ public static String RefreshPolicyTab_exceptionsLabel;
+ public static String RefreshPolicyTab_resourcesGroupLabel;
+ public static String RefreshPolicyTab_tabLabel;
public static String ResourceCustomBuildStepBlock_label_applicability_rule_after;
public static String ResourceCustomBuildStepBlock_label_applicability_rule_before;
public static String ResourceCustomBuildStepBlock_label_applicability_rule_disable;
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 e7fd85e5a7d..d3204d4c07d 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
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2010 IBM Corporation, QNX Software Systems, and others.
+# Copyright (c) 2000, 2011 IBM Corporation, QNX Software Systems, and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1_0
# which accompanies this distribution, and is available at
@@ -198,6 +198,26 @@ NewBuildMacroDialog_label_title_new=Define a New Build Variable
NewBuildMacroDialog_label_title_edit=Edit Existing Build Variable
NewBuildMacroDialog_label_list_title=Value of Build Variable
+# ----------- Refresh Policy Tab and Exception Dialog -----------
+RefreshPolicyExceptionDialog_addButtonLabel=Add...
+RefreshPolicyExceptionDialog_addDialogLabel=Add Exception
+RefreshPolicyExceptionDialog_contentTypeDropdownLabel=Content Type:
+RefreshPolicyExceptionDialog_deleteButtonLabel=Delete
+RefreshPolicyExceptionDialog_editDialogLabel=Edit Exception
+RefreshPolicyExceptionDialog_exceptionPropertiesGroupLabel=Exception Properties
+RefreshPolicyExceptionDialog_exceptionTypeContentType=Content Type
+RefreshPolicyExceptionDialog_exceptionTypeDropdownLabel=Exception Type:
+RefreshPolicyExceptionDialog_exceptionTypeResourceNamePattern=Resource Name Pattern
+RefreshPolicyExceptionDialog_exceptionTypeResources=Resources
+RefreshPolicyExceptionDialog_patternsGroupLabel=Patterns
+RefreshPolicyTab_addExceptionButtonLabel=Add Exception...
+RefreshPolicyTab_addResourceButtonLabel=Add Resource...
+RefreshPolicyTab_deleteButtonLabel=Delete...
+RefreshPolicyTab_editButtonLabel=Edit...
+RefreshPolicyTab_exceptionsLabel=Exceptions
+RefreshPolicyTab_resourcesGroupLabel=Resources
+RefreshPolicyTab_tabLabel=The following resources will be refreshed after the project is built:
+
# ----------- Resource Custom Build Step Block -----------
ResourceCustomBuildStepBlock_label_applicability=Custom Build Step Applicability
ResourceCustomBuildStepBlock_label_applicability_rule_before=Apply Custom Build Step Before Other Tools

Back to the top