* Finish task #8986,#9002.

This commit is contained in:
holan20180123
2021-01-15 09:49:16 +08:00
parent 01e1008f29
commit b2e53cf935
9 changed files with 22 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ include '../../common/view/header.html.php';
<td class="c-url" title="<?php echo $user->email;?>"><?php echo html::mailto($user->email);?></td>
<td class="c-type"><?php echo zget($lang->user->genderList, $user->gender, $user->gender);?></td>
<td><?php echo $user->phone;?></td>
<td><?php echo !empty($this->config->isINT) ? $user->skype : ($user->qq ? html::a("tencent://message/?uin=$user->qq", $user->qq) : '');?></td>
<td><?php echo !empty($this->config->isINT) ? $user->skype : ($user->qq ? html::a("tencent://message/?uin=$user->qq#open=my", $user->qq) : '');?></td>
<td class='c-date'><?php if($user->last) echo date('Y-m-d', $user->last);?></td>
<td class='c-num text-center'><?php echo $user->visits;?></td>
</tr>

View File

@@ -16,7 +16,8 @@
<div class='btn-toolbar pull-left'>
<span class='btn btn-link btn-active-text'>
<?php
$title = $programPlan->name . $lang->project->statge . '' . $programPlan->begin . $lang->project->to . $programPlan->end . '';
$title = $lang->programplan->create;
if($planID) $title = $programPlan->name . $lang->project->statge . '' . $programPlan->begin . $lang->project->to . $programPlan->end . '';
echo "<span class='text'>{$title}</span>";
?>
</span>

View File

@@ -207,6 +207,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = 'Stage';
$lang->user->executionTypeList['sprint'] = 'Iteration';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = 'Kontakt';
$lang->user->contacts->listName = 'Namensliste';

View File

@@ -207,6 +207,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = 'Stage';
$lang->user->executionTypeList['sprint'] = 'Iteration';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = 'Contacts';
$lang->user->contacts->listName = 'List Name';

View File

@@ -207,6 +207,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = 'Stage';
$lang->user->executionTypeList['sprint'] = 'Iteration';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = 'Contacts';
$lang->user->contacts->listName = 'Nom de la Liste';

View File

@@ -207,6 +207,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = 'Stage';
$lang->user->executionTypeList['sprint'] = 'Iteration';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = 'Liên lạc';
$lang->user->contacts->listName = 'Tên danh sách';

View File

@@ -207,6 +207,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = '阶段';
$lang->user->executionTypeList['sprint'] = '迭代';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = '联系人';
$lang->user->contacts->listName = '列表名称';

View File

@@ -198,6 +198,9 @@ $lang->user->contactFieldList['skype'] = $lang->user->skype;
$lang->user->contactFieldList['slack'] = $lang->user->slack;
$lang->user->contactFieldList['whatsapp'] = $lang->user->whatsapp;
$lang->user->executionTypeList['stage'] = '階段';
$lang->user->executionTypeList['sprint'] = '迭代';
$lang->user->contacts = new stdclass();
$lang->user->contacts->common = '聯繫人';
$lang->user->contacts->listName = '列表名稱';

View File

@@ -34,7 +34,7 @@
<tr>
<td><?php echo html::a($executionLink, $execution->id);?></td>
<td>
<span class='project-type-label label label-info label-outline'><?php echo zget($lang->project->typeList, $execution->type);?></span>
<span class='project-type-label label label-info label-outline'><?php echo zget($lang->user->executionTypeList, $execution->type);?></span>
<?php echo html::a($executionLink, $execution->name);?>
</td>
<td><?php echo $execution->begin;?></td>