modules/core/client-api/src/main/java/org/rhq/core/clientapi/agent/inventory/CreateResourceRequest.java | 319
modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/ResourceFactoryManager.java | 31
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/form/DurationItem.java | 303
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/gwt/ResourceGWTService.java | 4
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/AbstractResourceFactoryWizard.java | 9
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryConfigurationStep.java | 49
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryCreateWizard.java | 5
modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/server/gwt/ResourceGWTServiceImpl.java | 9
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties | 4213 ++++-----
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_de.properties | 2089 ++--
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_ja.properties | 4110 ++++-----
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_pt.properties | 4413 ++++------
modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages_zh.properties | 12
modules/enterprise/server/jar/src/main/java/org/rhq/enterprise/server/resource/ResourceFactoryManagerBean.java | 61
modules/enterprise/server/jar/src/main/java/org/rhq/enterprise/server/resource/ResourceFactoryManagerLocal.java | 27
modules/enterprise/server/jar/src/main/java/org/rhq/enterprise/server/resource/ResourceFactoryManagerRemote.java | 70
modules/enterprise/server/jar/src/main/java/org/rhq/enterprise/server/webservices/WebservicesManagerBean.java | 28
modules/plugins/jboss-as-5/src/test/java/org/rhq/plugins/jbossas5/test/AbstractDestinationTest.java | 279
modules/plugins/jboss-as-5/src/test/java/org/rhq/plugins/jbossas5/test/AbstractResourceTest.java | 624 -
19 files changed, 8133 insertions(+), 8522 deletions(-)
New commits:
commit ac0d61b0935d756ce9752b37680760ed77f00004
Author: Jay Shaughnessy <jshaughn(a)redhat.com>
Date: Fri May 27 15:51:02 2011 -0400
[BZ 707759 - Deployment of new WAR to EAP server fails due to thread timeout - Need configurable thread timeout]
Add the ability to set a timeout on an individual resource create (in the
wizard) and pass that on with the agent request. This value allows a long
running create/deploy to avoid timeout issues without having to override
the create timeout globally in the rhq-agent-env (although that ability is
still there).
- added new signatures to the ResourceFactoryManagerRemote to include a
timeout param. (this is a bit cumbersome as it had to be added to several
create methods. but I guess we have to keep the existing API backward
compatible. I did mark the previous signatures as deprecated.)
- Analogous changes to the gwt service support.
- add some jdoc and a little more flexibility to DurationItem.
- update resource bundles as needed.
Note: using new resource bundle plugin for eclipse and since it "manages"
the underlying resource bundles it applied some minor formatting
changes that kills the diff on this go around. sorry.
diff --git a/modules/core/client-api/src/main/java/org/rhq/core/clientapi/agent/inventory/CreateResourceRequest.java b/modules/core/client-api/src/main/java/org/rhq/core/clientapi/agent/inventory/CreateResourceRequest.java
index 215e0d4..102a2f2 100644
--- a/modules/core/client-api/src/main/java/org/rhq/core/clientapi/agent/inventory/CreateResourceRequest.java
+++ b/modules/core/client-api/src/main/java/org/rhq/core/clientapi/agent/inventory/CreateResourceRequest.java
@@ -1,155 +1,164 @@
- /*
- * RHQ Management Platform
- * Copyright (C) 2005-2008 Red Hat, Inc.
- * All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License, version 2, as
- * published by the Free Software Foundation, and/or the GNU Lesser
- * General Public License, version 2.1, also as published by the Free
- * Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License and the GNU Lesser General Public License
- * for more details.
- *
- * You should have received a copy of the GNU General Public License
- * and the GNU Lesser General Public License along with this program;
- * if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-package org.rhq.core.clientapi.agent.inventory;
-
-import java.io.Serializable;
-
-import org.rhq.core.domain.configuration.Configuration;
-import org.rhq.core.domain.content.transfer.ResourcePackageDetails;
-
-/**
- * Transfer object for requesting a new resource be created.
- *
- * @author Jason Dobies
- */
-public class CreateResourceRequest implements Serializable {
- // Attributes --------------------------------------------
-
- // General ---------
-
- private int requestId;
- private int parentResourceId;
- private String resourceTypeName;
- private String pluginName;
- private String resourceName;
-
- // Configuration ----------
-
- private Configuration resourceConfiguration;
- private Configuration pluginConfiguration;
-
- // Package ----------
-
- private ResourcePackageDetails packageDetails;
-
- // Constructors --------------------------------------------
-
- public CreateResourceRequest() {
- }
-
- public CreateResourceRequest(int requestId, int parentResourceId, String resourceName, String resourceTypeName,
- String pluginName, Configuration pluginConfiguration, Configuration resourceConfiguration) {
- this.resourceName = resourceName;
- this.requestId = requestId;
- this.parentResourceId = parentResourceId;
- this.resourceTypeName = resourceTypeName;
- this.pluginName = pluginName;
- this.pluginConfiguration = pluginConfiguration;
- this.resourceConfiguration = resourceConfiguration;
- }
-
- public CreateResourceRequest(int requestId, int parentResourceId, String resourceName, String resourceTypeName,
- String pluginName, Configuration pluginConfiguration, ResourcePackageDetails packageDeatils) {
- this.resourceName = resourceName;
- this.requestId = requestId;
- this.parentResourceId = parentResourceId;
- this.resourceTypeName = resourceTypeName;
- this.pluginName = pluginName;
- this.pluginConfiguration = pluginConfiguration;
- this.packageDetails = packageDeatils;
- }
-
- // Public --------------------------------------------
-
- public int getRequestId() {
- return requestId;
- }
-
- public void setRequestId(int requestId) {
- this.requestId = requestId;
- }
-
- public int getParentResourceId() {
- return parentResourceId;
- }
-
- public void setParentResourceId(int parentResourceId) {
- this.parentResourceId = parentResourceId;
- }
-
- public String getResourceName() {
- return resourceName;
- }
-
- public void setResourceName(String resourceName) {
- this.resourceName = resourceName;
- }
-
- public String getResourceTypeName() {
- return resourceTypeName;
- }
-
- public void setResourceTypeName(String resourceTypeName) {
- this.resourceTypeName = resourceTypeName;
- }
-
- public String getPluginName() {
- return pluginName;
- }
-
- public void setPluginName(String pluginName) {
- this.pluginName = pluginName;
- }
-
- public Configuration getPluginConfiguration() {
- return pluginConfiguration;
- }
-
- public void setPluginConfiguration(Configuration pluginConfiguration) {
- this.pluginConfiguration = pluginConfiguration;
- }
-
- public Configuration getResourceConfiguration() {
- return resourceConfiguration;
- }
-
- public void setResourceConfiguration(Configuration resourceConfiguration) {
- this.resourceConfiguration = resourceConfiguration;
- }
-
- public ResourcePackageDetails getPackageDetails() {
- return packageDetails;
- }
-
- public void setPackageDetails(ResourcePackageDetails packageDetails) {
- this.packageDetails = packageDetails;
- }
-
- // Object Overridden Methods --------------------------------------------
-
- @Override
- public String toString() {
- return "CreateResourceRequest[RequestId=" + requestId + ",ParentResourceId=" + parentResourceId
- + ",ResourceType=" + resourceTypeName + ", PluginName=" + pluginName + "]";
- }
-}
\ No newline at end of file
+/*
+ * RHQ Management Platform
+ * Copyright (C) 2005-2008 Red Hat, Inc.
+ * All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2, as
+ * published by the Free Software Foundation, and/or the GNU Lesser
+ * General Public License, version 2.1, also as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License and the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * and the GNU Lesser General Public License along with this program;
+ * if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.rhq.core.clientapi.agent.inventory;
+
+import java.io.Serializable;
+
+import org.rhq.core.domain.configuration.Configuration;
+import org.rhq.core.domain.content.transfer.ResourcePackageDetails;
+
+/**
+ * Transfer object for requesting a new resource be created.
+ *
+ * @author Jason Dobies
+ */
+public class CreateResourceRequest implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+ private int requestId;
+ private int parentResourceId;
+ private String resourceTypeName;
+ private String pluginName;
+ private String resourceName;
+ private Integer timeout;
+
+ // Configuration ----------
+
+ private Configuration resourceConfiguration;
+ private Configuration pluginConfiguration;
+
+ // Package ----------
+
+ private ResourcePackageDetails packageDetails;
+
+ // Constructors --------------------------------------------
+
+ public CreateResourceRequest() {
+ }
+
+ public CreateResourceRequest(int requestId, int parentResourceId, String resourceName, String resourceTypeName,
+ String pluginName, Configuration pluginConfiguration, Configuration resourceConfiguration, Integer timeout) {
+ this.resourceName = resourceName;
+ this.requestId = requestId;
+ this.parentResourceId = parentResourceId;
+ this.resourceTypeName = resourceTypeName;
+ this.pluginName = pluginName;
+ this.pluginConfiguration = pluginConfiguration;
+ this.resourceConfiguration = resourceConfiguration;
+ this.timeout = timeout;
+ }
+
+ public CreateResourceRequest(int requestId, int parentResourceId, String resourceName, String resourceTypeName,
+ String pluginName, Configuration pluginConfiguration, ResourcePackageDetails packageDeatils, Integer timeout) {
+ this.resourceName = resourceName;
+ this.requestId = requestId;
+ this.parentResourceId = parentResourceId;
+ this.resourceTypeName = resourceTypeName;
+ this.pluginName = pluginName;
+ this.pluginConfiguration = pluginConfiguration;
+ this.packageDetails = packageDeatils;
+ this.timeout = timeout;
+ }
+
+ // Public --------------------------------------------
+
+ public int getRequestId() {
+ return requestId;
+ }
+
+ public void setRequestId(int requestId) {
+ this.requestId = requestId;
+ }
+
+ public int getParentResourceId() {
+ return parentResourceId;
+ }
+
+ public void setParentResourceId(int parentResourceId) {
+ this.parentResourceId = parentResourceId;
+ }
+
+ public String getResourceName() {
+ return resourceName;
+ }
+
+ public void setResourceName(String resourceName) {
+ this.resourceName = resourceName;
+ }
+
+ public String getResourceTypeName() {
+ return resourceTypeName;
+ }
+
+ public void setResourceTypeName(String resourceTypeName) {
+ this.resourceTypeName = resourceTypeName;
+ }
+
+ public String getPluginName() {
+ return pluginName;
+ }
+
+ public void setPluginName(String pluginName) {
+ this.pluginName = pluginName;
+ }
+
+ public Configuration getPluginConfiguration() {
+ return pluginConfiguration;
+ }
+
+ public void setPluginConfiguration(Configuration pluginConfiguration) {
+ this.pluginConfiguration = pluginConfiguration;
+ }
+
+ public Configuration getResourceConfiguration() {
+ return resourceConfiguration;
+ }
+
+ public void setResourceConfiguration(Configuration resourceConfiguration) {
+ this.resourceConfiguration = resourceConfiguration;
+ }
+
+ public ResourcePackageDetails getPackageDetails() {
+ return packageDetails;
+ }
+
+ public void setPackageDetails(ResourcePackageDetails packageDetails) {
+ this.packageDetails = packageDetails;
+ }
+
+ // Object Overridden Methods --------------------------------------------
+
+ public Integer getTimeout() {
+ return timeout;
+ }
+
+ public void setTimeout(Integer timeout) {
+ this.timeout = timeout;
+ }
+
+ @Override
+ public String toString() {
+ return "CreateResourceRequest[RequestId=" + requestId + ",ParentResourceId=" + parentResourceId
+ + ",ResourceType=" + resourceTypeName + ", PluginName=" + pluginName + "Timeout=" + timeout + "]";
+ }
+}
diff --git a/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/ResourceFactoryManager.java b/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/ResourceFactoryManager.java
index cd0bfcc..2993b2b 100644
--- a/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/ResourceFactoryManager.java
+++ b/modules/core/plugin-container/src/main/java/org/rhq/core/pc/inventory/ResourceFactoryManager.java
@@ -22,7 +22,6 @@
*/
package org.rhq.core.pc.inventory;
-import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
@@ -31,7 +30,6 @@ import java.util.concurrent.TimeUnit;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.jetbrains.annotations.Nullable;
import org.rhq.core.clientapi.agent.PluginContainerException;
import org.rhq.core.clientapi.agent.inventory.CreateResourceRequest;
@@ -41,7 +39,6 @@ import org.rhq.core.clientapi.agent.inventory.DeleteResourceResponse;
import org.rhq.core.clientapi.agent.inventory.ResourceFactoryAgentService;
import org.rhq.core.clientapi.agent.metadata.PluginMetadataManager;
import org.rhq.core.clientapi.server.inventory.ResourceFactoryServerService;
-import org.rhq.core.domain.content.PackageType;
import org.rhq.core.domain.resource.ResourceType;
import org.rhq.core.pc.ContainerService;
import org.rhq.core.pc.PluginContainer;
@@ -76,7 +73,6 @@ public class ResourceFactoryManager extends AgentService implements ContainerSer
// create or delete is in progress that the resource is write-locked, so no other actions can take place (like
// metric collection).
//
- // TODO: Add a timeout to the create resource wizard that can be set as an override for a single create action.
private static final int FACET_CREATE_TIMEOUT;
private static final int FACET_DELETE_TIMEOUT;
@@ -153,6 +149,7 @@ public class ResourceFactoryManager extends AgentService implements ContainerSer
// ResourceFactoryAgentService Implementation --------------------------------------------
+ @SuppressWarnings("unchecked")
public CreateResourceResponse executeCreateResourceImmediately(CreateResourceRequest request)
throws PluginContainerException {
// Load the actual resource type instance to be passed to the facet
@@ -172,7 +169,8 @@ public class ResourceFactoryManager extends AgentService implements ContainerSer
.getPluginConfiguration(), request.getResourceConfiguration(), request.getPackageDetails());
// Execute the create against the plugin
- CreateChildResourceFacet facet = getCreateChildResourceFacet(request.getParentResourceId());
+ CreateChildResourceFacet facet = getCreateChildResourceFacet(request.getParentResourceId(), request
+ .getTimeout());
CreateResourceRunner runner = new CreateResourceRunner(this, request.getParentResourceId(), facet, request
.getRequestId(), report, configuration.isInsideAgent());
@@ -205,13 +203,15 @@ public class ResourceFactoryManager extends AgentService implements ContainerSer
.getPluginConfiguration(), request.getResourceConfiguration(), request.getPackageDetails());
// Execute the create against the plugin
- CreateChildResourceFacet facet = getCreateChildResourceFacet(request.getParentResourceId());
+ CreateChildResourceFacet facet = getCreateChildResourceFacet(request.getParentResourceId(), request
+ .getTimeout());
CreateResourceRunner runner = new CreateResourceRunner(this, request.getParentResourceId(), facet, request
.getRequestId(), report, configuration.isInsideAgent());
executor.submit((Runnable) runner);
}
+ @SuppressWarnings("unchecked")
public DeleteResourceResponse executeDeleteResourceImmediately(DeleteResourceRequest request)
throws PluginContainerException {
int resourceId = request.getResourceId();
@@ -277,27 +277,20 @@ public class ResourceFactoryManager extends AgentService implements ContainerSer
* Returns the component that should be used to create the resource in the given request.
*
* @param parentResourceId identifies the parent under which the new resource will be created
+ * @param timeout the agent side timeout for the resource creation. if null or unusable use FACET_CREATE_TIMEOUT.
*
* @return component used to create the resource
*
* @throws PluginContainerException if the resource component required to create the resource does not implement the
* correct facet
*/
- private CreateChildResourceFacet getCreateChildResourceFacet(int parentResourceId) throws PluginContainerException {
+ private CreateChildResourceFacet getCreateChildResourceFacet(int parentResourceId, Integer timeout)
+ throws PluginContainerException {
+ int createTimeout = (null == timeout || timeout < 1) ? FACET_CREATE_TIMEOUT : timeout;
+
CreateChildResourceFacet facet = ComponentUtil.getComponent(parentResourceId, CreateChildResourceFacet.class,
- FacetLockType.WRITE, FACET_CREATE_TIMEOUT, false, true);
+ FacetLockType.WRITE, createTimeout, false, true);
return facet;
}
- @Nullable
- private PackageType getPackageType(ResourceType resourceType, String packageTypeName) {
- Set<PackageType> packageTypes = resourceType.getPackageTypes();
- for (PackageType packageType : packageTypes) {
- if (packageType.getName().equals(packageTypeName)) {
- return packageType;
- }
- }
-
- return null;
- }
}
\ No newline at end of file
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/form/DurationItem.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/form/DurationItem.java
index 8ac85b5..06792e3 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/form/DurationItem.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/form/DurationItem.java
@@ -22,6 +22,11 @@
*/
package org.rhq.enterprise.gui.coregui.client.components.form;
+import java.util.EnumSet;
+import java.util.LinkedHashMap;
+import java.util.Set;
+import java.util.TreeSet;
+
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.CanvasItem;
import com.smartgwt.client.widgets.form.fields.ComboBoxItem;
@@ -31,17 +36,13 @@ import com.smartgwt.client.widgets.form.fields.StaticTextItem;
import com.smartgwt.client.widgets.form.fields.events.ChangedEvent;
import com.smartgwt.client.widgets.form.fields.events.ChangedHandler;
import com.smartgwt.client.widgets.form.validator.IntegerRangeValidator;
+
import org.rhq.enterprise.gui.coregui.client.CoreGUI;
import org.rhq.enterprise.gui.coregui.client.Messages;
import org.rhq.enterprise.gui.coregui.client.util.FormUtility;
import org.rhq.enterprise.gui.coregui.client.util.TypeConversionUtility;
import org.rhq.enterprise.gui.coregui.client.util.selenium.Locatable;
-import java.util.EnumSet;
-import java.util.LinkedHashMap;
-import java.util.Set;
-import java.util.TreeSet;
-
/**
* A form item for entering a duration - consists of an IntegerItem for entering the amount of time and a
* ComboBoxItem for entering the duration units.
@@ -62,14 +63,42 @@ public class DurationItem extends CanvasItem {
private boolean isReadOnly;
private UnitType unitType;
+ /**
+ * @param name
+ * @param title
+ * @param supportedUnits when specified, the Set's most granular TimeUnit will be the valueUnit (@{link {@link #getValueUnit()})
+ * @param supportsIterations
+ * @param isReadOnly
+ * @param parentWidget
+ */
public DurationItem(String name, String title, TreeSet<TimeUnit> supportedUnits, boolean supportsIterations,
- boolean isReadOnly, Locatable parentWidget) {
+ boolean isReadOnly, Locatable parentWidget) {
+
+ this(name, title, (null != supportedUnits && !supportedUnits.isEmpty()) ? supportedUnits.iterator().next()
+ : null, supportedUnits, supportsIterations, isReadOnly, parentWidget);
+ }
+
+ /**
+ * @param name
+ * @param title
+ * @param valueUnit the TimeUnit for to the item value (@{link {@link #getValueUnit()}). If null the default is used.
+ * If provided will override the default. The default is the supportedUnit Set's most granular TimeUnit (@{link {@link #getValueUnit()}).
+ * @param supportedUnits
+ * @param supportsIterations
+ * @param isReadOnly
+ * @param parentWidget
+ */
+ public DurationItem(String name, String title, TimeUnit valueUnit, TreeSet<TimeUnit> supportedUnits,
+ boolean supportsIterations, boolean isReadOnly, Locatable parentWidget) {
super(name, title);
+ this.valueUnit = valueUnit;
this.supportedUnitTypes = EnumSet.noneOf(UnitType.class);
if (supportedUnits != null && !supportedUnits.isEmpty()) {
this.supportedUnitTypes.add(UnitType.TIME);
- this.valueUnit = supportedUnits.iterator().next();
+ if (null == this.valueUnit) {
+ this.valueUnit = supportedUnits.iterator().next();
+ }
}
if (supportsIterations) {
this.supportedUnitTypes.add(UnitType.ITERATIONS);
@@ -148,11 +177,11 @@ public class DurationItem extends CanvasItem {
String unitString = null;
switch (unitType) {
- case TIME:
- unitString = this.valueUnit.getDisplayName();
- break;
- case ITERATIONS:
- unitString = MSG.common_unit_times();
+ case TIME:
+ unitString = this.valueUnit.getDisplayName();
+ break;
+ case ITERATIONS:
+ unitString = MSG.common_unit_times();
}
if (this.isReadOnly) {
@@ -167,7 +196,7 @@ public class DurationItem extends CanvasItem {
if (value != null) {
this.form.setValue(FIELD_VALUE, value);
} else {
- this.form.setValue(FIELD_VALUE, (String)null);
+ this.form.setValue(FIELD_VALUE, (String) null);
}
this.form.setValue(FIELD_UNITS, unitString);
}
@@ -196,146 +225,146 @@ public class DurationItem extends CanvasItem {
throw new IllegalStateException(MSG.widget_durationItem_inputUnitLessThanTargetUnit());
}
switch (unit) {
+ case MILLISECONDS:
+ switch (this.valueUnit) {
case MILLISECONDS:
- switch (this.valueUnit) {
- case MILLISECONDS:
- convertedValue = integerValue;
- break;
- }
+ convertedValue = integerValue;
break;
+ }
+ break;
+ case SECONDS:
+ switch (this.valueUnit) {
case SECONDS:
- switch (this.valueUnit) {
- case SECONDS:
- convertedValue = integerValue;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 1000;
- break;
- }
+ convertedValue = integerValue;
break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 1000;
+ break;
+ }
+ break;
+ case MINUTES:
+ switch (this.valueUnit) {
case MINUTES:
- switch (this.valueUnit) {
- case MINUTES:
- convertedValue = integerValue;
- break;
- case SECONDS:
- convertedValue = integerValue * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
+ break;
+ case SECONDS:
+ convertedValue = integerValue * 60;
+ break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 60 * 1000;
break;
+ }
+ break;
+ case HOURS:
+ switch (this.valueUnit) {
case HOURS:
- switch (this.valueUnit) {
- case HOURS:
- convertedValue = integerValue;
- break;
- case MINUTES:
- convertedValue = integerValue * 60;
- break;
- case SECONDS:
- convertedValue = integerValue * 60 * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 60 * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
+ break;
+ case MINUTES:
+ convertedValue = integerValue * 60;
+ break;
+ case SECONDS:
+ convertedValue = integerValue * 60 * 60;
break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 60 * 60 * 1000;
+ break;
+ }
+ break;
+ case DAYS:
+ switch (this.valueUnit) {
case DAYS:
- switch (this.valueUnit) {
- case DAYS:
- convertedValue = integerValue;
- break;
- case HOURS:
- convertedValue = integerValue * 24;
- break;
- case MINUTES:
- convertedValue = integerValue * 24 * 60;
- break;
- case SECONDS:
- convertedValue = integerValue * 24 * 60 * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 24 * 60 * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
break;
+ case HOURS:
+ convertedValue = integerValue * 24;
+ break;
+ case MINUTES:
+ convertedValue = integerValue * 24 * 60;
+ break;
+ case SECONDS:
+ convertedValue = integerValue * 24 * 60 * 60;
+ break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 24 * 60 * 60 * 1000;
+ break;
+ }
+ break;
+ case WEEKS:
+ switch (this.valueUnit) {
case WEEKS:
- switch (this.valueUnit) {
- case WEEKS:
- convertedValue = integerValue;
- break;
- case DAYS:
- convertedValue = integerValue * 7;
- break;
- case HOURS:
- convertedValue = integerValue * 7 * 24;
- break;
- case MINUTES:
- convertedValue = integerValue * 7 * 24 * 60;
- break;
- case SECONDS:
- convertedValue = integerValue * 7 * 24 * 60 * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 7 * 24 * 60 * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
+ break;
+ case DAYS:
+ convertedValue = integerValue * 7;
+ break;
+ case HOURS:
+ convertedValue = integerValue * 7 * 24;
break;
+ case MINUTES:
+ convertedValue = integerValue * 7 * 24 * 60;
+ break;
+ case SECONDS:
+ convertedValue = integerValue * 7 * 24 * 60 * 60;
+ break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 7 * 24 * 60 * 60 * 1000;
+ break;
+ }
+ break;
+ case MONTHS:
+ switch (this.valueUnit) {
case MONTHS:
- switch (this.valueUnit) {
- case MONTHS:
- convertedValue = integerValue;
- break;
- case WEEKS:
- convertedValue = integerValue * 4;
- break;
- case DAYS:
- convertedValue = integerValue * 30;
- break;
- case HOURS:
- convertedValue = integerValue * 30 * 24;
- break;
- case MINUTES:
- convertedValue = integerValue * 30 * 24 * 60;
- break;
- case SECONDS:
- convertedValue = integerValue * 30 * 24 * 60 * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 30 * 24 * 60 * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
+ break;
+ case WEEKS:
+ convertedValue = integerValue * 4;
+ break;
+ case DAYS:
+ convertedValue = integerValue * 30;
+ break;
+ case HOURS:
+ convertedValue = integerValue * 30 * 24;
+ break;
+ case MINUTES:
+ convertedValue = integerValue * 30 * 24 * 60;
break;
+ case SECONDS:
+ convertedValue = integerValue * 30 * 24 * 60 * 60;
+ break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 30 * 24 * 60 * 60 * 1000;
+ break;
+ }
+ break;
+ case YEARS:
+ switch (this.valueUnit) {
case YEARS:
- switch (this.valueUnit) {
- case YEARS:
- convertedValue = integerValue;
- break;
- case MONTHS:
- convertedValue = integerValue * 12;
- break;
- case WEEKS:
- convertedValue = integerValue * 52;
- break;
- case DAYS:
- convertedValue = integerValue * 365;
- break;
- case HOURS:
- convertedValue = integerValue * 365 * 24;
- break;
- case MINUTES:
- convertedValue = integerValue * 365 * 24 * 60;
- break;
- case SECONDS:
- convertedValue = integerValue * 365 * 24 * 60 * 60;
- break;
- case MILLISECONDS:
- convertedValue = integerValue * 365 * 24 * 60 * 60 * 1000;
- break;
- }
+ convertedValue = integerValue;
+ break;
+ case MONTHS:
+ convertedValue = integerValue * 12;
+ break;
+ case WEEKS:
+ convertedValue = integerValue * 52;
+ break;
+ case DAYS:
+ convertedValue = integerValue * 365;
+ break;
+ case HOURS:
+ convertedValue = integerValue * 365 * 24;
+ break;
+ case MINUTES:
+ convertedValue = integerValue * 365 * 24 * 60;
+ break;
+ case SECONDS:
+ convertedValue = integerValue * 365 * 24 * 60 * 60;
+ break;
+ case MILLISECONDS:
+ convertedValue = integerValue * 365 * 24 * 60 * 60 * 1000;
break;
+ }
+ break;
}
}
}
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/gwt/ResourceGWTService.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/gwt/ResourceGWTService.java
index 38ca06f..f44cf8e 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/gwt/ResourceGWTService.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/gwt/ResourceGWTService.java
@@ -46,10 +46,10 @@ import org.rhq.core.domain.util.PageList;
public interface ResourceGWTService extends RemoteService {
void createResource(int parentResourceId, int newResourceTypeId, String newResourceName,
- Configuration newResourceConfiguration) throws RuntimeException;
+ Configuration newResourceConfiguration, Integer timeout) throws RuntimeException;
void createResource(int parentResourceId, int newResourceTypeId, String newResourceName,
- Configuration deploymentTimeConfiguration, int packageVersionId) throws RuntimeException;
+ Configuration deploymentTimeConfiguration, int packageVersionId, Integer timeout) throws RuntimeException;
List<DeleteResourceHistory> deleteResources(int[] resourceIds) throws RuntimeException;
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/AbstractResourceFactoryWizard.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/AbstractResourceFactoryWizard.java
index cc2f7c4..c94fae3 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/AbstractResourceFactoryWizard.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/AbstractResourceFactoryWizard.java
@@ -40,6 +40,7 @@ public abstract class AbstractResourceFactoryWizard extends AbstractWizard {
private ConfigurationDefinition newResourceConfigurationDefinition;
private Configuration newResourceStartingConfiguration;
private Configuration newResourceConfiguration;
+ private Integer newResourceCreateTimeout = null;
private WizardView view;
@@ -125,6 +126,14 @@ public abstract class AbstractResourceFactoryWizard extends AbstractWizard {
this.newResourceConfiguration = newResourceConfiguration;
}
+ public Integer getNewResourceCreateTimeout() {
+ return newResourceCreateTimeout;
+ }
+
+ public void setNewResourceCreateTimeout(Integer newResourceCreateTimeout) {
+ this.newResourceCreateTimeout = newResourceCreateTimeout;
+ }
+
public void cancel() {
// nothing to do
}
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryConfigurationStep.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryConfigurationStep.java
index a21a78a..c69c08d 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryConfigurationStep.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryConfigurationStep.java
@@ -18,13 +18,18 @@
*/
package org.rhq.enterprise.gui.coregui.client.inventory.resource.factory;
+import java.util.TreeSet;
+
import com.smartgwt.client.widgets.Canvas;
+import com.smartgwt.client.widgets.form.DynamicForm;
import org.rhq.core.domain.configuration.Configuration;
import org.rhq.core.domain.configuration.definition.ConfigurationDefinition;
-import org.rhq.enterprise.gui.coregui.client.components.HeaderLabel;
import org.rhq.enterprise.gui.coregui.client.components.configuration.ConfigurationEditor;
+import org.rhq.enterprise.gui.coregui.client.components.form.DurationItem;
+import org.rhq.enterprise.gui.coregui.client.components.form.TimeUnit;
import org.rhq.enterprise.gui.coregui.client.components.wizard.AbstractWizardStep;
+import org.rhq.enterprise.gui.coregui.client.inventory.common.detail.operation.schedule.AbstractOperationScheduleDataSource;
import org.rhq.enterprise.gui.coregui.client.util.selenium.Locatable;
import org.rhq.enterprise.gui.coregui.client.util.selenium.LocatableVLayout;
@@ -35,7 +40,9 @@ import org.rhq.enterprise.gui.coregui.client.util.selenium.LocatableVLayout;
public class ResourceFactoryConfigurationStep extends AbstractWizardStep {
private boolean noConfigurationNeeded = false; // if true, it has been determined the user doesn't have to set any config
+ private LocatableVLayout vLayout;
private ConfigurationEditor editor;
+ private DurationItem timeoutItem;
AbstractResourceFactoryWizard wizard;
public ResourceFactoryConfigurationStep(AbstractResourceFactoryWizard wizard) {
@@ -43,36 +50,38 @@ public class ResourceFactoryConfigurationStep extends AbstractWizardStep {
}
public Canvas getCanvas(Locatable parent) {
- if (editor == null) {
+ if (vLayout == null) {
+ String locatorId = (null == parent) ? "ResourceFactoryConfig" : parent
+ .extendLocatorId("ResourceFactoryConfig");
+ vLayout = new LocatableVLayout(locatorId);
ConfigurationDefinition def = wizard.getNewResourceConfigurationDefinition();
if (def != null) {
Configuration startingConfig = wizard.getNewResourceStartingConfiguration();
- if (parent != null) {
- editor = new ConfigurationEditor(parent.extendLocatorId("ResourceFactoryConfig"), def,
- startingConfig);
- } else {
- editor = new ConfigurationEditor("ResourceFactoryConfig", def, startingConfig);
- }
- } else {
- // there is no configuration to edit, just return a static message indicating that there is nothing to do
- noConfigurationNeeded = true;
- LocatableVLayout layout = new LocatableVLayout("noConfigMsgLayout");
- layout.setMargin(Integer.valueOf(20));
- layout.setWidth100();
- layout.setHeight(10);
- HeaderLabel label = new HeaderLabel(MSG.widget_resourceFactoryWizard_editConfigStep_nothingToDo());
- label.setWidth100();
- layout.addMember(label);
- return layout;
+ editor = new ConfigurationEditor(vLayout.extendLocatorId("Editor"), def, startingConfig);
+ vLayout.addMember(editor);
}
+
+ TreeSet<TimeUnit> supportedUnits = new TreeSet<TimeUnit>();
+ supportedUnits.add(TimeUnit.SECONDS);
+ supportedUnits.add(TimeUnit.MINUTES);
+ timeoutItem = new DurationItem(AbstractOperationScheduleDataSource.Field.TIMEOUT, MSG
+ .view_operationScheduleDetails_field_timeout(), TimeUnit.MILLISECONDS, supportedUnits, false, false,
+ vLayout);
+ timeoutItem.setContextualHelp(MSG.widget_resourceFactoryWizard_timeoutHelp());
+
+ DynamicForm timeoutForm = new DynamicForm();
+ timeoutForm.setFields(timeoutItem);
+ timeoutForm.setMargin(10);
+ vLayout.addMember(timeoutForm);
}
- return editor;
+ return vLayout;
}
public boolean nextPage() {
if (noConfigurationNeeded == true || (editor != null && editor.validate())) {
wizard.setNewResourceConfiguration((noConfigurationNeeded) ? null : editor.getConfiguration());
+ wizard.setNewResourceCreateTimeout(timeoutItem.getValueAsInteger());
wizard.execute();
return true;
}
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryCreateWizard.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryCreateWizard.java
index 81d08aa..10fe75f 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryCreateWizard.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/inventory/resource/factory/ResourceFactoryCreateWizard.java
@@ -129,7 +129,8 @@ public class ResourceFactoryCreateWizard extends AbstractResourceFactoryWizard {
}
GWTServiceLookup.getResourceService().createResource(parentResourceId, createTypeId, (String) null,
- deployTimeConfiguration, packageVersionId, new AsyncCallback<Void>() {
+ deployTimeConfiguration, packageVersionId, this.getNewResourceCreateTimeout(),
+ new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
CoreGUI.getErrorHandler().handleError(MSG.widget_resourceFactoryWizard_execute2(), caught);
getView().closeDialog();
@@ -151,7 +152,7 @@ public class ResourceFactoryCreateWizard extends AbstractResourceFactoryWizard {
Configuration resourceConfiguration = this.getNewResourceConfiguration();
GWTServiceLookup.getResourceService().createResource(parentResourceId, createTypeId, newResourceName,
- resourceConfiguration, new AsyncCallback<Void>() {
+ resourceConfiguration, this.getNewResourceCreateTimeout(), new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
CoreGUI.getErrorHandler().handleError(MSG.widget_resourceFactoryWizard_execute2(), caught);
getView().closeDialog();
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/server/gwt/ResourceGWTServiceImpl.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/server/gwt/ResourceGWTServiceImpl.java
index 6098f53..43e701e 100644
--- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/server/gwt/ResourceGWTServiceImpl.java
+++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/server/gwt/ResourceGWTServiceImpl.java
@@ -230,7 +230,7 @@ public class ResourceGWTServiceImpl extends AbstractGWTServiceImpl implements Re
}
public void createResource(int parentResourceId, int newResourceTypeId, String newResourceName,
- Configuration newResourceConfiguration) throws RuntimeException {
+ Configuration newResourceConfiguration, Integer timeout) throws RuntimeException {
try {
ConfigurationDefinition pluginConfigDefinition = LookupUtil.getConfigurationManager()
.getPluginConfigurationDefinitionForResourceType(getSessionSubject(), newResourceTypeId);
@@ -245,14 +245,14 @@ public class ResourceGWTServiceImpl extends AbstractGWTServiceImpl implements Re
}
resourceFactoryManager.createResource(getSessionSubject(), parentResourceId, newResourceTypeId,
- newResourceName, pluginConfig, newResourceConfiguration);
+ newResourceName, pluginConfig, newResourceConfiguration, timeout);
} catch (Throwable t) {
throw getExceptionToThrowToClient(t);
}
}
public void createResource(int parentResourceId, int newResourceTypeId, String newResourceName,
- Configuration deploymentTimeConfiguration, int packageVersionId) throws RuntimeException {
+ Configuration deploymentTimeConfiguration, int packageVersionId, Integer timeout) throws RuntimeException {
try {
ConfigurationDefinition pluginConfigDefinition = LookupUtil.getConfigurationManager()
.getPluginConfigurationDefinitionForResourceType(getSessionSubject(), newResourceTypeId);
@@ -267,7 +267,8 @@ public class ResourceGWTServiceImpl extends AbstractGWTServiceImpl implements Re
}
resourceFactoryManager.createPackageBackedResourceViaPackageVersion(getSessionSubject(), parentResourceId,
- newResourceTypeId, newResourceName, pluginConfig, deploymentTimeConfiguration, packageVersionId);
+ newResourceTypeId, newResourceName, pluginConfig, deploymentTimeConfiguration, packageVersionId,
+ timeout);
} catch (Throwable t) {
throw getExceptionToThrowToClient(t);
}
diff --git a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
index 986aa6d..8a05b2a 100644
--- a/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
+++ b/modules/enterprise/gui/coregui/src/main/resources/org/rhq/enterprise/gui/coregui/client/Messages.properties
@@ -1,2172 +1,2041 @@
-#
-# RHQ GUI i18n Messages - English
-###################################
-
-#************************************** SHARED ****************************************
-
-#=================== Common =====================
-
-#
-# Build Info
-#
-common_buildInfo_gwtVersion = ${gwt.version}
-
-# Button Labels
-#--------------
-common_button_ack = Acknowledge
-common_button_ack_all = Acknowledge All
-common_button_add = Add
-common_button_advanced = Advanced...
-common_button_apply = Apply
-common_button_cancel = Cancel
-common_button_close = Close
-common_button_compare = Compare
-common_button_create_child = Create Child
-common_button_delete = Delete
-common_button_delete_all = Delete All
-common_button_disable = Disable
-common_button_edit = Edit
-common_button_enable = Enable
-common_button_finish = Finish
-common_button_import = Import
-common_button_new = New
-common_button_next = Next
-common_button_ok = OK
-common_button_previous = Previous
-common_button_purgeAll = Purge All
-common_button_refresh = Refresh
-common_button_reset = Reset
-common_button_save = Save
-common_button_schedule = Schedule
-common_button_search = Search
-common_button_set = Set
-common_button_showDetails = Show Details...
-common_button_uninventory = Uninventory
-
-# Common Labels
-#------------------------
-common_label_ago=ago
-common_label_all = ALL
-common_label_all_resources = all resources
-common_label_day = day
-common_label_days = days
-common_label_hour = hour
-common_label_hours = hours
-common_label_item = item
-common_label_items = items
-common_label_milliseconds = milliseconds
-common_label_minutes = minutes
-common_label_month = month
-common_label_none = none
-common_label_role = role
-common_label_roles = roles
-common_label_scheduled_operations = scheduled operations
-common_label_seconds = seconds
-common_label_selected_resources = selected resources
-common_label_unlimited = unlimited
-common_label_user = user
-common_label_users = users
-common_label_week = week
-common_label_weeks = weeks
-common_label_yesterday=Yesterday
-
-# Common Units
-#-------------
-common_unit_times = times
-common_unit_milliseconds = milliseconds
-common_unit_seconds = seconds
-common_unit_minutes = minutes
-common_unit_hours = hours
-common_unit_days = days
-common_unit_weeks = weeks
-common_unit_months = months
-common_unit_years = years
-
-# Common Severities
-#------------------
-common_severity_debug = Debug
-common_severity_info = Info
-common_severity_warn = Warn
-common_severity_error = Error
-common_severity_fatal = Fatal
-
-# Common Titles
-#--------------
-common_title_address = Address
-common_title_add_column = Add Column
-common_title_add_graph_to_view = Add Graph to Monitor View
-common_title_add_portlet = Add Portlet
-common_title_alert_range = Alert Range
-common_title_ancestry = Ancestry
-common_title_availability = Availability
-common_title_average_metrics = Average Metrics per Minute
-common_title_available_resources = Available Resources
-common_title_background = Background
-common_title_bundle = Bundle
-common_title_bundles = Bundles
-common_title_category = Category
-common_title_change_refresh_time=Refresh Interval
-common_title_columns = Columns
-common_title_configuration = Configuration
-common_title_compare_metrics = Compare Metrics
-common_title_compatibleGroups = Compatible Groups
-common_title_compatibleGroups_total = Compatible Group Total
-common_title_component_errors = Component Errors
-common_title_config_update_status = Update Status
-common_title_count = Count
-common_title_custom = Custom
-common_title_dashboard_name = Dashboard Name
-common_title_dateCreated = Date Created
-common_title_dateRange = Date Range
-common_title_default = Default
-common_title_description = Description
-common_title_details = Details
-common_title_display = Display
-common_title_display_name = Display Name
-common_title_duration = Duration
-common_title_edit_mode = Edit Mode
-common_title_enabled = Enabled?
-common_title_end = End
-common_title_error = Error
-common_title_generalProp = General Properties
-common_title_group = Group
-common_title_groups = Groups
-common_title_group_def_total = Group Definition Total
-common_title_group_member_health = Group Member Health
-common_title_icon =
-common_title_id = ID
-common_title_id_parent = Parent ID
-common_title_info = Info
-common_title_help = Help
-common_title_host = Host
-common_title_inventory = Inventory
-common_title_inventorySummary = Inventory Summary
-common_title_lastUpdated = Last Updated
-common_title_lastUpdatedBy = Last Updated By
-common_title_ldapGroups = LDAP Groups
-common_title_mashup = Mashup
-common_title_members_reporting = Members Reporting
-common_title_message = Message
-common_title_metric = Metric
-common_title_metric_chart = Metric Chart
-common_title_mixedGroups = Mixed Groups
-common_title_mixedGroups_total = Mixed Group Total
-common_title_name = Name
-common_title_new_dashboard = New Dashboard
-common_title_numeric_metrics = Numeric Metrics
-common_title_numeric_type = Numeric Type
-common_title_operation_status = Operation Status
-common_title_operations = Operations
-common_title_operations_range = Operation Range
-common_title_over = Over
-common_title_password = Password
-common_title_path = Path
-common_title_permissions = Permissions
-common_title_platform = Platform
-common_title_platform_total = Platform Total
-common_title_plugin = Plugin
-common_title_port = Port
-common_title_providers = Providers
-common_title_recent_alerts = Recent Alerts
-common_title_recent_bundle_deployments = Recent Bundle Deployments
-common_title_recent_configuration_updates = Recent Configuration Updates
-common_title_recent_event_counts = Recent Event Counts
-common_title_recent_measurements = Recent Measurements
-common_title_recent_oob_metrics = Recent Out of Bound metrics
-common_title_recent_operations = Recent Operations
-common_title_recent_pkg_history = Recent Package History
-common_title_recently_added = Recently Added
-common_title_remove_column = Remove Column
-common_title_repositories = Repositories
-common_title_resource = Resource
-common_title_resources = Resources
-common_title_resource_group = Resource Group
-common_title_resourceGroups = Resource Groups
-common_title_resource_inventory = Resource Inventory
-common_title_resource_id = Resource ID
-common_title_resource_name = Resource Name
-common_title_resource_key = Resource Key
-common_title_resource_type = Resource Type
-common_title_results_count = Results Count
-common_title_results_count_tooltip = Displays this number of results
-common_title_role = Role
-common_title_roles = Roles
-common_title_search = Search
-common_title_scheduled_operations = Scheduled Operations
-common_title_selected_resources = Selected Resources
-common_title_server = Server
-common_title_server_total = Server Total
-common_title_service = Service
-common_title_service_total = Service Total
-common_title_settings = Settings
-common_title_show = Show
-common_title_show_more = Show more...
-common_title_sort_order = Sort Order
-common_title_sort_order_tooltip = Sets sort order for results.
-common_title_start = Start
-common_title_status = Status
-common_title_stop= Stop
-common_title_summary = Summary
-common_title_tag_cloud = Tag Cloud
-common_title_the = The
-common_title_timestamp = Date/Time
-common_title_total = Total
-common_title_type = Type
-common_title_units = Units
-common_title_user = User
-common_title_users = Users
-common_title_value = Value
-common_title_version = Version
-common_title_view_mode = View Mode
-common_title_web_address = Web Address
-common_title_welcome = Welcome
-
-# Common Messages
-#--------------
-common_msg_areYouSure = Are You Sure?
-common_msg_changeAutoDetected = Change auto-detected
-common_msg_deleteConfirm = Are you sure you want to delete the # selected {0}?
-common_msg_emphasizedNotePrefix = NOTE:
-common_msg_loading = Loading...
-common_msg_noItemsToShow = No items to show
-common_msg_notYetImplemented = Not Yet Implemented
-common_msg_see_more = see more...
-common_msg_step_x_of_y = Step {0} of {1}
-common_msg_asyncTimeout = {0}. This occurred because the server is taking a long time to complete this request. \
-Please be aware that the server may still be processing your request and it may complete shortly. \
-You can check the server logs to see if any abnormal errors occurred.
-
-# Common Values
-#--------------
-common_val_for = for
-common_val_no = No
-common_val_no_lower = no
-common_val_yes = Yes
-common_val_yes_lower = yes
-common_val_never = Never
-common_val_na = N/A
-common_val_none = None
-
-# Common Statuses
-common_status_canceled = Canceled
-common_status_deferred = Deferred
-common_status_failed = Failed
-common_status_inprogress = In Progress
-common_status_nochange = No Change
-common_status_success = Success
-common_status_unknown = Unknown
-common_status_timedOut = Timed Out
-common_status_partial = Partial
-
-# 1st, 2nd, 3rd, 4th, etc.
-common_val_n1st = {0}st
-common_val_n2nd = {0}nd
-common_val_n3rd = {0}rd
-common_val_nth = {0}th
-
-# Common Alert Priorities
-#------------------------
-common_alert_high = High
-common_alert_medium = Medium
-common_alert_low = Low
-
-# Common Calendar
-#--------------
-common_calendar_january_short = jan
-common_calendar_february_short = feb
-common_calendar_march_short = mar
-common_calendar_april_short = apr
-common_calendar_may_short = may
-common_calendar_june_short = jun
-common_calendar_july_short = jul
-common_calendar_august_short = aug
-common_calendar_september_short = sept
-common_calendar_october_short = oct
-common_calendar_november_short = nov
-common_calendar_december_short = dec
-
-
-#=================== Widgets =====================
-
-# Favorites
-#--------------
-favorites = Favorites
-favorites_resources = Favorite Resources
-favorites_groups = Favorite Groups
-favorites_recentlyViewed = Recently Viewed
-
-# Record Editor
-#--------------
-widget_recordEditor_title_view = View {0} [{1}]
-widget_recordEditor_title_edit = Edit {0} [{1}]
-widget_recordEditor_title_new = Create New {0}
-# // dup in common
-widget_recordEditor_label_loading = Loading...
-widget_recordEditor_error_invalidViewPath = Invalid view path: [{0}]
-widget_recordEditor_error_noRecords = No records were returned - expected exactly one.
-widget_recordEditor_error_multipleRecords = Multiple records were returned - expected exactly one.
-widget_recordEditor_info_recordCreatedConcise = {0} created.
-widget_recordEditor_info_recordCreatedDetailed = {0} [{1}] created.
-widget_recordEditor_info_recordUpdatedConcise = {0} updated.
-widget_recordEditor_info_recordUpdatedDetailed = {0} [{1}] updated.
-widget_recordEditor_info_recordsDeletedConcise = {0} {1} deleted.
-widget_recordEditor_info_recordsDeletedDetailed = {0} {1} deleted: {2}.
-widget_recordEditor_error_operation = Operation failed. An error occurred
-widget_recordEditor_error_operationInvalidValues = Operation failed - one or more fields have invalid values
-widget_recordEditor_error_unsupportedOperationType = Unsupported operation type: [{0}]
-widget_recordEditor_error_permissionCreate = You do not have the permissions required to create a new [{0}]
-widget_recordEditor_warn_validation = One or more fields have invalid values. This [{0}] cannot be saved until these values are corrected
-
-# Resource Selector/Picker
-#--------------------------------
-widget_resourceSelector_selectResource = Select a Resource
-widget_resourceSelector_pleaseSelectResource = Please select a resource
-widget_resourceSelector_selectMultipleResources = Select Resources
-widget_resourceSelector_pleaseSelectMultipleResource = Please select one or more resources
-widget_resourceSelector_groupCategory = Group Category
-
-# Resource Factory Wizard
-#--------------------------------
-widget_resourceFactoryWizard_uploadInProgress = The upload is in progress... This can take several minutes to complete for large distribution files.
-widget_resourceFactoryWizard_uploadFileStepName = Upload Resource Content File
-widget_resourceFactoryWizard_uploadFailure = Failed to upload file
-widget_resourceFactoryWizard_editConfigStepName = Edit Configuration
-widget_resourceFactoryWizard_editConfigStep_nothingToDo = There is no configuration that you need to define for this resource.
-widget_resourceFactoryWizard_infoStepName = Resource Information
-widget_resourceFactoryWizard_infoStep_loadFail = Failed to get available Architectures
-widget_resourceFactoryWizard_namePrompt = New Resource Name
-widget_resourceFactoryWizard_templatePrompt = Connection Settings Template
-widget_resourceFactoryWizard_contentTemplatePrompt = Deployment Time Configuration Templates
-widget_resourceFactoryWizard_configTemplatePrompt = Resource Configuration Templates
-widget_resourceFactoryWizard_archPrompt = Package Architecture
-widget_resourceFactoryWizard_versionPrompt = Package Version
-widget_resourceFactoryWizard_importWizardWindowTitle = Resource Import Wizard
-widget_resourceFactoryWizard_importWizardTitle = Import Resource of Type [{0}]
-widget_resourceFactoryWizard_importFailure = Failed to manually import resource
-widget_resourceFactoryWizard_importSubmitted = A request to import a new resource of type [{0}] has been submitted
-widget_resourceFactoryWizard_createWizardWindowTitle = Resource Create Wizard
-widget_resourceFactoryWizard_createWizardTitle = Create New Resource of Type [{0}]
-widget_resourceFactoryWizard_execute1 = Failed to create a new resource - there is no package version
-widget_resourceFactoryWizard_execute2 = Failed to create a new resource
-widget_resourceFactoryWizard_createSubmitType = A request to create a resource of type [{0}] has been submitted successfully.
-widget_resourceFactoryWizard_createSubmit = A request to create a resource with the name of [{0}] has been submitted successfully.
-widget_resourceFactoryWizard_failedToGetType = Failed to get backing package type for new resource
-widget_resourceFactoryWizard_failedToDeleteVersion = Failed to delete package version while canceling a resource create
-
-widget_typeCache_loadFail = Failed to load resource type metadata
-
-widget_typeTree_badTemplateType = Invalid URL. Unknown template type [{0}]
-widget_typeTree_badTypeId = Invalid URL. Bad resource type ID [{0}]
-widget_typeTree_loadFail = Failed to load resource types
-
-# Color Picker
-#--------------
-widget_colorPicker_tooltip = Click to select a new color
-
-# Job Trigger Editor
-#--------------------
-widget_jobTriggerEditor_field_mode = Schedule using
-widget_jobTriggerEditor_value_calendar = Calendar
-widget_jobTriggerEditor_value_cronExpression = Cron Expression
-widget_jobTriggerEditor_value_now = Now
-widget_jobTriggerEditor_value_nowAndRepeat = Now & Repeat
-widget_jobTriggerEditor_value_later = Later
-widget_jobTriggerEditor_value_laterAndRepeat = Later & Repeat
-widget_jobTriggerEditor_field_cronExpression = Cron Expression
-widget_jobTriggerEditor_tab_format = Format
-widget_jobTriggerEditor_tab_examples = Examples
-widget_jobTriggerEditor_field_repeatInterval_now = Run now and every
-widget_jobTriggerEditor_field_repeatInterval_later = Repeat every
-widget_jobTriggerEditor_fieldHelp_repeatInterval = how often the operation should be executed
-widget_jobTriggerEditor_value_for = For
-widget_jobTriggerEditor_value_until = Until
-widget_jobTriggerEditor_value_indefinitely = Indefinitely
-widget_jobTriggerEditor_fieldHelp_repeatDuration = keep running this operation this many times or until this amount of time has elapsed
-widget_jobTriggerEditor_field_startType = Run
-widget_jobTriggerEditor_value_on = on
-widget_jobTriggerEditor_value_in = in
-widget_jobTriggerEditor_fieldHelp_startDelay = start executing the operation after this amount of time has elapsed
-widget_jobTriggerEditor_message_startTimeMustBeInFuture = Start time must be in the future.
-widget_jobTriggerEditor_message_endTimeMustBeAfterStartTime = End time must be after start time.
-widget_jobTriggerEditor_message_endTimeMustBeInFuture = End time must be in the future.
-
-# Duration Item
-#---------------
-widget_durationItem_inputUnitLessThanTargetUnit = Input unit is less than target unit.
-widget_durationItem_unitTypeNotSupported = Unit type [{0}] is not supported by this DurationItem.
-
-
-#===================== Utils ======================
-
-# Ancestry
-#-------------------------------------------------
-util_ancestry_parentAncestry = Parent Ancestry for:
-
-# Disambiguation Report Decorator
-#-------------------------------------------------
-util_disambiguationReportDecorator_pluginSuffix = ({0} plugin)
-
-# Monitoring Request Callback
-#------------------------------------------
-util_monitoringRequestCallback_error_checkServerStatusFailure = Unable to determine login status - check Server status.
-
-# RPC Manager
-#----------------------
-util_rpcManager_activeRequests = {0} Active Requests
-
-# User Permissions Manager
-#--------------------------
-util_userPerm_loadFailGlobal = Failed to load your global permissions - none granted.
-util_userPerm_loadFailGroup = Failed to load your permissions for Resource Group with id [{0}] - none granted.
-util_userPerm_loadFailResource = Failed to load your permissions for Resource with id [{0}] - none granted.
-
-# User Session Manager
-#--------------------------
-util_userSession_loadFailSubject = UserSessionManager: Failed to load user Subject
-util_userSession_logoutFail = Failed to logout.
-
-# Error Handler
-#--------------------
-util_errorHandler_nullException = exception was null
-
-# Widgets Field
-#---------------------
-util_widgetsField_unlimited = Unlimited
-
-
-#================== DataSources ====================
-
-# RPC (abstract)
-#-----------------------
-dataSource_bundle_loadFailed = Failed to load Bundle data
-
-
-# RPC (abstract)
-#-----------------------
-dataSource_rpc_error_transformRequestFailure = Failure in datasource while processing {0} request.
-dataSource_rpc_error_unsupportedArrayFilterType = No support for passing array filters of type {0}.
-dataSource_rpc_error_unsupportedEnumType = Please add an appropriate code block for enum {0} to RPCDataSource.getEnumArray(Class)
-dataSource_rpc_yes = yes
-dataSource_rpc_no = no
-
-# ContentRepositoryTree
-#------
-dataSource_ContentRepoTree_error_load = Error loading repositories
-dataSource_ContentRepoTree_field_parentId = Parent ID
-
-
-# Users
-#------
-###### dup in common
-dataSource_users_field_id = ID
-dataSource_users_field_name = User Name
-dataSource_users_field_ldap = LDAP Login?
-dataSource_users_field_password = Password
-dataSource_users_field_passwordVerify = Verify Password
-dataSource_users_field_firstName = First Name
-dataSource_users_field_lastName = Last Name
-dataSource_users_field_emailAddress = Email Address
-dataSource_users_field_phoneNumber = Phone Number
-dataSource_users_field_department = Department
-dataSource_users_field_factive = Login Enabled?
-dataSource_users_delete = Deleted user [{0}]
-dataSource_users_deleteFailed = Failed to delete user [{0}]
-dataSource_users_passwordsDoNotMatch = Passwords do not match.
-dataSource_users_invalidEmailAddress = Invalid email address.
-
-# Roles
-#------
-datasource_roles_field_resourceGroups = Resource Groups
-datasource_roles_field_permissions = Permissions
-datasource_roles_field_subjects = Subjects
-datasource_roles_field_ldapGroups = LDAP Groups
-
-# Platforms
-#-----------
-dataSource_platforms_field_cpu = CPU
-dataSource_platforms_field_memory = Memory
-dataSource_platforms_field_swap = Swap
-
-# Traits
-#------
-dataSource_traits_failFetch = Failed to fetch traits for criteria [{0}].
-dataSource_traits_field_primaryKey = Primary Key
-dataSource_traits_field_definitionID = Definition ID
-dataSource_traits_field_lastChanged = Last Changed
-dataSource_traits_field_trait = Trait
-dataSource_traits_group_field_groupId = Group ID
-
-# Measurement OOBs
-#---------------------------------
-dataSource_measurementOob_field_scheduleName = Metric
-dataSource_measurementOob_field_resourceName = Resource
-dataSource_measurementOob_field_parentName = Parent
-dataSource_measurementOob_field_formattedBaseband = Band
-dataSource_measurementOob_field_formattedOutlier = Outlier
-dataSource_measurementOob_field_factor = Out of Range Factor (%)
-dataSource_measurementOob_error_fetchFailure = Failed to load measurement OOB information
-
-# Measurements
-#----------------------
-dataSource_definitions_loadFailed = Failed to load metric definitions
-dataSource_schedules_loadFailed = Failed to load metric schedules
-dataSource_schedules_loadFailedCriteria = Failed to load metric schedules for criteria [{0}]
-dataSource_schedules_loadFailedContext = Failed to load metric schedules for context [{0}]
-dataSource_schedules_field_resourceGroupId = Group ID
-
-dataSource_schedules_enableFailure_resource = Failed to enable the collection of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]
-dataSource_schedules_enableFailure_group = Failed to enable the collection of [{0}] metrics for group with ID [{1}]. The metrics were: [{2}]
-
-dataSource_schedules_enableSuccessful_concise = You have enabled the collection of [{0}] measurements
-dataSource_schedules_enableSuccessful_full_resource = You have enabled the collection of [{0}] measurements for the resource with ID [{1}]. The enabled measurements are: [{2}]
-dataSource_schedules_enableSuccessful_full_group = You have enabled the collection of [{0}] measurements for the resource group with ID [{1}]. The enabled measurements are: [{2}]
-
-dataSource_schedules_disableFailure_resource = Failed to disable the collection of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]
-dataSource_schedules_disableFailure_group = Failed to disable the collection of [{0}] metrics for resource group with ID [{1}]. The metrics were: [{2}]
-
-dataSource_schedules_disableSuccessful_concise = You have disabled the collection of [{0}] measurements
-dataSource_schedules_disableSuccessful_full_resource = You have disabled the collection of [{0}] measurements for the resource with ID [{1}]. The disabled measurements are: [{2}]
-dataSource_schedules_disableSuccessful_full_group = You have disabled the collection of [{0}] measurements for the resource group with ID [{1}]. The disabled measurements are: [{2}]
-
-dataSource_schedules_updateFailure_resource = Failed to set the collection interval of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]. The collection interval was to be [{3}] seconds.
-dataSource_schedules_updateFailure_group = Failed to set the collection interval of [{0}] metrics for resource group with ID [{1}]. The metrics were: [{2}]. The collection interval was to be [{3}] seconds.
-
-dataSource_schedules_updateSuccessful_concise = A new collection interval of [{0}] seconds has been set on [{1}] measurements
-dataSource_schedules_updateSuccessful_full_resource = A new collection interval of [{0}] seconds has been set on [{1}] measurements for resource with ID [{2}]. The updated measurements are: [{3}]
-dataSource_schedules_updateSuccessful_full_group = A new collection interval of [{0}] seconds has been set on [{1}] measurements for resource group with ID [{2}]. The updated measurements are: [{3}]
-
-# Resources
-#-----------------------
-dataSource_resources_field_location = Location
-dataSource_resources_field_key = Key
-dataSource_resources_field_discoveryTime = Discovery Time
-dataSource_resources_field_importTime = Import Time
-dataSource_resources_field_lastModifiedTime = Last Modified Time
-dataSource_resources_field_lastModifier = Last Modifier
-
-# Resource Groups
-#-----------------------
-dataSource_resourceGroups_loadFailed = Failed to load Resource Groups
-
-# Problem Resources
-#------------------------------
-dataSource_problemResources_field_alerts = Alerts
-dataSource_problemResources_field_available = Current Availability
-dataSource_problemResources_error_fetchFailure = Failed to load Resources with alerts/unavailability.
-
-# Recent Operations
-#----------------------------
-dataSource_recentOperations_field_resource = Resource
-dataSource_recentOperations_field_location = Location
-dataSource_recentOperations_field_operation = Operation
-dataSource_recentOperations_field_time = Date/Time
-dataSource_recentOperations_field_status = Status
-dataSource_recentOperations_error_fetchFailure = Failed to load recently completed operations.
-
-# Scheduled Operations (ResourceOperationScheduleComposites)
-#------------------------------------------------------------
-dataSource_scheduledOperations_field_resource = Resource
-dataSource_scheduledOperations_field_location = Location
-dataSource_scheduledOperations_field_operation = Operation
-dataSource_scheduledOperations_field_time = Date/Time
-dataSource_scheduledOperations_error_fetchFailure = Failed to load scheduled operations.
-
-# Operation Schedules
-#--------------------
-dataSource_operationSchedule_field_id = Schedule ID
-dataSource_operationSchedule_field_operationName = Operation
-dataSource_operationSchedule_field_operationDisplayName = Operation
-dataSource_operationSchedule_field_subject = Owner
-dataSource_operationSchedule_field_description = Notes
-dataSource_operationSchedule_field_nextFireTime = Next Execution
-dataSource_operationSchedule_field_timeout = Timeout (in seconds)
-
-# Operation Histories
-#--------------------
-dataSource_operationHistory_field_operationName = Operation Name
-dataSource_operationHistory_field_createdTime = Created Time
-dataSource_operationHistory_field_startedTime = Started Time
-dataSource_operationHistory_field_subject = Requester
-dataSource_operationHistory_error_fetchFailure = Failure loading operation histories.
-
-# Configuration History
-#-------------------------------
-dataSource_configurationHistory_dateSubmitted = Date Submitted
-dataSource_configurationHistory_dateCompleted = Date Completed
-dataSource_configurationHistory_updateType = Update Type
-dataSource_configurationHistory_updateType_individual = Individual
-dataSource_configurationHistory_updateType_group = Group
-dataSource_configurationHistory_currentConfig = This is the current configuration
-dataSource_configurationHistory_clickToSeeError = Double click to see error message...
-dataSource_configurationHistory_error_fetchFailure = Unable to load configuration history.
-
-# Resource Errors
-#-------------------------
-dataSource_resourceErrors_field_summary = Summary
-dataSource_resourceErrors_field_errorType = Error Type
-dataSource_resourceErrors_field_timeOccured = Time
-dataSource_resourceErrors_error_fetchFailure = Failed to find Resource errors for Resource with id [{0}].
-dataSource_resourceErrors_clickStatusIcon = Click the icon for more details
-dataSource_resourceErrors_deleteSuccess = You have successfully deleted [{0}] resource error messages.
-dataSource_resourceErrors_deleteFailure = Failed to delete resource errors
-
-# Template Schedules
-#-------------------------
-datasource_templateSchedules_disabled = Disabled collection of selected metric [{0}].
-datasource_templateSchedules_disabled_detailed = Disabled collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
-datasource_templateSchedules_disabled_failed = Failed to disable collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
-datasource_templateSchedules_enabled = Enabled collection of selected metric [{0}].
-datasource_templateSchedules_enabled_detailed = Enabled collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
-datasource_templateSchedules_enabled_failed = Failed to enable collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
-datasource_templateSchedules_updated = Updated collection intervals of selected metric [{0}].
-datasource_templateSchedules_updated_detail = Collection interval for metric [{0}] [{1}] by default for ResourceType with id [{2}] set to [{3}] seconds.
-datasource_templateSchedules_updated_failed = Failed to set collection interval to [{0}] seconds for metric [{1}] [{2}] by default for ResourceType with id [{3}].
-
-
-#********************************** VIEW-SPECIFIC *************************************
-
-#================= Administration ==================
-
-view_admin_administration = Administration
-view_admin_landing = From this section, the RHQ global settings can be administered. This includes configuring security, setting up plugins, and managing RHQ Servers and Agents.
-view_admin_configuration = Configuration
-view_admin_security = Security
-view_admin_topology = Topology
-view_admin_content = Content
-
-view_adminSecurity_users = Users
-view_adminSecurity_roles = Roles
-
-view_adminTopology_affinityGroups = Affinity Groups
-view_adminTopology_agents = Agents
-view_adminTopology_partitionEvents = Partition Events
-view_adminTopology_remoteAgentInstall = Remote Agent Install
-view_adminTopology_servers = Servers
-
-view_adminConfig_downloads = Downloads
-view_adminConfig_plugins = Plugins
-view_adminConfig_systemSettings = System Settings
-view_adminConfig_templates = Templates
-
-view_adminContent_contentSources = Content Sources
-view_adminContent_repositories = Repositories
-
-# Administration/Templates
-#--------------------------------
-
-view_adminTemplates_platforms = Platforms
-view_adminTemplates_platformServices = Platform Services
-view_adminTemplates_servers = Servers
-view_adminTemplates_enabledAlertTemplates = Enabled Alert Templates
-view_adminTemplates_disabledAlertTemplates = Disabled Alert Templates
-view_adminTemplates_enabledMetricTemplates = Enabled Metric Templates
-view_adminTemplates_disabledMetricTemplates = Disabled Metric Templates
-view_adminTemplates_editAlertTemplate = Edit Alert Template
-view_adminTemplates_editMetricTemplate = Edit Metric Template
-view_adminTemplates_prompt_enabledAlertTemplates = Number of alert templates that are enabled on this resource type
-view_adminTemplates_prompt_disabledAlertTemplates = Number of alert templates that are created but disabled on this resource type
-view_adminTemplates_prompt_enabledMetricTemplates = Number of metric schedules that are enabled by default on this resource type
-view_adminTemplates_prompt_disabledMetricTemplates = Number of metric schedules that are disabled by default on this resource type
-
-# Administration/Security/Users
-#--------------------------------
-view_adminUsersList_dataTypeName = user
-view_adminUsersList_dataTypeNamePlural = users
-
-# Administration/Security/Users/#
-#--------------------------------
-view_adminUsersDetails_dataTypeName = user
-
-# Administration/Security/Roles/#
-#--------------------------------
-view_adminRoles_assignedGroups = Assigned Resource Groups
-view_adminRoles_assignedSubjects = Assigned Subjects
-view_adminRoles_failLdap = Failed to determine if LDAP configured - assuming no LDAP.
-view_adminRoles_failLdapGroups = Failed to retrieve available LDAP groups - assuming no LDAP groups.
-view_adminRoles_failLdapGroupsRole = Failed to load LDAP groups available for role.
-view_adminRoles_failRoles = Failed to fetch roles.
-view_adminRoles_globalPerms = Global Permissions
-view_adminRoles_ldapGroups = LDAP Groups
-view_adminRoles_ldapGroupsReadOnly = LDAP group data is read only
-view_adminRoles_noItems = No items to show
-view_adminRoles_noLdap = The LDAP security integration is not configured. To configure LDAP, go to <a {0}>{1}</a>.
-view_adminRoles_perms = Permissions
-view_adminRoles_resourcePerms = Resource Permissions
-view_adminRoles_roleAdded = Role [{0}] added.
-view_adminRoles_roleDeleteFailed = Failed to delete role [{0}].
-view_adminRoles_roleDeleted = Role [{0}] deleted.
-view_adminRoles_roleUpdateFailed = Failed to update role [{0}].
-view_adminRoles_roleUpdated = Role [{0}] updated.
-view_adminRoles_permissions_globalPermissions = Global Permissions
-view_adminRoles_permissions_resourcePermissions = Resource Permissions
-view_adminRoles_permissions_readAccessImplied = Read access for the {0} permission is implied and cannot be disabled.
-view_adminRoles_permissions_isAuthorized = Authorized?
-view_adminRoles_permissions_isRead = Read?
-view_adminRoles_permissions_isWrite = Write?
-view_adminRoles_permissions_read = Read:
-view_adminRoles_permissions_write = Write:
-view_adminRoles_permissions_perm_manageSecurity = Manage Security
-view_adminRoles_permissions_permDesc_manageSecurity = can create, update, or delete users and roles (viewing is implied for everyone)
-view_adminRoles_permissions_perm_manageInventory = Manage Inventory
-view_adminRoles_permissions_permDesc_manageInventory = has all Resource permissions, as described below, for all Resources; can create, update, and delete groups; and can import auto-discovered or manually discovered Resources
-view_adminRoles_permissions_perm_manageSettings = Manage Settings
-view_adminRoles_permissions_permDesc_manageSettings = can modify the RHQ Server configuration and perform any Server-related functionality
-view_adminRoles_permissions_perm_manageBundles = Manage Bundles
-view_adminRoles_permissions_permDesc_manageBundles = can create, update, or delete provisioning bundles (viewing is implied for everyone)
-view_adminRoles_permissions_perm_manageRepositories = Manage Repositories
-view_adminRoles_permissions_permDesc_manageRepositories = can create, update, or delete repositories of any user (everyone can create their own repositories), can associate content sources to repositories.
-view_adminRoles_permissions_perm_inventory = Inventory
-view_adminRoles_permissions_permReadDesc_inventory = (IMPLIED) view Resource properties (name, description, version, etc.), connection settings, and connection settings history
-view_adminRoles_permissions_permWriteDesc_inventory = update Resource name, version, description, and connection settings; delete connection settings history items
-view_adminRoles_permissions_perm_manageMeasurements = Manage Measurements
-view_adminRoles_permissions_permReadDesc_manageMeasurements = (IMPLIED) view metric data and collection schedules
-view_adminRoles_permissions_permWriteDesc_manageMeasurements = update metric collection schedules
-view_adminRoles_permissions_perm_manageAlerts = Manage Alerts
-view_adminRoles_permissions_permReadDesc_manageAlerts = (IMPLIED) view alert definitions and alert history
-view_adminRoles_permissions_permWriteDesc_manageAlerts = create, update, and delete alert definitions; acknowledge and delete alert history items
-view_adminRoles_permissions_perm_configure = Configure
-view_adminRoles_permissions_permReadDesc_configure = view Resource configuration and Resource configuration revision history
-view_adminRoles_permissions_permWriteDesc_configure = update Resource configuration; delete Resource configuration revision history items
-view_adminRoles_permissions_perm_control = Control
-view_adminRoles_permissions_permReadDesc_control = (IMPLIED) view available operations and operation execution history
-view_adminRoles_permissions_permWriteDesc_control = execute operations; delete operation execution history items
-view_adminRoles_permissions_perm_manageEvents = Manage Events
-view_adminRoles_permissions_permReadDesc_manageEvents = (IMPLIED) view events
-view_adminRoles_permissions_permWriteDesc_manageEvents = delete events
-view_adminRoles_permissions_perm_manageContent = Manage Content
-view_adminRoles_permissions_permReadDesc_manageContent = (IMPLIED) view installed and available packages; view package installation history
-view_adminRoles_permissions_permWriteDesc_manageContent = subscribe to content sources; install and uninstall packages
-view_adminRoles_permissions_perm_createChildResources = Create Child Resources
-view_adminRoles_permissions_permReadDesc_createChildResources = (IMPLIED) view child Resource creation history
-view_adminRoles_permissions_permWriteDesc_createChildResources = create new child Resources (for child Resources of types that are creatable)
-view_adminRoles_permissions_perm_deleteChildResources = Delete Child Resources
-view_adminRoles_permissions_permReadDesc_deleteChildResources = (IMPLIED) view child Resource deletion history
-view_adminRoles_permissions_permWriteDesc_deleteChildResources = uninventory resources; delete Resources (for Resources of types that are deletable)
-view_adminRoles_permissions_autoselecting_manageSecurity_implied = Autoselected unselected permissions, since MANAGE_SECURITY implies all other permissions...
-view_adminRoles_permissions_autoselecting_manageInventory_implied = Autoselected unselected Resource permissions, since MANAGE_INVENTORY implies all Resource permissions...
-view_adminRoles_permissions_autoselecting_configureWrite_implied = Autoselected CONFIGURE_READ permission, since CONFIGURE_WRITE implies it...
-view_adminRoles_permissions_autoselecting_configureRead_implied = Autodeselected CONFIGURE_WRITE permission, since lack of CONFIGURE_READ implies lack of it...
-view_adminRoles_permissions_illegalDeselectionDueToManageSecuritySelection = {0} permission cannot be deselected, unless the Manage Security permission, which implies all other permissions, is deselected first.
-view_adminRoles_permissions_illegalDeselectionDueToManageInventorySelection = {0} permission cannot be deselected, unless Manage Inventory, which implies all Resource permissions, is deselected first.
-view_adminRoles_permissions_illegalDeselectionDueToCorrespondingWritePermSelection = {0} read permission cannot be deselected, unless the {0} write permission, which implies the read permission, is deselected first.
-
-# Administration/Topology/RemoteAgentInstall/#
-#--------------------------------
-view_remoteAgentInstall_agentStatus = Agent Status
-view_remoteAgentInstall_agentStatusDefault = -Click Update Status Button-
-view_remoteAgentInstall_connInfo = Connection Information
-view_remoteAgentInstall_buttonFindAgent = Find Agent
-view_remoteAgentInstall_error_1 = Error occurred while trying to find agent install path
-view_remoteAgentInstall_error_2 = Could not find an agent installed when looking in common locations
-view_remoteAgentInstall_error_3 = Could not find an agent installed at or under [{0}]
-view_remoteAgentInstall_error_4 = Failed to install agent
-view_remoteAgentInstall_error_5 = Failed to start agent
-view_remoteAgentInstall_error_6 = Failed to stop agent
-
-view_remoteAgentInstall_installAgent = Install Agent
-view_remoteAgentInstall_installInfo = Agent Installation Information
-view_remoteAgentInstall_installPath = Agent Install Path
-view_remoteAgentInstall_owner = Owner
-view_remoteAgentInstall_promptInstallPath = Where the agent is or will be installed. If you aren''t sure where an agent is installed, enter a parent directory and click the ''Find Agent'' button to scan that directory and below. If you enter an empty path, common locations are searched on the host for an agent install.
-view_remoteAgentInstall_promptHost = The host where the agent is or will be installed
-view_remoteAgentInstall_promptPassword =The credentials that are used to authenticate the user on the host via SSH
-view_remoteAgentInstall_promptPort = The port the SSH server is listening to. If not specified, the default is 22
-view_remoteAgentInstall_promptUser = The name of the user whose credentials are passed to the host via SSH
-view_remoteAgentInstall_result = Result
-view_remoteAgentInstall_resultCode = ResultCode
-view_remoteAgentInstall_startAgent = Start Agent
-view_remoteAgentInstall_startAgentResults = Agent start results: [{0}]
-view_remoteAgentInstall_step = Step
-view_remoteAgentInstall_stopAgent = Stop Agent
-view_remoteAgentInstall_stopAgentResults = Agent stop results: [{0}]
-view_remoteAgentInstall_success = Agent installation complete
-view_remoteAgentInstall_updateStatus = Update Status
-
-# Administration/SystemSettings
-#------------------------------
-view_admin_systemSettings_cannotLoadSettings = Cannot obtain the current system settings
-view_admin_systemSettings_savedSettings = You successfully saved the system properties
-view_admin_systemSettings_saveFailure = Failed to save the system settings
-view_admin_systemSettings_fixBeforeSaving = Please fix the invalid values before saving
-view_admin_systemSettings_group_general = General Configuration Properties
-view_admin_systemSettings_group_dataMgr = Data Manager Configuration Properties
-view_admin_systemSettings_group_baseline = Automatic Baseline Configuration Properties
-view_admin_systemSettings_group_ldap = LDAP Configuration Properties
-view_admin_systemSettings_cannotLoadServerDetails = Cannot load server details
-view_admin_systemSettings_serverDetails = Server Details
-view_admin_systemSettings_serverDetails_buildNumber = Build Number
-view_admin_systemSettings_serverDetails_tz = Server Time Zone
-view_admin_systemSettings_serverDetails_time = Server Local Time
-view_admin_systemSettings_serverDetails_installDir = Server Installation Directory
-view_admin_systemSettings_serverDetails_dbUrl = Database Connection URL
-view_admin_systemSettings_serverDetails_dbName = Database Product Name
-view_admin_systemSettings_serverDetails_dbVersion = Database Product Version
-view_admin_systemSettings_serverDetails_dbDriverName = Database Driver Name
-view_admin_systemSettings_serverDetails_dbDriverVersion = Database Driver Version
-view_admin_systemSettings_serverDetails_currentTable = Current Measurement Raw Table
-view_admin_systemSettings_serverDetails_nextRotation = Next Measurement Table Rotation
-view_admin_systemSettings_BaseURL_name = GUI Console URL
-view_admin_systemSettings_BaseURL_desc = A URL to the server GUI, used mainly within alert email notifications.
-view_admin_systemSettings_AgentMaxQuietTimeAllowed_name = Agent Max Quiet Time Allowed
-view_admin_systemSettings_AgentMaxQuietTimeAllowed_desc = If this amount of time passes without hearing from an agent, that quiet agent will be considered down. This value is specified in minutes.
-view_admin_systemSettings_EnableAgentAutoUpdate_name = Enable Agent Auto-Updates
-view_admin_systemSettings_EnableAgentAutoUpdate_desc = Determines if the server will allow agents to auto-update themselves. You will not be able to download agent distributions from the server if this is disabled.
-view_admin_systemSettings_EnableDebugMode_name = Enable Debug Mode
-view_admin_systemSettings_EnableDebugMode_desc = If enabled, the server will enter debug mode.
-view_admin_systemSettings_EnableExperimentalFeatures_name = Enable Experimental Features
-view_admin_systemSettings_EnableExperimentalFeatures_desc = If enabled, any experimental features that exist in the current product will be available.
-view_admin_systemSettings_DataMaintenance_name = Database Maintenance Period
-view_admin_systemSettings_DataMaintenance_desc = How often database maintenance is performed (for example, vacuuming if using Postgres). This is specified in hours.
-view_admin_systemSettings_AvailabilityPurge_name = Delete Availability Data Older Than
-view_admin_systemSettings_AvailabilityPurge_desc = How old availability data must be before being purged from the database. This is specified in days.
-view_admin_systemSettings_AlertPurge_name = Delete Alerts Older Than
-view_admin_systemSettings_AlertPurge_desc = How old alert history items must be before being purged from the database. This is specified in days.
-view_admin_systemSettings_TraitPurge_name = Delete Measurement Traits Older Than
-view_admin_systemSettings_TraitPurge_desc = How old measurement trait data must be before being purged from the database. This is specified in days.
-view_admin_systemSettings_RtDataPurge_name = Delete Response Time Data Older Than
-view_admin_systemSettings_RtDataPurge_desc = How old response time data must be before being purged from the database. This is specified in days.
-view_admin_systemSettings_EventPurge_name = Delete Events Older Than
-view_admin_systemSettings_EventPurge_desc = How old event data must be before being purged from the database. This is specified in days.
-view_admin_systemSettings_DataReindex_name = Reindex Data Tables Nightly
-view_admin_systemSettings_DataReindex_desc = If enabled, certain database tables will be re-indexed periodically.
-view_admin_systemSettings_BaselineFrequency_name = Baseline Calculation Frequency
-view_admin_systemSettings_BaselineFrequency_desc = The frequency which the auto-calculation of baselines will be performed. If 0, baseline auto-calculation is disabled. This is specified in days.
-view_admin_systemSettings_BaselineDataSet_name = Baseline Dataset
-view_admin_systemSettings_BaselineDataSet_desc = The amount of past measurement data that is used to determine a baseline. This is specified in days.
-view_admin_systemSettings_JAASProvider_name = Enable LDAP
-view_admin_systemSettings_JAASProvider_desc = Should LDAP be used to determine user identity?
-view_admin_systemSettings_LDAPUrl_name = LDAP URL
-view_admin_systemSettings_LDAPUrl_desc = URL to the LDAP Server
-view_admin_systemSettings_LDAPProtocol_name = SSL
-view_admin_systemSettings_LDAPProtocol_desc = Should communication with the LDAP server be done over SSL?
-view_admin_systemSettings_LDAPLoginProperty_name = Login Property
-view_admin_systemSettings_LDAPLoginProperty_desc = The LDAP property that contains the user name. Defaults to "cn". If multiple matches are found, the first entry found is used.
-view_admin_systemSettings_LDAPFilter_name = Search Filter
-view_admin_systemSettings_LDAPFilter_desc = Any additional filters to apply when doing the LDAP search. This is useful if the population to authenticate can be identified via a given LDAP property, e.g. RHQUser=true
-view_admin_systemSettings_LDAPGroupFilter_name = Group Search Filter
-view_admin_systemSettings_LDAPGroupFilter_desc = LDAP search filter that must return all LDAP groups available for authorization. This is used for LDAP group authorization.
-view_admin_systemSettings_LDAPGroupMember_name = Group Member Filter
-view_admin_systemSettings_LDAPGroupMember_desc = LDAP search filter that is used in conjunction with the group search filter to determine user authorization. This is used for LDAP group authorization.
-view_admin_systemSettings_LDAPBaseDN_name = Search Base
-view_admin_systemSettings_LDAPBaseDN_desc = The base of the directory tree to search for usernames and passwords while authenticating users, e.g. ou=People,dc=redhat,dc=com
-view_admin_systemSettings_LDAPBindDN_name = Username
-view_admin_systemSettings_LDAPBindDN_desc = The username to connect to the LDAP server when querying the LDAP user database. This is typically the full LDAP distinguished name (DN) of a manager user, e.g. cn=Manager,dc=redhat,dc=com
-view_admin_systemSettings_LDAPBindPW_name = Password
-view_admin_systemSettings_LDAPBindPW_desc = The credentials of the user used to connect to the LDAP server when querying the LDAP user database.
-
-# Administration/Downloads
-#------------------------------
-view_admin_downloads_agentDownload = Agent Download
-view_admin_downloads_cliDownload = Command Line Client Download
-view_admin_downloads_bundleDownload = Bundle Deployer Download
-view_admin_downloads_connectorsDownload = Connectors Download
-
-view_admin_downloads_agent_loadError = Cannot get agent version info
-view_admin_downloads_agent_version = Agent Version
-view_admin_downloads_agent_buildNumber = Agent Build
-view_admin_downloads_agent_md5 = Agent MD5
-view_admin_downloads_agent_link_label = Link
-view_admin_downloads_agent_link_value = Download Agent {0} ({1})
-view_admin_downloads_agent_help = <p> \
- This is the RHQ Agent Update Binary jar file. The purpose of this \
- jar file is to allow you to install a fresh agent on a machine \
- where an agent does not yet exist and to allow you to update \
- an agent that is already installed on a machine. \
- For more details, run this agent download jar with the --help command line option:<br/> \
- <b>java -jar <agent-download.jar> --help</b> \
- </p> \
- <h3>Agent Install</h3> \
- <p> \
- <b>java -jar <agent-download.jar> --install[=<new agent directory>]</b><br/> \
- This command will install a new agent. If you do not specify the new agent directory, the default will be "." \
- </p> \
- <h3>Agent Update</h3> \
- <p> \
- <b>java -jar <agent-download.jar> --update[=<old agent home>]</b><br/> \
- This will update an existing agent that was already installed. \
- If you do not specify the directory where the old, existing agent was installed, it will assumed to be "rhq-agent". \
- </p>
-
-view_admin_downloads_cli_loadError = Cannot get CLI version info
-view_admin_downloads_cli_version = CLI Version
-view_admin_downloads_cli_buildNumber = CLI Build
-view_admin_downloads_cli_md5 = CLI MD5
-view_admin_downloads_cli_link_label = Link
-view_admin_downloads_cli_link_value = Download CLI {0} ({1})
-view_admin_downloads_cli_help = <p> \
- This is the Command Line Client tool, otherwise known as the CLI. \
- It is a standalone tool that runs from within a console and provides a \
- command line interface to the RHQ Server. You can invoke commands via the CLI \
- as well as run scripts to perform automated tasks. See the documentation for \
- more information on how to install and use the CLI. \
- </p>
-
-view_admin_downloads_bundle_loadError = Cannot get bundle deployer info
-view_admin_downloads_bundle_link_label = Link
-view_admin_downloads_bundle_link_value = Download Bundle Deployer {0}
-view_admin_downloads_bundle_help = <p> \
- This is the Bundle Deployer tool. It is for use by developers and packagers of RHQ bundles. \
- This standalone tool allows you to test your bundles and their recipes from a console. \
- </p>
-
-view_admin_downloads_connectors_loadError = Cannot get connectors info
-view_admin_downloads_connectors_none = No connectors are available for download
-view_admin_downloads_connectors_help = Connectors are software that is needed in order for some products to be manageable by RHQ. You install connectors into some managed products so RHQ agents can talk to them. See the documentation for more information.
-
-# Measurement Templates view
-view_admin_measTemplates_title = Template Metric Collection Schedules
-view_admin_measTemplates_updateExisting_title = Update Existing Schedules
-view_admin_measTemplates_updateExisting_tooltip = Check this box to update the collection schedules for the selected metrics on all existing resources of this type. If this is not checked, the template schedules will only be applied to new resources of this type that are added to inventory in the future.
-
-#==================== Alerts ======================
-view_alerts_table_title_group = Group Alert History
-view_alerts_table_title_resource = Resource Alert History
-view_alerts_table_filter_priority = Priority Filter
-view_alerts_field_created_time = Creation Time
-view_alerts_field_modified_time = Modified Time
-view_alerts_field_enabled = Enabled
-view_alerts_field_ack_time = Acknowledge Time
-view_alerts_field_ack_subject = Acknowledge Subject
-view_alerts_field_ack_status = Status
-view_alerts_field_ack_status_noAck = No Ack
-view_alerts_field_ack_status_noAckHover = Not yet Acknowledged
-view_alerts_field_ack_status_ack = Ack ({0})
-view_alerts_field_ack_status_ackHover = Acknowledged by {0} at {1}
-view_alerts_field_name = Name
-view_alerts_field_condition_text = Condition Text
-view_alerts_field_condition_text_none = No Conditions
-view_alerts_field_condition_text_many = Multiple Conditions
-view_alerts_field_condition_value = Condition Value
-view_alerts_field_priority = Priority
-view_alerts_field_parent = Parent
-view_alerts_field_protected = Protected
-view_alerts_field_protected_tooltip = If true, this definition is protected from being changed by the parent definition. In other words, the parent definition settings will not override this definition.
-view_alerts_loadFailed = Failed to fetch alerts data
-view_alerts_delete_confirm = Delete the selected alert(s)?
-view_alerts_delete_confirm_all = Delete all alerts from this source?
-view_alerts_delete_success = Successfully deleted {0} alerts
-view_alerts_delete_failure = Failed to delete alerts with id''s: {0}
-view_alerts_delete_failure_all = Failed to delete all alerts from this source
-view_alerts_ack_confirm = Acknowledge the selected alert(s)?
-view_alerts_ack_confirm_all = Acknowledge all alerts from this source?
-view_alerts_ack_success = Successfully acknowledged {0} alerts
-view_alerts_ack_failure = Failed to acknowledge alerts with id''s: {0}
-view_alerts_ack_failure_all = Failed to acknowledge all alerts from this source
-view_alert_details_loadFailed = Failed to fetch alert details
-view_alert_details_field_ack_by = Acknowledged by
-view_alert_details_field_ack_at = Acknowledged at
-view_alert_details_field_recovery_info = Recovery Info
-view_alert_definition_for_type = View Template
-view_alert_definition_for_group = View Group Definition
-view_alert_definitions_table_title_group = Group Alert Definitions
-view_alert_definitions_table_title_resource = Resource Alert Definitions
-view_alert_definitions_loadFailed = Failed to fetch alert definition data
-view_alert_definitions_loadFailed_single = Failed to fetch data for alert definition with id {0}
-view_alert_definitions_enable_confirm = Enable the selected alert definition(s)?
-view_alert_definitions_enable_success = Successfully enabled {0} alert definitions
-view_alert_definitions_enable_failure = Failed to enable the selected alert definitions
-view_alert_definitions_disable_confirm = Disable the selected alert definition(s)?
-view_alert_definitions_disable_success = Successfully disabled {0} alert definitions
-view_alert_definitions_disable_failure = Failed to disable the selected alert definitions
-view_alert_definitions_delete_confirm = Delete the selected alert definition(s)?
-view_alert_definitions_delete_success = Successfully deleted {0} alert definitions
-view_alert_definitions_delete_failure = Failed to deleted the selected alert definitions
-view_alert_definitions_create_success = Alert definition successfully created
-view_alert_definitions_create_failure = Alert definition creation failed
-view_alert_definitions_update_success = Alert definition successfully updated
-view_alert_definitions_update_failure = Alert definition update failed
-view_alert_definition_condition_editor_option_label = Condition Type
-view_alert_definition_condition_editor_option_availability = Availability Change
-view_alert_definition_condition_editor_option_metric_threshold = Measurement Absolute Value Threshold
-view_alert_definition_condition_editor_option_metric_baseline = Measurement Baseline Threshold
-view_alert_definition_condition_editor_option_metric_change = Measurement Value Change
-view_alert_definition_condition_editor_option_metric_calltime_threshold = Call Time Value Threshold
-view_alert_definition_condition_editor_option_metric_calltime_change = Call Time Value Change
-view_alert_definition_condition_editor_option_metric_trait_change = Trait Value Change
-view_alert_definition_condition_editor_option_operation = Operation Execution
-view_alert_definition_condition_editor_option_resource_configuration = Resource Configuration Change
-view_alert_definition_condition_editor_option_event = Event Detection
-view_alert_definition_condition_editor_avilability_tooltip = Specify the availability state change that will trigger the condition.
-view_alert_definition_condition_editor_avilability_value = Availability
-view_alert_definition_condition_editor_avilability_option_up = Comes up
-view_alert_definition_condition_editor_avilability_option_down = Goes down
-view_alert_definition_condition_editor_metric_common_definition_not_found = Should have found metric definition - something is wrong
-view_alert_definition_condition_editor_metric_threshold_tooltip = Specify the threshold value that, when violated, triggers the condition. The value you specify is an absolute value with an optional units specifier.
-view_alert_definition_condition_editor_metric_threshold_name = Metric
-view_alert_definition_condition_editor_metric_threshold_value = Metric Value
-view_alert_definition_condition_editor_metric_threshold_value_tooltip = The threshold value of the metric that will trigger the condition when compared using the selected comparator.
-view_alert_definition_condition_editor_metric_threshold_comparator = Comparator
-view_alert_definition_condition_editor_metric_threshold_comparator_less = Less than
-view_alert_definition_condition_editor_metric_threshold_comparator_equal = Equal to
-view_alert_definition_condition_editor_metric_threshold_comparator_greater = Greater Than
-view_alert_definition_condition_editor_metric_threshold_comparator_tooltip = How a collected metric value should be compared to the given threshold value
-view_alert_definition_condition_editor_metric_baseline_tooltip = Specify the baseline value that must be violated to trigger the condition. The value you specify is a percentage of the given baseline value.
-view_alert_definition_condition_editor_metric_baseline_percentage = Baseline Percentage
-view_alert_definition_condition_editor_metric_baseline_percentage_tooltip = A collected metric value will trigger this condition when compared to this percentage of the selected baseline value using the selected comparator
-view_alert_definition_condition_editor_metric_baseline_value = Baseline
-view_alert_definition_condition_editor_metric_change_tooltip = Specify the metric whose value must change to trigger the condition.
-view_alert_definition_condition_editor_metric_calltime_threshold_tooltip = Specify the calltime threshold value that, when violated, triggers the condition. The value you specify is an absolute value with an optional units specifier. You also must specify which calltime limit to compare the value with (minimum, maximum or average calltime value).
-view_alert_definition_condition_editor_metric_calltime_common_name = Call Time Metric
-view_alert_definition_condition_editor_metric_calltime_common_limit = Call Time Limit
-view_alert_definition_condition_editor_metric_calltime_common_limit_tooltip = The calltime limit value that is to be compared with the given value
-view_alert_definition_condition_editor_metric_calltime_common_regex = Regular Expression
-view_alert_definition_condition_editor_metric_calltime_common_regex_tooltip = If specified, this is a regular expression that must match a call destination in order to trigger the condition.
-view_alert_definition_condition_editor_metric_calltime_common_comparator = Comparator
-view_alert_definition_condition_editor_metric_calltime_common_comparator_shrinks = Shrinks
-view_alert_definition_condition_editor_metric_calltime_common_comparator_grows = Grows
-view_alert_definition_condition_editor_metric_calltime_common_comparator_changes = Changes
-view_alert_definition_condition_editor_metric_calltime_common_comparator_tooltip = How a collected calltime value should be compared to the given calltime limit
-view_alert_definition_condition_editor_metric_calltime_threshold_value = Call Time Value
-view_alert_definition_condition_editor_metric_calltime_threshold_value_tooltip = The threshold value of the metric that will trigger the condition when compared using the selected comparator.
-view_alert_definition_condition_editor_metric_calltime_change_tooltip = Specify the calltime value that, when changed at least a specified amount, triggers the condition. You must specify which calltime limit to check (minimum, maximum or average calltime value) and the percentage of change that must occur.
-view_alert_definition_condition_editor_metric_calltime_change_percentage = Percentage Change
-view_alert_definition_condition_editor_metric_calltime_change_percentage_tooltip = A collected calltime value will trigger this condition when it differs by at least this percentage of the selected calltime limit value
-view_alert_definition_condition_editor_metric_trait_change_tooltip = Specify the trait whose value must change to trigger the condition.
-view_alert_definition_condition_editor_metric_trait_change_value = Trait
-view_alert_definition_condition_editor_operation_tooltip = Specify the result that must occur when the selected operation is executed in order to trigger the condition.
-view_alert_definition_condition_editor_operation_value = Operation
-view_alert_definition_condition_editor_operation_status = Operation Status
-view_alert_definition_condition_editor_operation_status_inprogress = In Progress
-view_alert_definition_condition_editor_operation_status_success = Success
-view_alert_definition_condition_editor_operation_status_failure = Failure
-view_alert_definition_condition_editor_operation_status_canceled = Canceled
-view_alert_definition_condition_editor_resource_configuration_tooltip = This condition is triggered when the resource configuration changes.
-view_alert_definition_condition_editor_event_tooltip = Specify the event severity that an event message must be reported with in order to trigger this condition. If you specify an optional regular expression, the event message must also match that regular expression in order for the condition to trigger.
-view_alert_definition_condition_editor_event_severity = Event Severity
-view_alert_definition_condition_editor_event_severity_debug = Debug
-view_alert_definition_condition_editor_event_severity_info = Info
-view_alert_definition_condition_editor_event_severity_warn = Warn
-view_alert_definition_condition_editor_event_severity_error = Error
-view_alert_definition_condition_editor_event_severity_fatal = Fatal
-view_alert_definition_condition_editor_event_regex = Regular Expression
-view_alert_definition_condition_editor_event_regex_tooltip = If specified, this is a regular expression that must match a collected event message in order to trigger the condition.
-view_alert_definition_condition_editor_common_min = Minimum
-view_alert_definition_condition_editor_common_avg = Average
-view_alert_definition_condition_editor_common_max = Maximum
-view_alert_definition_condition_editor_delete_confirm = Delete the selected alert condition(s)?
-view_alert_definition_notification_editor_title_add = Add Notification
-view_alert_definition_notification_editor_title_edit = Edit Notification
-view_alert_definition_notification_editor_sender = Notification Sender
-view_alert_definition_notification_editor_none_available = No alert senders available
-view_alert_definition_notification_editor_loadFailed = Cannot get alert senders
-view_alert_definition_notification_editor_loadFailed_single = Cannot get alert sender configuration definition
-view_alert_definition_notification_editor_saveFailed = Cannot save the notification configuration
-view_alert_definition_notification_editor_field_sender = Sender
-view_alert_definition_notification_editor_field_configuration = Configuration
-view_alert_definition_notification_editor_field_configuration_not_loaded = Unknown
-view_alert_definition_notification_editor_field_configuration_loadFailed = Failed to get notification configuration preview
-view_alert_definition_notification_editor_delete_confirm = Are you sure you want to delete the selected alert notifications?
-view_alert_definition_notification_operation_editor_mode_title = Resource Selection Mode
-view_alert_definition_notification_operation_editor_mode_this = This Resource
-view_alert_definition_notification_operation_editor_mode_specific = Specific Resource
-view_alert_definition_notification_operation_editor_mode_relative = Relative Resource
-view_alert_definition_notification_operation_editor_mode_unknown = UNKNOWN OPTION - THIS IS A BUG
-view_alert_definition_notification_operation_editor_common_operation = Operation
-view_alert_definition_notification_operation_editor_specific_resource = Resource
-view_alert_definition_notification_operation_editor_specific_pick_button = Pick
-view_alert_definition_notification_operation_editor_specific_pick_text = Pick a resource...
-view_alert_definition_notification_operation_editor_specific_pick_error_invalid = Please pick a resource
-view_alert_definition_notification_operation_editor_specific_pick_error_no_operation = Please pick a resource that has one or more operations
-view_alert_definition_notification_operation_editor_relative_ancestor = Start Search From
-view_alert_definition_notification_operation_editor_relative_ancestor_tooltip = Select the top of the type hierarchy from which to search its descendant tree for the Filter By type
-view_alert_definition_notification_operation_editor_relative_ancestor_loadFailed = Cannot get type ancestry
-view_alert_definition_notification_operation_editor_relative_ancestor_root = Root Ancestor Type
-view_alert_definition_notification_operation_editor_relative_descendant = Then Filter By
-view_alert_definition_notification_operation_editor_relative_descendant_tooltip = The resource type to search for under the root type defined in the Start Search From selection.
-view_alert_definition_notification_operation_editor_relative_descendant_filter_tooltip = A specific name to uniquely identify a resource when more than one resource of the selected type might exist. This is optional if there will only ever be one resource of the resource type in the selected type hierarchy.
-view_alert_definition_notification_operation_editor_relative_descendant_loadFailed = Cannot get type descendants
-view_alert_definition_notification_operation_editor_operations_loadFailed = Failed to load the list of available operations
-view_alert_definition_notification_operation_editor_operations_no_parameters = This operation does not take any parameters
-view_alert_definition_notification_role_editor_loadFailed = Cannot determine current roles - starting empty
-view_alert_definition_notification_role_editor_restoreFailed = Cannot use current roles - starting empty
-view_alert_definition_notification_role_editor_saveFailed = Cannot save the selected roles
-view_alert_definition_notification_user_editor_loadFailed = Cannot determine current users - starting empty
-view_alert_definition_notification_user_editor_restoreFailed = Cannot use current users - starting empty
-view_alert_definition_notification_user_editor_saveFailed = Cannot save the selected users
-view_alert_definition_notification_cliScript_editor_repository = Repository
-view_alert_definition_notification_cliScript_editor_script = Script
-view_alert_definition_notification_cliScript_editor_whichUser = User To Run The Script As
-view_alert_definition_notification_cliScript_editor_thisUser = Myself
-view_alert_definition_notification_cliScript_editor_anotherUser = Another User
-view_alert_definition_notification_cliScript_editor_verifyAuthentication = Verify
-view_alert_definition_notification_cliScript_editor_loadFailed = Loading the CLI Notification Editor Failed.
-view_alert_definition_notification_cliScript_editor_selectRepoFirst = Select a repository first.
-view_alert_definition_notification_cliScript_editor_existingScript = Existing Script
-view_alert_definition_notification_cliScript_editor_uploadNewScript = Upload New Script
-view_alert_definition_notification_cliScript_editor_newScriptVersion = Version
-view_alert_definition_notification_cliScript_editor_selectRepo = Select the repository where the script should reside
-view_alert_definition_recovery_editor_disable_when_fired = Disable When Fired
-view_alert_definition_recovery_editor_disable_when_fired_tooltip = Indicates if this alert will be disabled after it fires. Once disabled, the alert can be manually re-enabled or a recovery alert can be set up to automatically re-enable it. If this alert is a recovery alert itself, this setting cannot be turned on.
-view_alert_definition_recovery_editor_recovery_alert = Recover Alert
-view_alert_definition_recovery_editor_recovery_alert_tooltip = The target alert that will be recovered (i.e. re-enabled) after this alert triggers. Do not select an alert here if you are not defining a recovery alert.
-view_alert_definition_recovery_editor_loadFailed = Cannot build recovery menu
-view_alert_definition_recovery_editor_none_available = None
-view_alert_common_tab_general = General Properties
-view_alert_common_tab_conditions = Conditions
-view_alert_common_tab_conditions_modal_title = Add Condition
-view_alert_common_tab_conditions_expression = Fire alert when
-view_alert_common_tab_conditions_expression_tooltip = Determines if ANY or ALL of the conditions must evaluate to true in order for the entire condition set to be considered true.
-view_alert_common_tab_conditions_text = Condition
-view_alert_common_tab_conditions_value = Value
-view_alert_common_tab_conditions_type_availability = Availability Change
-view_alert_common_tab_conditions_type_availability_down = Went down
-view_alert_common_tab_conditions_type_availability_up = Came up
-view_alert_common_tab_conditions_type_metric_threshold = Metric Value Threshold
-view_alert_common_tab_conditions_type_metric_calltime_threshold = Call Time Value Threshold
-view_alert_common_tab_conditions_type_metric_calltime_destination = with call destination matching
-view_alert_common_tab_conditions_type_metric_calltime_change = Call Time Value Changes
-view_alert_common_tab_conditions_type_metric_calltime_change_verb = by at least
-view_alert_common_tab_conditions_type_metric_calltime_delta_grows = Grows
-view_alert_common_tab_conditions_type_metric_calltime_delta_shrinks = Shrinks
-view_alert_common_tab_conditions_type_metric_calltime_delta_other = Changes
-view_alert_common_tab_conditions_type_metric_baseline = Metric Value Baseline
-view_alert_common_tab_conditions_type_metric_baseline_verb = of
-view_alert_common_tab_conditions_type_metric_change = Metric Value Change
-view_alert_common_tab_conditions_type_metric_trait_change = Trait Change
-view_alert_common_tab_conditions_type_operation = Operation Execution
-view_alert_common_tab_conditions_type_operation_status = with result status
-view_alert_common_tab_conditions_type_resource_configuration = Resource Configuration Change
-view_alert_common_tab_conditions_type_event = Event Detection
-view_alert_common_tab_conditions_type_event_matching = with event source matching
-view_alert_common_tab_conditions_recovery_enabled = Triggered ''{0}'' to be re-enabled
-view_alert_common_tab_conditions_recovery_disabled = This alert caused its alert definition to be disabled
-view_alert_common_tab_notifications = Notifications
-view_alert_common_tab_notifications_sender = Sender
-view_alert_common_tab_notifications_status = Status
-view_alert_common_tab_notifications_message = Message
-view_alert_common_tab_dampening = Dampening
-view_alert_common_tab_dampening_category_none = None
-view_alert_common_tab_dampening_category_none_tooltip = Dampening is disabled. Every time the condition set is true, an alert will be triggered.
-view_alert_common_tab_dampening_category_consecutive_count = Consecutive
-view_alert_common_tab_dampening_category_consecutive_count_tooltip = An alert is triggered once every X occurrences the condition set is true consecutively.
-view_alert_common_tab_dampening_category_partial_count = Last N Evaluations
-view_alert_common_tab_dampening_category_partial_count_tooltip = An alert is triggered once every X occurrences the condition set is true during the last N evaluations of the condition set.
-view_alert_common_tab_dampening_category_duration_count = Time Period
-view_alert_common_tab_dampening_category_duration_count_tooltip = An alert is triggered once every X occurrences the condition set is true within a given time period.
-view_alert_common_tab_dampening_consecutive_occurrences_label = Occurrences
-view_alert_common_tab_dampening_consecutive_occurrences_label_tooltip = The number of times the condition set must be consecutively true before the alert is triggered
-view_alert_common_tab_dampening_partial_occurrences_label = Occurrences
-view_alert_common_tab_dampening_partial_occurrences_label_tooltip = The number of times the condition set must be true during the last N evaluations before the alert is triggered.
-view_alert_common_tab_dampening_partial_evalatuions_label = Evaluations
-view_alert_common_tab_dampening_partial_evalatuions_label_tooltip = The total number of times the condition set will be tested to see if the given number of occurrences are true.
-view_alert_common_tab_dampening_duration_occurrences_label = Occurrences
-view_alert_common_tab_dampening_duration_occurrences_label_tooltip = The number of times the condition set must be true during the given time period before the alert is triggered.
-view_alert_common_tab_dampening_duration_period_label = Time Period
-view_alert_common_tab_dampening_duration_period_label_tooltip = The time span in which the condition set will be tested to see if the given number of occurrences are true.
-view_alert_common_tab_recovery = Recovery
-view_alert_common_tab_invalid_condition_category = Invalid condition category - please report this as a bug: {0}
-view_alert_common_tab_invalid_dampening_category = Invalid dampening category - please report this as a bug: {0}
-view_alert_common_tab_invalid_time_units = Invalid time units - please report this as a bug: {0}
-
-# Auto Discovery Queue
-#----------------------------
-view_autoDiscoveryQ_title = Autodiscovery Queue
-view_autoDiscoveryQ_import = Import
-view_autoDiscoveryQ_ignore = Ignore
-view_autoDiscoveryQ_ignored = Ignored
-view_autoDiscoveryQ_unignore = Unignore
-view_autoDiscoveryQ_committed = Committed
-view_autoDiscoveryQ_deleted = Deleted
-view_autoDiscoveryQ_uninventoried = Uninventoried
-view_autoDiscoveryQ_new = New
-view_autoDiscoveryQ_newAndIgnored = New and Ignored
-view_autoDiscoveryQ_importFailure = Failed to import resources
-view_autoDiscoveryQ_importSuccessful = You have successfully imported the selected resources.
-view_autoDiscoveryQ_ignoreFailure = Failed to ignore resources
-view_autoDiscoveryQ_ignoreSuccessful = You have successfully ignored the selected resources.
-view_autoDiscoveryQ_unignoreFailure = Failed to unignore resources
-view_autoDiscoveryQ_unignoreSuccessful = You have successfully unignored the selected resources.
-view_autoDiscoveryQ_noperm = (You are not authorized to view the auto-discovery queue)
-view_autoDiscoveryQ_noItems = No items to show
-view_autoDiscoveryQ_field_parentId = Parent ID
-view_autoDiscoveryQ_field_name = Resource Name
-view_autoDiscoveryQ_field_key = Resource Key
-view_autoDiscoveryQ_field_discoveryTime = Discovery Time
-view_autoDiscoveryQ_field_inventoryStatus = Inventory Status
-view_autoDiscoveryQ_loadFailure = Failed to load the inventory discovery queue
-view_autoDiscoveryQ_showStatus = Show
-view_autoDiscoveryQ_confirmSelect = Also select the platform children?
-
-#==================== Bundles ======================
-
-# some common bundle terms
-view_bundle_bundle = Bundle
-view_bundle_bundles = Bundles
-view_bundle_bundleDestinations = Bundle Destinations
-view_bundle_bundleDeployment = Bundle Deployment
-view_bundle_bundleDeployments = Bundle Deployments
-view_bundle_bundleFiles = Bundle Files
-view_bundle_bundleType = Bundle Type
-view_bundle_bundleVersion = Bundle Version
-view_bundle_bundleVersions = Bundle Versions
-view_bundle_deploy = Deploy
-view_bundle_deployed = Deployed
-view_bundle_deployDir = Deploy Directory
-view_bundle_deployments = Deployments
-view_bundle_destinations = Destinations
-view_bundle_files = Files
-view_bundle_latestVersion = Latest Version
-view_bundle_recipe = Recipe
-view_bundle_revert = Revert
-view_bundle_purge = Purge
-view_bundle_versions = Versions
-view_bundle_deleteConfirm = Are you sure you want to delete this bundle? All versions, destinations and deployments for this bundle will also be deleted.
-
-# individual bundle views/wizards
-view_bundle_fileListView_fileSize = File Size
-view_bundle_fileListView_md5 = MD5
-view_bundle_fileListView_sha256 = SHA256
-view_bundle_fileListView_loadFailure = Failed to load bundle file data
-view_bundle_version_backToBundle = Back to Bundle
-view_bundle_version_bundleVersionTagUpdateFailure = Failed to update bundle version tags
-view_bundle_version_bundleVersionTagUpdateSuccessful = You have successfully updated the bundle version tags
-view_bundle_version_deleteConfirm = Are you sure you want to delete this bundle version?
-view_bundle_version_deleteFailure = Failed to delete the bundle version [{0}]
-view_bundle_version_deleteSuccessful = You successfully deleted the bundle version [{0}]
-view_bundle_version_loadFailure = Failed to load bundle version
-view_bundle_tree_loadFailure = Failed to load bundle data
-view_bundle_revertWizard_title = Bundle Revert
-view_bundle_revertWizard_windowTitle = Bundle Revert Wizard
-view_bundle_revertWizard_getInfoStep_name = Provide Revert Information
-view_bundle_revertWizard_getInfoStep_revertDeployName = Revert Deploy Name
-view_bundle_revertWizard_getInfoStep_revertDeployDesc = Revert Deploy Description
-view_bundle_revertWizard_getInfoStep_revertDeployDescFull = [REVERT From]\\n{0}\\n\\n[REVERT To]\\n{1}
-view_bundle_revertWizard_getInfoStep_cleanDeploy = Clean Deployment? (this will delete an old, existing deploy directory prior to starting the revert deployment)
-view_bundle_revertWizard_getInfoStep_getNameFailure = Failed to get revert deployment name
-view_bundle_revertWizard_confirmStep_name = Revert Deployment Confirmation
-view_bundle_revertWizard_confirmStep_noLiveDeployment_concise = No live deployment was found for the destination
-view_bundle_revertWizard_confirmStep_noLiveDeployment = No live deployment was found for the destination [{0}]
-view_bundle_revertWizard_confirmStep_noPriorDeployment_concise = The live deployment cannot be reverted because there is no prior deployment
-view_bundle_revertWizard_confirmStep_noPriorDeployment = The live deployment [{0}] cannot be reverted because there is no prior deployment for the destination [{1}]
-view_bundle_revertWizard_confirmStep_failedToFindLiveDeployment = Failed to find live deployment; cannot revert
-view_bundle_revertWizard_confirmStep_liveDeployment = Live Deployment
-view_bundle_revertWizard_confirmStep_prevDeployment = Previous Deployment
-view_bundle_revertWizard_confirmStep_confirmation = Reverting Live Deployment to Previous Deployment. Click "Next" to continue...
-view_bundle_revertWizard_revertStep_name = Deploy Bundle to Destination Platforms
-view_bundle_revertWizard_revertStep_reverting = Reverting...
-view_bundle_revertWizard_revertStep_scheduled = You have successfully scheduled the revert deployment!
-view_bundle_revertWizard_revertStep_scheduledDetails = You have successfully scheduled to revert the bundle deployment [{0}] from resource group [{1}]
-view_bundle_revertWizard_revertStep_scheduledFailure = Failed to schedule revert deployment!
-view_bundle_list_loadFailure = Failed to load the bundle to be deployed [{0}]
-view_bundle_list_singleLoadFailure = Failed to get a single bundle to be deployed [{0}]
-view_bundle_list_versionsCount = Versions Count
-view_bundle_list_destinationsCount = Destinations Count
-view_bundle_list_loadWithLatestFailure = Failed to load bundle with the latest version data
-view_bundleVersion_loadFailure = Failed to load bundle version data
-view_bundle_list_backToAll = Back to All Bundles
-view_bundle_list_tagUpdateFailure = Failed to update bundle tags
-view_bundle_list_tagUpdateSuccessful = You have successfully updated the bundle tags
-view_bundle_list_deleteConfirm = Are you sure you want to delete the selected bundles?
-view_bundle_list_deletesFailure = Failed to delete the bundles
-view_bundle_list_deletesSuccessful = You successfully deleted the bundles
-view_bundle_list_deleteFailure = Failed to delete the bundle [{0}]
-view_bundle_list_deleteSuccessful = You successfully deleted the bundle [{0}]
-view_bundle_list_error1 = Failed to load bundle to deploy [{0}]
-view_bundle_list_error2 = Failed to get a single bundle to deploy [{0}]
-view_bundle_list_error3 = Failed to load bundle
-view_bundle_dest_group = Group
-view_bundle_dest_created = Created
-view_bundle_dest_deployDir = Deploy Directory
-view_bundle_dest_lastDeployedVersion = Last Deployed Version
-view_bundle_dest_lastDeploymentDate = Last Deployment Date
-view_bundle_dest_lastDeploymentStatus = Last Deployment Status
-view_bundle_dest_loadFailure = Failed to load bundle destinations
-view_bundle_dest_loadFailureVersionInfo = Failed to load bundle destination deployed version information
-view_bundle_dest_backToBundle = Back to Bundle
-view_bundle_dest_tagUpdateFailure = Failed to update bundle destination tags
-view_bundle_dest_tagUpdateSuccessful = You have successfully updated the bundle destination tags
-view_bundle_dest_purgeConfirm = This will purge the bundle content from all remote machines. Are you sure you want to do this?
-view_bundle_dest_purgeFailure = Failed to purge the bundle destination [{0}] from some or all of the remote machines.
-view_bundle_dest_purgeSuccessful = You successfully purged the bundle destination [{0}] from all of the remote machines.
-view_bundle_dest_revertConfirm = This will revert all remote machines back to the previous bundle deployment. Are you sure you want to do this?
-view_bundle_dest_deleteConfirm = Are you sure you want to delete this bundle destination? This only deletes it from the database; all bundle content that was deployed to this destination on remote machines will remain.
-view_bundle_dest_deleteFailure = Failed to delete the bundle destination [{0}]
-view_bundle_dest_deleteSuccessful = You successfully deleted the bundle destination [{0}]
-view_bundle_resDeployDS_loadFailure = Failed to load bundle resource deployments
-view_bundle_deploy_name = Deployment Name
-view_bundle_deploy_time = Deployment Time
-view_bundle_deploy_loadDeployFailure = Failed to load bundle deployments
-view_bundle_deploy_action = Action
-view_bundle_deploy_installDetails = Install Details
-view_bundle_deploy_backButton = Back to Destination
-view_bundle_deploy_tagUpdateFailure = Failed to update bundle deployment tags
-view_bundle_deploy_tagUpdateSuccessful = You have successfully updated the bundle deployment tags
-view_bundle_deploy_deploymentPlatforms = Deployment Platforms
-view_bundle_deploy_selectARow = Select a row to show installation details
-view_bundle_deploy_operatingSystem = Operating System
-view_bundle_deploy_loadFailure = Failed to load bundle deployment
-view_bundle_deploy_loadBundleFailure = Failed to find bundle
-view_bundle_deploy_deployedBy = Deployed By
-view_bundle_deploy_clickForError = Click the icon for the error message
-view_bundle_deploy_deleteConfirm = Are you sure you want to delete this bundle deployment?
-view_bundle_deploy_deleteFailure = Failed to delete the bundle deployment [{0}]
-view_bundle_deploy_deleteSuccessful = You successfully deleted the bundle deployment [{0}]
-view_bundle_createWizard_title = Create Bundle
-view_bundle_createWizard_windowTitle = Bundle Creation Wizard
-view_bundle_createWizard_cancelSuccessful = Canceled the creation of bundle [{0}], version = [{1}]
-view_bundle_createWizard_cancelFailure = Failed to fully cancel the creation of bundle [{0}], version = [{1}] - the bundle may still exist in the database
-view_bundle_createWizard_noBundleTypesSupported = No bundle types are supported - you must deploy a valid plugin that supports bundle deployments
-view_bundle_createWizard_noBundleTypesAvail = No bundle types are available
-view_bundle_createWizard_loadBundleFileFailure = Cannot obtain bundle file information from server
-view_bundle_createWizard_enterUrl = Please enter a valid URL where the bundle distribution file can be downloaded from
-view_bundle_createWizard_enterRecipe = Please supply a valid recipe
-view_bundle_createWizard_uploadInProgress = Upload is in progress... This can take several minutes for large files
-view_bundle_createWizard_uploadStepName = Upload Bundle Files
-view_bundle_createWizard_noAdditionalFilesNeeded = No additional files need to be uploaded for this bundle
-view_bundle_createWizard_failedToUploadFile = Failed to upload bundle file
-view_bundle_createWizard_failedToUploadDistroFile = Failed to upload bundle distribution file
-view_bundle_createWizard_bundleDistro = Bundle Distribution
-view_bundle_createWizard_youMustChooseOne = You must choose one option in order to create a bundle!
-view_bundle_createWizard_urlOption = URL
-view_bundle_createWizard_uploadOption = Upload
-view_bundle_createWizard_recipeOption = Recipe
-view_bundle_createWizard_provideBundleDistro = Provide a Bundle Distribution
-view_bundle_createWizard_clickToUploadRecipe = Click to load a recipe file
-view_bundle_createWizard_createFailure = Failed to create the bundle
-view_bundle_createWizard_createSuccessful = You have successfully created a bundle named [{0}] with a version of [{1}]
-
-view_bundle_deployWizard_deploying = Deploying...
-view_bundle_deployWizard_deployStep = Deploy Bundle to Destination Platforms
-view_bundle_deployWizard_deploymentCreated = Created Deployment...
-view_bundle_deployWizard_deploymentCreatedDetail = You have created the deployment [{0}] with the description [{1}]
-view_bundle_deployWizard_deploymentCreatedDetail_concise = You have created the deployment [{0}]
-view_bundle_deployWizard_destinationCreatedDetail = You have created the destination [{0}] with the description [{1}]
-view_bundle_deployWizard_destinationCreatedDetail_concise = You have created the destination [{0}]
-view_bundle_deployWizard_deploymentScheduled = Bundle Deployment Scheduled!
-view_bundle_deployWizard_deploymentScheduledDetail = You have scheduled the bundle deployment [{0}] to the destination group [{1}]
-view_bundle_deployWizard_deploymentScheduledDetail_concise = You have scheduled the bundle deployment
-view_bundle_deployWizard_error_1 = Failed to delete new deployment on Cancel
-view_bundle_deployWizard_error_2 = Failed to delete new destination on Cancel
-view_bundle_deployWizard_error_3 = Failed to Schedule Deployment!
-view_bundle_deployWizard_error_4 = Failed to schedule deployment: {0}
-view_bundle_deployWizard_error_5 = Failed to Create Deployment!
-view_bundle_deployWizard_error_6 = Failed to create deployment: {0}
-view_bundle_deployWizard_error_7 = Failed to get deployment name.
-view_bundle_deployWizard_error_8 = You must select a valid resource group from the drop down
-view_bundle_deployWizard_error_9 = Failed to delete new destination in nextPage
-view_bundle_deployWizard_error_10 = Failed to create destination, it may already exist. (Note, for an existing destination deploy from the Destination view)
-view_bundle_deployWizard_error_11 = Failed to find defined deployments.
-view_bundle_deployWizard_error_12 = Failed to find defined bundles.
-view_bundle_deployWizard_getConfigStep = Set Deployment Configuration
-view_bundle_deployWizard_getConfigSkip = No configuration needed for this bundle version.
-view_bundle_deployWizard_getDestStep = New Destination
-view_bundle_deployWizard_getDest_name = Destination Name
-view_bundle_deployWizard_getDest_desc = Destination Description
-view_bundle_deployWizard_getDest_deployDir = Root Deployment Directory (on destination platforms)
-view_bundle_deployWizard_getInfoStep = Provide Deployment Information
-view_bundle_deployWizard_getInfo_clean = Clean Deployment? (wipe deploy directory on destination platform)
-view_bundle_deployWizard_getInfo_deploymentDesc = Deployment Description
-view_bundle_deployWizard_getInfo_deploymentName = Deployment Name
-view_bundle_deployWizard_getOptionsStep = Deploy Options
-view_bundle_deployWizard_getOptions_deployLater = Deploy Later
-view_bundle_deployWizard_getOptions_deployNow = Deploy Now
-view_bundle_deployWizard_getOptions_deployTime = Deployment Time
-view_bundle_deployWizard_selectBundleStep = Select Deployment Bundle
-view_bundle_deployWizard_selectBundle_single = Select only a single bundle for deployment.
-view_bundle_deployWizard_selectVersionStep = Select Deployment Bundle Version
-view_bundle_deployWizard_selectVersion_latest = Latest Version [{0}]
-view_bundle_deployWizard_selectVersion_live = Live Version [{0}]
-view_bundle_deployWizard_selectVersion_select = Select Version from List:
-view_bundle_deployWizard_title = Bundle Deployment Wizard
-
-# =================== Measurement Views =====================
-
-view_measureTable_chartMetricValues = Chart Selected Metrics
-view_measureTable_getLive = Get Live Value
-view_measureTable_getLive_failure = Cannot get live values for those metrics. Make sure the agent is running and the managed resource is up.
-view_measureTable_live_title = Live Data
-
-# =================== Components =====================
-
-view_configCompare_comparingConfigs = Comparing Configurations
-view_configCompare_configCompare = Configuration Comparison
-
-view_configEdit_addItem = Add Item to List
-view_configEdit_confirm_1 = Are you sure you want to delete the selected properties from the set?
-view_configEdit_confirm_2 = Are you sure you want to delete this row?
-view_configEdit_confirm_3 = Are you sure you want to delete the [{0}] selected [{1}]?
-view_configEdit_viewRow = View Row
-view_configEdit_editRow = Edit Row
-view_configEdit_enterPropName = Enter the name of the property to be added.
-view_configEdit_error_1 = Configuration is not supported by this Resource.
-view_configEdit_error_2 = Connection settings are not supported by this Resource.
-view_configEdit_error_3 = Cannot add property named [{0}]. The property name is already used in the set.
-view_configEdit_files = Files
-view_configEdit_hideAll= Hide All
-view_configEdit_jumpToSection = Jump to Section
-view_configEdit_msg_1 = Added property [{0}] to the set.
-view_configEdit_msg_2 = Removed properties from the set.
-view_configEdit_msg_3 = [{0} {1}] deleted from list.
-view_configEdit_msg_4 = Item added to list.
-view_configEdit_properties = Properties
-view_configEdit_tooltip_1 = Delete the selected items from the list.
-view_configEdit_tooltip_2 = Add an item to the list.
-
-view_groupConfigEdit_member = Member
-view_groupConfigEdit_noListProps = List properties are not currently supported for group configurations.
-view_groupConfigEdit_tooltip_1 = Member values differ - click icon to edit them.
-view_groupConfigEdit_setAll = Set all values to:
-view_groupConfigEdit_unset = Unset
-view_groupConfigEdit_valsDiff = member values differ
-view_groupConfigEdit_valsDiffForProp = Member Values for Property [{0}]
-
-view_leftNav_unknownPage = Unknown page name [{0}] for section [{1}] - URL is invalid.
-
-view_measure_nan = --no data available--
-
-# Measurement Range Selector
-view_measureRange_last = Time Range - Previous
-view_measureRange_start = Time Range - Start
-view_measureRange_simple = Simple...
-
-view_selector_assigned = Assigned {0}
-view_selector_available = Available {0}
-
-view_subTab_error_disabled = Cannot select disabled subTab [{0}].
-
-view_table_drawFail = Failed to draw Table [{0}].
-view_table_matchingRows = Matching Rows: {0} (selected: {1})
-view_table_totalRows = Total Rows: {0} (selected: {1})
-view_tableSection_backButton = Back to List
-view_tableSection_error_noId = Table [{0}] record is missing 'id' attribute - please report this bug.
-view_tableSection_error_badId = Can not show detail for [{0}]. Illegal 'id': [{1}]. Please report this bug
-
-view_tags_tags = Tags
-view_tags_error_1 = Failed to load Tags
-view_tags_tooltip_1 = Click to remove this Tag
-view_tags_tooltip_2 = Click to edit Tags
-view_tags_tooltip_3 = Enter a Tag in the format: (namespace:)(semantic=)tagname (e.g. it:env=QA, or owner=John)
-
-# File Upload (various)
-view_upload_alreadyUploaded = File has already been uploaded
-view_upload_bundleDistFile = Distribution File
-view_upload_error_bundleDistFile = Error uploading Bundle Distribution File
-view_upload_error_file = Error uploading file
-view_upload_error_fileName = Error uploading file [{0}]
-view_upload_error_fileName_2 = Error uploading file [{0}], check for invalid file path.
-view_upload_error_packageVersionFile = Error uploading Package Version File
-view_upload_error_results = Error uploading file, unexpected results: [{0}]
-view_upload_inProgress = Can not submit, upload is currently in progress
-view_upload_prompt_1 = Please select a file to upload [{0}]
-view_upload_prompt_2 = File to Upload
-view_upload_tooltip_1a = Select a file to upload, then click Upload or Next
-view_upload_tooltip_1b = Select a file to upload, then click Next
-view_upload_tooltip_2 = File upload had previously failed
-view_upload_success = File successfully uploaded
-view_upload_upload = Upload
-view_upload_uploadFile = UploadFile
-
-# Group Create Wizard
-view_groupCreateWizard_membersStepName = Select Members
-view_groupCreateWizard_createStepName = Group Settings
-view_groupCreateWizard_createStep_recursive = Recursive
-view_groupCreateWizard_title = Create Group
-view_groupCreateWizard_windowTitle = Create Group
-view_groupCreateWizard_createFailure = Failed to create the resource group
-view_groupCreateWizard_createSuccessful_concise = You have created a new resource group. [<a href="{0}">View Group</a>]
-view_groupCreateWizard_createSuccessful_full = You have created a new [{0}] resource group with the name [{1}] that contains [{2}] member resources
-
-# Resource Type / Plugin View/Datasources
-view_type_resourceTypes = Resource Types
-view_type_parentId = Parent ID
-view_type_typeTreeLoadFailure = Failed to load resource type tree data
-
-# Tabs
-view_tabs_invalidSubTab = Invalid subtab: {0}
-view_tabs_invalidTab = Invalid tab: {0}
-
-# Group Tree
-group_tree_partialClusterTooltip = {0} out of {1} group members have a ''{2}'' resource
-
-#=================== Dashboard =====================
-view_dashboard_favorites_error1 = Failed to load favorite Resources.
-view_dashboardManager_error = Failed to save dashboard to server
-view_dashboardManager_saved = Saved dashboard {0} to server
-view_dashboardManager_success = Saved dashboard
-view_dashboardManager_deleteFail = Failed to delete dashboard.
-view_dashboardManager_deleted = Successfully deleted dashboard {0}
-view_dashboards_title = Dashboard
-view_dashboards_confirm1 = Are you sure you want to delete
-view_dashboards_portlets_refresh_fail1=Failed to update interval for portlets that auto-refresh
-view_dashboards_portlets_refresh_fail2=Failed to disable reload for portlets that auto-refresh
-view_dashboards_portlets_refresh_none = No Refresh
-view_dashboards_portlets_refresh_one_min = 1 minute
-view_dashboards_portlets_refresh_multiple_min = {0} minutes
-view_dashboards_portlets_refresh_success1=Updated interval for portlets that auto-refresh
-view_dashboards_portlets_refresh_success2=Stopping reload for portlets that auto-refresh
-view_dashboardsManager_error1 = Failed to add new dashboard
-view_dashboardsManager_message_title_details = <h1>Welcome to RHQ</h1>\n<p>The RHQ project is an abstraction and plug-in based systems management suite that provides extensible and integrated systems management for multiple products and platforms across a set of core features. The project is designed with layered modules that provide a flexible architecture for deployment. It delivers a core user interface that delivers audited and historical management across an entire enterprise. A Server/Agent architecture provides remote management and plugins implement all specific support for managed products.</p>\n <p>This default dashboard can be edited by clicking the (edit mode) button above.</p>
-
-view_portlet_factory_invalidPortlet = This is an obsolete portlet that is no longer valid. Please delete it.
-
-view_portlet_defaultName_autodiscovery = Discovery Queue
-view_portlet_defaultName_favoriteResources = Favorite Resources
-view_portlet_defaultName_resourceMetric = Resource Metric Graph
-view_portlet_defaultName_groupMetric = Resource Group Metric Graph
-view_portlet_defaultName_inventorySummary = Inventory Summary
-view_portlet_defaultName_mashup = Mashup
-view_portlet_defaultName_message = Message
-view_portlet_defaultName_operations = Recent Operations
-view_portlet_defaultName_platformSummary = Platform Utilization
-view_portlet_defaultName_problemResources = Alerted or Unavailable Resources
-view_portlet_defaultName_recentAlerts = Recent Alerts
-view_portlet_defaultName_recentlyAddedResources = Recently Added Resources
-view_portlet_defaultName_tagCloud = Tag Cloud
-
-view_portlet_defaultName_group_alerts =Group: Alerts
-view_portlet_defaultName_group_bundles = Group: Bundle Deployments
-view_portlet_defaultName_group_config_updates = Group: Configuration Updates
-view_portlet_defaultName_group_events = Group: Event Counts
-view_portlet_defaultName_group_metrics = Group: Metrics
-view_portlet_defaultName_group_oobs = Group: OOB Conditions
-view_portlet_defaultName_group_operations = Group: Operations
-view_portlet_defaultName_group_pkg_hisory = Group: Package History
-view_portlet_defaultName_resource_alerts = Resource: Alerts
-view_portlet_defaultName_resource_bundles = Resource: Bundle Deployments
-view_portlet_defaultName_resource_config_updates = Resource: Configuration Updates
-view_portlet_defaultName_resource_events = Resource: Event Counts
-view_portlet_defaultName_resource_metrics = Resource: Measurements
-view_portlet_defaultName_resource_oobs = Resource: OOB Metrics
-view_portlet_defaultName_resource_operations = Resource: Operations
-view_portlet_defaultName_resource_pkg_hisory = Resource: Package History
-
-view_portlet_help_autodiscovery = This portlet allows import or ignore of newly discovered resources. Imported resources are added to inventory for monitoring and management. Ignored resources are not imported and are hidden from view unless explicitly unignored.
-view_portlet_help_bundle_deps = This portlet shows relevant bundle deployments based on display criteria configured.
-view_portlet_help_config_updates =This portlet displays recent configuration changes consistent with configuration settings.
-view_portlet_help_eventcounts = This portlet displays Event counts consistent with display criteria configured.
-view_portlet_help_favoriteResources = This portlet displays the current user''s favorite resources.
-view_portlet_help_graph = This portlet displays the resource metric graph.
-view_portlet_help_inventorySummary = This portlet displays a short summary of the current user''s viewable inventory and metric collection rate.
-view_portlet_help_mashup = This portlet displays the returned content of a remote HTTP request (via an iframe).
-view_portlet_help_metrics = This portlet graphs relevant recent metric data based on display criteria configured.
-view_portlet_help_message = This portlet displays a static HTML message. The <i>message</i> property must be configured.
-view_portlet_help_oobs = This portlet displays OOB(Out of Bound) metric conditions.
-view_portlet_help_operations = This portlet displays the most recently executed operations for the current user''s inventory.
-view_portlet_help_scheduledOperations = This portlet displays the next scheduled operations for the current user''s inventory.
-view_portlet_help_operations_criteria = This portlet displays Operations consistent with display criteria configured.
-view_portlet_help_pkg_history = This portlet shows relevant package history based on display criteria configured.
-view_portlet_help_platformSummary = This portlet displays utilization data (such as current CPU and memory usage) for platform resources that are accessible by the current user.
-view_portlet_help_problemResources = This portlet displays the current user''s alerted or unavailable resources.
-view_portlet_help_recentAlerts = This portlet displays alerts recently fired on the current user''s viewable inventory.
-view_portlet_help_recentlyAdded = This portlet displays resources that have recently been imported into inventory.
-view_portlet_help_tagCloud = This portlet displays the relative tag counts for the current user''s inventory.
-view_portlet_help_none = There is no help available for this portlet.
-
-view_portlet_configure_needed = Click the Settings button to configure this portlet.
-view_portlet_configure_notNeeded = Configuration is not necessary for this portlet.
-view_portlet_configure_definitionTitle = Portlet Configuration
-view_portlet_configure_definitionDesc = The configuration settings for the portlet.
-
-view_portlet_autodiscovery_setting_platforms = discovered platforms
-
-view_portlet_graph_configure_resource_graph = The resource to graph
-view_portlet_graph_configure_metricDefinition_graph = The metric definition id to graph
-
-view_portlet_inventory_error1 = Failed to retrieve inventory summary
-view_portlet_inventory_tooltip_expand = Click to show more details for this resource.
-view_portlet_inventory_tooltip_collapse = Click to hide details for this resource.
-
-view_portlet_message_title = The message to display.
-
-view_portlet_operations_config_completed_maximum = Maximum number of Completed operations to display.
-view_portlet_operations_config_completed_enable = Whether to enable completed operations results grouping for dashboard.
-view_portlet_operations_config_scheduled_enable = Whether to enable scheduled operations results grouping for dashboard.
-view_portlet_operations_config_scheduled_maximum = Maximum number of Scheduled operations to display.
-view_portlet_operations_config_completed = completed operations
-view_portlet_operations_config_show_last = show Last
-view_portlet_operations_config_show_next = show Next
-view_portlet_operations_disabled = (Results currently disabled. Change settings to enable results.
-
-view_portlet_platform_platform_error_1 = Failed to load platform metrics
-view_portlet_platform_type_error_1 = Could not load type data
-
-view_portlet_problemResources_config_display_maximum = Maximum number of Problem resources to display.
-view_portlet_problemResources_config_display_range = Show problem resources going back this many hours.
-view_portlet_problemResources_config_display_range2 = From {0} to {1}
-view_portlet_problemResources_maxDisplaySetting = maximum resources.
-
-view_portlet_recentAlerts_config_members = Select Members
-view_portlet_recentAlerts_config_priority_label = priority Alerts,
-view_portlet_recentAlerts_config_when = within the past
-view_portlet_recentAlerts_fail_msg = Failed to load resources assigned for alert filtering.
-
-view_portlet_recentlyAdded_setting_addedPlatforms = recently added platforms
-view_portlet_recentlyAdded_error1 = Failed to load recently added resources
-view_portlet_results_empty = No results found using specified criteria.
-
-# =================== Inventory =====================
-view_inventory_adq = Discovery Queue
-view_inventory_sectionHelp = From this section, newly discovered Resources, inventoried Resources, and Groups can be viewed and managed.
-view_inventory_problemGroups = Problem Groups
-view_inventory_collectionInterval = Collection Interval
-view_inventory_mixed = mixed
-view_inventory_unavailableServers = Unavailable Servers
-view_inventory_groups = Groups
-view_inventory_allGroups = All Groups
-view_inventory_allResources = All Resources
-view_inventory_platforms = Platforms
-view_inventory_servers = Servers
-view_inventory_services = Services
-view_inventory_summary_agent_error1 = Failed to locate agent managing resource id
-view_inventory_summary_agent_error2 = Failed to ping agent managing resource id
-view_inventory_summary_agent_error3 = You do not have permission to view details for this Agent.
-view_inventory_summary_agent_fullEnpoint = Full Endpoint
-view_inventory_summary_agent_fullEnpoint_err1 = !No remote endpoint associated with this resource!
-view_inventory_summary_agent_last_title = Last Received Availability Report
-view_inventory_summary_agent_status_title = Agent Communications Status
-view_inventory_summary_agent_title = Agent Managing this Resource
-view_inventory_dynagroupDefs = Dynagroup Definitions
-view_metric_traits = Traits
-view_metric_viewTraitHistory = Value History for Trait [{0}]
-view_inventory_eventHistory_groupEventHistory = Group Event History
-view_inventory_eventHistory_resourceEventHistory = Resource Event History
-view_inventory_eventHistory_sourceFilter = Source Filter
-view_inventory_eventHistory_detailsFilter = Details Filter
-view_inventory_eventHistory_severityFilter = Severity Filter
-view_inventory_eventHistory_timestamp = Timestamp
-view_inventory_eventHistory_severity = Severity
-view_inventory_eventHistory_details = Details
-view_inventory_eventHistory_sourceLocation = Source Location
-view_inventory_eventHistory_deleteSuccessful = You have successfully deleted [{0}] events for [{1}]
-view_inventory_eventHistory_deleteFailed = Failed to deleted selected events for [{0}]
-view_inventory_eventHistory_purgeSuccessful = You have successfully purged [{0}] events for [{1}]
-view_inventory_eventHistory_purgeFailed = Failed to purge events for [{0}]
-view_inventory_eventDetails_loadFailed = An error occurred loading the event details
-view_inventory_groups_resourceGroups = Resource Groups
-view_inventory_groups_children = Children
-view_inventory_groups_descendants = Descendants
-view_inventory_groups_deleteSuccessful = You have successfully deleted the selected resource groups
-view_inventory_groups_deleteFailed = Failed to delete the selected resource groups
-view_inventory_groups_loadFailed = Failed to load group composite data
-view_inventory_resource_loadFailed = Resource with id [{0}] does not exist or is not accessible
-view_inventory_resources_deleteConfirm = Are you sure you want to delete the selected resources?
-view_inventory_resources_deleteSuccessful = You have successfully deleted the selected resources
-view_inventory_resources_deleteFailed = Failed to delete the selected resources
-view_inventory_resources_uninventoryConfirm = Are you sure you want to uninventory the selected resources? Note that if a selected resource still exists, then it will get rediscovered during its agent''s next discovery scan.
-view_inventory_resources_uninventorySuccessful = You have successfully uninventoried the selected resources
-view_inventory_resources_uninventoryFailed = Failed to uninventory the selected resources
-view_inventory_resources_loadFailed = Failed to load resource composite data
-view_inventory_resources_title = Resources
-view_inventory_resources_title_children = Child Resources
-view_inventory_resources_title_members = Member Resources
-view_resource_inventory_activity_changed_by=Changed by
-view_resource_inventory_activity_criteria_no_recent_events=No event counts based off display criteria.
-view_resource_inventory_activity_no_recent_alerts=No recent alerts
-view_resource_inventory_activity_no_recent_bundle_deploy=No recent bundle deployments
-view_resource_inventory_activity_no_recent_config_history=No configuration change history
-view_resource_inventory_activity_no_recent_events =No events in the last 24 hours
-view_resource_inventory_activity_no_recent_metrics=This resource has no recent metrics
-view_resource_inventory_activity_no_recent_oob=No OOB conditions found
-view_resource_inventory_activity_no_recent_operations=No recent operation history
-view_resource_inventory_activity_no_recent_pkg_history=No recent package history
-view_resource_inventory_childhistory_createdChild = Created Child
-view_resource_inventory_childhistory_deletedChild = Deleted Child
-view_resource_inventory_childhistory_status_invalidArtifact = Invalid Artifact
-view_resource_inventory_childhistory_status_invalidConfig = Invalid Configuration
-view_resource_inventory_childhistory_filterTitle = Past N Days
-view_resource_monitor_availability_loadFailed = Failed to load availability history
-view_resource_monitor_graphs_noneAvailable = No graphs available
-view_resource_monitor_graphs_loadFailed = Failed to load graph data
-view_resource_monitor_graphs_lookupFailed = Failed to find resource for graph
-view_resource_monitor_graph_instructions = Point your mouse to a data point on the chart
-view_resource_monitor_graph_live_tooltip = Click for a live graph of current values
-view_resource_monitor_table_min = Minimum
-view_resource_monitor_table_max = Maximum
-view_resource_monitor_table_avg = Average
-view_resource_monitor_table_last = Last
-view_resource_monitor_table_alerts = Alerts
-view_resource_monitor_detailed_graph_label = Detailed Graph
-view_resource_monitor_calltime_title = Call Time Data
-view_resource_monitor_calltime_destination = Call Destination
-view_resource_monitor_calltime_count = Count
-view_resource_monitor_calltime_minimum = Minimum
-view_resource_monitor_calltime_average = Average
-view_resource_monitor_calltime_maximum = Maximum
-view_resource_monitor_calltime_total = Total
-view_resource_monitor_calltime_loadFailed = Could not load call time data
-view_resource_monitor_calltime_lookupFailed = Could not load resource for call time
-view_resource_monitor_calltime_editFailed = Call time data can not be edited
-view_resource_monitor_schedules_title = Resource Metric Collection Schedules
-view_resource_title_tagUpdateFailed = Failed to update resource tags
-view_resource_title_component_errors_tooltip = Shows managed component errors. Click for details
-view_tree_common_loadFailed_generic = Failed to load data for tree
-view_tree_common_loadFailed_root = Failed to load root for tree
-view_tree_common_loadFailed_descendants = Failed to load descendants for tree
-view_tree_common_loadFailed_children = Failed to load children for node
-view_tree_common_createFailed_autoCluster = Failed to create or update autocluster backing group
-view_tree_common_loadFailed_group = Failed to load group with id [{0}]
-view_tree_common_loadFailed_groupTree = Failed to load group tree
-view_tree_common_loadFailed_selection = Failed to select this node
-view_tree_common_loadFailed_node = Failed to load data for this node
-view_tree_common_loadFailed_create = Failed to create view for this node
-view_tree_common_loadFailed_update = Failed to update view for this node
-view_tree_common_contextMenu_loadFail_children = Failed to load platform manual add children
-view_tree_common_contextMenu_loadFail_dashboards = Failed to load user dashboards
-view_tree_common_contextMenu_loadFail_group = Failed to load group for context menu
-view_tree_common_contextMenu_type_name_label = Type: {0}
-view_tree_common_contextMenu_resourceConfiguration = Resource Configuration
-view_tree_common_contextMenu_editPluginConfiguration = Edit [{0}] Plugin Configuration
-view_tree_common_contextMenu_editResourceConfiguration = Edit [{0}] Resource Configuration
-view_tree_common_contextMenu_operations = Operations
-view_tree_common_contextMenu_operations_loadFailed = Failure to start wizard for running operations
-view_tree_common_contextMenu_measurements = Measurements
-view_tree_common_contextMenu_addChartToDashboard = Add chart to dashboard [{0}]
-view_tree_common_contextMenu_resourceGraph = Resource Metric Graph
-view_tree_common_contextMenu_groupGraph = Group Metric Graph
-view_tree_common_contextMenu_saveChartToDashboardSuccessful = You have saved dashboard [{0}]
-view_tree_common_contextMenu_saveChartToDashboardFailure = Failed to save the dashboard
-view_tree_common_contextMenu_loadFailed_dashboard = Failed to load user dashboards
-view_tree_common_contextMenu_loadFailed_manualAddChildren = Failed to load platform manual add children
-view_tree_group_error_updateAutoCluster = Failed to create or update autocluster backing group. key: [{0}]
-view_tabs_common_activity = Activity
-view_tabs_common_agent = Agent
-view_tabs_common_summary = Summary
-view_tabs_common_overview = Overview
-view_tabs_common_dashboard = Dashboard
-view_tabs_common_timeline = Timeline
-view_tabs_common_monitoring = Monitoring
-view_tabs_common_graphs = Graphs
-view_tabs_common_tables = Tables
-view_tabs_common_traits = Traits
-view_tabs_common_availability = Availability
-view_tabs_common_schedules = Schedules
-view_tabs_common_calltime = Calltime
-view_tabs_common_inventory = Inventory
-view_tabs_common_groups = Groups
-view_tabs_common_members = Members
-view_tabs_common_group_members = Group Members
-view_tabs_common_group_membership = Group Membership
-view_tabs_common_child_resources = Child Resources
-view_tabs_common_child_history = Child History
-view_tabs_common_connectionSettings = Connection Settings
-view_tabs_common_connectionSettingsHistory = Connection Settings History
-view_tabs_common_operations = Operations
-view_tabs_common_schedule = Schedule
-view_tabs_common_history = History
-view_tabs_common_alerts = Alerts
-view_tabs_common_definitions = Definitions
-view_tabs_common_current = Current
-view_tabs_common_events = Events
-view_tabs_common_configuration = Configuration
-view_tabs_common_content = Content
-view_tabs_common_deployed = Deployed
-view_tabs_common_new = New
-view_tabs_common_subscriptions = Subscriptions
-view_titleBar_common_updateTagsSuccessful = The tags for [{0}] have been updated
-view_titleBar_common_updateTagsFailure = Failed to update the tags for [{0}]
-view_titleBar_common_loadTagsFailure = Failed to load the tags for [{0}]
-view_titleBar_common_clickToRemoveFav = Click to remove this as a favorite
-view_titleBar_common_clickToAddFav = Click to add this as a favorite
-view_titleBar_common_removedFav = You have removed [{0}] as one of your favorites
-view_titleBar_common_addedFav = You have added [{0}] as a favorite
-view_titleBar_common_removedFavFailure = Failed to remove [{0}] as one of your favorites
-view_titleBar_common_addedFavFailure = Failed to add [{0}] as a favorite
-view_titleBar_group_failInfo = Failed to get general info on group [{0}] with ID [{1}]
-view_titleBar_group_summary_collapsedTooltip = Click to show more details for this group
-view_titleBar_group_summary_expandedTooltip = Click to hide details for this group
-view_dynagroup_expressionSet = Expression Set
-view_dynagroup_recalculationInterval = Recalculation Interval (ms)
-view_dynagroup_lastCalculationTime = Last Calculation Time
-view_dynagroup_nextCalculationTime = Next Calculation Time
-view_dynagroup_definitionCreated = You have successfully created a group definition named [{0}]
-view_dynagroup_definitionLoadFailure = Failed to load group definitions
-view_dynagroup_definitionAlreadyExists = A group definition already exists with this name
-view_dynagroup_saveSuccessful = You have successfully saved the group definition named [{0}]
-view_dynagroup_saveFailure = Failed to save the group definition named [{0}]
-view_dynagroup_singleSaveFailure = An error occurred - there should have been one created, but instead there were [{0}] created
-view_dynagroup_saveAndRecalculate = Save & Recalculate
-view_dynagroup_recalculate = Recalculate
-view_dynagroup_recalcSuccessful = You have successfully recalculated this group definition
-view_dynagroup_recalcFailure = Failed to recalculated this group definition
-view_dynagroup_recalcSuccessfulSelection = You have successfully recalculated [{0}] group definitions
-view_dynagroup_recalcFailureSelection = Failed to recalculated the selected group definitions
-view_dynagroup_deleteSuccessfulSelection = You have successfully deleted [{0}] group definitions
-view_dynagroup_deleteFailureSelection = Failed to delete the selected group definitions
-view_dynagroup_children = DynaGroup Children
-view_dynagroup_newGroupDefinition = New Group Definition
-view_dynagroup_editing = Editing [{0}]
-view_dynagroup_expression = Expression
-view_dynagroup_recursive = Recursive
-view_dynagroup_loadDefinitionFailure = Failed to load group definition [{0}]
-view_dynagroup_loadDefinitionMissing = There is no group definition with the ID of [{0}]
-view_dynagroup_permDenied = You do not have permission to view group definitions
-view_dynagroup_definitions = DynaGroup Definitions
-view_dynagroup_template_customExpression = Custom Expression...
-view_dynagroup_template_jbossas4_clusters = JBossAS 4 - Clusters
-view_dynagroup_template_jbossas5_clusters = JBossAS 5/6 - Clusters
-view_dynagroup_template_jbossas4_earClusters = JBossAS 4 - Clustered EARs
-view_dynagroup_template_jbossas4_uniqueVersions = JBossAS 4 - Unique versions
-view_dynagroup_template_platforms = Platform resources in inventory
-view_dynagroup_template_uniqueResourceTypes = Unique resource types in inventory
-view_dynagroup_template_jbossas4_hostingApp = JBossAS 4 - All hosting any version of "my" app
-view_dynagroup_template_jbossas4_nonsecured = JBossAS 4 - All non-secured
-view_dynagroup_template_downedResources = All resources currently down
-view_dynagroup_mixed = Mixed
-view_dynagroup_compatible = Compatible
-view_dynagroup_expressionBuilderIconTooltip = Expression Builder...
-view_dynagroup_exprBuilder_title = Expression Builder
-view_dynagroup_exprBuilder_expression = Expression
-view_dynagroup_exprBuilder_expression_tooltip = This is the full expression that is represented by the selections in the form below. This text will be added to your group definition expression text when you click the "Add Expression" button.
-view_dynagroup_exprBuilder_addExpression = Add Expression
-view_dynagroup_exprBuilder_value_tooltip = The string value for the expression to query
-view_dynagroup_exprBuilder_comparisonType = Comparison Type
-view_dynagroup_exprBuilder_comparisonType_tooltip = Comparison Type
-view_dynagroup_exprBuilder_unset = Unset
-view_dynagroup_exprBuilder_unset_tooltip = Unset will find all of the values that have a null value in the database. This is not possible using the "=" operator because of how databases store and query data.
-view_dynagroup_exprBuilder_propertyName = Property Name
-view_dynagroup_exprBuilder_propertyName_tooltip = The name of the property to query. This is defined by the expression type as well as the resource type.
-view_dynagroup_exprBuilder_resourceType = Resource Type
-view_dynagroup_exprBuilder_resourceType_tooltip = The type of resource
-view_dynagroup_exprBuilder_definingPlugin = Defining Plugin
-view_dynagroup_exprBuilder_definingPlugin_tooltip = The plugin to search
-view_dynagroup_exprBuilder_expressionType = Expression Type
-view_dynagroup_exprBuilder_expressionType_tooltip = The type of property this expression switches on:<br/> \
-<b>Resource</b>: A resource property such as its name or version<br/> \
-<b>Resource Type</b>: Search for resources of a specific type<br/> \
-<b>Resource Category</b>: Search for resources by category: platform, server, service<br/> \
-<b>Trait</b>: Resources that have selected values for a monitored trait<br/> \
-<b>Plugin Configuration</b>: Search by the plugin component configuration setting of the component<br/> \
-<b>Resource Configuration</b>: Search by the configuration setting of the managed resource
-view_dynagroup_exprBuilder_resource = Resource
-view_dynagroup_exprBuilder_resource_tooltip = Choose the level of the resource you wish to select. For example, select "parent" will find resources whose parent resource matches the rest of the expression.
-view_dynagroup_exprBuilder_groupBy = Group by
-view_dynagroup_exprBuilder_groupBy_tooltip = GroupBy will cause the system to pivot on the values from the entered expressions creating a separate group for each value. For example, GroupBy on the cluster name to create a group for each cluster with all cluster members in it.
-view_dynagroup_exprBuilder_resource_resource = Resource
-view_dynagroup_exprBuilder_resource_child = Child
-view_dynagroup_exprBuilder_resource_parent = Parent
-view_dynagroup_exprBuilder_resource_grandparent = Grandparent
-view_dynagroup_exprBuilder_resource_greatGrandparent = GreatGrandparent
-view_dynagroup_exprBuilder_resource_greatGreatGrandparent = GreatGreatGrandparent
-view_dynagroup_exprBuilder_comparisonType_equals = equals
-view_dynagroup_exprBuilder_comparisonType_startsWith = starts with
-view_dynagroup_exprBuilder_comparisonType_endsWith = ends with
-view_dynagroup_exprBuilder_comparisonType_contains = contains
-view_dynagroup_exprBuilder_expressionType_resource = Resource
-view_dynagroup_exprBuilder_expressionType_resourceType = Resource Type
-view_dynagroup_exprBuilder_expressionType_resourceCategory = Resource Category
-view_dynagroup_exprBuilder_expressionType_trait = Trait
-view_dynagroup_exprBuilder_expressionType_pluginConfig = Plugin Configuration
-view_dynagroup_exprBuilder_expressionType_resourceConfig = Resource Configuration
-view_dynagroup_exprBuilder_pluginLoadFailure = Cannot get the list of plugins
-view_dynagroup_exprBuilder_resTypeLoadFailure = Cannot get list of resource types for plugin [{0}]
-view_dynagroup_exprBuilder_propLoadFailure = Cannot get list of properties
-view_dynagroup_exprBuilder_noResourceTypes = --No resource types--
-view_dynagroup_exprBuilder_noProperties = --No properties--
-view_dynagroup_exprBuilder_noPlugins = --No plugins--
-
-view_group_detail_failLoad = Failed to load group for group with ID [{0}]
-view_group_detail_failLoadComp = Failed to load group composite for group with ID [{0}]
-view_group_detail_recursiveChange = You successfully changed the recursive setting for group [{0}]
-view_group_detail_failRecursiveChange = Failed to update the recursive setting for group [{0}]
-view_group_inventory_activity_no_recent_metrics=This group has no recent metrics
-view_group_membership_failFetch = Failed to fetch Resource Group
-view_group_membership_saveFailure = Failed to update membership of group [{0}]
-view_group_membership_saveSuccessful = You have updated the membership of group [{0}]
-view_group_resConfig_edit_saveTooltip = Update the configurations of all group members
-view_group_resConfig_edit_loadFail = Failed to retrieve member Resource configurations for [{0}]
-view_group_resConfig_edit_noperm = You do not have permission to edit this group configuration
-view_group_resConfig_edit_saveInitiated_concise = The group configuration updates have been initiated
-view_group_resConfig_edit_saveInitiated_full = The group configuration updates have been initiated for the [{0}] compatible group named [{1}]
-view_group_resConfig_edit_saveFailure = Failed to initiate group configuration update for [{0}] compatible group named [{1}]
-view_group_resConfig_edit_valid = All configuration properties have valid values, so the configuration can now be saved
-view_group_resConfig_edit_invalid = The following configuration properties have invalid values and must be corrected before the configuration can be saved: [{0}]
-
-view_group_resConfig_view_noperm = You do not have permissions to see the resource configuration settings
-view_group_resConfig_view_groupProperties = Group Properties
-view_group_resConfig_table_title = Group Resource Configuration History
-view_group_resConfig_table_statusDetails = Status Details
-view_group_resConfig_table_viewSettings = View Settings
-view_group_resConfig_table_viewMemberHistory = View Member History
-view_group_resConfig_table_msg1 = View Member History for status of each individual resource
-view_group_resConfig_table_failFetch = Failed to get group resource config history
-view_group_resConfig_table_deleteSuccessful = You have deleted [{0}] history items
-view_group_resConfig_table_deleteFailure = Failed to delete group resource config history
-view_group_resConfig_table_statusSuccess = This group configuration update was successful
-view_group_resConfig_table_statusInprogress = This group configuration update is still in progress
-view_group_resConfig_table_statusNochange = No changes were made to this group configuration
-view_group_resConfig_table_statusFailure = This group configuration update failed
-view_group_resConfig_table_clickStatusIcon = Click the status icon for full details
-view_group_resConfig_members_title = Group Resource Configuration Member Histories
-view_group_resConfig_members_fetchFailure = Failed to get resource config update history for members of group [{0}]
-view_group_resConfig_members_fetchFailureConfig = Failed to retrieve member resource configuration settings for [{0}]
-view_group_resConfig_members_fetchFailureConfigInProgress = A group resource configuration update is currently in progress. You must wait until the update is finished before you can view the group settings.
-view_group_resConfig_members_statusDetails = Status Details
-view_group_resConfig_members_statusSuccess = This configuration update was successful
-view_group_resConfig_members_statusInprogress = This configuration update is still in progress
-view_group_resConfig_members_statusNochange = No changes were made to this configuration
-view_group_resConfig_members_statusFailure = This configuration update failed for an unknown reason
-
-view_group_pluginConfig_view_noperm = You do not have permissions to see the connection settings
-view_group_pluginConfig_view_groupProperties = Group Properties
-view_group_pluginConfig_table_failFetch = Failed to get group plugin config history
-view_group_pluginConfig_table_title = Group Connection Settings History
-view_group_pluginConfig_table_statusDetails = Status Details
-view_group_pluginConfig_table_viewSettings = View Settings
-view_group_pluginConfig_table_viewMemberHistory = View Member History
-view_group_pluginConfig_table_deleteSuccessful = You have deleted [{0}] history items
-view_group_pluginConfig_table_deleteFailure = Failed to delete group plugin config history
-view_group_pluginConfig_table_msg1 = View Member History for status of each individual resource
-view_group_pluginConfig_table_statusSuccess = This group configuration update was successful
-view_group_pluginConfig_table_statusInprogress = This group configuration update is still in progress
-view_group_pluginConfig_table_statusNochange = No changes were made to this group configuration
-view_group_pluginConfig_table_statusFailure = This group configuration update failed
-view_group_pluginConfig_table_clickStatusIcon = Click the status icon for full details
-view_group_pluginConfig_members_title = Group Connection Settings Member Histories
-view_group_pluginConfig_members_statusDetails = Status Details
-view_group_pluginConfig_members_statusSuccess = This configuration update was successful
-view_group_pluginConfig_members_statusInprogress = This configuration update is still in progress
-view_group_pluginConfig_members_statusNochange = No changes were made to this configuration
-view_group_pluginConfig_members_statusFailure = This configuration update failed for an unknown reason
-view_group_pluginConfig_members_fetchFailure = Failed to get plugin config update history for members of group [{0}]
-view_group_pluginConfig_members_fetchFailureConn = Failed to retrieve member connection settings for [{0}]
-view_group_pluginConfig_members_fetchFailureConnInProgress = A group plugin configuration update is currently in progress. You must wait until the update is finished before you can view the group settings.
-view_group_pluginConfig_edit_currentGroupProperties = Current Group Properties
-view_group_pluginConfig_edit_saveTooltip = Update the connection settings of all group members
-view_group_pluginConfig_edit_noperm = You do not have permission to edit this group connection settings
-view_group_pluginConfig_edit_saveInitiated_concise = The group connection setting updates have been initiated
-view_group_pluginConfig_edit_saveInitiated_full = The group connection setting updates have been initiated for the [{0}] compatible group named [{1}]
-view_group_pluginConfig_edit_saveFailure = Failed to initiate group connection setting update for [{0}] compatible group named [{1}]
-view_group_pluginConfig_edit_valid = All connection setting properties have valid values, so the connection settings can now be saved
-view_group_pluginConfig_edit_invalid = The following connection setting properties have invalid values and must be corrected before the connection settings can be saved: [{0}]
-view_group_meas_schedules_title = Group Metric Collection Schedules
-view_group_summary_nameUpdateFailure = Failed to change the name of the resource group with ID [{0}] - could not change from [{1}] to [{2}]
-view_group_summary_nameUpdateSuccessful = You have changed the name of the resource group with ID [{0}] from [{1}] to [{2}]
-view_group_summary_memberType = Member Type
-view_group_summary_memberCount = Member Count
-view_group_summary_dynamic = Dynamic
-view_group_summary_recursive = Recursive
-view_group_summary_groupDefinition = Group Definition
-view_group_summary_mixed = Mixed
-view_group_summary_compatible = Compatible
-view_group_summary_descUpdateFailure = Failed to change the description of the resource group with ID [{0}]
-view_group_summary_descUpdateSuccessful = You have changed the description of this resource group
-view_group_summary_dynamicNote = Dynamic group names and descriptions are managed, and therefore are not editable
-
-# Connection Settings Details
-#------------------------------------------
-view_connectionSettingsDetails_noPermission = You do not have permission to edit this Resource''s connection settings.
-view_connectionSettingsDetails_error_updateFailure = Failed to update connection settings.
-view_connectionSettingsDetails_messageConcise_updateSuccess = Connection settings updated.
-view_connectionSettingsDetails_messageDetailed_updateSuccess = Connection settings updated for Resource [{0}].
-view_connectionSettingsDetails_allPropertiesValid = All connection settings have valid values, so the settings can now be saved.
-view_connectionSettingsDetails_somePropertiesInvalid = The following connection settings have invalid values: {0}. The values must be corrected before the settings can be saved.
-
-# Resource Resource Groups
-#-----------------------------------------
-view_resourceResourceGroupList_error_fetchFailure = Failed to fetch Resource''s groups.
-view_resourceResourceGroupList_error_updateFailure = Failed to update assigned Resource groups.
-view_resourceResourceGroupList_message_updateSuccess = Group membership updated for [{0}].
-
-# Configuration Details
-#-------------------------------
-view_configurationDetails_noPermission = You do not have permission to edit this Resource''s configuration.
-view_configurationDetails_error_updateFailure = Failed to update configuration.
-view_configurationDetails_messageConcise = Configuration updated - current version is {0}.
-view_configurationDetails_messageDetailed = Configuration updated to version {0} for Resource [{1}].
-view_configurationDetails_allPropertiesValid = All configuration properties have valid values, so the configuration can now be saved.
-view_configurationDetails_somePropertiesInvalid = The following configuration properties have invalid values: {0}. The values must be corrected before the configuration can be saved.
-view_configurationDetails_configNotUpdatedDueToNoChange = Configuration was not updated, since the new configuration is equivalent to the current configuration.
-
-# Resource Configuration History List
-#-------------------------------
-view_configurationHistoryList_title = Configuration History
-
-# Abstract Configuration History List
-#-------------------------------
-view_configurationHistoryList_rollback = Rollback
-view_configurationHistoryList_rollback_success = You successfully rolled back the configuration to the selected past configuration.
-view_configurationHistoryList_rollback_failure = Failed to rollback the configuration. The original configuration is still in effect.
-view_configurationHistoryList_delete_success = You successfully deleted the selected configuration history items.
-view_configurationHistoryList_delete_failure = Failed to delete the configuration history items.
-view_configurationHistoryList_cannotDeleteGroupItems = One or more selected configuration history items are part of a group configuration update. \
-You must purge that parent group history item before you can delete its individual resource history items.
-view_configurationHistoryList_cannotDeleteCurrent = One of the selected history items represents the current configuration - you cannot delete it.
-view_configurationHistoryList_table_statusSuccess = This configuration update was successful
-view_configurationHistoryList_table_statusInprogress = This configuration update is still in progress
-view_configurationHistoryList_table_statusNochange = No changes were made to this configuration
-view_configurationHistoryList_table_statusFailure = This configuration update failed
-view_configurationHistoryList_table_clickStatusIcon = Click the status icon for full details
-
-# Configuration History Details
-#------------------------------------------
-view_configurationHistoryDetails_error_loadFailure = Unable to load configuration history.
-
-
-# Operation Schedule List
-#------------------------
-xxx =
-
-# Operation Schedule Details
-#---------------------------
-view_operationScheduleDetails_operationSchedule = Operation Schedule
-view_operationScheduleDetails_field_description = Description
-view_operationScheduleDetails_field_parameters = Parameters
-view_operationScheduleDetails_field_timeout = Timeout
-view_operationScheduleDetails_fieldHelp_timeout = a time duration - if specified, if the duration elapses before a scheduled operation execution has completed, the RHQ Server will timeout the operation and consider it to have failed; note, it is usually not possible to abort the underlying managed resource operation if it was already initiated
-view_operationScheduleDetails_fieldHelp_description = an optional description of this scheduled operation (e.g. nightly maintenance app server restart)
-view_operationScheduleDetails_fieldDefault_description = Select an operation to see its description.
-view_operationScheduleDetails_fieldDefault_parameters = Select an operation to see its parameters.
-view_operationScheduleDetails_noParameters = This operation does not take any parameters.
-view_operationScheduleDetails_enterParametersBelow = Enter parameters below...
-
-view_group_operationScheduleDetails_failedToLoadMembers = Failed to load group member Resources.
-view_group_operationScheduleDetails_field_execute = Execute
-view_group_operationScheduleDetails_value_parallel = in parallel
-view_group_operationScheduleDetails_value_sequential = in the order specified below (drag and drop member Resources to change order)
-view_group_operationScheduleDetails_field_haltOnFailure = Halt on Failure?
-view_group_operationScheduleDetails_memberResource = Member Resource
-
-
-# Operation History List
-#-----------------------
-view_operationHistoryList_title = Operation History
-view_operationHistoryList_button_runOperation = Run Operation
-view_operationHistoryList_button_forceDelete = Force Delete
-view_operationHistoryList_notYetStarted = not yet started
-
-# Operation History Details
-#--------------------------
-view_operationHistoryDetails_error_fetchFailure = Failure loading operation history.
-view_operationHistoryDetails_operation = Operation
-view_operationHistoryDetails_dateSubmitted = Date Submitted
-view_operationHistoryDetails_dateCompleted = Date Completed
-view_operationHistoryDetails_requestor = Requestor
-view_operationHistoryDetails_status = Status
-view_operationHistoryDetails_parameters = Parameters
-view_operationHistoryDetails_results = Results
-view_operationHistoryDetails_noResults = This operation does not return any results.
-
-
-# Summary Overview
-#-----------------------------
-view_summaryOverview_header_detectedErrors = Detected Errors
-view_summaryOverview_tooltip_detectedErrors = Click on the rows to see the error details.
-view_summaryOverview_title_errorDetailsWindow = Error Details
-
-# Summary Overview Form
-#-------------------------------------
-view_summaryOverviewForm_field_type = Type
-view_summaryOverviewForm_field_name = Name
-view_summaryOverviewForm_field_description = Description
-view_summaryOverviewForm_field_location = Location
-view_summaryOverviewForm_field_version = Version
-view_summaryOverviewForm_error_traitsLoadFailure = Failed to load traits for {0}.
-view_summaryOverviewForm_label_plugin = Plugin:
-view_summaryOverviewForm_label_type = Type:
-view_summaryOverviewForm_header_summary = Summary
-view_summaryOverviewForm_error_nameChangeFailure = Failed to change name of Resource with id {0} from [{1}] to [{2}].
-view_summaryOverviewForm_message_nameChangeSuccess = Name of Resource with id {0} was changed from [{1}] to [{2}].
-view_summaryOverviewForm_error_descriptionChangeFailure = Failed to change description of Resource with id {0} from [{1}] to [{2}].
-view_summaryOverviewForm_message_descriptionChangeSuccess = Description of Resource with id {0} was changed from [{1}] to [{2}].
-view_summaryOverviewForm_error_locationChangeFailure = Failed to change location of Resource with id {0} from [{1}] to [{2}].
-view_summaryOverviewForm_message_locationChangeSuccess = Location of Resource with id {0} was changed from [{1}] to [{2}].
-
-# Summary Dashboard
-#-----------------------------
-view_summaryDashboard_resetConfirm = Reset to default summary dashboard (lose local changes)?
-
-# Group Inventory>Members subtab
-#-----------------------------------------
-view_groupInventoryMembers_button_updateMembership = Update Membership...
-view_groupInventoryMembers_title_updateMembership = Update Membership
-
-
-#==================== Reports ======================
-
-view_reportsTop_title = Reports
-view_reportsTop_description = This section provides access to global reports.
-view_reports_platforms = Platform Utilization
-view_reports_subsystems = Subsystems
-view_reports_alertDefinitions = Alert Definitions
-
-view_measurementOob_title = Suspect Metrics
-
-view_tagCloud_title = Tag Cloud
-view_tagCloud_error_fetchFailure = Failed to load tags.
-view_tagCloud_error_tagUsedCount = Tag used {0} times.
-view_tagCloud_deleteTag = Delete Tag
-view_tagCloud_deleteTagFailure = Failed to delete the tag [{0}]
-view_tagCloud_deleteTagSuccess = You successfully deleted the tag [{0}]
-
-view_reports_inventorySummary_failFetch = Failed to get inventory summary
-
-view_taggedResources_title = Resources
-
-view_reports_alertDefinitions_parentHover = Click to go to the parent alert definition
-view_reports_alertDefinitions_resTypeLoadError = Cannot get the template resource type - unable to view the alert template.
-
-#==================== Help ======================
-
-view_helpTop_description = This section provides access to documentation, tutorials, version, and other helpful information.
-view_help_section_product = Product
-view_help_section_product_about = About
-
-
-#===================== Test =======================
-view_testTop_title = Test
-view_testTop_description = This section contains pages for testing various GUI components.
-
-#=================== Top Level =====================
-
-# About Box
-#----------
-view_aboutBox_allRightsReserved = All Rights Reserved.
-view_aboutBox_buildNumber = Build Number:
-view_aboutBox_failedToLoad = Failed to load product information.
-view_aboutBox_homepage = Homepage
-view_aboutBox_jbossByRedHat = JBoss by Red Hat
-view_aboutBox_title = About {0}
-view_aboutBox_version = Version:
-
-# CoreGUI
-#--------------
-view_core_error_1 = New Alerts lookup failed
-#view_core_loggedInAs = Logged in as {0}
-view_core_loggedOut = Logged out
-view_core_recentAlerts = There are [{0}] recent alerts - click to go to the recent alerts report
-view_core_noRecentAlerts = There are no recent alerts to report
-view_core_uncaught = Globally uncaught exception
-
-# Login
-#--------------
-view_login_invalidEmail = Invalid e-mail address
-view_login_login = Login
-view_login_logout = Logout
-view_login_noBackend = The backend datasource is unavailable.
-view_login_noLdap = Note: Optional retrieval of ldap details unsuccessful. Manual entry is required.
-view_login_noUser = The username or password provided does not match our records.
-view_login_prompt = Please Login
-view_login_registerLater = (Cancel - Complete registration later.)
-view_login_registerLdapSuccess = Successfully registered the new LDAP User.
-view_login_registerUser = Register User
-view_login_welcome = Welcome
-view_login_welcomeMsg = Welcome to RHQ! <br/><br/> Enter/update the following fields to complete your registration process.<br/> Once you click "OK", you will be logged in.<br/><br/>
-
-# Menu Bar
-#--------------
-view_menuBar_logout = Logout
-
-# Search Bar, GUI
-#-----------------
-view_searchBar_resources = Resources
-view_searchBar_resourceGroups = Resource Groups
-# TODO: i18n pluralization
-view_searchBar_welcomeMessage = search for {0}s
-view_searchBar_defaultPattern = name your pattern
-view_searchBar_error_selectSavedSearch = ''Error selecting saved search''
-view_searchBar_query = Query
-
-view_searchGUI_loginStatus = Unable to determine login status, check server status
-
-# Message Center
-#--------------------------
-view_messageCenter_messageTitle = Message Center
-view_messageCenter_noRecentMessages = No Recent Messages
-view_messageCenter_maxMessages = Max Messages
-view_messageCenter_lastNMessages = Last {0} Messages
-view_messageCenter_clearAllMessages = Clear All Messages
-view_messageCenter_messageTime = Time
-view_messageCenter_messageSeverity = Severity
-view_messageCenter_messageDetail = Detail
-view_messageCenter_stackTraceFollows = --- STACK TRACE FOLLOWS ---
-view_messageCenter_messageBarShowDetails = Show Details
+#
+# RHQ GUI i18n Messages - English
+###################################
+# Common Alert Priorities
+#------------------------
+common_alert_high = High
+common_alert_low = Low
+common_alert_medium = Medium
+#
+#************************************** SHARED ****************************************
+#
+#=================== Common =====================
+#
+# Build Info
+#
+common_buildInfo_gwtVersion = ${gwt.version}
+#
+# Button Labels
+#--------------
+common_button_ack = Acknowledge
+common_button_ack_all = Acknowledge All
+common_button_add = Add
+common_button_advanced = Advanced...
+common_button_apply = Apply
+common_button_cancel = Cancel
+common_button_close = Close
+common_button_compare = Compare
+common_button_create_child = Create Child
+common_button_delete = Delete
+common_button_delete_all = Delete All
+common_button_disable = Disable
+common_button_edit = Edit
+common_button_enable = Enable
+common_button_finish = Finish
+common_button_import = Import
+common_button_new = New
+common_button_next = Next
+common_button_ok = OK
+common_button_previous = Previous
+common_button_purgeAll = Purge All
+common_button_refresh = Refresh
+common_button_reset = Reset
+common_button_save = Save
+common_button_schedule = Schedule
+common_button_search = Search
+common_button_set = Set
+common_button_showDetails = Show Details...
+common_button_uninventory = Uninventory
+common_calendar_april_short = apr
+common_calendar_august_short = aug
+common_calendar_december_short = dec
+common_calendar_february_short = feb
+#
+# Common Calendar
+#--------------
+common_calendar_january_short = jan
+common_calendar_july_short = jul
+common_calendar_june_short = jun
+common_calendar_march_short = mar
+common_calendar_may_short = may
+common_calendar_november_short = nov
+common_calendar_october_short = oct
+common_calendar_september_short = sept
+#
+# Common Labels
+#------------------------
+common_label_ago = ago
+common_label_all = ALL
+common_label_all_resources = all resources
+common_label_day = day
+common_label_days = days
+common_label_hour = hour
+common_label_hours = hours
+common_label_item = item
+common_label_items = items
+common_label_milliseconds = milliseconds
+common_label_minutes = minutes
+common_label_month = month
+common_label_none = none
+common_label_role = role
+common_label_roles = roles
+common_label_scheduled_operations = scheduled operations
+common_label_seconds = seconds
+common_label_selected_resources = selected resources
+common_label_unlimited = unlimited
+common_label_user = user
+common_label_users = users
+common_label_week = week
+common_label_weeks = weeks
+common_label_yesterday = Yesterday
+#
+# Common Messages
+#--------------
+common_msg_areYouSure = Are You Sure?
+common_msg_asyncTimeout = {0}. This occurred because the server is taking a long time to complete this request. Please be aware that the server may still be processing your request and it may complete shortly. You can check the server logs to see if any abnormal errors occurred.
+common_msg_changeAutoDetected = Change auto-detected
+common_msg_deleteConfirm = Are you sure you want to delete the # selected {0}?
+common_msg_emphasizedNotePrefix = NOTE:
+common_msg_loading = Loading...
+common_msg_noItemsToShow = No items to show
+common_msg_notYetImplemented = Not Yet Implemented
+common_msg_see_more = see more...
+common_msg_step_x_of_y = Step {0} of {1}
+#
+# Common Severities
+#------------------
+common_severity_debug = Debug
+common_severity_error = Error
+common_severity_fatal = Fatal
+common_severity_info = Info
+common_severity_warn = Warn
+#
+# Common Statuses
+#
+common_status_canceled = Canceled
+common_status_deferred = Deferred
+common_status_failed = Failed
+common_status_inprogress = In Progress
+common_status_nochange = No Change
+common_status_partial = Partial
+common_status_success = Success
+common_status_timedOut = Timed Out
+common_status_unknown = Unknown
+common_title_add_column = Add Column
+common_title_add_graph_to_view = Add Graph to Monitor View
+common_title_add_portlet = Add Portlet
+#
+# Common Titles
+#--------------
+common_title_address = Address
+common_title_alert_range = Alert Range
+common_title_ancestry = Ancestry
+common_title_availability = Availability
+common_title_available_resources = Available Resources
+common_title_average_metrics = Average Metrics per Minute
+common_title_background = Background
+common_title_bundle = Bundle
+common_title_bundles = Bundles
+common_title_category = Category
+common_title_change_refresh_time = Refresh Interval
+common_title_columns = Columns
+common_title_compare_metrics = Compare Metrics
+common_title_compatibleGroups = Compatible Groups
+common_title_compatibleGroups_total = Compatible Group Total
+common_title_component_errors = Component Errors
+common_title_config_update_status = Update Status
+common_title_configuration = Configuration
+common_title_count = Count
+common_title_custom = Custom
+common_title_dashboard_name = Dashboard Name
+common_title_dateCreated = Date Created
+common_title_dateRange = Date Range
+common_title_default = Default
+common_title_description = Description
+common_title_details = Details
+common_title_display = Display
+common_title_display_name = Display Name
+common_title_duration = Duration
+common_title_edit_mode = Edit Mode
+common_title_enabled = Enabled?
+common_title_end = End
+common_title_error = Error
+common_title_generalProp = General Properties
+common_title_group = Group
+common_title_group_def_total = Group Definition Total
+common_title_group_member_health = Group Member Health
+common_title_groups = Groups
+common_title_help = Help
+common_title_host = Host
+common_title_icon =
+common_title_id = ID
+common_title_id_parent = Parent ID
+common_title_info = Info
+common_title_inventory = Inventory
+common_title_inventorySummary = Inventory Summary
+common_title_lastUpdated = Last Updated
+common_title_lastUpdatedBy = Last Updated By
+common_title_ldapGroups = LDAP Groups
+common_title_mashup = Mashup
+common_title_members_reporting = Members Reporting
+common_title_message = Message
+common_title_metric = Metric
+common_title_metric_chart = Metric Chart
+common_title_mixedGroups = Mixed Groups
+common_title_mixedGroups_total = Mixed Group Total
+common_title_name = Name
+common_title_new_dashboard = New Dashboard
+common_title_numeric_metrics = Numeric Metrics
+common_title_numeric_type = Numeric Type
+common_title_operation_status = Operation Status
+common_title_operations = Operations
+common_title_operations_range = Operation Range
+common_title_over = Over
+common_title_password = Password
+common_title_path = Path
+common_title_permissions = Permissions
+common_title_platform = Platform
+common_title_platform_total = Platform Total
+common_title_plugin = Plugin
+common_title_port = Port
+common_title_providers = Providers
+common_title_recent_alerts = Recent Alerts
+common_title_recent_bundle_deployments = Recent Bundle Deployments
+common_title_recent_configuration_updates = Recent Configuration Updates
+common_title_recent_event_counts = Recent Event Counts
+common_title_recent_measurements = Recent Measurements
+common_title_recent_oob_metrics = Recent Out of Bound metrics
+common_title_recent_operations = Recent Operations
+common_title_recent_pkg_history = Recent Package History
+common_title_recently_added = Recently Added
+common_title_remove_column = Remove Column
+common_title_repositories = Repositories
+common_title_resource = Resource
+common_title_resourceGroups = Resource Groups
+common_title_resource_group = Resource Group
+common_title_resource_id = Resource ID
+common_title_resource_inventory = Resource Inventory
+common_title_resource_key = Resource Key
+common_title_resource_name = Resource Name
+common_title_resource_type = Resource Type
+common_title_resources = Resources
+common_title_results_count = Results Count
+common_title_results_count_tooltip = Displays this number of results
+common_title_role = Role
+common_title_roles = Roles
+common_title_scheduled_operations = Scheduled Operations
+common_title_search = Search
+common_title_selected_resources = Selected Resources
+common_title_server = Server
+common_title_server_total = Server Total
+common_title_service = Service
+common_title_service_total = Service Total
+common_title_settings = Settings
+common_title_show = Show
+common_title_show_more = Show more...
+common_title_sort_order = Sort Order
+common_title_sort_order_tooltip = Sets sort order for results.
+common_title_start = Start
+common_title_status = Status
+common_title_stop = Stop
+common_title_summary = Summary
+common_title_tag_cloud = Tag Cloud
+common_title_the = The
+common_title_timestamp = Date/Time
+common_title_total = Total
+common_title_type = Type
+common_title_units = Units
+common_title_user = User
+common_title_users = Users
+common_title_value = Value
+common_title_version = Version
+common_title_view_mode = View Mode
+common_title_web_address = Web Address
+common_title_welcome = Welcome
+common_unit_days = days
+common_unit_hours = hours
+common_unit_milliseconds = milliseconds
+common_unit_minutes = minutes
+common_unit_months = months
+common_unit_seconds = seconds
+#
+# Common Units
+#-------------
+common_unit_times = times
+common_unit_weeks = weeks
+common_unit_years = years
+#
+# Common Values
+#--------------
+common_val_for = for
+# 1st, 2nd, 3rd, 4th, etc.
+common_val_n1st = {0}st
+common_val_n2nd = {0}nd
+common_val_n3rd = {0}rd
+common_val_na = N/A
+common_val_never = Never
+common_val_no = No
+common_val_no_lower = no
+common_val_none = None
+common_val_nth = {0}th
+common_val_yes = Yes
+common_val_yes_lower = yes
+#
+# ContentRepositoryTree
+#------
+dataSource_ContentRepoTree_error_load = Error loading repositories
+dataSource_ContentRepoTree_field_parentId = Parent ID
+#
+#================== DataSources ====================
+# RPC (abstract)
+#-----------------------
+dataSource_bundle_loadFailed = Failed to load Bundle data
+dataSource_configurationHistory_clickToSeeError = Double click to see error message...
+dataSource_configurationHistory_currentConfig = This is the current configuration
+dataSource_configurationHistory_dateCompleted = Date Completed
+#
+# Configuration History
+#-------------------------------
+dataSource_configurationHistory_dateSubmitted = Date Submitted
+dataSource_configurationHistory_error_fetchFailure = Unable to load configuration history.
+dataSource_configurationHistory_updateType = Update Type
+dataSource_configurationHistory_updateType_group = Group
+dataSource_configurationHistory_updateType_individual = Individual
+#
+# Measurements
+#----------------------
+dataSource_definitions_loadFailed = Failed to load metric definitions
+dataSource_measurementOob_error_fetchFailure = Failed to load measurement OOB information
+dataSource_measurementOob_field_factor = Out of Range Factor (%)
+dataSource_measurementOob_field_formattedBaseband = Band
+dataSource_measurementOob_field_formattedOutlier = Outlier
+dataSource_measurementOob_field_parentName = Parent
+dataSource_measurementOob_field_resourceName = Resource
+#
+# Measurement OOBs
+#---------------------------------
+dataSource_measurementOob_field_scheduleName = Metric
+dataSource_operationHistory_error_fetchFailure = Failure loading operation histories.
+dataSource_operationHistory_field_createdTime = Created Time
+#
+# Operation Histories
+#--------------------
+dataSource_operationHistory_field_operationName = Operation Name
+dataSource_operationHistory_field_startedTime = Started Time
+dataSource_operationHistory_field_subject = Requester
+dataSource_operationSchedule_field_description = Notes
+#
+# Operation Schedules
+#--------------------
+dataSource_operationSchedule_field_id = Schedule ID
+dataSource_operationSchedule_field_nextFireTime = Next Execution
+dataSource_operationSchedule_field_operationDisplayName = Operation
+dataSource_operationSchedule_field_operationName = Operation
+dataSource_operationSchedule_field_subject = Owner
+dataSource_operationSchedule_field_timeout = Timeout (in seconds)
+#
+# Platforms
+#-----------
+dataSource_platforms_field_cpu = CPU
+dataSource_platforms_field_memory = Memory
+dataSource_platforms_field_swap = Swap
+dataSource_problemResources_error_fetchFailure = Failed to load Resources with alerts/unavailability.
+#
+# Problem Resources
+#------------------------------
+dataSource_problemResources_field_alerts = Alerts
+dataSource_problemResources_field_available = Current Availability
+dataSource_recentOperations_error_fetchFailure = Failed to load recently completed operations.
+dataSource_recentOperations_field_location = Location
+dataSource_recentOperations_field_operation = Operation
+#
+# Recent Operations
+#----------------------------
+dataSource_recentOperations_field_resource = Resource
+dataSource_recentOperations_field_status = Status
+dataSource_recentOperations_field_time = Date/Time
+dataSource_resourceErrors_clickStatusIcon = Click the icon for more details
+dataSource_resourceErrors_deleteFailure = Failed to delete resource errors
+dataSource_resourceErrors_deleteSuccess = You have successfully deleted [{0}] resource error messages.
+dataSource_resourceErrors_error_fetchFailure = Failed to find Resource errors for Resource with id [{0}].
+dataSource_resourceErrors_field_errorType = Error Type
+#
+# Resource Errors
+#-------------------------
+dataSource_resourceErrors_field_summary = Summary
+dataSource_resourceErrors_field_timeOccured = Time
+#
+# Resource Groups
+#-----------------------
+dataSource_resourceGroups_loadFailed = Failed to load Resource Groups
+dataSource_resources_field_discoveryTime = Discovery Time
+dataSource_resources_field_importTime = Import Time
+dataSource_resources_field_key = Key
+dataSource_resources_field_lastModifiedTime = Last Modified Time
+dataSource_resources_field_lastModifier = Last Modifier
+#
+# Resources
+#-----------------------
+dataSource_resources_field_location = Location
+#
+# RPC (abstract)
+#-----------------------
+dataSource_rpc_error_transformRequestFailure = Failure in datasource while processing {0} request.
+dataSource_rpc_error_unsupportedArrayFilterType = No support for passing array filters of type {0}.
+dataSource_rpc_error_unsupportedEnumType = Please add an appropriate code block for enum {0} to RPCDataSource.getEnumArray(Class)
+dataSource_rpc_no = no
+dataSource_rpc_yes = yes
+dataSource_scheduledOperations_error_fetchFailure = Failed to load scheduled operations.
+dataSource_scheduledOperations_field_location = Location
+dataSource_scheduledOperations_field_operation = Operation
+#
+# Scheduled Operations (ResourceOperationScheduleComposites)
+#------------------------------------------------------------
+dataSource_scheduledOperations_field_resource = Resource
+dataSource_scheduledOperations_field_time = Date/Time
+dataSource_schedules_disableFailure_group = Failed to disable the collection of [{0}] metrics for resource group with ID [{1}]. The metrics were: [{2}]
+dataSource_schedules_disableFailure_resource = Failed to disable the collection of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]
+dataSource_schedules_disableSuccessful_concise = You have disabled the collection of [{0}] measurements
+dataSource_schedules_disableSuccessful_full_group = You have disabled the collection of [{0}] measurements for the resource group with ID [{1}]. The disabled measurements are: [{2}]
+dataSource_schedules_disableSuccessful_full_resource = You have disabled the collection of [{0}] measurements for the resource with ID [{1}]. The disabled measurements are: [{2}]
+dataSource_schedules_enableFailure_group = Failed to enable the collection of [{0}] metrics for group with ID [{1}]. The metrics were: [{2}]
+dataSource_schedules_enableFailure_resource = Failed to enable the collection of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]
+dataSource_schedules_enableSuccessful_concise = You have enabled the collection of [{0}] measurements
+dataSource_schedules_enableSuccessful_full_group = You have enabled the collection of [{0}] measurements for the resource group with ID [{1}]. The enabled measurements are: [{2}]
+dataSource_schedules_enableSuccessful_full_resource = You have enabled the collection of [{0}] measurements for the resource with ID [{1}]. The enabled measurements are: [{2}]
+dataSource_schedules_field_resourceGroupId = Group ID
+dataSource_schedules_loadFailed = Failed to load metric schedules
+dataSource_schedules_loadFailedContext = Failed to load metric schedules for context [{0}]
+dataSource_schedules_loadFailedCriteria = Failed to load metric schedules for criteria [{0}]
+dataSource_schedules_updateFailure_group = Failed to set the collection interval of [{0}] metrics for resource group with ID [{1}]. The metrics were: [{2}]. The collection interval was to be [{3}] seconds.
+dataSource_schedules_updateFailure_resource = Failed to set the collection interval of [{0}] metrics for resource with ID [{1}]. The metrics were: [{2}]. The collection interval was to be [{3}] seconds.
+dataSource_schedules_updateSuccessful_concise = A new collection interval of [{0}] seconds has been set on [{1}] measurements
+dataSource_schedules_updateSuccessful_full_group = A new collection interval of [{0}] seconds has been set on [{1}] measurements for resource group with ID [{2}]. The updated measurements are: [{3}]
+dataSource_schedules_updateSuccessful_full_resource = A new collection interval of [{0}] seconds has been set on [{1}] measurements for resource with ID [{2}]. The updated measurements are: [{3}]
+#
+# Traits
+#------
+dataSource_traits_failFetch = Failed to fetch traits for criteria [{0}].
+dataSource_traits_field_definitionID = Definition ID
+dataSource_traits_field_lastChanged = Last Changed
+dataSource_traits_field_primaryKey = Primary Key
+dataSource_traits_field_trait = Trait
+dataSource_traits_group_field_groupId = Group ID
+dataSource_users_delete = Deleted user [{0}]
+dataSource_users_deleteFailed = Failed to delete user [{0}]
+dataSource_users_field_department = Department
+dataSource_users_field_emailAddress = Email Address
+dataSource_users_field_factive = Login Enabled?
+dataSource_users_field_firstName = First Name
+#
+# Users
+#------
+###### dup in common
+dataSource_users_field_id = ID
+dataSource_users_field_lastName = Last Name
+dataSource_users_field_ldap = LDAP Login?
+dataSource_users_field_name = User Name
+dataSource_users_field_password = Password
+dataSource_users_field_passwordVerify = Verify Password
+dataSource_users_field_phoneNumber = Phone Number
+dataSource_users_invalidEmailAddress = Invalid email address.
+dataSource_users_passwordsDoNotMatch = Passwords do not match.
+datasource_roles_field_ldapGroups = LDAP Groups
+datasource_roles_field_permissions = Permissions
+#
+# Roles
+#------
+datasource_roles_field_resourceGroups = Resource Groups
+datasource_roles_field_subjects = Subjects
+#
+# Template Schedules
+#-------------------------
+datasource_templateSchedules_disabled = Disabled collection of selected metric [{0}].
+datasource_templateSchedules_disabled_detailed = Disabled collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
+datasource_templateSchedules_disabled_failed = Failed to disable collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
+datasource_templateSchedules_enabled = Enabled collection of selected metric [{0}].
+datasource_templateSchedules_enabled_detailed = Enabled collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
+datasource_templateSchedules_enabled_failed = Failed to enable collection of metric [{0}] [{1}] by default for ResourceType with id [{2}].
+datasource_templateSchedules_updated = Updated collection intervals of selected metric [{0}].
+datasource_templateSchedules_updated_detail = Collection interval for metric [{0}] [{1}] by default for ResourceType with id [{2}] set to [{3}] seconds.
+datasource_templateSchedules_updated_failed = Failed to set collection interval to [{0}] seconds for metric [{1}] [{2}] by default for ResourceType with id [{3}].
+#
+#=================== Widgets =====================
+# Favorites
+#--------------
+favorites = Favorites
+favorites_groups = Favorite Groups
+favorites_recentlyViewed = Recently Viewed
+favorites_resources = Favorite Resources
+#
+# Group Tree
+#
+group_tree_partialClusterTooltip = {0} out of {1} group members have a ''{2}'' resource
+#
+#===================== Utils ======================
+# Ancestry
+#-------------------------------------------------
+util_ancestry_parentAncestry = Parent Ancestry for:
+#
+# Error Handler
+#--------------------
+util_errorHandler_nullException = exception was null
+#
+# Monitoring Request Callback
+#------------------------------------------
+util_monitoringRequestCallback_error_checkServerStatusFailure = Unable to determine login status - check Server status.
+#
+# RPC Manager
+#----------------------
+util_rpcManager_activeRequests = {0} Active Requests
+#
+# User Permissions Manager
+#--------------------------
+util_userPerm_loadFailGlobal = Failed to load your global permissions - none granted.
+util_userPerm_loadFailGroup = Failed to load your permissions for Resource Group with id [{0}] - none granted.
+util_userPerm_loadFailResource = Failed to load your permissions for Resource with id [{0}] - none granted.
+#
+# User Session Manager
+#--------------------------
+util_userSession_loadFailSubject = UserSessionManager: Failed to load user Subject
+util_userSession_logoutFail = Failed to logout.
+#
+# Widgets Field
+#---------------------
+util_widgetsField_unlimited = Unlimited
+#
+#=================== Top Level =====================
+# About Box
+#----------
+view_aboutBox_allRightsReserved = All Rights Reserved.
+view_aboutBox_buildNumber = Build Number:
+view_aboutBox_failedToLoad = Failed to load product information.
+view_aboutBox_homepage = Homepage
+view_aboutBox_jbossByRedHat = JBoss by Red Hat
+view_aboutBox_title = About {0}
+view_aboutBox_version = Version:
+view_adminConfig_downloads = Downloads
+view_adminConfig_plugins = Plugins
+view_adminConfig_systemSettings = System Settings
+view_adminConfig_templates = Templates
+view_adminContent_contentSources = Content Sources
+view_adminContent_repositories = Repositories
+#
+# Administration/Security/Roles/#
+#--------------------------------
+view_adminRoles_assignedGroups = Assigned Resource Groups
+view_adminRoles_assignedSubjects = Assigned Subjects
+view_adminRoles_failLdap = Failed to determine if LDAP configured - assuming no LDAP.
+view_adminRoles_failLdapGroups = Failed to retrieve available LDAP groups - assuming no LDAP groups.
+view_adminRoles_failLdapGroupsRole = Failed to load LDAP groups available for role.
+view_adminRoles_failRoles = Failed to fetch roles.
+view_adminRoles_globalPerms = Global Permissions
+view_adminRoles_ldapGroups = LDAP Groups
+view_adminRoles_ldapGroupsReadOnly = LDAP group data is read only
+view_adminRoles_noItems = No items to show
+view_adminRoles_noLdap = The LDAP security integration is not configured. To configure LDAP, go to <a {0}>{1}</a>.
+view_adminRoles_permissions_autoselecting_configureRead_implied = Autodeselected CONFIGURE_WRITE permission, since lack of CONFIGURE_READ implies lack of it...
+view_adminRoles_permissions_autoselecting_configureWrite_implied = Autoselected CONFIGURE_READ permission, since CONFIGURE_WRITE implies it...
+view_adminRoles_permissions_autoselecting_manageInventory_implied = Autoselected unselected Resource permissions, since MANAGE_INVENTORY implies all Resource permissions...
+view_adminRoles_permissions_autoselecting_manageSecurity_implied = Autoselected unselected permissions, since MANAGE_SECURITY implies all other permissions...
+view_adminRoles_permissions_globalPermissions = Global Permissions
+view_adminRoles_permissions_illegalDeselectionDueToCorrespondingWritePermSelection = {0} read permission cannot be deselected, unless the {0} write permission, which implies the read permission, is deselected first.
+view_adminRoles_permissions_illegalDeselectionDueToManageInventorySelection = {0} permission cannot be deselected, unless Manage Inventory, which implies all Resource permissions, is deselected first.
+view_adminRoles_permissions_illegalDeselectionDueToManageSecuritySelection = {0} permission cannot be deselected, unless the Manage Security permission, which implies all other permissions, is deselected first.
+view_adminRoles_permissions_isAuthorized = Authorized?
+view_adminRoles_permissions_isRead = Read?
+view_adminRoles_permissions_isWrite = Write?
+view_adminRoles_permissions_permDesc_manageBundles = can create, update, or delete provisioning bundles (viewing is implied for everyone)
+view_adminRoles_permissions_permDesc_manageInventory = has all Resource permissions, as described below, for all Resources; can create, update, and delete groups; and can import auto-discovered or manually discovered Resources
+view_adminRoles_permissions_permDesc_manageRepositories = can create, update, or delete repositories of any user (everyone can create their own repositories), can associate content sources to repositories.
+view_adminRoles_permissions_permDesc_manageSecurity = can create, update, or delete users and roles (viewing is implied for everyone)
+view_adminRoles_permissions_permDesc_manageSettings = can modify the RHQ Server configuration and perform any Server-related functionality
+view_adminRoles_permissions_permReadDesc_configure = view Resource configuration and Resource configuration revision history
+view_adminRoles_permissions_permReadDesc_control = (IMPLIED) view available operations and operation execution history
+view_adminRoles_permissions_permReadDesc_createChildResources = (IMPLIED) view child Resource creation history
+view_adminRoles_permissions_permReadDesc_deleteChildResources = (IMPLIED) view child Resource deletion history
+view_adminRoles_permissions_permReadDesc_inventory = (IMPLIED) view Resource properties (name, description, version, etc.), connection settings, and connection settings history
+view_adminRoles_permissions_permReadDesc_manageAlerts = (IMPLIED) view alert definitions and alert history
+view_adminRoles_permissions_permReadDesc_manageContent = (IMPLIED) view installed and available packages; view package installation history
+view_adminRoles_permissions_permReadDesc_manageEvents = (IMPLIED) view events
+view_adminRoles_permissions_permReadDesc_manageMeasurements = (IMPLIED) view metric data and collection schedules
+view_adminRoles_permissions_permWriteDesc_configure = update Resource configuration; delete Resource configuration revision history items
+view_adminRoles_permissions_permWriteDesc_control = execute operations; delete operation execution history items
+view_adminRoles_permissions_permWriteDesc_createChildResources = create new child Resources (for child Resources of types that are creatable)
+view_adminRoles_permissions_permWriteDesc_deleteChildResources = uninventory resources; delete Resources (for Resources of types that are deletable)
+view_adminRoles_permissions_permWriteDesc_inventory = update Resource name, version, description, and connection settings; delete connection settings history items
+view_adminRoles_permissions_permWriteDesc_manageAlerts = create, update, and delete alert definitions; acknowledge and delete alert history items
+view_adminRoles_permissions_permWriteDesc_manageContent = subscribe to content sources; install and uninstall packages
+view_adminRoles_permissions_permWriteDesc_manageEvents = delete events
+view_adminRoles_permissions_permWriteDesc_manageMeasurements = update metric collection schedules
+view_adminRoles_permissions_perm_configure = Configure
+view_adminRoles_permissions_perm_control = Control
+view_adminRoles_permissions_perm_createChildResources = Create Child Resources
+view_adminRoles_permissions_perm_deleteChildResources = Delete Child Resources
+view_adminRoles_permissions_perm_inventory = Inventory
+view_adminRoles_permissions_perm_manageAlerts = Manage Alerts
+view_adminRoles_permissions_perm_manageBundles = Manage Bundles
+view_adminRoles_permissions_perm_manageContent = Manage Content
+view_adminRoles_permissions_perm_manageEvents = Manage Events
+view_adminRoles_permissions_perm_manageInventory = Manage Inventory
+view_adminRoles_permissions_perm_manageMeasurements = Manage Measurements
+view_adminRoles_permissions_perm_manageRepositories = Manage Repositories
+view_adminRoles_permissions_perm_manageSecurity = Manage Security
+view_adminRoles_permissions_perm_manageSettings = Manage Settings
+view_adminRoles_permissions_read = Read:
+view_adminRoles_permissions_readAccessImplied = Read access for the {0} permission is implied and cannot be disabled.
+view_adminRoles_permissions_resourcePermissions = Resource Permissions
+view_adminRoles_permissions_write = Write:
+view_adminRoles_perms = Permissions
+view_adminRoles_resourcePerms = Resource Permissions
+view_adminRoles_roleAdded = Role [{0}] added.
+view_adminRoles_roleDeleteFailed = Failed to delete role [{0}].
+view_adminRoles_roleDeleted = Role [{0}] deleted.
+view_adminRoles_roleUpdateFailed = Failed to update role [{0}].
+view_adminRoles_roleUpdated = Role [{0}] updated.
+view_adminSecurity_roles = Roles
+view_adminSecurity_users = Users
+view_adminTemplates_disabledAlertTemplates = Disabled Alert Templates
+view_adminTemplates_disabledMetricTemplates = Disabled Metric Templates
+view_adminTemplates_editAlertTemplate = Edit Alert Template
+view_adminTemplates_editMetricTemplate = Edit Metric Template
+view_adminTemplates_enabledAlertTemplates = Enabled Alert Templates
+view_adminTemplates_enabledMetricTemplates = Enabled Metric Templates
+view_adminTemplates_platformServices = Platform Services
+#
+# Administration/Templates
+#--------------------------------
+view_adminTemplates_platforms = Platforms
+view_adminTemplates_prompt_disabledAlertTemplates = Number of alert templates that are created but disabled on this resource type
+view_adminTemplates_prompt_disabledMetricTemplates = Number of metric schedules that are disabled by default on this resource type
+view_adminTemplates_prompt_enabledAlertTemplates = Number of alert templates that are enabled on this resource type
+view_adminTemplates_prompt_enabledMetricTemplates = Number of metric schedules that are enabled by default on this resource type
+view_adminTemplates_servers = Servers
+view_adminTopology_affinityGroups = Affinity Groups
+view_adminTopology_agents = Agents
+view_adminTopology_partitionEvents = Partition Events
+view_adminTopology_remoteAgentInstall = Remote Agent Install
+view_adminTopology_servers = Servers
+#
+# Administration/Security/Users/#
+#--------------------------------
+view_adminUsersDetails_dataTypeName = user
+#
+# Administration/Security/Users
+#--------------------------------
+view_adminUsersList_dataTypeName = user
+view_adminUsersList_dataTypeNamePlural = users
+#
+#********************************** VIEW-SPECIFIC *************************************
+#================= Administration ==================
+view_admin_administration = Administration
+view_admin_configuration = Configuration
+view_admin_content = Content
+#
+# Administration/Downloads
+#------------------------------
+view_admin_downloads_agentDownload = Agent Download
+view_admin_downloads_agent_buildNumber = Agent Build
+view_admin_downloads_agent_help = <p> This is the RHQ Agent Update Binary jar file. The purpose of this jar file is to allow you to install a fresh agent on a machine where an agent does not yet exist and to allow you to update an agent that is already installed on a machine. For more details, run this agent download jar with the --help command line option:<br/> <b>java -jar <agent-download.jar> --help</b> </p> <h3>Agent Install</h3> <p> <b>java -jar <agent-download.jar> --install[=<new agent directory>]</b><br/> This command will install a new agent. If you do not specify the new agent directory, the default will be "." </p> <h3>Agent Update</h3> <p> <b>java -jar <agent-download.jar> --update[=<old agent home>]</b><br/> This will update an existing agent that was already installed. If you do not specify the directory where the old, existing agent was installed, it will assumed to be "rhq-agent". </p>
+view_admin_downloads_agent_link_label = Link
+view_admin_downloads_agent_link_value = Download Agent {0} ({1})
+view_admin_downloads_agent_loadError = Cannot get agent version info
+view_admin_downloads_agent_md5 = Agent MD5
+view_admin_downloads_agent_version = Agent Version
+view_admin_downloads_bundleDownload = Bundle Deployer Download
+view_admin_downloads_bundle_help = <p> This is the Bundle Deployer tool. It is for use by developers and packagers of RHQ bundles. This standalone tool allows you to test your bundles and their recipes from a console. </p>
+view_admin_downloads_bundle_link_label = Link
+view_admin_downloads_bundle_link_value = Download Bundle Deployer {0}
+view_admin_downloads_bundle_loadError = Cannot get bundle deployer info
+view_admin_downloads_cliDownload = Command Line Client Download
+view_admin_downloads_cli_buildNumber = CLI Build
+view_admin_downloads_cli_help = <p> This is the Command Line Client tool, otherwise known as the CLI. It is a standalone tool that runs from within a console and provides a command line interface to the RHQ Server. You can invoke commands via the CLI as well as run scripts to perform automated tasks. See the documentation for more information on how to install and use the CLI. </p>
+view_admin_downloads_cli_link_label = Link
+view_admin_downloads_cli_link_value = Download CLI {0} ({1})
+view_admin_downloads_cli_loadError = Cannot get CLI version info
+view_admin_downloads_cli_md5 = CLI MD5
+view_admin_downloads_cli_version = CLI Version
+view_admin_downloads_connectorsDownload = Connectors Download
+view_admin_downloads_connectors_help = Connectors are software that is needed in order for some products to be manageable by RHQ. You install connectors into some managed products so RHQ agents can talk to them. See the documentation for more information.
+view_admin_downloads_connectors_loadError = Cannot get connectors info
+view_admin_downloads_connectors_none = No connectors are available for download
+view_admin_landing = From this section, the RHQ global settings can be administered. This includes configuring security, setting up plugins, and managing RHQ Servers and Agents.
+# Measurement Templates view
+view_admin_measTemplates_title = Template Metric Collection Schedules
+view_admin_measTemplates_updateExisting_title = Update Existing Schedules
+view_admin_measTemplates_updateExisting_tooltip = Check this box to update the collection schedules for the selected metrics on all existing resources of this type. If this is not checked, the template schedules will only be applied to new resources of this type that are added to inventory in the future.
+view_admin_security = Security
+view_admin_systemSettings_AgentMaxQuietTimeAllowed_desc = If this amount of time passes without hearing from an agent, that quiet agent will be considered down. This value is specified in minutes.
+view_admin_systemSettings_AgentMaxQuietTimeAllowed_name = Agent Max Quiet Time Allowed
+view_admin_systemSettings_AlertPurge_desc = How old alert history items must be before being purged from the database. This is specified in days.
+view_admin_systemSettings_AlertPurge_name = Delete Alerts Older Than
+view_admin_systemSettings_AvailabilityPurge_desc = How old availability data must be before being purged from the database. This is specified in days.
+view_admin_systemSettings_AvailabilityPurge_name = Delete Availability Data Older Than
+view_admin_systemSettings_BaseURL_desc = A URL to the server GUI, used mainly within alert email notifications.
+view_admin_systemSettings_BaseURL_name = GUI Console URL
+view_admin_systemSettings_BaselineDataSet_desc = The amount of past measurement data that is used to determine a baseline. This is specified in days.
+view_admin_systemSettings_BaselineDataSet_name = Baseline Dataset
+view_admin_systemSettings_BaselineFrequency_desc = The frequency which the auto-calculation of baselines will be performed. If 0, baseline auto-calculation is disabled. This is specified in days.
+view_admin_systemSettings_BaselineFrequency_name = Baseline Calculation Frequency
+view_admin_systemSettings_DataMaintenance_desc = How often database maintenance is performed (for example, vacuuming if using Postgres). This is specified in hours.
+view_admin_systemSettings_DataMaintenance_name = Database Maintenance Period
+view_admin_systemSettings_DataReindex_desc = If enabled, certain database tables will be re-indexed periodically.
+view_admin_systemSettings_DataReindex_name = Reindex Data Tables Nightly
+view_admin_systemSettings_EnableAgentAutoUpdate_desc = Determines if the server will allow agents to auto-update themselves. You will not be able to download agent distributions from the server if this is disabled.
+view_admin_systemSettings_EnableAgentAutoUpdate_name = Enable Agent Auto-Updates
+view_admin_systemSettings_EnableDebugMode_desc = If enabled, the server will enter debug mode.
+view_admin_systemSettings_EnableDebugMode_name = Enable Debug Mode
+view_admin_systemSettings_EnableExperimentalFeatures_desc = If enabled, any experimental features that exist in the current product will be available.
+view_admin_systemSettings_EnableExperimentalFeatures_name = Enable Experimental Features
+view_admin_systemSettings_EventPurge_desc = How old event data must be before being purged from the database. This is specified in days.
+view_admin_systemSettings_EventPurge_name = Delete Events Older Than
+view_admin_systemSettings_JAASProvider_desc = Should LDAP be used to determine user identity?
+view_admin_systemSettings_JAASProvider_name = Enable LDAP
+view_admin_systemSettings_LDAPBaseDN_desc = The base of the directory tree to search for usernames and passwords while authenticating users, e.g. ou=People,dc=redhat,dc=com
+view_admin_systemSettings_LDAPBaseDN_name = Search Base
+view_admin_systemSettings_LDAPBindDN_desc = The username to connect to the LDAP server when querying the LDAP user database. This is typically the full LDAP distinguished name (DN) of a manager user, e.g. cn=Manager,dc=redhat,dc=com
+view_admin_systemSettings_LDAPBindDN_name = Username
+view_admin_systemSettings_LDAPBindPW_desc = The credentials of the user used to connect to the LDAP server when querying the LDAP user database.
+view_admin_systemSettings_LDAPBindPW_name = Password
+view_admin_systemSettings_LDAPFilter_desc = Any additional filters to apply when doing the LDAP search. This is useful if the population to authenticate can be identified via a given LDAP property, e.g. RHQUser=true
+view_admin_systemSettings_LDAPFilter_name = Search Filter
+view_admin_systemSettings_LDAPGroupFilter_desc = LDAP search filter that must return all LDAP groups available for authorization. This is used for LDAP group authorization.
+view_admin_systemSettings_LDAPGroupFilter_name = Group Search Filter
+view_admin_systemSettings_LDAPGroupMember_desc = LDAP search filter that is used in conjunction with the group search filter to determine user authorization. This is used for LDAP group authorization.
+view_admin_systemSettings_LDAPGroupMember_name = Group Member Filter
+view_admin_systemSettings_LDAPLoginProperty_desc = The LDAP property that contains the user name. Defaults to "cn". If multiple matches are found, the first entry found is used.
+view_admin_systemSettings_LDAPLoginProperty_name = Login Property
+view_admin_systemSettings_LDAPProtocol_desc = Should communication with the LDAP server be done over SSL?
+view_admin_systemSettings_LDAPProtocol_name = SSL
+view_admin_systemSettings_LDAPUrl_desc = URL to the LDAP Server
+view_admin_systemSettings_LDAPUrl_name = LDAP URL
+view_admin_systemSettings_RtDataPurge_desc = How old response time data must be before being purged from the database. This is specified in days.
+view_admin_systemSettings_RtDataPurge_name = Delete Response Time Data Older Than
+view_admin_systemSettings_TraitPurge_desc = How old measurement trait data must be before being purged from the database. This is specified in days.
+view_admin_systemSettings_TraitPurge_name = Delete Measurement Traits Older Than
+view_admin_systemSettings_cannotLoadServerDetails = Cannot load server details
+#
+# Administration/SystemSettings
+#------------------------------
+view_admin_systemSettings_cannotLoadSettings = Cannot obtain the current system settings
+view_admin_systemSettings_fixBeforeSaving = Please fix the invalid values before saving
+view_admin_systemSettings_group_baseline = Automatic Baseline Configuration Properties
+view_admin_systemSettings_group_dataMgr = Data Manager Configuration Properties
+view_admin_systemSettings_group_general = General Configuration Properties
+view_admin_systemSettings_group_ldap = LDAP Configuration Properties
+view_admin_systemSettings_saveFailure = Failed to save the system settings
+view_admin_systemSettings_savedSettings = You successfully saved the system properties
+view_admin_systemSettings_serverDetails = Server Details
+view_admin_systemSettings_serverDetails_buildNumber = Build Number
+view_admin_systemSettings_serverDetails_currentTable = Current Measurement Raw Table
+view_admin_systemSettings_serverDetails_dbDriverName = Database Driver Name
+view_admin_systemSettings_serverDetails_dbDriverVersion = Database Driver Version
+view_admin_systemSettings_serverDetails_dbName = Database Product Name
+view_admin_systemSettings_serverDetails_dbUrl = Database Connection URL
+view_admin_systemSettings_serverDetails_dbVersion = Database Product Version
+view_admin_systemSettings_serverDetails_installDir = Server Installation Directory
+view_admin_systemSettings_serverDetails_nextRotation = Next Measurement Table Rotation
+view_admin_systemSettings_serverDetails_time = Server Local Time
+view_admin_systemSettings_serverDetails_tz = Server Time Zone
+view_admin_topology = Topology
+view_alert_common_tab_conditions = Conditions
+view_alert_common_tab_conditions_expression = Fire alert when
+view_alert_common_tab_conditions_expression_tooltip = Determines if ANY or ALL of the conditions must evaluate to true in order for the entire condition set to be considered true.
+view_alert_common_tab_conditions_modal_title = Add Condition
+view_alert_common_tab_conditions_recovery_disabled = This alert caused its alert definition to be disabled
+view_alert_common_tab_conditions_recovery_enabled = Triggered ''{0}'' to be re-enabled
+view_alert_common_tab_conditions_text = Condition
+view_alert_common_tab_conditions_type_availability = Availability Change
+view_alert_common_tab_conditions_type_availability_down = Went down
+view_alert_common_tab_conditions_type_availability_up = Came up
+view_alert_common_tab_conditions_type_event = Event Detection
+view_alert_common_tab_conditions_type_event_matching = with event source matching
+view_alert_common_tab_conditions_type_metric_baseline = Metric Value Baseline
+view_alert_common_tab_conditions_type_metric_baseline_verb = of
+view_alert_common_tab_conditions_type_metric_calltime_change = Call Time Value Changes
+view_alert_common_tab_conditions_type_metric_calltime_change_verb = by at least
+view_alert_common_tab_conditions_type_metric_calltime_delta_grows = Grows
+view_alert_common_tab_conditions_type_metric_calltime_delta_other = Changes
+view_alert_common_tab_conditions_type_metric_calltime_delta_shrinks = Shrinks
+view_alert_common_tab_conditions_type_metric_calltime_destination = with call destination matching
+view_alert_common_tab_conditions_type_metric_calltime_threshold = Call Time Value Threshold
+view_alert_common_tab_conditions_type_metric_change = Metric Value Change
+view_alert_common_tab_conditions_type_metric_threshold = Metric Value Threshold
+view_alert_common_tab_conditions_type_metric_trait_change = Trait Change
+view_alert_common_tab_conditions_type_operation = Operation Execution
+view_alert_common_tab_conditions_type_operation_status = with result status
+view_alert_common_tab_conditions_type_resource_configuration = Resource Configuration Change
+view_alert_common_tab_conditions_value = Value
+view_alert_common_tab_dampening = Dampening
+view_alert_common_tab_dampening_category_consecutive_count = Consecutive
+view_alert_common_tab_dampening_category_consecutive_count_tooltip = An alert is triggered once every X occurrences the condition set is true consecutively.
+view_alert_common_tab_dampening_category_duration_count = Time Period
+view_alert_common_tab_dampening_category_duration_count_tooltip = An alert is triggered once every X occurrences the condition set is true within a given time period.
+view_alert_common_tab_dampening_category_none = None
+view_alert_common_tab_dampening_category_none_tooltip = Dampening is disabled. Every time the condition set is true, an alert will be triggered.
+view_alert_common_tab_dampening_category_partial_count = Last N Evaluations
+view_alert_common_tab_dampening_category_partial_count_tooltip = An alert is triggered once every X occurrences the condition set is true during the last N evaluations of the condition set.
+view_alert_common_tab_dampening_consecutive_occurrences_label = Occurrences
+view_alert_common_tab_dampening_consecutive_occurrences_label_tooltip = The number of times the condition set must be consecutively true before the alert is triggered
+view_alert_common_tab_dampening_duration_occurrences_label = Occurrences
+view_alert_common_tab_dampening_duration_occurrences_label_tooltip = The number of times the condition set must be true during the given time period before the alert is triggered.
+view_alert_common_tab_dampening_duration_period_label = Time Period
+view_alert_common_tab_dampening_duration_period_label_tooltip = The time span in which the condition set will be tested to see if the given number of occurrences are true.
+view_alert_common_tab_dampening_partial_evalatuions_label = Evaluations
+view_alert_common_tab_dampening_partial_evalatuions_label_tooltip = The total number of times the condition set will be tested to see if the given number of occurrences are true.
+view_alert_common_tab_dampening_partial_occurrences_label = Occurrences
+view_alert_common_tab_dampening_partial_occurrences_label_tooltip = The number of times the condition set must be true during the last N evaluations before the alert is triggered.
+view_alert_common_tab_general = General Properties
+view_alert_common_tab_invalid_condition_category = Invalid condition category - please report this as a bug: {0}
+view_alert_common_tab_invalid_dampening_category = Invalid dampening category - please report this as a bug: {0}
+view_alert_common_tab_invalid_time_units = Invalid time units - please report this as a bug: {0}
+view_alert_common_tab_notifications = Notifications
+view_alert_common_tab_notifications_message = Message
+view_alert_common_tab_notifications_sender = Sender
+view_alert_common_tab_notifications_status = Status
+view_alert_common_tab_recovery = Recovery
+view_alert_definition_condition_editor_avilability_option_down = Goes down
+view_alert_definition_condition_editor_avilability_option_up = Comes up
+view_alert_definition_condition_editor_avilability_tooltip = Specify the availability state change that will trigger the condition.
+view_alert_definition_condition_editor_avilability_value = Availability
+view_alert_definition_condition_editor_common_avg = Average
+view_alert_definition_condition_editor_common_max = Maximum
+view_alert_definition_condition_editor_common_min = Minimum
+view_alert_definition_condition_editor_delete_confirm = Delete the selected alert condition(s)?
+view_alert_definition_condition_editor_event_regex = Regular Expression
+view_alert_definition_condition_editor_event_regex_tooltip = If specified, this is a regular expression that must match a collected event message in order to trigger the condition.
+view_alert_definition_condition_editor_event_severity = Event Severity
+view_alert_definition_condition_editor_event_severity_debug = Debug
+view_alert_definition_condition_editor_event_severity_error = Error
+view_alert_definition_condition_editor_event_severity_fatal = Fatal
+view_alert_definition_condition_editor_event_severity_info = Info
+view_alert_definition_condition_editor_event_severity_warn = Warn
+view_alert_definition_condition_editor_event_tooltip = Specify the event severity that an event message must be reported with in order to trigger this condition. If you specify an optional regular expression, the event message must also match that regular expression in order for the condition to trigger.
+view_alert_definition_condition_editor_metric_baseline_percentage = Baseline Percentage
+view_alert_definition_condition_editor_metric_baseline_percentage_tooltip = A collected metric value will trigger this condition when compared to this percentage of the selected baseline value using the selected comparator
+view_alert_definition_condition_editor_metric_baseline_tooltip = Specify the baseline value that must be violated to trigger the condition. The value you specify is a percentage of the given baseline value.
+view_alert_definition_condition_editor_metric_baseline_value = Baseline
+view_alert_definition_condition_editor_metric_calltime_change_percentage = Percentage Change
+view_alert_definition_condition_editor_metric_calltime_change_percentage_tooltip = A collected calltime value will trigger this condition when it differs by at least this percentage of the selected calltime limit value
+view_alert_definition_condition_editor_metric_calltime_change_tooltip = Specify the calltime value that, when changed at least a specified amount, triggers the condition. You must specify which calltime limit to check (minimum, maximum or average calltime value) and the percentage of change that must occur.
+view_alert_definition_condition_editor_metric_calltime_common_comparator = Comparator
+view_alert_definition_condition_editor_metric_calltime_common_comparator_changes = Changes
+view_alert_definition_condition_editor_metric_calltime_common_comparator_grows = Grows
+view_alert_definition_condition_editor_metric_calltime_common_comparator_shrinks = Shrinks
+view_alert_definition_condition_editor_metric_calltime_common_comparator_tooltip = How a collected calltime value should be compared to the given calltime limit
+view_alert_definition_condition_editor_metric_calltime_common_limit = Call Time Limit
+view_alert_definition_condition_editor_metric_calltime_common_limit_tooltip = The calltime limit value that is to be compared with the given value
+view_alert_definition_condition_editor_metric_calltime_common_name = Call Time Metric
+view_alert_definition_condition_editor_metric_calltime_common_regex = Regular Expression
+view_alert_definition_condition_editor_metric_calltime_common_regex_tooltip = If specified, this is a regular expression that must match a call destination in order to trigger the condition.
+view_alert_definition_condition_editor_metric_calltime_threshold_tooltip = Specify the calltime threshold value that, when violated, triggers the condition. The value you specify is an absolute value with an optional units specifier. You also must specify which calltime limit to compare the value with (minimum, maximum or average calltime value).
+view_alert_definition_condition_editor_metric_calltime_threshold_value = Call Time Value
+view_alert_definition_condition_editor_metric_calltime_threshold_value_tooltip = The threshold value of the metric that will trigger the condition when compared using the selected comparator.
+view_alert_definition_condition_editor_metric_change_tooltip = Specify the metric whose value must change to trigger the condition.
+view_alert_definition_condition_editor_metric_common_definition_not_found = Should have found metric definition - something is wrong
+view_alert_definition_condition_editor_metric_threshold_comparator = Comparator
+view_alert_definition_condition_editor_metric_threshold_comparator_equal = Equal to
+view_alert_definition_condition_editor_metric_threshold_comparator_greater = Greater Than
+view_alert_definition_condition_editor_metric_threshold_comparator_less = Less than
+view_alert_definition_condition_editor_metric_threshold_comparator_tooltip = How a collected metric value should be compared to the given threshold value
+view_alert_definition_condition_editor_metric_threshold_name = Metric
+view_alert_definition_condition_editor_metric_threshold_tooltip = Specify the threshold value that, when violated, triggers the condition. The value you specify is an absolute value with an optional units specifier.
+view_alert_definition_condition_editor_metric_threshold_value = Metric Value
+view_alert_definition_condition_editor_metric_threshold_value_tooltip = The threshold value of the metric that will trigger the condition when compared using the selected comparator.
+view_alert_definition_condition_editor_metric_trait_change_tooltip = Specify the trait whose value must change to trigger the condition.
+view_alert_definition_condition_editor_metric_trait_change_value = Trait
+view_alert_definition_condition_editor_operation_status = Operation Status
+view_alert_definition_condition_editor_operation_status_canceled = Canceled
+view_alert_definition_condition_editor_operation_status_failure = Failure
+view_alert_definition_condition_editor_operation_status_inprogress = In Progress
+view_alert_definition_condition_editor_operation_status_success = Success
+view_alert_definition_condition_editor_operation_tooltip = Specify the result that must occur when the selected operation is executed in order to trigger the condition.
+view_alert_definition_condition_editor_operation_value = Operation
+view_alert_definition_condition_editor_option_availability = Availability Change
+view_alert_definition_condition_editor_option_event = Event Detection
+view_alert_definition_condition_editor_option_label = Condition Type
+view_alert_definition_condition_editor_option_metric_baseline = Measurement Baseline Threshold
+view_alert_definition_condition_editor_option_metric_calltime_change = Call Time Value Change
+view_alert_definition_condition_editor_option_metric_calltime_threshold = Call Time Value Threshold
+view_alert_definition_condition_editor_option_metric_change = Measurement Value Change
+view_alert_definition_condition_editor_option_metric_threshold = Measurement Absolute Value Threshold
+view_alert_definition_condition_editor_option_metric_trait_change = Trait Value Change
+view_alert_definition_condition_editor_option_operation = Operation Execution
+view_alert_definition_condition_editor_option_resource_configuration = Resource Configuration Change
+view_alert_definition_condition_editor_resource_configuration_tooltip = This condition is triggered when the resource configuration changes.
+view_alert_definition_for_group = View Group Definition
+view_alert_definition_for_type = View Template
+view_alert_definition_notification_cliScript_editor_anotherUser = Another User
+view_alert_definition_notification_cliScript_editor_existingScript = Existing Script
+view_alert_definition_notification_cliScript_editor_loadFailed = Loading the CLI Notification Editor Failed.
+view_alert_definition_notification_cliScript_editor_newScriptVersion = Version
+view_alert_definition_notification_cliScript_editor_repository = Repository
+view_alert_definition_notification_cliScript_editor_script = Script
+view_alert_definition_notification_cliScript_editor_selectRepo = Select the repository where the script should reside
+view_alert_definition_notification_cliScript_editor_selectRepoFirst = Select a repository first.
+view_alert_definition_notification_cliScript_editor_thisUser = Myself
+view_alert_definition_notification_cliScript_editor_uploadNewScript = Upload New Script
+view_alert_definition_notification_cliScript_editor_verifyAuthentication = Verify
+view_alert_definition_notification_cliScript_editor_whichUser = User To Run The Script As
+view_alert_definition_notification_editor_delete_confirm = Are you sure you want to delete the selected alert notifications?
+view_alert_definition_notification_editor_field_configuration = Configuration
+view_alert_definition_notification_editor_field_configuration_loadFailed = Failed to get notification configuration preview
+view_alert_definition_notification_editor_field_configuration_not_loaded = Unknown
+view_alert_definition_notification_editor_field_sender = Sender
+view_alert_definition_notification_editor_loadFailed = Cannot get alert senders
+view_alert_definition_notification_editor_loadFailed_single = Cannot get alert sender configuration definition
+view_alert_definition_notification_editor_none_available = No alert senders available
+view_alert_definition_notification_editor_saveFailed = Cannot save the notification configuration
+view_alert_definition_notification_editor_sender = Notification Sender
+view_alert_definition_notification_editor_title_add = Add Notification
+view_alert_definition_notification_editor_title_edit = Edit Notification
+view_alert_definition_notification_operation_editor_common_operation = Operation
+view_alert_definition_notification_operation_editor_mode_relative = Relative Resource
+view_alert_definition_notification_operation_editor_mode_specific = Specific Resource
+view_alert_definition_notification_operation_editor_mode_this = This Resource
+view_alert_definition_notification_operation_editor_mode_title = Resource Selection Mode
+view_alert_definition_notification_operation_editor_mode_unknown = UNKNOWN OPTION - THIS IS A BUG
+view_alert_definition_notification_operation_editor_operations_loadFailed = Failed to load the list of available operations
+view_alert_definition_notification_operation_editor_operations_no_parameters = This operation does not take any parameters
+view_alert_definition_notification_operation_editor_relative_ancestor = Start Search From
+view_alert_definition_notification_operation_editor_relative_ancestor_loadFailed = Cannot get type ancestry
+view_alert_definition_notification_operation_editor_relative_ancestor_root = Root Ancestor Type
+view_alert_definition_notification_operation_editor_relative_ancestor_tooltip = Select the top of the type hierarchy from which to search its descendant tree for the Filter By type
+view_alert_definition_notification_operation_editor_relative_descendant = Then Filter By
+view_alert_definition_notification_operation_editor_relative_descendant_filter_tooltip = A specific name to uniquely identify a resource when more than one resource of the selected type might exist. This is optional if there will only ever be one resource of the resource type in the selected type hierarchy.
+view_alert_definition_notification_operation_editor_relative_descendant_loadFailed = Cannot get type descendants
+view_alert_definition_notification_operation_editor_relative_descendant_tooltip = The resource type to search for under the root type defined in the Start Search From selection.
+view_alert_definition_notification_operation_editor_specific_pick_button = Pick
+view_alert_definition_notification_operation_editor_specific_pick_error_invalid = Please pick a resource
+view_alert_definition_notification_operation_editor_specific_pick_error_no_operation = Please pick a resource that has one or more operations
+view_alert_definition_notification_operation_editor_specific_pick_text = Pick a resource...
+view_alert_definition_notification_operation_editor_specific_resource = Resource
+view_alert_definition_notification_role_editor_loadFailed = Cannot determine current roles - starting empty
+view_alert_definition_notification_role_editor_restoreFailed = Cannot use current roles - starting empty
+view_alert_definition_notification_role_editor_saveFailed = Cannot save the selected roles
+view_alert_definition_notification_user_editor_loadFailed = Cannot determine current users - starting empty
+view_alert_definition_notification_user_editor_restoreFailed = Cannot use current users - starting empty
+view_alert_definition_notification_user_editor_saveFailed = Cannot save the selected users
+view_alert_definition_recovery_editor_disable_when_fired = Disable When Fired
+view_alert_definition_recovery_editor_disable_when_fired_tooltip = Indicates if this alert will be disabled after it fires. Once disabled, the alert can be manually re-enabled or a recovery alert can be set up to automatically re-enable it. If this alert is a recovery alert itself, this setting cannot be turned on.
+view_alert_definition_recovery_editor_loadFailed = Cannot build recovery menu
+view_alert_definition_recovery_editor_none_available = None
+view_alert_definition_recovery_editor_recovery_alert = Recover Alert
+view_alert_definition_recovery_editor_recovery_alert_tooltip = The target alert that will be recovered (i.e. re-enabled) after this alert triggers. Do not select an alert here if you are not defining a recovery alert.
+view_alert_definitions_create_failure = Alert definition creation failed
+view_alert_definitions_create_success = Alert definition successfully created
+view_alert_definitions_delete_confirm = Delete the selected alert definition(s)?
+view_alert_definitions_delete_failure = Failed to deleted the selected alert definitions
+view_alert_definitions_delete_success = Successfully deleted {0} alert definitions
+view_alert_definitions_disable_confirm = Disable the selected alert definition(s)?
+view_alert_definitions_disable_failure = Failed to disable the selected alert definitions
+view_alert_definitions_disable_success = Successfully disabled {0} alert definitions
+view_alert_definitions_enable_confirm = Enable the selected alert definition(s)?
+view_alert_definitions_enable_failure = Failed to enable the selected alert definitions
+view_alert_definitions_enable_success = Successfully enabled {0} alert definitions
+view_alert_definitions_loadFailed = Failed to fetch alert definition data
+view_alert_definitions_loadFailed_single = Failed to fetch data for alert definition with id {0}
+view_alert_definitions_table_title_group = Group Alert Definitions
+view_alert_definitions_table_title_resource = Resource Alert Definitions
+view_alert_definitions_update_failure = Alert definition update failed
+view_alert_definitions_update_success = Alert definition successfully updated
+view_alert_details_field_ack_at = Acknowledged at
+view_alert_details_field_ack_by = Acknowledged by
+view_alert_details_field_recovery_info = Recovery Info
+view_alert_details_loadFailed = Failed to fetch alert details
+view_alerts_ack_confirm = Acknowledge the selected alert(s)?
+view_alerts_ack_confirm_all = Acknowledge all alerts from this source?
+view_alerts_ack_failure = Failed to acknowledge alerts with id''s: {0}
+view_alerts_ack_failure_all = Failed to acknowledge all alerts from this source
+view_alerts_ack_success = Successfully acknowledged {0} alerts
+view_alerts_delete_confirm = Delete the selected alert(s)?
+view_alerts_delete_confirm_all = Delete all alerts from this source?
+view_alerts_delete_failure = Failed to delete alerts with id''s: {0}
+view_alerts_delete_failure_all = Failed to delete all alerts from this source
+view_alerts_delete_success = Successfully deleted {0} alerts
+view_alerts_field_ack_status = Status
+view_alerts_field_ack_status_ack = Ack ({0})
+view_alerts_field_ack_status_ackHover = Acknowledged by {0} at {1}
+view_alerts_field_ack_status_noAck = No Ack
+view_alerts_field_ack_status_noAckHover = Not yet Acknowledged
+view_alerts_field_ack_subject = Acknowledge Subject
+view_alerts_field_ack_time = Acknowledge Time
+view_alerts_field_condition_text = Condition Text
+view_alerts_field_condition_text_many = Multiple Conditions
+view_alerts_field_condition_text_none = No Conditions
+view_alerts_field_condition_value = Condition Value
+view_alerts_field_created_time = Creation Time
+view_alerts_field_enabled = Enabled
+view_alerts_field_modified_time = Modified Time
+view_alerts_field_name = Name
+view_alerts_field_parent = Parent
+view_alerts_field_priority = Priority
+view_alerts_field_protected = Protected
+view_alerts_field_protected_tooltip = If true, this definition is protected from being changed by the parent definition. In other words, the parent definition settings will not override this definition.
+view_alerts_loadFailed = Failed to fetch alerts data
+view_alerts_table_filter_priority = Priority Filter
+#==================== Alerts ======================
+view_alerts_table_title_group = Group Alert History
+view_alerts_table_title_resource = Resource Alert History
+view_autoDiscoveryQ_committed = Committed
+view_autoDiscoveryQ_confirmSelect = Also select the platform children?
+view_autoDiscoveryQ_deleted = Deleted
+view_autoDiscoveryQ_field_discoveryTime = Discovery Time
+view_autoDiscoveryQ_field_inventoryStatus = Inventory Status
+view_autoDiscoveryQ_field_key = Resource Key
+view_autoDiscoveryQ_field_name = Resource Name
+view_autoDiscoveryQ_field_parentId = Parent ID
+view_autoDiscoveryQ_ignore = Ignore
+view_autoDiscoveryQ_ignoreFailure = Failed to ignore resources
+view_autoDiscoveryQ_ignoreSuccessful = You have successfully ignored the selected resources.
+view_autoDiscoveryQ_ignored = Ignored
+view_autoDiscoveryQ_import = Import
+view_autoDiscoveryQ_importFailure = Failed to import resources
+view_autoDiscoveryQ_importSuccessful = You have successfully imported the selected resources.
+view_autoDiscoveryQ_loadFailure = Failed to load the inventory discovery queue
+view_autoDiscoveryQ_new = New
+view_autoDiscoveryQ_newAndIgnored = New and Ignored
+view_autoDiscoveryQ_noItems = No items to show
+view_autoDiscoveryQ_noperm = (You are not authorized to view the auto-discovery queue)
+view_autoDiscoveryQ_showStatus = Show
+#
+# Auto Discovery Queue
+#----------------------------
+view_autoDiscoveryQ_title = Autodiscovery Queue
+view_autoDiscoveryQ_unignore = Unignore
+view_autoDiscoveryQ_unignoreFailure = Failed to unignore resources
+view_autoDiscoveryQ_unignoreSuccessful = You have successfully unignored the selected resources.
+view_autoDiscoveryQ_uninventoried = Uninventoried
+view_bundleVersion_loadFailure = Failed to load bundle version data
+#
+#==================== Bundles ======================
+# some common bundle terms
+view_bundle_bundle = Bundle
+view_bundle_bundleDeployment = Bundle Deployment
+view_bundle_bundleDeployments = Bundle Deployments
+view_bundle_bundleDestinations = Bundle Destinations
+view_bundle_bundleFiles = Bundle Files
+view_bundle_bundleType = Bundle Type
+view_bundle_bundleVersion = Bundle Version
+view_bundle_bundleVersions = Bundle Versions
+view_bundle_bundles = Bundles
+view_bundle_createWizard_bundleDistro = Bundle Distribution
+view_bundle_createWizard_cancelFailure = Failed to fully cancel the creation of bundle [{0}], version = [{1}] - the bundle may still exist in the database
+view_bundle_createWizard_cancelSuccessful = Canceled the creation of bundle [{0}], version = [{1}]
+view_bundle_createWizard_clickToUploadRecipe = Click to load a recipe file
+view_bundle_createWizard_createFailure = Failed to create the bundle
+view_bundle_createWizard_createSuccessful = You have successfully created a bundle named [{0}] with a version of [{1}]
+view_bundle_createWizard_enterRecipe = Please supply a valid recipe
+view_bundle_createWizard_enterUrl = Please enter a valid URL where the bundle distribution file can be downloaded from
+view_bundle_createWizard_failedToUploadDistroFile = Failed to upload bundle distribution file
+view_bundle_createWizard_failedToUploadFile = Failed to upload bundle file
+view_bundle_createWizard_loadBundleFileFailure = Cannot obtain bundle file information from server
+view_bundle_createWizard_noAdditionalFilesNeeded = No additional files need to be uploaded for this bundle
+view_bundle_createWizard_noBundleTypesAvail = No bundle types are available
+view_bundle_createWizard_noBundleTypesSupported = No bundle types are supported - you must deploy a valid plugin that supports bundle deployments
+view_bundle_createWizard_provideBundleDistro = Provide a Bundle Distribution
+view_bundle_createWizard_recipeOption = Recipe
+view_bundle_createWizard_title = Create Bundle
+view_bundle_createWizard_uploadInProgress = Upload is in progress... This can take several minutes for large files
+view_bundle_createWizard_uploadOption = Upload
+view_bundle_createWizard_uploadStepName = Upload Bundle Files
+view_bundle_createWizard_urlOption = URL
+view_bundle_createWizard_windowTitle = Bundle Creation Wizard
+view_bundle_createWizard_youMustChooseOne = You must choose one option in order to create a bundle!
+view_bundle_deleteConfirm = Are you sure you want to delete this bundle? All versions, destinations and deployments for this bundle will also be deleted.
+view_bundle_deploy = Deploy
+view_bundle_deployDir = Deploy Directory
+view_bundle_deployWizard_deployStep = Deploy Bundle to Destination Platforms
+view_bundle_deployWizard_deploying = Deploying...
+view_bundle_deployWizard_deploymentCreated = Created Deployment...
+view_bundle_deployWizard_deploymentCreatedDetail = You have created the deployment [{0}] with the description [{1}]
+view_bundle_deployWizard_deploymentCreatedDetail_concise = You have created the deployment [{0}]
+view_bundle_deployWizard_deploymentScheduled = Bundle Deployment Scheduled!
+view_bundle_deployWizard_deploymentScheduledDetail = You have scheduled the bundle deployment [{0}] to the destination group [{1}]
+view_bundle_deployWizard_deploymentScheduledDetail_concise = You have scheduled the bundle deployment
+view_bundle_deployWizard_destinationCreatedDetail = You have created the destination [{0}] with the description [{1}]
+view_bundle_deployWizard_destinationCreatedDetail_concise = You have created the destination [{0}]
+view_bundle_deployWizard_error_1 = Failed to delete new deployment on Cancel
+view_bundle_deployWizard_error_10 = Failed to create destination, it may already exist. (Note, for an existing destination deploy from the Destination view)
+view_bundle_deployWizard_error_11 = Failed to find defined deployments.
+view_bundle_deployWizard_error_12 = Failed to find defined bundles.
+view_bundle_deployWizard_error_2 = Failed to delete new destination on Cancel
+view_bundle_deployWizard_error_3 = Failed to Schedule Deployment!
+view_bundle_deployWizard_error_4 = Failed to schedule deployment: {0}
+view_bundle_deployWizard_error_5 = Failed to Create Deployment!
+view_bundle_deployWizard_error_6 = Failed to create deployment: {0}
+view_bundle_deployWizard_error_7 = Failed to get deployment name.
+view_bundle_deployWizard_error_8 = You must select a valid resource group from the drop down
+view_bundle_deployWizard_error_9 = Failed to delete new destination in nextPage
+view_bundle_deployWizard_getConfigSkip = No configuration needed for this bundle version.
+view_bundle_deployWizard_getConfigStep = Set Deployment Configuration
+view_bundle_deployWizard_getDestStep = New Destination
+view_bundle_deployWizard_getDest_deployDir = Root Deployment Directory (on destination platforms)
+view_bundle_deployWizard_getDest_desc = Destination Description
+view_bundle_deployWizard_getDest_name = Destination Name
+view_bundle_deployWizard_getInfoStep = Provide Deployment Information
+view_bundle_deployWizard_getInfo_clean = Clean Deployment? (wipe deploy directory on destination platform)
+view_bundle_deployWizard_getInfo_deploymentDesc = Deployment Description
+view_bundle_deployWizard_getInfo_deploymentName = Deployment Name
+view_bundle_deployWizard_getOptionsStep = Deploy Options
+view_bundle_deployWizard_getOptions_deployLater = Deploy Later
+view_bundle_deployWizard_getOptions_deployNow = Deploy Now
+view_bundle_deployWizard_getOptions_deployTime = Deployment Time
+view_bundle_deployWizard_selectBundleStep = Select Deployment Bundle
+view_bundle_deployWizard_selectBundle_single = Select only a single bundle for deployment.
+view_bundle_deployWizard_selectVersionStep = Select Deployment Bundle Version
+view_bundle_deployWizard_selectVersion_latest = Latest Version [{0}]
+view_bundle_deployWizard_selectVersion_live = Live Version [{0}]
+view_bundle_deployWizard_selectVersion_select = Select Version from List:
+view_bundle_deployWizard_title = Bundle Deployment Wizard
+view_bundle_deploy_action = Action
+view_bundle_deploy_backButton = Back to Destination
+view_bundle_deploy_clickForError = Click the icon for the error message
+view_bundle_deploy_deleteConfirm = Are you sure you want to delete this bundle deployment?
+view_bundle_deploy_deleteFailure = Failed to delete the bundle deployment [{0}]
+view_bundle_deploy_deleteSuccessful = You successfully deleted the bundle deployment [{0}]
+view_bundle_deploy_deployedBy = Deployed By
+view_bundle_deploy_deploymentPlatforms = Deployment Platforms
+view_bundle_deploy_installDetails = Install Details
+view_bundle_deploy_loadBundleFailure = Failed to find bundle
+view_bundle_deploy_loadDeployFailure = Failed to load bundle deployments
+view_bundle_deploy_loadFailure = Failed to load bundle deployment
+view_bundle_deploy_name = Deployment Name
+view_bundle_deploy_operatingSystem = Operating System
+view_bundle_deploy_selectARow = Select a row to show installation details
+view_bundle_deploy_tagUpdateFailure = Failed to update bundle deployment tags
+view_bundle_deploy_tagUpdateSuccessful = You have successfully updated the bundle deployment tags
+view_bundle_deploy_time = Deployment Time
+view_bundle_deployed = Deployed
+view_bundle_deployments = Deployments
+view_bundle_dest_backToBundle = Back to Bundle
+view_bundle_dest_created = Created
+view_bundle_dest_deleteConfirm = Are you sure you want to delete this bundle destination? This only deletes it from the database; all bundle content that was deployed to this destination on remote machines will remain.
+view_bundle_dest_deleteFailure = Failed to delete the bundle destination [{0}]
+view_bundle_dest_deleteSuccessful = You successfully deleted the bundle destination [{0}]
+view_bundle_dest_deployDir = Deploy Directory
+view_bundle_dest_group = Group
+view_bundle_dest_lastDeployedVersion = Last Deployed Version
+view_bundle_dest_lastDeploymentDate = Last Deployment Date
+view_bundle_dest_lastDeploymentStatus = Last Deployment Status
+view_bundle_dest_loadFailure = Failed to load bundle destinations
+view_bundle_dest_loadFailureVersionInfo = Failed to load bundle destination deployed version information
+view_bundle_dest_purgeConfirm = This will purge the bundle content from all remote machines. Are you sure you want to do this?
+view_bundle_dest_purgeFailure = Failed to purge the bundle destination [{0}] from some or all of the remote machines.
+view_bundle_dest_purgeSuccessful = You successfully purged the bundle destination [{0}] from all of the remote machines.
+view_bundle_dest_revertConfirm = This will revert all remote machines back to the previous bundle deployment. Are you sure you want to do this?
+view_bundle_dest_tagUpdateFailure = Failed to update bundle destination tags
+view_bundle_dest_tagUpdateSuccessful = You have successfully updated the bundle destination tags
+view_bundle_destinations = Destinations
+# individual bundle views/wizards
+view_bundle_fileListView_fileSize = File Size
+view_bundle_fileListView_loadFailure = Failed to load bundle file data
+view_bundle_fileListView_md5 = MD5
+view_bundle_fileListView_sha256 = SHA256
+view_bundle_files = Files
+view_bundle_latestVersion = Latest Version
+view_bundle_list_backToAll = Back to All Bundles
+view_bundle_list_deleteConfirm = Are you sure you want to delete the selected bundles?
+view_bundle_list_deleteFailure = Failed to delete the bundle [{0}]
+view_bundle_list_deleteSuccessful = You successfully deleted the bundle [{0}]
+view_bundle_list_deletesFailure = Failed to delete the bundles
+view_bundle_list_deletesSuccessful = You successfully deleted the bundles
+view_bundle_list_destinationsCount = Destinations Count
+view_bundle_list_error1 = Failed to load bundle to deploy [{0}]
+view_bundle_list_error2 = Failed to get a single bundle to deploy [{0}]
+view_bundle_list_error3 = Failed to load bundle
+view_bundle_list_loadFailure = Failed to load the bundle to be deployed [{0}]
+view_bundle_list_loadWithLatestFailure = Failed to load bundle with the latest version data
+view_bundle_list_singleLoadFailure = Failed to get a single bundle to be deployed [{0}]
+view_bundle_list_tagUpdateFailure = Failed to update bundle tags
+view_bundle_list_tagUpdateSuccessful = You have successfully updated the bundle tags
+view_bundle_list_versionsCount = Versions Count
+view_bundle_purge = Purge
+view_bundle_recipe = Recipe
+view_bundle_resDeployDS_loadFailure = Failed to load bundle resource deployments
+view_bundle_revert = Revert
+view_bundle_revertWizard_confirmStep_confirmation = Reverting Live Deployment to Previous Deployment. Click "Next" to continue...
+view_bundle_revertWizard_confirmStep_failedToFindLiveDeployment = Failed to find live deployment; cannot revert
+view_bundle_revertWizard_confirmStep_liveDeployment = Live Deployment
+view_bundle_revertWizard_confirmStep_name = Revert Deployment Confirmation
+view_bundle_revertWizard_confirmStep_noLiveDeployment = No live deployment was found for the destination [{0}]
+view_bundle_revertWizard_confirmStep_noLiveDeployment_concise = No live deployment was found for the destination
+view_bundle_revertWizard_confirmStep_noPriorDeployment = The live deployment [{0}] cannot be reverted because there is no prior deployment for the destination [{1}]
+view_bundle_revertWizard_confirmStep_noPriorDeployment_concise = The live deployment cannot be reverted because there is no prior deployment
+view_bundle_revertWizard_confirmStep_prevDeployment = Previous Deployment
+view_bundle_revertWizard_getInfoStep_cleanDeploy = Clean Deployment? (this will delete an old, existing deploy directory prior to starting the revert deployment)
+view_bundle_revertWizard_getInfoStep_getNameFailure = Failed to get revert deployment name
+view_bundle_revertWizard_getInfoStep_name = Provide Revert Information
+view_bundle_revertWizard_getInfoStep_revertDeployDesc = Revert Deploy Description
+view_bundle_revertWizard_getInfoStep_revertDeployDescFull = [REVERT From]\\n{0}\\n\\n[REVERT To]\\n{1}
+view_bundle_revertWizard_getInfoStep_revertDeployName = Revert Deploy Name
+view_bundle_revertWizard_revertStep_name = Deploy Bundle to Destination Platforms
+view_bundle_revertWizard_revertStep_reverting = Reverting...
+view_bundle_revertWizard_revertStep_scheduled = You have successfully scheduled the revert deployment!
+view_bundle_revertWizard_revertStep_scheduledDetails = You have successfully scheduled to revert the bundle deployment [{0}] from resource group [{1}]
+view_bundle_revertWizard_revertStep_scheduledFailure = Failed to schedule revert deployment!
+view_bundle_revertWizard_title = Bundle Revert
+view_bundle_revertWizard_windowTitle = Bundle Revert Wizard
+view_bundle_tree_loadFailure = Failed to load bundle data
+view_bundle_version_backToBundle = Back to Bundle
+view_bundle_version_bundleVersionTagUpdateFailure = Failed to update bundle version tags
+view_bundle_version_bundleVersionTagUpdateSuccessful = You have successfully updated the bundle version tags
+view_bundle_version_deleteConfirm = Are you sure you want to delete this bundle version?
+view_bundle_version_deleteFailure = Failed to delete the bundle version [{0}]
+view_bundle_version_deleteSuccessful = You successfully deleted the bundle version [{0}]
+view_bundle_version_loadFailure = Failed to load bundle version
+view_bundle_versions = Versions
+# =================== Components =====================
+view_configCompare_comparingConfigs = Comparing Configurations
+view_configCompare_configCompare = Configuration Comparison
+view_configEdit_addItem = Add Item to List
+view_configEdit_confirm_1 = Are you sure you want to delete the selected properties from the set?
+view_configEdit_confirm_2 = Are you sure you want to delete this row?
+view_configEdit_confirm_3 = Are you sure you want to delete the [{0}] selected [{1}]?
+view_configEdit_editRow = Edit Row
+view_configEdit_enterPropName = Enter the name of the property to be added.
+view_configEdit_error_1 = Configuration is not supported by this Resource.
+view_configEdit_error_2 = Connection settings are not supported by this Resource.
+view_configEdit_error_3 = Cannot add property named [{0}]. The property name is already used in the set.
+view_configEdit_files = Files
+view_configEdit_hideAll = Hide All
+view_configEdit_jumpToSection = Jump to Section
+view_configEdit_msg_1 = Added property [{0}] to the set.
+view_configEdit_msg_2 = Removed properties from the set.
+view_configEdit_msg_3 = [{0} {1}] deleted from list.
+view_configEdit_msg_4 = Item added to list.
+view_configEdit_properties = Properties
+view_configEdit_tooltip_1 = Delete the selected items from the list.
+view_configEdit_tooltip_2 = Add an item to the list.
+view_configEdit_viewRow = View Row
+view_configurationDetails_allPropertiesValid = All configuration properties have valid values, so the configuration can now be saved.
+view_configurationDetails_configNotUpdatedDueToNoChange = Configuration was not updated, since the new configuration is equivalent to the current configuration.
+view_configurationDetails_error_updateFailure = Failed to update configuration.
+view_configurationDetails_messageConcise = Configuration updated - current version is {0}.
+view_configurationDetails_messageDetailed = Configuration updated to version {0} for Resource [{1}].
+#
+# Configuration Details
+#-------------------------------
+view_configurationDetails_noPermission = You do not have permission to edit this Resource''s configuration.
+view_configurationDetails_somePropertiesInvalid = The following configuration properties have invalid values: {0}. The values must be corrected before the configuration can be saved.
+#
+# Configuration History Details
+#------------------------------------------
+view_configurationHistoryDetails_error_loadFailure = Unable to load configuration history.
+view_configurationHistoryList_cannotDeleteCurrent = One of the selected history items represents the current configuration - you cannot delete it.
+view_configurationHistoryList_cannotDeleteGroupItems = One or more selected configuration history items are part of a group configuration update. You must purge that parent group history item before you can delete its individual resource history items.
+view_configurationHistoryList_delete_failure = Failed to delete the configuration history items.
+view_configurationHistoryList_delete_success = You successfully deleted the selected configuration history items.
+#
+# Abstract Configuration History List
+#-------------------------------
+view_configurationHistoryList_rollback = Rollback
+view_configurationHistoryList_rollback_failure = Failed to rollback the configuration. The original configuration is still in effect.
+view_configurationHistoryList_rollback_success = You successfully rolled back the configuration to the selected past configuration.
+view_configurationHistoryList_table_clickStatusIcon = Click the status icon for full details
+view_configurationHistoryList_table_statusFailure = This configuration update failed
+view_configurationHistoryList_table_statusInprogress = This configuration update is still in progress
+view_configurationHistoryList_table_statusNochange = No changes were made to this configuration
+view_configurationHistoryList_table_statusSuccess = This configuration update was successful
+#
+# Resource Configuration History List
+#-------------------------------
+view_configurationHistoryList_title = Configuration History
+view_connectionSettingsDetails_allPropertiesValid = All connection settings have valid values, so the settings can now be saved.
+view_connectionSettingsDetails_error_updateFailure = Failed to update connection settings.
+view_connectionSettingsDetails_messageConcise_updateSuccess = Connection settings updated.
+view_connectionSettingsDetails_messageDetailed_updateSuccess = Connection settings updated for Resource [{0}].
+#
+# Connection Settings Details
+#------------------------------------------
+view_connectionSettingsDetails_noPermission = You do not have permission to edit this Resourc