Skip to content

Commit 5f63e1d

Browse files
committed
Merge branch 'patch-2' of https://github.com/Galixte/phpBB-Reputation-System into Galixte-patch-2
2 parents d8d6e8a + 13e0b5b commit 5f63e1d

20 files changed

Lines changed: 708 additions & 33 deletions

language/en/info_acp_reputation.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,5 @@
5555
'LOG_USER_REPUTATION_CLEARED' => '<strong>Cleared user reputation</strong><br />User: %1$s',
5656
'LOG_REPUTATION_SYNC' => '<strong>Reputation System resynchronised</strong>',
5757
'LOG_REPUTATION_TRUNCATE' => '<strong>Cleared reputations</strong>',
58+
'REPUTATION_SETTINGS_CHANGED' => '<strong>Altered Reputation System settings</strong>',
5859
));

language/en/reputation_acp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
'RS_ENABLE' => 'Enable Reputation System',
4545

4646
'RS_SYNC' => 'Synchronise Reputation System',
47-
'RS_SYNC_EXPLAIN' => 'You can synchronise reputation points after a mass removal of posts/topics/users, changing reputation settings, changing post authors, conversions from others systems. This may take a while. You will be notified when the process is completed.<br /><strong>Warning!</strong> All reputation points that do not match the reputation settings will be deleted during synchronization . It is recommended to make backup of the reputation table (DB) before synchronisation.',
47+
'RS_SYNC_EXPLAIN' => 'You can synchronise reputation points after a mass removal of posts/topics/users, changing reputation settings, changing post authors, conversions from others systems. This may take a while. You will be notified when the process is completed.<br /><strong>Warning!</strong> All reputation points that do not match the reputation settings will be deleted during synchronization. It is recommended to make backup of the reputation table (DB) before synchronisation.',
4848
'RS_SYNC_REPUTATION_CONFIRM' => 'Are you sure you wish to synchronise reputations?',
4949

5050
'RS_TRUNCATE' => 'Clear Reputation System',

language/en/reputation_common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
'RS_COMMENT' => 'Comment',
4646
'RS_POINTS' => 'Points',
4747

48-
'RS_POST_REPUTATION' => 'Post reputation',
48+
'RS_POST_REPUTATION' => 'Post reputation',
4949
'RS_POST_RATED' => 'You have rated this post',
5050
'RS_RATE_POST_POSITIVE' => 'Rate post positive',
5151
'RS_RATE_POST_NEGATIVE' => 'Rate post negative',

language/en/reputation_system.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
'RS_POWER_DETAILS' => 'How reputation power should be calculated',
108108
'RS_POWER_DETAIL_AGE' => 'By registration date',
109109
'RS_POWER_DETAIL_POSTS' => 'By number of posts',
110-
'RS_POWER_DETAIL_REPUTAION' => 'By reputation',
110+
'RS_POWER_DETAIL_REPUTATION' => 'By reputation',
111111
'RS_POWER_DETAIL_WARNINGS' => 'By warnings',
112112
'RS_POWER_DETAIL_MIN' => 'Minimum reputation power for all users',
113113
'RS_POWER_DETAIL_MAX' => 'Reputation power capped at maximum allowed',

