bugfix
authorPierre Habouzit <madcoder@debian.org>
Mon, 13 Oct 2003 09:54:39 +0000 (09:54 +0000)
committerPierre Habouzit <madcoder@debian.org>
Mon, 13 Oct 2003 09:54:39 +0000 (09:54 +0000)
philter/philter/include/plugin_header.inc.php

index fa26d49..e4294e1 100644 (file)
@@ -13,6 +13,9 @@ class HdrPlugin extends MatchPlugin {
     function name() { return _i18n('2_hdr'); }
 
     function to_js() {
+        $_2_dests = _i18n('2_dests');
+        $_2_contains = _i18n('2_contains');
+        $_2_not_contains = _i18n('2_not_contains');
         return <<<EOF
 function(Node, data) {
     var i,j;
@@ -24,7 +27,7 @@ function(Node, data) {
     hdr_s.setAttribute('name', Node.name+'[1]');
     Node.appendChild(hdr_s);
 
-    hdr_s.options[0] = new Option('<"._i18n('2_dests').">',0,false,data[1]==0);
+    hdr_s.options[0] = new Option('<$_2_dests>',0,false,data[1]==0);
     hdr_s.options[1] = new Option('Subject:',1,false,data[1]==1);
     hdr_s.options[2] = new Option('From:',2,false,data[1]==2);
     hdr_s.options[3] = new Option('To:',3,false,data[1]==3);
@@ -40,8 +43,8 @@ function(Node, data) {
     op_s.setAttribute('name', Node.name+'[2]');
     Node.appendChild(op_s);
 
-    op_s.options[0] = new Option('"._i18n('2_contains')."',0,false,data[2]==0);
-    op_s.options[1] = new Option('"._i18n('2_not_contains')."',1,false,data[2]==1);
+    op_s.options[0] = new Option('$_2_contains',0,false,data[2]==0);
+    op_s.options[1] = new Option('$_2_not_contains',1,false,data[2]==1);
     op_s.options[2] = new Option(' = ',2,false,data[2]==2);
     op_s.options[3] = new Option(' != ',3,false,data[2]==3);
     op_s.options[4] = new Option(' >= ',4,false,data[2]==4);