1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | database_migration - a plugin for Piwigo | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2010 Nicolas Roudaire http://www.nikrou.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | This program is free software; you can redistribute it and/or modify | |
---|
8 | // | it under the terms of the GNU General Public License version 2 as | |
---|
9 | // | published by the Free Software Foundation | |
---|
10 | // | | |
---|
11 | // | This program is distributed in the hope that it will be useful, but | |
---|
12 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
13 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
14 | // | General Public License for more details. | |
---|
15 | // | | |
---|
16 | // | You should have received a copy of the GNU General Public License | |
---|
17 | // | along with this program; if not, write to the Free Software | |
---|
18 | // | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
---|
19 | // | MA 02110-1301 USA | |
---|
20 | // +-----------------------------------------------------------------------+ |
---|
21 | |
---|
22 | $lang['MySQL to others databases migration plugin'] = 'Plugin de migration de MySQL vers d\'autres base de données'; |
---|
23 | $lang['Import process'] = 'Processus d\'import'; |
---|
24 | $lang['New'] = 'Nouvelle'; |
---|
25 | $lang['List'] = 'Liste'; |
---|
26 | $lang['Edit'] = 'Editer'; |
---|
27 | $lang['No connection defined'] = 'Pas de connexion définie'; |
---|
28 | $lang['First we will create new configuration file for your new database.'] = 'Tout d\'abord, vous devez créer un nouveau fichier de configuration pour votre nouvelle base de données'; |
---|
29 | $lang['Export done'] = 'Export terminé avec succès'; |
---|
30 | $lang['Force export'] = 'Forcer un nouvel export'; |
---|
31 | $lang['lines'] = 'lignes'; |
---|
32 | $lang['Creation of new database'] = 'Création de la nouvelle base de données'; |
---|
33 | $lang['Installation of new tables'] = 'Installation de la nouvelle base de données'; |
---|
34 | $lang['Restore content into your new database'] = 'Restaurer le contenu dans la nouvelle base de données'; |
---|
35 | $lang['Database to populate'] = 'Base de données à remplir'; |
---|
36 | $lang['Choose connection'] = 'Choisissez une connexion'; |
---|
37 | $lang['You must define at least one connection to an new database'] = 'Vous devez commencer par créer une nouvelle connexion à une base de données'; |
---|
38 | $lang['New connection'] = 'Nouvelle connexion'; |
---|
39 | $lang['Edit database configuration'] = 'Editer la configuration de la base de données'; |
---|
40 | $lang['New database configuration'] = 'Nouvelle configuration de la base de données'; |
---|
41 | $lang['Restore config for Mysql database'] = 'Retour à la configuration avec Mysql comme base de données'; |
---|
42 | |
---|
43 | $lang['Configuration'] = 'Configuration'; |
---|
44 | $lang['Export'] = 'Export'; |
---|
45 | $lang['Import'] = 'Import'; |
---|
46 | $lang['Migration'] = 'Migration'; |
---|
47 | $lang['Restore'] = 'Retour à Mysql'; |
---|
48 | $lang['%s is required'] = 'Le champ %s est obligatoire'; |
---|
49 | $lang['Connection added successfully'] = 'Connexion ajoutée avec succès'; |
---|
50 | $lang['Connection deleted successfully'] = 'Connexion supprimée avec succès'; |
---|
51 | $lang['Connection updated successfully'] = 'Connexion mise à jour avec succès'; |
---|
52 | $lang['unknown dblayer'] = 'Base de données inconnue'; |
---|
53 | $lang['Cannot create struture'] = 'Création de la struture de la base de données impossible'; |
---|
54 | $lang['Cannot import %s content'] = 'Import du contenu de la table %s impossible'; |
---|
55 | $lang['Import completed'] = 'Import complet terminé'; |
---|
56 | ?> |
---|