|
| 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 | + 'REPUTATION' => 'Reputation', |
| 42 | + |
| 43 | + 'RS_DISABLED' => 'Sorry, but the board administrator has disabled this feature.', |
| 44 | + |
| 45 | + 'RS_COMMENT' => 'Comment', |
| 46 | + 'RS_POINTS' => 'Points', |
| 47 | + |
| 48 | + 'RS_POST_REPUTATION' => 'Post reputation', |
| 49 | + 'RS_POST_RATED' => 'You have rated this post', |
| 50 | + 'RS_RATE_POST_POSITIVE' => 'Rate post positive', |
| 51 | + 'RS_RATE_POST_NEGATIVE' => 'Rate post negative', |
| 52 | + 'RS_RATE_USER' => 'Rate user', |
| 53 | + 'RS_VIEW_DETAILS' => 'View details', |
| 54 | + |
| 55 | + 'NOTIFICATION_TYPE_REPUTATION' => 'Someone gives you reputation point', |
| 56 | + 'NOTIFICATION_RATE_POST_POSITIVE' => '<strong>Rated positively</strong> by %s for post %s', |
| 57 | + 'NOTIFICATION_RATE_POST_NEGATIVE' => '<strong>Rated negatively</strong> by %s for post %s', |
| 58 | + 'NOTIFICATION_RATE_USER' => '<strong>Rated</strong> by %s', |
| 59 | +)); |
0 commit comments