| 
<?php/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
 
 /**
 * Wfdownloads module
 *
 * @copyright       XOOPS Project (https://xoops.org)
 * @license         GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html)
 * @package         wfdownload
 * @since           3.23
 * @author          Xoops Development Team
 */
 define('_DC_WGGALLERY_AVAILABLE', "<span style='color: green;'> The folder is Available</span>");
 define('_DC_WGGALLERY_NOTAVAILABLE', "<span style='color: red;'> The folder is Not available</span>");
 define('_DC_WGGALLERY_NOTWRITABLE', "<span style='color: red;'> The folder should have permission ( %d ), but it has ( %d )</span>");
 define('_DC_WGGALLERY_CREATETHEDIR', 'Create it');
 define('_DC_WGGALLERY_SETMPERM', 'Set the permission');
 define('_DC_WGGALLERY_DIRCREATED', 'The directory has been created');
 define('_DC_WGGALLERY_DIRNOTCREATED', 'The directory cannot be created');
 define('_DC_WGGALLERY_PERMSET', 'The permission has been set');
 define('_DC_WGGALLERY_PERMNOTSET', 'The permission cannot be set');
 
 |