source: extensions/database_migration/language/templates/plugin.lang.php @ 6222

Last change on this file since 6222 was 6222, checked in by nikrou, 14 years ago

Database migration plugin : first public version

File size: 3.3 KB
Line 
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// template
23$lang['MySQL to others databases migration plugin'] = 'MySQL to others databases migration plugin';
24$lang['Import process'] = 'Import process';
25$lang['New'] = 'New';
26$lang['List'] = 'List';
27$lang['Edit'] = 'Edit';
28$lang['No connection defined'] = 'No connection defined';
29$lang['First we will create new configuration file for your new database.'] = 'First we will create new configuration file for your new database.';
30$lang['Export done'] = 'Export done';
31$lang['Force export'] = 'Force export';
32$lang['lines'] = 'lines';
33$lang['Creation of new database'] = 'Creation of new database';
34$lang['Installation of new tables'] = 'Installation of new tables';
35$lang['Restore content into your new database'] = 'Restore content into your new database';
36$lang['Database to populate'] = 'Database to populate';
37$lang['Choose connection'] = 'Choose connection';
38$lang['You must define at least one connection to an new database'] = 'You must define at least one connection to an new database';
39$lang['New connection'] = 'New connection';
40$lang['Edit database configuration'] = 'Edit database configuration';
41$lang['New database configuration'] = 'New database configuration';
42$lang['Restore config for Mysql database'] = 'Restore config for Mysql database';
43
44// php
45$lang['Configuration'] = 'Configuration';
46$lang['Export'] = 'Export';
47$lang['Import'] = 'Import';
48$lang['Migration'] = 'Migration';
49$lang['Restore'] = 'Restore';
50$lang['%s is required'] = '%s is required';
51$lang['Connection added successfully'] = 'Connection added successfully';
52$lang['Connection deleted successfully'] = 'Connection deleted successfully';
53$lang['Connection updated successfully'] = 'Connection updated successfully';
54$lang['unknown dblayer'] = 'unknown dblayer';
55$lang['Cannot create struture'] = 'Cannot create struture';
56$lang['Cannot import %s content'] = 'Cannot import %s content';
57$lang['Import completed'] = 'Import completed';
58?>
Note: See TracBrowser for help on using the repository browser.