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'] = 'Spraudnis datu pārvietošanai no MySQL uzcitām datu bāzēm'; |
---|
24 | $lang['Import process'] = 'Importa process'; |
---|
25 | $lang['New'] = 'Jauns'; |
---|
26 | $lang['List'] = 'Saraksts'; |
---|
27 | $lang['Edit'] = 'Rediģēt'; |
---|
28 | $lang['No connection defined'] = 'Nav noteiktu savienojumu'; |
---|
29 | $lang['First we will create new configuration file for your new database.'] = 'Vispirms izveidosim jaunu konfigurācijas failu jūsu jaunajai datu bāzei.'; |
---|
30 | $lang['Export done'] = 'Eksports pabeigts'; |
---|
31 | $lang['Force export'] = 'Forsēts eksports'; |
---|
32 | $lang['lines'] = 'rindas'; |
---|
33 | $lang['Creation of new database'] = 'Jaunas datu bāzes izveidošana'; |
---|
34 | $lang['Installation of new tables'] = 'Jaunu tabulu instalācija'; |
---|
35 | $lang['Restore content into your new database'] = 'Jaunās datu bāzes satura atjaunošana'; |
---|
36 | $lang['Database to populate'] = 'Datu bāzes, ko aizpildīt'; |
---|
37 | $lang['Choose connection'] = 'Izvēlēties savienojumu'; |
---|
38 | $lang['You must define at least one connection to an new database'] ='Jums jādefinē vismaz viens savienojums ar jauno datu bāzi'; |
---|
39 | $lang['New connection'] = 'Jauns savienojums'; |
---|
40 | $lang['Edit database configuration'] = 'Rediģēt datu bāzes konfigurāciju'; |
---|
41 | $lang['New database configuration'] = 'Jaunās datu bāzes konfigurācija'; |
---|
42 | $lang['Restore config for Mysql database'] = 'Atjaunot Mysql datubāzes konfigurāciju'; |
---|
43 | |
---|
44 | // php |
---|
45 | $lang['Configuration'] = 'Konfigurācija'; |
---|
46 | $lang['Export'] = 'Eksports'; |
---|
47 | $lang['Import'] = 'Imports'; |
---|
48 | $lang['Migration'] = 'Migrācija'; |
---|
49 | $lang['Restore'] = 'Atjaunošana'; |
---|
50 | $lang['%s is required'] = '%s nepieciešams'; |
---|
51 | $lang['Connection added successfully'] = 'Savienojums pievienots sekmīgi'; |
---|
52 | $lang['Connection deleted successfully'] = 'Savienojums izdzēsts sekmīgi'; |
---|
53 | $lang['Connection updated successfully'] = 'Savienojums atjaunināts sekmīgi'; |
---|
54 | $lang['unknown dblayer'] = 'nezināms dbunknown db slānis'; |
---|
55 | $lang['Cannot create struture'] = 'Nevar izveidot struktūru'; |
---|
56 | $lang['Cannot import %s content'] = 'Nevar importēt %s saturu'; |
---|
57 | $lang['Import completed'] = 'Imports pabeigts'; |
---|
58 | ?> |
---|