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

31 lines
715 B
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, [
'APS_NOTIFICATION_ADJUSTED' => '<strong>Your %1$s were adjusted</strong>',
'APS_VIEWING_POINTS_PAGE' => 'Viewing the %s page',
'APS_POINTS_TOO_LOW' => 'You do not have enough %s to perform this action.',
'APS_POINTS_ACTION_COST' => 'The cost of this action is %s',
]);