zentaomax.php 1022 B

123456789101112131415161718192021
  1. <?php
  2. $lang->bug->injection = 'Injection Phase';
  3. $lang->bug->identify = 'Discovery Phase';
  4. $lang->bug->injectionList[''] = '';
  5. $lang->bug->injectionList['request'] = 'Requirement Analysis';
  6. $lang->bug->injectionList['design'] = 'Technical Design';
  7. $lang->bug->injectionList['code'] = 'Code Development';
  8. $lang->bug->identifyList[''] = '';
  9. $lang->bug->identifyList['requirement'] = 'Requirement Review';
  10. $lang->bug->identifyList['design'] = 'Technical Design Review';
  11. $lang->bug->identifyList['code'] = 'Code Review';
  12. $lang->bug->identifyList['codescan'] = 'Code Scan';
  13. $lang->bug->identifyList['functional'] = 'Functional Test';
  14. $lang->bug->identifyList['integration'] = 'Integration Test';
  15. $lang->bug->identifyList['system'] = 'System Test';
  16. $lang->bug->identifyList['regression'] = 'Regression Test';
  17. $lang->bug->identifyList['smoke'] = 'Smoke Test';
  18. $lang->bug->identifyList['accept'] = 'Acceptance Test';
  19. $lang->bug->identifyList['production'] = 'Production';