Ajout d'une extension

This commit is contained in:
Gauvain Boiché
2020-04-04 18:27:27 +02:00
parent c3ed8cc1c1
commit 3a964fe237
387 changed files with 58921 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?php
/**
*
* phpBB Studio - Advanced Shop 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_ASS_INVENTORY' => '<strong>Advanced Shop System</strong> - Can manage the inventories',
'ACL_A_ASS_ITEMS' => '<strong>Advanced Shop System</strong> - Can manage the items',
'ACL_A_ASS_FILES' => '<strong>Advanced Shop System</strong> - Can manage the files',
'ACL_A_ASS_LOGS' => '<strong>Advanced Shop System</strong> - Can manage the logs',
'ACL_A_ASS_OVERVIEW' => '<strong>Advanced Shop System</strong> - Can see the overview',
'ACL_A_ASS_SETTINGS' => '<strong>Advanced Shop System</strong> - Can manage the settings',
'ACL_U_ASS_CAN_GIFT' => '<strong>Advanced Shop System</strong> - Can gift',
'ACL_U_ASS_CAN_PURCHASE' => '<strong>Advanced Shop System</strong> - Can purchase',
'ACL_U_ASS_CAN_RECEIVE_GIFT' => '<strong>Advanced Shop System</strong> - Can receive gift',
'ACL_U_ASS_CAN_RECEIVE_STOCK_NOTIFICATIONS' => '<strong>Advanced Shop System</strong> - Can receive stock notifications',
'ACL_U_ASS_CAN_STACK' => '<strong>Advanced Shop System</strong> - Can stack inventory items',
'ACL_U_ASS_CAN_VIEW_INACTIVE_ITEMS' => '<strong>Advanced Shop System</strong> - Can view inactive items',
'ACL_U_ASS_CAN_VIEW_INACTIVE_SHOP' => '<strong>Advanced Shop System</strong> - Can view inactive shop',
]);