Files
san-reymoros/ext/phpbbstudio/aps/language/en/permissions_aps.php
2020-04-04 18:27:27 +02:00

42 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
*
* phpBB Studio - Advanced Points System. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2019, phpBB Studio, https://www.phpbbstudio.com
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
/**
* Some characters you may want to copy&paste: » “ ” …
*/
$lang = array_merge($lang, [
'ACL_CAT_PHPBB_STUDIO' => 'phpBB Studio',
'ACL_A_APS_LOGS' => '<strong>Advanced Points System</strong> - Can manage the logs',
'ACL_A_APS_POINTS' => '<strong>Advanced Points System</strong> - Can manage the points',
'ACL_A_APS_REASONS' => '<strong>Advanced Points System</strong> - Can manage the reasons',
'ACL_A_APS_DISPLAY' => '<strong>Advanced Points System</strong> - Can manage the display',
'ACL_A_APS_SETTINGS' => '<strong>Advanced Points System</strong> - Can manage the settings',
'ACL_M_APS_ADJUST_CUSTOM' => '<strong>Advanced Points System</strong> - Can adjust a users points with a custom action',
'ACL_M_APS_ADJUST_REASON' => '<strong>Advanced Points System</strong> - Can adjust a users points with a predefined reason',
'ACL_U_APS_VIEW_BUILD' => '<strong>Advanced Points System</strong> - Can view their augmentation<br /><em>Augmentation is the “build up” of the total points.</em>',
'ACL_U_APS_VIEW_BUILD_OTHER' => '<strong>Advanced Points System</strong> - Can view other users augmentation<br /><em>This requires “Can view their augmentation” to be set to Yes.</em>',
'ACL_U_APS_VIEW_MOD' => '<strong>Advanced Points System</strong> - Can view the moderator',
'ACL_U_APS_VIEW_LOGS' => '<strong>Advanced Points System</strong> - Can view their logs',
'ACL_U_APS_VIEW_LOGS_OTHER' => '<strong>Advanced Points System</strong> - Can view other users logs<br /><em>This requires “Can view their logs” to be set to Yes.</em>',
]);