i18n
[old-projects.git] / philter / philter / include / emails.inc.php
index 4ef2277..7c302f8 100644 (file)
@@ -97,10 +97,11 @@ class EmailPool {
      * @return  the string containing the form
      */
     function to_form() {
+        global $philter;
         $res = "<form id=\"emails\" action=\"{$_SERVER['REQUEST_URI']}\" method=\"post\">\n"
             .  "<table class=\"bicol\" cellpadding=\"1\" cellspacing=\"1\" width=\"95%\" align=\"center\">\n"
-            .  "<tr><th>Email</th>\n"
-            .  "    <th>Active</th>\n"
+            .  "<tr><th>".$philter->i18n('email')."</th>\n"
+            .  "    <th>".$philter->i18n('active')."</th>\n"
             .  "    <th>&nbsp;</th>\n"
             .  "</tr>\n";
 
@@ -121,16 +122,18 @@ class EmailPool {
         $res .= "</table>\n"
             .   "<center>\n"
             .   "    <input id=\"emailsDel\" type=\"hidden\" name=\"emails[del]\" value=\"-1\" />\n"
-            .   "    <input type=\"submit\" name=\"emails[apply]\" value=\"Apply changes\" />\n"
+            .   "    <input type=\"submit\" name=\"emails[apply]\" value=\""
+            .   $philter->i18n('apply_changes')."\" />\n"
             .   "</center>\n"
             .   "</form>\n";
 
-        $val = 'your email ...';
+        $val = $philter->i18n('your_email');
         
         $res .= "<form action=\"{$_SERVER['REQUEST_URI']}\" method=\"post\">\n"
             .   "<input type=\"text\" name=\"emails[new]\" size=\"50\" value='$val' "
             .   "    onfocus=\"text_onfocus(this,'$val')\" onblur=\"text_onblur(this,'$val')\" />\n"
-            .   "<input type=\"submit\" name=\"emails[add]\" value=\"Add\" />\n"
+            .   "<input type=\"submit\" name=\"emails[add]\" value=\"".
+                $philter->i18n('add')."\" />\n"
             .   "</form>\n";
         
         return $res;