2023-05-16 10:50:42 +08:00

26 lines
1.1 KiB
PHP

<?php
global $lang, $app;
$app->loadLang('bug');
$config->excel->testcase = new stdclass();
$config->excel->testcase->initField['stepDesc'] = "1. \n2. \n3. ";
$config->excel->testcase->initField['stepExpect'] = "1. \n2. \n3. ";
$config->excel->caselib = new stdclass();
$config->excel->caselib->initField['stepDesc'] = "1. \n2. \n3. ";
$config->excel->caselib->initField['stepExpect'] = "1. \n2. \n3. ";
$config->excel->bug = new stdclass();
$config->excel->bug->initField['steps'] = str_replace(array('<p>', '</p>'), array('', "\n"), $lang->bug->tplStep . $lang->bug->tplResult . $lang->bug->tplExpect);
$config->excel->bug->initField['openedBuild'] = $lang->trunk . '(#trunk)';
$config->excel->freeze = new stdclass();
$config->excel->freeze->testcase = 'title';
$config->excel->freeze->bug = 'title';
$config->excel->freeze->task = 'name';
$config->excel->freeze->story = 'title';
$config->excel->freeze->tree = 'title';
$config->excel->freeze->todo = 'name';
$config->excel->freeze->leave = 'id';
$config->excel->freeze->makeup = 'id';
$config->excel->freeze->overtime = 'id';