This commit is contained in:
zhouxudong
2022-06-29 06:15:44 +00:00
parent e29b10e88d
commit afb37ddeeb
5 changed files with 12 additions and 0 deletions
+1
View File
@@ -45,6 +45,7 @@ $lang->group->project = 'Project';
$lang->group->group = 'Group';
$lang->group->more = 'More';
$lang->group->allCheck = 'All';
$lang->group->noGroup = 'No group';
global $config;
if($config->systemMode == 'new') $lang->group->noneProject = 'No Project';
+1
View File
@@ -45,6 +45,7 @@ $lang->group->project = 'Project';
$lang->group->group = 'Group';
$lang->group->more = 'More';
$lang->group->allCheck = 'All';
$lang->group->noGroup = 'No group';
global $config;
if($config->systemMode == 'new') $lang->group->noneProject = 'No Project';
+1
View File
@@ -45,6 +45,7 @@ $lang->group->project = 'Project';
$lang->group->group = 'Group';
$lang->group->more = 'More';
$lang->group->allCheck = 'All';
$lang->group->noGroup = 'Aucun groupe';
global $config;
if($config->systemMode == 'new') $lang->group->noneProject = 'No Project';
+1
View File
@@ -45,6 +45,7 @@ $lang->group->project = '项目';
$lang->group->group = '分组';
$lang->group->more = '更多';
$lang->group->allCheck = '全部';
$lang->group->noGroup = '暂时没有分组。';
global $config;
if($config->systemMode == 'new') $lang->group->noneProject = '暂时没有项目';
+8
View File
@@ -23,6 +23,13 @@
</div>
</div>
<div id='mainContent' class='main-table'>
<?php if(empty($groups)):?>
<div class="table-empty-tip">
<p>
<span class="text-muted"><?php echo $lang->group->noGroup;?></span>
</p>
</div>
<?php else:?>
<table class='table tablesorter' id='groupList'>
<thead>
<tr>
@@ -66,5 +73,6 @@
<?php endforeach;?>
</tbody>
</table>
<?php endif;?>
</div>
<?php include '../../common/view/footer.html.php';?>