summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2018-12-17 08:55:41 +0100
committersonartech <sonartech@sonarsource.com>2018-12-20 11:41:47 +0100
commitbe270f27075faf99007c6b13d5a7658d89af6b38 (patch)
treea3770fc6142128c6115d23aeb9f6c8a982d416a0
parenta26e345041921d3d4c2dd6e51574689fafd245e1 (diff)
downloadsonarqube-be270f27075faf99007c6b13d5a7658d89af6b38.tar.gz
sonarqube-be270f27075faf99007c6b13d5a7658d89af6b38.zip
Update issues comment box placeholder for won't fix
-rw-r--r--server/sonar-web/src/main/js/components/issue/components/IssueActionsBar.tsx2
-rw-r--r--sonar-core/src/main/resources/org/sonar/l10n/core.properties2
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/issue/components/IssueActionsBar.tsx b/server/sonar-web/src/main/js/components/issue/components/IssueActionsBar.tsx
index a800041b208..0f632a38ddf 100644
--- a/server/sonar-web/src/main/js/components/issue/components/IssueActionsBar.tsx
+++ b/server/sonar-web/src/main/js/components/issue/components/IssueActionsBar.tsx
@@ -76,7 +76,7 @@ export default class IssueActionsBar extends React.PureComponent<Props, State> {
issue.resolution === 'FALSE-POSITIVE' ||
(issue.resolution === 'WONTFIX' && issue.type !== 'SECURITY_HOTSPOT')
) {
- this.toggleComment(true, translate('issue.comment.tell_why'));
+ this.toggleComment(true, translate('issue.comment.explain_why'));
}
};
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 f719e11c23b..f7aef728713 100644
--- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties
+++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties
@@ -585,7 +585,7 @@ issue.assign.formlink=Assign
issue.assign.to_me=to me
issue.comment.formlink=Comment
issue.comment.submit=Comment
-issue.comment.tell_why=Please tell why?
+issue.comment.explain_why=Consider explaining why
issue.comment.delete_confirm_message=Do you want to delete this comment?
issue.manual_vulnerability=Manual
issue.manual_vulnerability.description=This Vulnerability was created from a Security Hotspot and has its own issue workflow.