css default modifications
[old-projects.git] / philter / philter / locales / philter.en.inc.php
CommitLineData
d821a8ac
PH
1<?php
2/********************************************************************************
5ae3e923 3* i18n file
d821a8ac
PH
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
5ae3e923
PH
16 'del_email_q' => 'Do you really want to delete this email address ?',
17
d821a8ac
PH
18 'new_action' => 'New Action',
19 'new_match' => 'New Match',
20
21 'global_title' => 'Global configuration',
22
23 'pool_title' => 'Redirection addresses Pool',
f0a83324
PH
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 !',
9bdb0bb9
PH
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',
772509f3
PH
33 'filter_valid' => 'Validate',
34 'filter_cancel' => 'Cancel',
d821a8ac
PH
35 'filter_title' => 'Individuals Rules',
36 'filter_list_title' => 'Filter List',
f0a83324 37 'filter_err_empty' => 'You cannot add an empty rule',
d821a8ac
PH
38 'new_rule' => '[ new rule ]',
39
40 'filter_rule_conf' => 'Global Options',
a33c86a6 41 'rule_name' => 'Name of this rule',
d821a8ac
PH
42 'all_matches' => 'each match must be true',
43 'one_match' => 'only one match need to be true',
44 'blocking_rule' => 'stop after this rule if matched',
45
46 'filter_matches_list' => 'Matches List',
47 'filter_actions_list' => 'Actions List',
48
49// include/email.php
50 'your_email' => 'your email ...',
51 'email' => 'Email',
52 'active' => 'Active',
53 'apply_changes' => 'Apply Changes',
54 'add' => 'Add'
55);
56
5ae3e923
PH
57
58$handle = opendir('locales/plugins/');
d821a8ac
PH
59while(($file = readdir($handle)) !== false)
60 if(preg_match("/^.*\.en\.inc\.php$/",$file))
5ae3e923 61 require_once('locales/plugins/'.$file);
d821a8ac 62closedir($handle);
d821a8ac
PH
63// PHP 4.3.0 required !!!
64// foreach(glob("include/plugins/*.en.inc.php") as $file) require_once($file);
65
66
67/********************************************************************************
68* $Id$
69* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
70********************************************************************************/
71?>