language/fr/exceptions.php

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System extension for the phpBB Forum Software package.
5+
* French translation by Galixte (http://www.galixte.com)
6+
*
7+
* @copyright (c) 2014 Lukasz Kaczynski
8+
* @license GNU General Public License, version 2 (GPL-2.0)
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+
$lang = array_merge($lang, array(
42+
'EXCEPTION_FIELD_MISSING' => 'Champ obligatoire manquant',
43+
'EXCEPTION_INVALID_ARGUMENT' => 'L’argument spécifié pour `%1$s` est invalide. Raison : %2$s.',
44+
'EXCEPTION_INVALID_TYPE' => 'Ce type de réputation n’existe pas',
45+
'EXCEPTION_OUT_OF_BOUNDS' => 'Le champ `%1$s` a reçu des données au-delà de ses limites',
46+
));
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System extension for the phpBB Forum Software package.
5+
* French translation by Galixte (http://www.galixte.com), tomberaid (https://github.com/tomberaid), flyingrub (https://github.com/flyingrub) & monpseudo (https://github.com/monpseudo)
6+
*
7+
* @copyright (c) 2014 Lukasz Kaczynski
8+
* @license GNU General Public License, version 2 (GPL-2.0)
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+
$lang = array_merge($lang, array(
42+
'ACP_REPUTATION_SYSTEM' => 'Système de réputation',
43+
'ACP_REPUTATION_OVERVIEW' => 'Vue d’ensemble',
44+
'ACP_REPUTATION_SETTINGS' => 'Paramètres',
45+
'ACP_REPUTATION_RATE' => 'Noter',
46+
'ACP_REPUTATION_SYNC' => 'Synchroniser',
47+
48+
'RS_FORUM_REPUTATION' => 'Activer les notes pour les messages (réputation)',
49+
'RS_FORUM_REPUTATION_EXPLAIN' => 'Autoriser tout utilisateur à noter les messages postés par les autres utilisateurs dans ce forum.',
50+
51+
'RS_GROUP_POWER' => 'Points d’influence du groupe',
52+
'RS_GROUP_POWER_EXPLAIN' => 'Si ce champ est rempli, les points d’influence des membres seront écrasés et ne seront pas basés sur les messages etc.',
53+
54+
'LOG_REPUTATION_DELETED' => '<strong>Réputation supprimée</strong><br />De l’utilisateur : %1$s<br />Pour l’utilisateur : %2$s<br />Points : %3$s<br/>Type : %4$s<br/>ID du message : %5$s',
55+
'LOG_POST_REPUTATION_CLEARED' => '<strong>Réputation du message effacée</strong><br />Auteur du message : %1$s<br />Sujet du message : %2$s',
56+
'LOG_USER_REPUTATION_CLEARED' => '<strong>Réputation de l’utilisateur effacée</strong><br />Utilisateur : %1$s',
57+
'LOG_REPUTATION_SYNC' => '<strong>Système de réputation resynchronisé</strong>',
58+
'LOG_REPUTATION_TRUNCATE' => '<strong>Réputations effacées</strong>',
59+
'REPUTATION_SETTINGS_CHANGED' => '<strong>Paramètres du système de réputation modifiés</strong>',
60+
));
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?php
2+
/**
3+
*
4+
* Reputation System extension for the phpBB Forum Software package.
5+
* French translation by Galixte (http://www.galixte.com) & flyingrub (https://github.com/flyingrub)
6+
*
7+
* @copyright (c) 2014 Lukasz Kaczynski
8+
* @license GNU General Public License, version 2 (GPL-2.0)
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+
$lang = array_merge($lang, array(
42+
'ACL_CAT_REPUTATION' => 'Réputation',
43+
44+
'ACL_A_REPUTATION' => 'Peut gérer les paramètres de réputation.',
45+
46+
'ACL_M_RS_MODERATE' => 'Peut modérer les points de réputation.',
47+
'ACL_M_RS_RATE' => 'Peut attribuer des points de réputation supplémentaires.',
48+
49+
'ACL_U_RS_DELETE' => 'Peut supprimer les points donnés.',
50+
'ACL_U_RS_RATE' => 'Peut noter les autres utilisateurs.',
51+
'ACL_U_RS_RATE_NEGATIVE' => 'Peut noter négativement les autres utilisateurs.<br /><em>L’utilisateur doit être en mesure de noter les autres utilisateurs avant qu’il / elle puisse noter négativement les autres utilisateurs.</em>',
52+
'ACL_U_RS_RATE_POST' => 'Peut noter les messages postés par les autres utilisateurs.',
53+
'ACL_U_RS_VIEW' => 'Peut voir la réputation.',
54+
55+
'ACL_F_RS_RATE' => 'Peut noter les messages postés par les autres utilisateurs.',
56+
'ACL_F_RS_RATE_NEGATIVE' => 'Peut noter négativement les messages postés par les autres utilisateurs.<br /><em>L’utilisateur doit être en mesure de noter les messages postés par les autres utilisateurs avant qu’il / elle puisse noter négativement les messages postés par les autres utilisateurs.</em>',
57+
));

0 commit comments

Comments
 (0)