From 4df28629b1864e169caa7dec71dbac611c34ac1b Mon Sep 17 00:00:00 2001 From: 7PH Date: Wed, 19 Apr 2023 11:19:39 +0200 Subject: [PATCH] [NO-JIRA] Add CCT issue characteristic localization --- .../resources/org/sonar/l10n/core.properties | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) 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 c98f82229ca..ca3f7c541e9 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -916,6 +916,26 @@ issue.type.BUG.plural=Bugs issue.type.VULNERABILITY.plural=Vulnerabilities issue.type.SECURITY_HOTSPOT.plural=Security Hotspots +issue.characteristic.CLEAR=Clarity +issue.characteristic.description.CLEAR=Code that uses unambiguous forms when possible, has no unused statements, and is not cryptically terse. +issue.characteristic.CONSISTENT=Consistency +issue.characteristic.description.CONSISTENT=Code that enforces consistency in naming conventions, formatting and style, and sorting order. +issue.characteristic.STRUCTURED=Structure +issue.characteristic.description.STRUCTURED=Code that is organized into distinct, modular, and testable units with limited relationships, and avoids non-essential complexity. +issue.characteristic.TESTED=Testing +issue.characteristic.description.TESTED=Code that passed automated verification to regularly confirm the desired functionality. +issue.characteristic.ROBUST=Robustness +issue.characteristic.description.ROBUST=Code that is free of implementation defects, resource-efficient, fault-tolerant, and safe to use in critical contexts. +issue.characteristic.SECURE=Security +issue.characteristic.description.SECURE=Code that protects against unauthorized use, access, disclosure, disruption, modification, or destruction. +issue.characteristic.PORTABLE=Portability +issue.characteristic.description.PORTABLE=Code that supports the sustained evolution of the software environment and changing practices. +issue.characteristic.COMPLIANT=Compliance +issue.characteristic.description.COMPLIANT=Code that conforms to laws, regulations, and industry standards for its context. + +issue.characteristic.fit.DEVELOPMENT=Fit for Development +issue.characteristic.fit.PRODUCTION=Fit for Operation + issue.status.REOPENED=Reopened issue.status.RESOLVED=Resolved issue.status.OPEN=Open -- 2.39.5