Skip to content

Commit 7014f0d

Browse files
authored
Merge pull request #5 from KotM/Russian-translation
Russian translation
2 parents f8f1796 + b860212 commit 7014f0d

9 files changed

Lines changed: 664 additions & 0 deletions

language/ru/exceptions.php

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System
5+
*
6+
* @copyright (c) 2014 Lukasz Kaczynski
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
*/
10+
11+
12+
/**
13+
* DO NOT CHANGE
14+
*/
15+
if (!defined('IN_PHPBB'))
16+
{
17+
exit;
18+
}
19+
20+
if (empty($lang) || !is_array($lang))
21+
{
22+
$lang = array();
23+
}
24+
25+
// DEVELOPERS PLEASE NOTE
26+
//
27+
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
28+
//
29+
// Placeholders can now contain order information, e.g. instead of
30+
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
31+
// translators to re-order the output of data while ensuring it remains correct
32+
//
33+
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
34+
// equally where a string contains only two placeholders which are used to wrap text
35+
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
36+
//
37+
// Some characters you may want to copy&paste:
38+
// ’ » “ ” …
39+
//
40+
41+
/*
42+
* These are errors which can be triggered by sending invalid data to the
43+
* reputation extension API.
44+
*
45+
* These errors will never show to a user unless they are either modifying
46+
* the core reputation extension code OR unless they are writing an extension
47+
* which makes calls to this extension.
48+
*
49+
* Translators: Feel free to not translate these language strings
50+
*/
51+
$lang = array_merge($lang, array(
52+
'EXCEPTION_FIELD_MISSING' => 'отсутствует обязательное поле',
53+
'EXCEPTION_INVALID_ARGUMENT' => 'Указан неверный параметр для `%1$s`. Причина: %2$s.',
54+
'EXCEPTION_INVALID_TYPE' => 'тип репутации отсутствует',
55+
'EXCEPTION_OUT_OF_BOUNDS' => 'Поле `%1$s` получило данные за его пределами',
56+
));
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System
5+
*
6+
* @copyright (c) 2014 Lukasz Kaczynski
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
*/
10+
11+
/**
12+
* DO NOT CHANGE
13+
*/
14+
if (!defined('IN_PHPBB'))
15+
{
16+
exit;
17+
}
18+
19+
if (empty($lang) || !is_array($lang))
20+
{
21+
$lang = array();
22+
}
23+
24+
// DEVELOPERS PLEASE NOTE
25+
//
26+
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
27+
//
28+
// Placeholders can now contain order information, e.g. instead of
29+
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
30+
// translators to re-order the output of data while ensuring it remains correct
31+
//
32+
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
33+
// equally where a string contains only two placeholders which are used to wrap text
34+
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
35+
//
36+
// Some characters you may want to copy&paste:
37+
// ’ » “ ” …
38+
//
39+
40+
$lang = array_merge($lang, array(
41+
'ACP_REPUTATION_SYSTEM' => 'Система репутации',
42+
'ACP_REPUTATION_OVERVIEW' => 'Общие',
43+
'ACP_REPUTATION_SETTINGS' => 'Настройки',
44+
'ACP_REPUTATION_RATE' => 'Оценить',
45+
'ACP_REPUTATION_SYNC' => 'Синхронизировать',
46+
47+
'RS_FORUM_REPUTATION' => 'Включить рейтинг сообщений (репутацию)',
48+
'RS_FORUM_REPUTATION_EXPLAIN' => 'Разрешить пользователям оценивать сообщения, сделанные другими пользователями на этом форуме.',
49+
50+
'RS_GROUP_POWER' => 'Групповая мощность репутации',
51+
'RS_GROUP_POWER_EXPLAIN' => 'Если это поле заполнено, мощность репутации пользователей будет перезаписана и не будет базироваться на сообщения и т.д.',
52+
53+
'LOG_REPUTATION_DELETED' => '<strong>Удалена репутация</strong><br />От пользователя: %1$s<br />Пользователю: %2$s<br />Очки: %3$s<br/>Тип: %4$s<br/>Идентификатор: %5$s',
54+
'LOG_POST_REPUTATION_CLEARED' => '<strong>Очищена репутация сообщения</strong><br />Автор сообщения: %1$s<br />Тема сообщения: %2$s',
55+
'LOG_USER_REPUTATION_CLEARED' => '<strong>Очищена репутация пользователя</strong><br />Пользователь: %1$s',
56+
'LOG_REPUTATION_SYNC' => '<strong>Система репутации была синхронизирована</strong>',
57+
'LOG_REPUTATION_TRUNCATE' => '<strong>Очищена репутация</strong>',
58+
'REPUTATION_SETTINGS_CHANGED' => '<strong>Изменены настройки Системы репутации</strong>',
59+
));
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System
5+
*
6+
* @copyright (c) 2014 Lukasz Kaczynski
7+
* @license GNU General Public License, version 2 (GPL-2.0)
8+
*
9+
*/
10+
11+
/**
12+
* DO NOT CHANGE
13+
*/
14+
if (!defined('IN_PHPBB'))
15+
{
16+
exit;
17+
}
18+
19+
if (empty($lang) || !is_array($lang))
20+
{
21+
$lang = array();
22+
}
23+
24+
// DEVELOPERS PLEASE NOTE
25+
//
26+
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
27+
//
28+
// Placeholders can now contain order information, e.g. instead of
29+
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
30+
// translators to re-order the output of data while ensuring it remains correct
31+
//
32+
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
33+
// equally where a string contains only two placeholders which are used to wrap text
34+
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
35+
//
36+
// Some characters you may want to copy&paste:
37+
// ’ » “ ” …
38+
//
39+
40+
$lang = array_merge($lang, array(
41+
'ACL_CAT_REPUTATION' => 'Репутация',
42+
43+
'ACL_A_REPUTATION' => 'Может управлять настройками репутации',
44+
45+
'ACL_M_RS_MODERATE' => 'Может модерировать очки репутации',
46+
'ACL_M_RS_RATE' => 'Может награждать дополнительными очками репутации',
47+
48+
'ACL_U_RS_DELETE' => 'Может удалять указанные очки',
49+
'ACL_U_RS_RATE' => 'Может оценивать других пользователей',
50+
'ACL_U_RS_RATE_NEGATIVE' => 'Может отрицательно оценивать других пользователей<br /><em>Пользователь должен иметь возможность оценивать других пользователей, прежде чем сможет оставлять отрицательные отзывы.</em>',
51+
'ACL_U_RS_RATE_POST' => 'Может оценивать сообщения других пользователей',
52+
'ACL_U_RS_VIEW' => 'Может просматривать репутацию',
53+
54+
'ACL_F_RS_RATE' => 'Может оценивать сообщения других пользователей',
55+
'ACL_F_RS_RATE_NEGATIVE' => 'Может отрицательно оценивать сообщения других пользователей<br /><em>Пользователь должен иметь возможность оценивать сообщения других пользователей, прежде чем сможет оставлять отрицательные отзывы.</em>',
56+
));

0 commit comments

Comments
 (0)