mambax7/xoopsheadline

View on GitHub
language/english/modinfo.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

/**
 * XoopsHeadline module
 * Description: Module Info Language file
 *
 * 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.
 *
 * @copyright ::  The XOOPS Project (https://xoops.org)
 * @license   ::    GNU GPL (https://www.gnu.org/licenses/gpl-2.0.html/)
 * @subpackage:: admin
 * @since     ::      1.10
 * @author    ::     onokazu, et al.
 **/

// The name of this module
define('_MI_XOOPSHEADLINE_NAME', 'Headlines');

// A brief description of this module
define('_MI_XOOPSHEADLINE_DESC', 'Displays RSS/XML Newsfeed from other sites');

// Names of blocks for this module (Not all module has blocks)
define('_MI_XOOPSHEADLINE_BNAME', 'Headlines');

// Names of admin menu items & their descriptions
define('_MI_XOOPSHEADLINE_MENU_ADMININDEX', 'Home');
define('_MI_XOOPSHEADLINE_MENU_ADMINHL', 'List Headlines');
define('_MI_XOOPSHEADLINE_MENU_ADMINABOUT', 'About');
define('_MI_XOOPSHEADLINE_MENU_ADMININDEX_DESC', '');
define('_MI_XOOPSHEADLINE_MENU_ADMINHL_DESC', 'Display the headline entries');
define('_MI_XOOPSHEADLINE_MENU_ADMINABOUT_DESC', 'Display information about this module');

// Config Option items
define('_MI_XOOPSHEADLINE_SORTORDER', 'Order to display headlines');
define('_MI_XOOPSHEADLINE_SORTORDERDSC', 'This is the order the headlines will be shown in display and blocks');
define('_MI_XOOPSHEADLINE_SORT1', 'Site Name DESC');
define('_MI_XOOPSHEADLINE_SORT2', 'Site Name ASC');
define('_MI_XOOPSHEADLINE_SORT3', 'Weight DESC');
define('_MI_XOOPSHEADLINE_SORT4', 'Weight ASC');

//1.12
//Help
define('_MI_XOOPSHEADLINE_DIRNAME', basename(dirname(__DIR__, 2)));
define('_MI_XOOPSHEADLINE_HELP_HEADER', __DIR__ . '/help/helpheader.tpl');
define('_MI_XOOPSHEADLINE_BACK_2_ADMIN', 'Back to Administration of ');
define('_MI_XOOPSHEADLINE_OVERVIEW', 'Overview');

//define('_MI_XOOPSHEADLINE_HELP_DIR', __DIR__);

//help multi-page
define('_MI_XOOPSHEADLINE_DISCLAIMER', 'Disclaimer');
define('_MI_XOOPSHEADLINE_LICENSE', 'License');
define('_MI_XOOPSHEADLINE_SUPPORT', 'Support');