From 8519499b5fd4b5fdea512c2c8090e0a78960a36e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lievremont Date: Tue, 16 Dec 2014 16:50:11 +0100 Subject: [PATCH] Apply feedback from code review --- server/sonar-web/src/main/hbs/issue/issue.hbs | 4 ++-- sonar-core/src/main/resources/org/sonar/l10n/core.properties | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/server/sonar-web/src/main/hbs/issue/issue.hbs b/server/sonar-web/src/main/hbs/issue/issue.hbs index cb14198bc27..c03ea695fae 100644 --- a/server/sonar-web/src/main/hbs/issue/issue.hbs +++ b/server/sonar-web/src/main/hbs/issue/issue.hbs @@ -3,7 +3,7 @@
- {{#if tags}}{{join tags ', '}}{{else}}{{t 'coding_rules.no_tags'}}{{/if}} + {{#if tags}}{{join tags ', '}}{{else}}{{t 'issue.no_tag'}}{{/if}} {{#inArray actions "set_tags"}} @@ -11,7 +11,7 @@
{{t 'cancel'}} - {{/inArray}} + {{/inArray}}
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 fea3b201631..19317e9aecf 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -639,6 +639,7 @@ measure_filter.error.VALUE_SHOULD_BE_A_NUMBER=Value used for metric should be a issue.add_tags=Add Tags issue.remove_tags=Remove Tags +issue.no_tag=No tags issue.assign.formlink=Assign issue.assign.submit=Assign issue.unassign.submit=Unassign -- 2.39.5