* Added Kanban Filter tag language entry.
This commit is contained in:
@@ -281,6 +281,13 @@ $lang->project->featureBar['browse']['doing'] = 'Doing';
|
||||
$lang->project->featureBar['browse']['suspended'] = 'Suspended';
|
||||
$lang->project->featureBar['browse']['closed'] = 'Closed';
|
||||
|
||||
$lang->project->featureBar['index']['all'] = 'All';
|
||||
$lang->project->featureBar['index']['undone'] = 'Unfinished';
|
||||
$lang->project->featureBar['index']['wait'] = 'Waiting';
|
||||
$lang->project->featureBar['index']['doing'] = 'Doing';
|
||||
$lang->project->featureBar['index']['suspended'] = 'Suspended';
|
||||
$lang->project->featureBar['index']['closed'] = 'Closed';
|
||||
|
||||
$lang->project->featureBar['execution']['all'] = 'Alle';
|
||||
$lang->project->featureBar['execution']['undone'] = 'Geschlossen';
|
||||
$lang->project->featureBar['execution']['wait'] = 'Wartend';
|
||||
|
||||
@@ -281,6 +281,13 @@ $lang->project->featureBar['browse']['doing'] = 'Doing';
|
||||
$lang->project->featureBar['browse']['suspended'] = 'Suspended';
|
||||
$lang->project->featureBar['browse']['closed'] = 'Closed';
|
||||
|
||||
$lang->project->featureBar['index']['all'] = 'All';
|
||||
$lang->project->featureBar['index']['undone'] = 'Unfinished';
|
||||
$lang->project->featureBar['index']['wait'] = 'Waiting';
|
||||
$lang->project->featureBar['index']['doing'] = 'Doing';
|
||||
$lang->project->featureBar['index']['suspended'] = 'Suspended';
|
||||
$lang->project->featureBar['index']['closed'] = 'Closed';
|
||||
|
||||
$lang->project->featureBar['execution']['all'] = 'All';
|
||||
$lang->project->featureBar['execution']['undone'] = 'Unfinished';
|
||||
$lang->project->featureBar['execution']['wait'] = 'Waiting';
|
||||
|
||||
@@ -281,6 +281,13 @@ $lang->project->featureBar['browse']['doing'] = 'En Cours';
|
||||
$lang->project->featureBar['browse']['suspended'] = 'Suspendues';
|
||||
$lang->project->featureBar['browse']['closed'] = 'Fermées';
|
||||
|
||||
$lang->project->featureBar['index']['all'] = 'All';
|
||||
$lang->project->featureBar['index']['undone'] = 'Unfinished';
|
||||
$lang->project->featureBar['index']['wait'] = 'Waiting';
|
||||
$lang->project->featureBar['index']['doing'] = 'Doing';
|
||||
$lang->project->featureBar['index']['suspended'] = 'Suspended';
|
||||
$lang->project->featureBar['index']['closed'] = 'Closed';
|
||||
|
||||
$lang->project->featureBar['execution']['all'] = "Tous les {$lang->executionCommon}s";
|
||||
$lang->project->featureBar['execution']['undone'] = 'Non Terminé';
|
||||
$lang->project->featureBar['execution']['wait'] = 'En attente';
|
||||
|
||||
@@ -281,6 +281,13 @@ $lang->project->featureBar['browse']['doing'] = '进行中';
|
||||
$lang->project->featureBar['browse']['suspended'] = '已挂起';
|
||||
$lang->project->featureBar['browse']['closed'] = '已关闭';
|
||||
|
||||
$lang->project->featureBar['index']['all'] = '全部';
|
||||
$lang->project->featureBar['index']['undone'] = '未完成';
|
||||
$lang->project->featureBar['index']['wait'] = '未开始';
|
||||
$lang->project->featureBar['index']['doing'] = '进行中';
|
||||
$lang->project->featureBar['index']['suspended'] = '已挂起';
|
||||
$lang->project->featureBar['index']['closed'] = '已关闭';
|
||||
|
||||
$lang->project->featureBar['execution']['all'] = '全部';
|
||||
$lang->project->featureBar['execution']['undone'] = '未完成';
|
||||
$lang->project->featureBar['execution']['wait'] = '未开始';
|
||||
@@ -410,7 +417,6 @@ $lang->project->copyProject->daysTips = '『可用工作日』应当
|
||||
|
||||
$lang->project->linkBranchStoryByPlanTips = "项目按计划关联需求时,只导入本项目所关联%s的激活状态的需求。";
|
||||
$lang->project->linkNormalStoryByPlanTips = "项目按计划关联需求时,只导入激活状态的需求。";
|
||||
|
||||
$lang->project->cannotManageProducts = "该项目为项目型项目,不能关联产品。";
|
||||
|
||||
$lang->project->featureBar['dynamic']['all'] = '全部';
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<div class='clearfix' id='mainMenu'>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<?php
|
||||
foreach($lang->project->featureBar['browse'] as $label => $labelName)
|
||||
foreach($lang->project->featureBar['index'] as $label => $labelName)
|
||||
{
|
||||
$active = $browseType == $label ? 'btn-active-text' : '';
|
||||
echo html::a($this->createLink('project', 'index', "projectID=$project->id&browseType=" . $label), '<span class="text">' . $labelName . '</span> ' . ($browseType == $label ? "<span class='label label-light label-badge'>" . (int)count($kanbanList) . '</span>' : ''), '', "class='btn btn-link $active'");
|
||||
|
||||
Reference in New Issue
Block a user