1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php $TRANSLATIONS = array(
"Unable to load list from App Store" => "Загрузка из App Store запрещена",
"Group already exists" => "Группа уже существует",
"Unable to add group" => "Невозможно добавить группу",
"Could not enable app. " => "Не удалось включить приложение.",
"Email saved" => "Email сохранен",
"Invalid email" => "Неправильный Email",
"OpenID Changed" => "OpenID изменён",
"Invalid request" => "Неверный запрос",
"Unable to delete group" => "Невозможно удалить группу",
"Authentication error" => "Ошибка авторизации",
"Unable to delete user" => "Невозможно удалить пользователя",
"Language changed" => "Язык изменён",
"Admins can't remove themself from the admin group" => "Администратор не может удалить сам себя из группы admin",
"Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s",
"Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s",
"Disable" => "Выключить",
"Enable" => "Включить",
"Saving..." => "Сохранение...",
"__language_name__" => "Русский ",
"Add your App" => "Добавить приложение",
"More Apps" => "Больше приложений",
"Select an App" => "Выберите приложение",
"See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com",
"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s</strong>",
"Clients" => "Клиенты",
"Password" => "Пароль",
"Your password was changed" => "Ваш пароль изменён",
"Unable to change your password" => "Невозможно сменить пароль",
"Current password" => "Текущий пароль",
"New password" => "Новый пароль",
"show" => "показать",
"Change password" => "Сменить пароль",
"Email" => "e-mail",
"Your email address" => "Ваш адрес электронной почты",
"Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля",
"Language" => "Язык",
"Help translate" => "Помочь с переводом",
"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Разрабатывается <a href=\"http://ownCloud.org/contact\" target=\"_blank\">сообществом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">исходный код</a> доступен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
"Name" => "Имя",
"Groups" => "Группы",
"Create" => "Создать",
"Default Quota" => "Квота по умолчанию",
"Other" => "Другое",
"Group Admin" => "Группа Администраторы",
"Quota" => "Квота",
"Delete" => "Удалить"
);
|