X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=philter%2Fphilter%2Flocales%2Fphilter.en.inc.php;h=31f3247acfe6b26f3e5a8f31373256f9cf107905;hb=4a2ed1733491e7e1396c063acf733e6323487c88;hp=b5ad432915e26160605f350a1427462e8ea3a805;hpb=d821a8ac1e53741f9342a8c3b60acf91d7b85404;p=old-projects.git diff --git a/philter/philter/locales/philter.en.inc.php b/philter/philter/locales/philter.en.inc.php index b5ad432..31f3247 100644 --- a/philter/philter/locales/philter.en.inc.php +++ b/philter/philter/locales/philter.en.inc.php @@ -1,7 +1,6 @@ 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', 'global_title' => 'Global configuration', 'pool_title' => 'Redirection addresses Pool', - + 'pool_err_already' => ' is already in the Email Pool', + 'pool_err_not_valid' => ' is not a valid email', + 'pool_err_active' => 'This email is still in use and can\'t be deleted !', + 'pool_err_need_one' => 'you must have at least one active email !', + + 'filter_adv' => 'Advanced interface', + 'filter_adv_txt' => 'Click here to have access to the advanced filtering options. Be + careful : thie functionnality is designed for advanced users and could lead to + mail losses', + 'filter_sync' => 'Write your filter ...', + 'filter_sync_txt' => '

If you are OK with your filter, you can sumbit it. + Be careful: this operation cannot be canceled !
+ If you are not happy with it, you can cancel your modifications and leave the filter un + modified

', + 'filter_valid' => 'Validate your filter', + 'filter_cancel' => 'Cancel your modifications', 'filter_title' => 'Individuals Rules', 'filter_list_title' => 'Filter List', + 'filter_err_empty' => 'You cannot add an empty rule', 'new_rule' => '[ new rule ]', 'filter_rule_conf' => 'Global Options', - 'all_matches' => 'each match must be true', - 'one_match' => 'only one match need to be true', - 'blocking_rule' => 'stop after this rule if matched', + 'rule_name' => 'Name of this rule', + 'all_matches' => 'Match all of the following', + 'one_match' => 'Match any of the following', + 'blocking_rule' => 'If the filter matches, stop processing here', - 'filter_matches_list' => 'Matches List', - 'filter_actions_list' => 'Actions List', + 'filter_matches_list' => 'Filter Criteria', + 'filter_actions_list' => 'Filter Actions', // include/email.php 'your_email' => 'your email ...', @@ -41,12 +59,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);