diff options
author | 7PH <benjamin.raymond@sonarsource.com> | 2023-07-26 14:43:46 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-08-18 20:02:47 +0000 |
commit | 06a8065ada0788ade4bd8f58e67ccb6a3a441d47 (patch) | |
tree | c2cd1aae36cf6f36f1673bee586a77fde38a9465 /sonar-core/src | |
parent | e8ff3e583a093ba12feb631b0c2bc290cf411e82 (diff) | |
download | sonarqube-06a8065ada0788ade4bd8f58e67ccb6a3a441d47.tar.gz sonarqube-06a8065ada0788ade4bd8f58e67ccb6a3a441d47.zip |
SONAR-20023 Create required types for the issues page's new taxonomy
Co-authored-by: Stanislav <31501873+stanislavhh@users.noreply.github.com>
Diffstat (limited to 'sonar-core/src')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index eda63d5a599..a99857b87f4 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -964,6 +964,33 @@ issue.type.BUG.plural=Bugs issue.type.VULNERABILITY.plural=Vulnerabilities issue.type.SECURITY_HOTSPOT.plural=Security Hotspots +issue.software_quality.SECURITY=Security +issue.software_quality.RELIABILITY=Reliability +issue.software_quality.MAINTAINABILITY=Maintainability + + +issue.clean_code_attribute_category.CONSISTENCY=Consistency +issue.clean_code_attribute_category.INTENTIONALITY=Intentionality +issue.clean_code_attribute_category.ADAPTABILITY=Adaptability +issue.clean_code_attribute_category.RESPONSABILITY=Responsability +issue.clean_code_attribute_category.UNCLASSIFIED=Unclassified + +issue.clean_code_attribute.CLEAR=Clear +issue.clean_code_attribute.COMPLETE=Complete +issue.clean_code_attribute.CONVENTIONAL=Conventional +issue.clean_code_attribute.DISTINCT=Distinct +issue.clean_code_attribute.EFFICIENT=Efficient +issue.clean_code_attribute.FOCUSED=Focused +issue.clean_code_attribute.FORMATTED=Formatted +issue.clean_code_attribute.IDENTIFIABLE=Identifiable +issue.clean_code_attribute.LAWFUL=Lawful +issue.clean_code_attribute.LOGICAL=Logical +issue.clean_code_attribute.MODULAR=Modular +issue.clean_code_attribute.RESPECTFUL=Respectful +issue.clean_code_attribute.TESTED=Tested +issue.clean_code_attribute.TRUSTWORTHY=Trustworthy +issue.clean_code_attribute.UNCLASSIFIED=Unclassified + issue.status.REOPENED=Reopened issue.status.RESOLVED=Resolved issue.status.OPEN=Open @@ -2454,6 +2481,14 @@ severity.MINOR.description=Potential for moderate to minor impact. severity.INFO=Info severity.INFO.description=Neither a bug nor a quality flaw. Just a finding. +# New severities +severity.HIGH=High +severity.HIGH.description=Must be fixed immediately. +severity.MEDIUM=Medium +severity.MEDIUM.description=High potential for significant to moderate impact. +severity.LOW=Low +severity.LOW.description=Potential for moderate to minor impact. + #------------------------------------------------------------------------------ # # METRIC DOMAINS |