PluginProbe
Contact Forms by Cimatti / 1.9.2
Contact Forms by Cimatti v1.9.2
2.3.6 2.3.5 2.3.0 2.2.32 2.2.4 2.2.0 2.1.2 2.1.1 trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 All 62 releases
← All changes | classes/Validation/Color.php +1 -2 2.2.321.9.2 View file →
@@ -3,10 +3,9 @@
3 3 protected $message = "";
4 4
5 5 public function __construct($message = "") {
6 6 if(empty($message)) {
7 - // translators: %element% is the field label.
8 - $this->message = __( "Attention: '%element%' must be a color in hexadecimal format like '#0080FF'.", 'contact-forms' );
7 + $this->message = __("Attention: '%element%' must be a color in hexadecimal format like '#0080FF'.", 'contact-forms');
9 8 } else {
10 9 $this->message = $message;
11 10 }
12 11 }