fr i18n
authorPierre Habouzit <madcoder@debian.org>
Wed, 10 Sep 2003 16:33:52 +0000 (16:33 +0000)
committerPierre Habouzit <madcoder@debian.org>
Wed, 10 Sep 2003 16:33:52 +0000 (16:33 +0000)
philter/philter/locales/philter.fr.inc.php [new file with mode: 0644]
philter/philter/locales/plugins/autoreply.fr.inc.php [new file with mode: 0644]
philter/philter/locales/plugins/forward.fr.inc.php [new file with mode: 0644]

diff --git a/philter/philter/locales/philter.fr.inc.php b/philter/philter/locales/philter.fr.inc.php
new file mode 100644 (file)
index 0000000..d2d8fb9
--- /dev/null
@@ -0,0 +1,59 @@
+<?php
+/********************************************************************************
+* i18n file
+*
+* This file is part of the philter distribution
+* Copyright: See COPYING files that comes with this distribution
+********************************************************************************/
+
+$philter->config['i18n'] = Array(
+// index.php
+    'up' => 'Haut'
+    'dn' => 'Bas',
+    'del' => 'Suppr.',
+    'submit' => 'Valider',
+
+    'del_email_q' => 'Voulez vous réellement supprimer cette adresse mail ?',
+
+    'new_action' => 'nouvelle action',
+    'new_match' => 'nouveau critère',
+        
+    'global_title' => 'Configuration globale',
+
+    'pool_title' => 'Stock d\'adresses de redirection',
+    
+    'filter_title' => 'Règles de filtrage',
+    'filter_list_title' => 'Liste des règles',
+    'new_rule' => '[ nvlle règle ]',
+    
+    'filter_rule_conf' => 'Options globales',
+    'all_matches' => 'chaque critère doit être validé',
+    'one_match' => 'un unique critère vérifié suffit',
+    'blocking_rule' => 'arrêter de filtrer après cette règle si applicable',
+    
+    'filter_matches_list' => 'liste des critères',
+    'filter_actions_list' => 'liste des actions',
+
+// include/email.php
+    'your_email' => 'ton email ...',
+    'email' => 'Email',
+    'active' => 'Actif',
+    'apply_changes' => 'Appliquer les modifications',
+    'add' => 'Ajouter'
+);
+
+
+$handle = opendir('locales/plugins/');
+while(($file = readdir($handle)) !== false)
+    if(preg_match("/^.*\.fr\.inc\.php$/",$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);
+
+
+/********************************************************************************
+* $Id$
+* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
+********************************************************************************/
+?>
diff --git a/philter/philter/locales/plugins/autoreply.fr.inc.php b/philter/philter/locales/plugins/autoreply.fr.inc.php
new file mode 100644 (file)
index 0000000..d8b5898
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+/********************************************************************************
+* i18n file
+*
+* This file is part of the philter distribution
+* Copyright: See COPYING files that comes with this distribution
+********************************************************************************/
+
+$philter->config['i18n']['2_auto_reply'] = 'Répondeur automatique';
+$philter->config['i18n']['2_your_mail'] = ' Ton mail : ';
+
+/********************************************************************************
+* $Id$
+* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
+********************************************************************************/
+?>
diff --git a/philter/philter/locales/plugins/forward.fr.inc.php b/philter/philter/locales/plugins/forward.fr.inc.php
new file mode 100644 (file)
index 0000000..9fb7e93
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+/********************************************************************************
+* i18n file
+*
+* This file is part of the philter distribution
+* Copyright: See COPYING files that comes with this distribution
+********************************************************************************/
+
+$philter->config['i18n']['1_fwd_to'] = 'Transmettre à';
+$philter->config['i18n']['1_email'] = ' email : ';
+
+/********************************************************************************
+* $Id$
+* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
+********************************************************************************/
+?>