aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabrice Bellingard <fabrice.bellingard@sonarsource.com>2012-12-14 13:33:58 +0100
committerFabrice Bellingard <fabrice.bellingard@sonarsource.com>2012-12-14 13:35:56 +0100
commit04a466d94c0fb5e79c54c4fdf380e3feb0043d4a (patch)
treef878e91fc26198f2b7f68853e67a892bef331f12
parent234959aad31c26cebd1f336ef7af060690443ec3 (diff)
downloadsonarqube-04a466d94c0fb5e79c54c4fdf380e3feb0043d4a.tar.gz
sonarqube-04a466d94c0fb5e79c54c4fdf380e3feb0043d4a.zip
Replace "Recent Activity" by "Recent Projects"
-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/layouts/_menu_projects.html.erb4
2 files changed, 3 insertions, 3 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 d56128bf503..4588e00ea1d 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
@@ -306,7 +306,7 @@ layout.dashboards=Dashboards
layout.reviews=Reviews
layout.configuration=Configuration
layout.projects=Projects
-layout.recent_activity=Recent Activity
+layout.recent_projects=Recent Projects
layout.user_panel.my_profile=My profile
sidebar.project_settings=Configuration
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_menu_projects.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_menu_projects.html.erb
index ec8a68e1f8d..01545026f4b 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_menu_projects.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_menu_projects.html.erb
@@ -9,7 +9,7 @@
<div id="projects-menu" class="dropdown-menu" style="max-width: none; display: none;">
<div id="recent-history" style="border-bottom: 1px solid #ccc; padding-bottom: 10px;">
- <h2><%= message('layout.recent_activity') -%></h2>
+ <h2><%= message('layout.recent_projects') -%></h2>
<ul id="recent-history-list">
</ul>
</div>
@@ -32,7 +32,7 @@
<%
if @resource
- # we keep only root resources in the "Recent activity"
+ # we keep only root resources in the "Recent Projects"
root_resource = @resource.root_project
%>
else {