en.php 5.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. $lang->sonarqube = new stdclass;
  3. $lang->sonarqube->common = 'SonarQube';
  4. $lang->sonarqube->browse = 'SonarQube List';
  5. $lang->sonarqube->search = 'Search';
  6. $lang->sonarqube->create = 'Create SonarQube';
  7. $lang->sonarqube->edit = 'Edit SonarQube';
  8. $lang->sonarqube->delete = 'Delete SonarQube';
  9. $lang->sonarqube->serverFail = 'Connect to SonarQube server failed, please check the SonarQube server.';
  10. $lang->sonarqube->browseProject = "SonarQube Project List";
  11. $lang->sonarqube->createProject = "Create SonarQube Project";
  12. $lang->sonarqube->deleteProject = "Delete SonarQube Project";
  13. $lang->sonarqube->placeholderSearch = 'Project name';
  14. $lang->sonarqube->execJob = "Exec SonarQube Job";
  15. $lang->sonarqube->desc = 'Description';
  16. $lang->sonarqube->reportView = "SonarQube Report";
  17. $lang->sonarqube->browseIssue = "SonarQube Issue List";
  18. $lang->sonarqube->createBug = "Create Bug";
  19. $lang->sonarqube->delError = "There are bound jobs under this server, please delete the association and then operate";
  20. $lang->sonarqube->id = 'ID';
  21. $lang->sonarqube->name = "Application Name";
  22. $lang->sonarqube->url = 'Server Address';
  23. $lang->sonarqube->account = 'Username';
  24. $lang->sonarqube->password = 'Password';
  25. $lang->sonarqube->token = 'Token';
  26. $lang->sonarqube->defaultProject = 'Default Project';
  27. $lang->sonarqube->private = 'MD5 Verify';
  28. $lang->sonarqube->createServer = 'Create SonarQube Server';
  29. $lang->sonarqube->editServer = 'Edit SonarQube Server';
  30. $lang->sonarqube->createSuccess = 'Create success';
  31. $lang->sonarqube->placeholder = new stdclass;
  32. $lang->sonarqube->placeholder->name = '';
  33. $lang->sonarqube->placeholder->url = "Please fill in the access address of the SonarQube Server homepage, as: https://sonarqube.zentao.net.";
  34. $lang->sonarqube->placeholder->account = "Please fill in the SonarQube user information with Administrator privileges";
  35. $lang->sonarqube->placeholder->projectName = 'Up to 255 characters.';
  36. $lang->sonarqube->placeholder->projectKey = "It may contain up to 400 characters. Allowed characters are alphanumeric, '-' (dash), '_' (underscore), '.' (period) and ':' (colon), with at least one non-digit.";
  37. $lang->sonarqube->placeholder->searchIssue = "Please enter the problem name or file";
  38. $lang->sonarqube->nameRepeatError = "Server name already exists!";
  39. $lang->sonarqube->urlRepeatError = 'Server address already exists!';
  40. $lang->sonarqube->validError = 'SonarQube user authority authentication failed!';
  41. $lang->sonarqube->hostError = "Invalid SonarQube service address.";
  42. $lang->sonarqube->lengthError = "『%s』length should be <=『%d』";
  43. $lang->sonarqube->confirmDelete = 'Do you want to delete this SonarQube server?';
  44. $lang->sonarqube->confirmDeleteProject = 'Do you want to delete this SonarQube project?';
  45. $lang->sonarqube->noReport = "No Reprot";
  46. $lang->sonarqube->notAdminer = "Please fill in the SonarQube user information with Administrator privileges";
  47. $lang->sonarqube->projectKey = 'Project Key';
  48. $lang->sonarqube->projectName = 'Project Name';
  49. $lang->sonarqube->projectlastAnalysis = 'Last analysis time';
  50. $lang->sonarqube->serverList = 'Server List';
  51. $lang->sonarqube->report = new stdclass();
  52. $lang->sonarqube->report->bugs = 'Bugs';
  53. $lang->sonarqube->report->vulnerabilities = 'Vulnerabilities';
  54. $lang->sonarqube->report->security_hotspots_reviewed = 'Hotspots Reviewed';
  55. $lang->sonarqube->report->code_smells = 'Code Smells';
  56. $lang->sonarqube->report->coverage = 'Coverage';
  57. $lang->sonarqube->report->duplicated_lines_density = 'Duplications';
  58. $lang->sonarqube->report->ncloc = 'Lines';
  59. $lang->sonarqube->qualitygateList = array();
  60. $lang->sonarqube->qualitygateList['OK'] = 'Passed';
  61. $lang->sonarqube->qualitygateList['WARN'] = 'Warning';
  62. $lang->sonarqube->qualitygateList['ERROR'] = 'Failed';
  63. $lang->sonarqube->apiErrorMap[1] = "/Malformed key for Project: '([\s\S]+)'. Allowed characters are alphanumeric, '-', '_', '\.' and ':', with at least one non-digit\./";
  64. $lang->sonarqube->apiErrorMap[2] = "/Could not create Project, key already exists: ([\s\S]+)/";
  65. $lang->sonarqube->errorLang[1] = "Malformed key for Project Key,Allowed characters are alphanumeric, '-', '_', '.' and ':', with at least one non-digit.";
  66. $lang->sonarqube->errorLang[2] = "Could not create Project, key already exists: %s";
  67. $lang->sonarqube->issue = new stdclass();
  68. $lang->sonarqube->issue->message = 'Issue Name';
  69. $lang->sonarqube->issue->severity = 'Severity';
  70. $lang->sonarqube->issue->type = 'Type';
  71. $lang->sonarqube->issue->status = 'Status';
  72. $lang->sonarqube->issue->file = 'File';
  73. $lang->sonarqube->issue->line = 'Line';
  74. $lang->sonarqube->issue->effort = 'Estimated repair time';
  75. $lang->sonarqube->issue->creationDate = 'Creation date';