diff --git a/includes/rules.plugins.inc b/includes/rules.plugins.inc index e4f4b96..703f700 100644 --- a/includes/rules.plugins.inc +++ b/includes/rules.plugins.inc @@ -132,7 +132,7 @@ class RulesCondition extends RulesAbstractPlugin implements RulesConditionInterf public function label() { $label = parent::label(); - return $this->negate ? t('NOT @condition', array('@condition' => $label)) : $label; + return $this->negate ? t('NOT !condition', array('!condition' => $label)) : $label; } }