excel.php 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. $lang->file->onlySupportXLSX = 'Only xlsx format import is supported. Please convert xlsx format and import again.';
  3. $lang->excel->fileField = 'File';
  4. $lang->excel->title = new stdclass();
  5. $lang->excel->title->testcase = 'Case';
  6. $lang->excel->title->bug = 'Bug';
  7. $lang->excel->title->task = 'Task';
  8. $lang->excel->title->story = 'Story';
  9. $lang->excel->title->epic = 'Epic';
  10. $lang->excel->title->requirement = 'Requirement';
  11. $lang->excel->title->caselib = 'Library';
  12. $lang->excel->title->sysValue = 'System';
  13. $lang->excel->title->tree = 'Tree';
  14. $lang->excel->title->user = 'User';
  15. $lang->excel->title->project = 'Project';
  16. $lang->excel->error = new stdclass();
  17. $lang->excel->error->info = 'The value you entered is not in the dropdown.';
  18. $lang->excel->error->title = 'Input Error';
  19. $lang->excel->error->noFile = 'No File.';
  20. $lang->excel->error->noData = 'No Data.';
  21. $lang->excel->error->canNotRead = 'It cannot parse this file.';
  22. $lang->excel->help = new stdclass();
  23. $lang->excel->help->testcase = "Use + '.' to mark case steps in a new line. Use + '.' for expectations corresponded to each steps. %s are required. If left empty, data in the same row will be ommitted. ";
  24. $lang->excel->help->caselib = "Use + '.' to mark case steps in a new line. Use + '.' for expectations corresponded to each steps. name are required. If left empty, data in the same row will be ommitted. ";
  25. $lang->excel->help->bug = "When adding bugs, %s are required. If left empty, data in the same row will be ommitted.";
  26. $lang->excel->help->task = "When adding a task, %s are required fields. If not filled in, the data will be ignored when importing;\nIf you need to import parent and child tasks, you need to fill in the level column, the level format: x|x.y|x.y.z. For example: 1 is The parent task of 1.1, 1.1 is the parent task of 1.1.1,the level must be unique. \nIf you need to add a multi-person task, please add it in the \"Initial Expected\" column in the format of \"Username: {$lang->hourCommon}\", and separate multiple users with newlines. The user name is viewed in column G of the \"System Data\" worksheet. \nPlease fill in \"Mode\" for multiplayer tasks. Fill in \"Mode\" for non-multiplayer tasks. When importing, the system will automatically leave \"Mode\" blank. \nSubtasks can no longer be split in multiplayer tasks.";
  27. $lang->excel->help->story = "When adding stories, %s are required. If left empty, data in the same row will be ommitted. \nIf you need to import parent and child stories, you need to fill in the level column, the level format: x|x.y|x.y.z. For example: 1 is The parent story of 1.1, 1.1 is the parent story of 1.1.1, the level must be unique.";
  28. $lang->excel->help->epic = $lang->excel->help->story;
  29. $lang->excel->help->requirement = $lang->excel->help->story;
  30. $lang->excel->help->user = "Account and name is required. If left empty, data in the same row will be ommitted.";
  31. $lang->excel->help->feedback = "When adding feedbacks, %s are required. If left empty, data in the same row will be ommitted.";
  32. $lang->excel->help->ticket = "When adding tickets, title,{$lang->productCommon},module are required. If left empty, data in the same row will be ommitted.";
  33. $lang->excel->help->demand = "When adding stories, %s are required. If left empty, data in the same row will be ommitted.";