Skip to content

Commit cd1280a

Browse files
committed
add blocksadmin.php
1 parent 82d95a4 commit cd1280a

File tree

4 files changed

+47
-1
lines changed

4 files changed

+47
-1
lines changed

admin/blocksadmin.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
$moduleDirName = basename(dirname(__DIR__));
2424
$moduleDirNameUpper = mb_strtoupper($moduleDirName); //$capsDirName
2525

26+
$helper->loadLanguage('blocksadmin');
27+
2628
global $xoopsModule;
2729

2830
if (!is_object($GLOBALS['xoopsUser']) || !is_object($xoopsModule)

docs/changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- replaced Config class with Helper calls (mamba)
2323
- renamed $groupPermissionHandler to $grouppermHandler (consistency) (mamba)
2424
- fixed setting Admin permissions on new category (alain01/mamba)
25+
- add missing language file (alain01/mamba)
2526

2627

2728
<h5>2.40 Beta 2 [2020-09-21]</h5> Dev: Xoops 2.5.9, PHP 7.3.0 RC2

language/english/blocksadmin.php

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
/*
3+
* You may not change or alter any portion of this comment or credits
4+
* of supporting developers from this source code or any supporting source code
5+
* which is considered copyrighted (c) material of the original comment or credit authors.
6+
*
7+
* This program is distributed in the hope that it will be useful,
8+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10+
*/
11+
12+
/**
13+
* @copyright XOOPS Project https://xoops.org/
14+
* @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
15+
* @package
16+
* @since
17+
* @author XOOPS Development Team
18+
*/
19+
20+
// Blocks & Groups Admin
21+
define('_AM_TOPPAGE', 'Top Page');
22+
define('_AM_ALLPAGES', 'All Pages');
23+
define('_AM_TITLE', 'Title');
24+
define('_AM_SIDE', 'Side');
25+
define('_AM_WEIGHT', 'Weight');
26+
define('_AM_VISIBLE', 'Visible');
27+
define('_AM_VISIBLEIN', 'Visible In');
28+
define('_AM_ACTION', 'Action');
29+
define('_AM_LATESTNEWS_TITLE', 'Title');
30+
define('_AM_LATESTNEWS_WEIGHT', 'Weight');
31+
define('_AM_BCACHETIME', 'Cache time');
32+
define('_AM_LATESTNEWS_ACTION', 'Action');
33+
define('_AM_ACTIVERIGHTS', 'Module administration rights');
34+
define('_AM_ACCESSRIGHTS', 'Module access rights');
35+
define('_AM_BADMIN', 'Blocks administration');
36+
define('_AM_ADGS', 'Groups');
37+
define('_AM_ALLMODULEPAGES', 'Groups');
38+
define('_AM_SYSTEMLEVEL', '_AM_SYSTEMLEVEL');
39+
define('_AM_ADMINBLOCK', '_AM_ADMINBLOCK');
40+
41+
define('_AM_BLOCKTAG1', '%s will print %s');
42+
define('_AM_ADDBLOCK', 'Add Block');
43+
define('_AM_NOTSELNG', 'Not Sel');

xoops_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
//***************************************************************************************
4040
$modversion['version'] = '2.40';
4141
$modversion['module_status'] = 'RC 1';
42-
$modversion['release_date'] = '2020/05/30';
42+
$modversion['release_date'] = '2020/06/03';
4343
$modversion['name'] = _MI_EXTCAL_NAME;
4444
$modversion['description'] = _MI_EXTCAL_DESC;
4545
$modversion['credits'] = 'Zoullou';

0 commit comments

Comments
 (0)