1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2010 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | $lang['Installation'] = 'Установка'; |
---|
25 | $lang['Basic configuration'] = 'Базовая настройка'; |
---|
26 | $lang['Default gallery language'] = 'Язык по умолчанию'; |
---|
27 | $lang['Database configuration'] = 'Настройка базы данных'; |
---|
28 | $lang['Admin configuration'] = 'Настройка администрирования'; |
---|
29 | $lang['Start Install'] = 'Начать установку'; |
---|
30 | $lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'адрес электронной почты должен быть похож на xxx@yyy.eee (например: jack@altern.org)'; |
---|
31 | |
---|
32 | $lang['Webmaster login'] = 'Логин вебмастера'; |
---|
33 | $lang['It will be shown to the visitors. It is necessary for website administration'] = 'Он будет показан посетителям. Необходим для администрирования сайта'; |
---|
34 | |
---|
35 | $lang['Connection to server succeed, but it was impossible to connect to database'] = 'Успешно соединились с сервером, но невозможно подключиться к базе данных'; |
---|
36 | $lang['Can\'t connect to server'] = 'Невозможно соединиться с сервером'; |
---|
37 | $lang['Copy the text in pink between hyphens and paste it into the file "local/config/database.inc.php"(Warning : database.inc.php must only contain what is in pink, no line return or space character)'] = 'Скопируйте текст с розового поля между дефисами и вставьте его в файл "include/mysql.inc.php"(Внимание: mysql.inc.php должен содержать только это, ни пустых строк, ни пробелов быть не должно)'; |
---|
38 | |
---|
39 | $lang['Host'] = 'Хост MySQL'; |
---|
40 | $lang['localhost, sql.multimania.com, toto.freesurf.fr'] = 'localhost, sql.multimania.com, toto.freesurf.fr'; |
---|
41 | $lang['User'] = 'Пользователь'; |
---|
42 | $lang['user login given by your host provider'] = 'логин, который выдал провайдер'; |
---|
43 | $lang['Password'] = 'Пароль'; |
---|
44 | $lang['user password given by your host provider'] = 'пароль, который выдал провайдер'; |
---|
45 | $lang['Database name'] = 'Имя базы данных'; |
---|
46 | $lang['also given by your host provider'] = 'также выдается провайдером. Часто совпадает с логином'; |
---|
47 | $lang['Database table prefix'] = 'Префикс таблиц в базе данных'; |
---|
48 | $lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = 'названия таблиц в базе данных будут начинаться с этого (что упростит их обслуживание)'; |
---|
49 | $lang['enter a login for webmaster'] = 'нужно ввести логин для вебмастера'; |
---|
50 | $lang['webmaster login can\'t contain characters \' or "'] = 'логин вебмастера не должен содержать символы \' или "'; |
---|
51 | $lang['please enter your password again'] = 'еще раз пароль'; |
---|
52 | $lang['Webmaster password'] = 'Пароль вебмастера'; |
---|
53 | $lang['Keep it confidential, it enables you to access administration panel'] = 'Не сообщайте его никому, он необходим для доступа к панели администрирования'; |
---|
54 | $lang['Password [confirm]'] = 'Повторите пароль'; |
---|
55 | $lang['verification'] = 'еще раз для исключения опечатки'; |
---|
56 | $lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = 'Нужна помощь? Задайте свои вопросы на <a href="%s">Форуме Piwigo</a>.'; |
---|
57 | $lang['Webmaster mail address'] = 'Электронная почта вебмастера'; |
---|
58 | $lang['Visitors will be able to contact site administrator with this mail'] = 'Будет использоваться для контакта посетителей с администратором'; |
---|
59 | ?> |
---|