73 lines
3.7 KiB
PHP
73 lines
3.7 KiB
PHP
<?php
|
|
$lang->report->testcase = '用例統計表';
|
|
$lang->report->casesrun = '用例執行統計表';
|
|
$lang->report->build = '版本統計表';
|
|
$lang->report->workSummary = '任務完成彙總表';
|
|
$lang->report->bugSummary = 'Bug解決彙總表';
|
|
$lang->report->roadmap = $lang->productCommon . '路線圖表';
|
|
$lang->report->storyLinkedBug = $lang->SRCommon . '關聯Bug彙總表';
|
|
$lang->report->workAssignSummary = '任務指派彙總表';
|
|
$lang->report->bugAssignSummary = 'Bug指派彙總表';
|
|
$lang->report->productInvest = $lang->productCommon . '投入表';
|
|
|
|
$lang->report->taskFinishedDate = '任務完成時間';
|
|
$lang->report->taskConsumed = '任務總消耗';
|
|
$lang->report->projectConsumed = $lang->projectCommon . '總消耗';
|
|
$lang->report->executionConsumed = '執行總消耗';
|
|
$lang->report->userConsumed = '用戶總消耗';
|
|
$lang->report->bugResolvedDate = 'Bug解決日期';
|
|
$lang->report->bugAssignedDate = 'Bug指派日期';
|
|
$lang->report->taskAssignedDate = '任務指派時間';
|
|
$lang->report->projects = $lang->projectCommon . '數';
|
|
$lang->report->storyConsumed = $lang->SRCommon . '消耗工時';
|
|
$lang->report->taskConsumed = '任務消耗工時';
|
|
$lang->report->bugConsumed = 'Bug消耗工時';
|
|
$lang->report->caseConsumed = '用例消耗工時';
|
|
$lang->report->totalConsumed = '總消耗工時';
|
|
|
|
if(helper::hasFeature('product_roadmap')) $lang->reportList->product->lists[20] = $lang->productCommon . '路線圖表|report|roadmap';
|
|
$lang->reportList->product->lists[25] = $lang->productCommon . '投入表|report|productInvest';
|
|
$lang->reportList->test->lists[20] = '用例統計表|report|testcase';
|
|
$lang->reportList->test->lists[25] = '用例執行統計表|report|casesrun';
|
|
$lang->reportList->test->lists[30] = '版本統計表|report|build';
|
|
$lang->reportList->test->lists[35] = $lang->SRCommon . '關聯Bug彙總表|report|storylinkedbug';
|
|
$lang->reportList->staff->lists[20] = '任務完成彙總表|report|worksummary';
|
|
$lang->reportList->staff->lists[25] = '任務指派彙總表|report|workAssignSummary';
|
|
$lang->reportList->staff->lists[30] = 'Bug解決彙總表|report|bugsummary';
|
|
$lang->reportList->staff->lists[35] = 'Bug指派彙總表|report|bugAssignSummary';
|
|
|
|
$lang->report->product = $lang->productCommon . '名稱';
|
|
$lang->report->module = '模組名稱';
|
|
$lang->report->buildTitle = '測試版本';
|
|
$lang->report->severity = '嚴重程度';
|
|
$lang->report->bugType = 'Bug類型';
|
|
$lang->report->bugStatus = 'Bug狀態';
|
|
$lang->report->delay = '延期';
|
|
$lang->report->day = '天';
|
|
$lang->report->plan = '計劃';
|
|
$lang->report->future = '待定';
|
|
|
|
$lang->report->case = new stdclass();
|
|
$lang->report->case->total = '總用例數';
|
|
$lang->report->case->run = '總執行數';
|
|
$lang->report->case->passRate = '用例通過率';
|
|
$lang->report->case->name = '名稱';
|
|
|
|
$lang->report->bugTypeList['codeerror'] = '代碼';
|
|
$lang->report->bugTypeList['interface'] = '界面';
|
|
$lang->report->bugTypeList['config'] = '配置';
|
|
$lang->report->bugTypeList['install'] = '安裝';
|
|
$lang->report->bugTypeList['security'] = '安全';
|
|
$lang->report->bugTypeList['performance'] = '性能';
|
|
$lang->report->bugTypeList['standard'] = '標準';
|
|
$lang->report->bugTypeList['automation'] = '腳本';
|
|
$lang->report->bugTypeList['others'] = '其他';
|
|
|
|
$lang->report->bug = new stdclass();
|
|
$lang->report->bug->total = '總計';
|
|
$lang->report->bug->title = 'Bug標題';
|
|
$lang->report->bug->story = $lang->SRCommon;
|
|
$lang->report->bug->status = '狀態';
|
|
|
|
$lang->report->caseRunDesc = '分別按照用例的執行次數和結果進行統計';
|