i18n
[old-projects.git] / philter / philter / locales / philter.en.inc.php
index b5ad432..18a0663 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /********************************************************************************
-* include/core.inc.php : The include file for using Philter Core
-* --------------------
+* i18n file
 *
 * This file is part of the philter distribution
 * Copyright: See COPYING files that comes with this distribution
@@ -14,6 +13,8 @@ $philter->config['i18n'] = Array(
     'del' => 'Delete',
     'submit' => 'Submit',
 
+    'del_email_q' => 'Do you really want to delete this email address ?',
+
     'new_action' => 'New Action',
     'new_match' => 'New Match',
         
@@ -41,12 +42,12 @@ $philter->config['i18n'] = Array(
     'add' => 'Add'
 );
 
-$handle = opendir('locales/plugins');
+
+$handle = opendir('locales/plugins/');
 while(($file = readdir($handle)) !== false)
     if(preg_match("/^.*\.en\.inc\.php$/",$file))
-        require_once('include/plugins/'.$file);
+        require_once('locales/plugins/'.$file);
 closedir($handle);
-
 // PHP 4.3.0 required !!!
 // foreach(glob("include/plugins/*.en.inc.php") as $file) require_once($file);