2dd7d9a8eae6820ce0a61bbfacdb65178cb4554c
[old-projects.git] / philter / philter / locales / philter.en.inc.php
1 <?php
2 /********************************************************************************
3 * i18n file
4 *
5 * This file is part of the philter distribution
6 * Copyright: See COPYING files that comes with this distribution
7 ********************************************************************************/
8
9 $philter->config['i18n'] = Array(
10 // index.php
11 'up' => 'Up',
12 'dn' => 'Down',
13 'del' => 'Delete',
14 'submit' => 'Submit',
15
16 'del_email_q' => 'Do you really want to delete this email address ?',
17
18 'new_action' => 'New Action',
19 'new_match' => 'New Match',
20
21 'global_title' => 'Global configuration',
22
23 'pool_title' => 'Redirection addresses Pool',
24 'pool_err_already' => ' is already in the Email Pool',
25 'pool_err_not_valid' => ' is not a valid email',
26 'pool_err_active' => 'This email is still in use and can\'t be deleted !',
27 'pool_err_need_one' => 'you must have at least one active email !',
28
29 'filter_adv' => 'Advanced interface',
30 'filter_adv_txt' => 'Click here to have access to the advanced filtering options. <strong>Be
31 careful :</strong> thie functionnality is designed for advanced users and could lead to
32 mail losses',
33 'filter_sync' => 'Write your filter ...',
34 'filter_sync_txt' => '<p class="normal">If you are OK with your filter, you can sumbit it.
35 <stong>Be careful:</stong> this operation cannot be canceled !<br />
36 If you are not happy with it, you can cancel your modifications and leave the filter un
37 modified</p>',
38 'filter_valid' => 'Validate your filter',
39 'filter_cancel' => 'Cancel your modifications',
40 'filter_title' => 'Individuals Rules',
41 'filter_list_title' => 'Filter List',
42 'filter_err_empty' => 'You cannot add an empty rule',
43 'new_rule' => '[ new rule ]',
44
45 'filter_rule_conf' => 'Global Options',
46 'rule_name' => 'Name of this rule',
47 'all_matches' => 'each match must be true',
48 'one_match' => 'only one match need to be true',
49 'blocking_rule' => 'stop after this rule if matched',
50
51 'filter_matches_list' => 'Matches List',
52 'filter_actions_list' => 'Actions List',
53
54 // include/email.php
55 'your_email' => 'your email ...',
56 'email' => 'Email',
57 'active' => 'Active',
58 'apply_changes' => 'Apply Changes',
59 'add' => 'Add'
60 );
61
62
63 $handle = opendir('locales/plugins/');
64 while(($file = readdir($handle)) !== false)
65 if(preg_match("/^.*\.en\.inc\.php$/",$file))
66 require_once('locales/plugins/'.$file);
67 closedir($handle);
68 // PHP 4.3.0 required !!!
69 // foreach(glob("include/plugins/*.en.inc.php") as $file) require_once($file);
70
71
72 /********************************************************************************
73 * $Id$
74 * vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
75 ********************************************************************************/
76 ?>