summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-10-09 14:22:04 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2012-10-09 14:22:04 +0200
commit65ae94f8fa5244b699b1cbd064d3ccf66af318d8 (patch)
tree0343819b1d7f3f7e11956e2ee2a2c54011819126
parent1dbfa498097b5a67a6a1706abac16ddc24c2acf0 (diff)
downloadsonarqube-65ae94f8fa5244b699b1cbd064d3ccf66af318d8.tar.gz
sonarqube-65ae94f8fa5244b699b1cbd064d3ccf66af318d8.zip
SONAR-3621 fix description of key regexp
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties2
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/filters/new.html.erb1
2 files changed, 1 insertions, 2 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
index 38ec2a4e151..b8a4d8143c6 100644
--- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
+++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
@@ -384,7 +384,7 @@ filters.default_period=Differential period
filters.when_no_language_no_filter_apply=When no language is selected, no filter will apply
filters.favourite_only=Favourites only
filters.resource_key_like=Resource key like
-filters.use_star_to_match=Use '*' or '%' to match zero or more starting/ending characters. Use '_' to match any single character.
+filters.use_star_to_match=Use '*' to match zero or more characters and '?' to match any single character.
filters.resource_name_like=Resource name like
filters.do_you_want_to_delete=Do you want to delete this filter ?
filters.during_last=During last
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/new.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/new.html.erb
index e1a1ff93546..7dc8a4e50e2 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/new.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/new.html.erb
@@ -135,7 +135,6 @@
<td>
<% name_regexp_criterion=@filter.criterion('name') %>
<input type="text" name="name_regexp" id="name_regexp" value="<%= name_regexp_criterion.text_value if name_regexp_criterion -%>"/>
- <span class="comments"><%= message('filters.use_star_to_match') -%></span>
</td>
</tr>
<tr>