Commit cc9983e87e3d2ee1edac7735260d3ea382420fe7
1 parent
34560e6e
Exists in
master
and in
28 other branches
ActionItem501: removed the newer title of categories boxes
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2246 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
app/controllers/public/search_controller.rb
... | ... | @@ -192,12 +192,12 @@ class SearchController < ApplicationController |
192 | 192 | @order = [] |
193 | 193 | @names = {} |
194 | 194 | [ |
195 | - [ :people, _('Newer people'), @finder.recent('people', limit) ], | |
196 | - [ :enterprises, _('Newer enterprises'), @finder.recent('enterprises', limit) ], | |
197 | - [ :products, ('Newer products'), @finder.recent('products', limit) ], | |
195 | + [ :people, _('People'), @finder.recent('people', limit) ], | |
196 | + [ :enterprises, _('Enterprises'), @finder.recent('enterprises', limit) ], | |
197 | + [ :products, ('Products'), @finder.recent('products', limit) ], | |
198 | 198 | [ :events, _('Upcoming events'), @finder.upcoming_events({:per_page => limit}) ], |
199 | - [ :communities, _('Newer communities'), @finder.recent('communities', limit) ], | |
200 | - [ :articles, _('Newer articles'), @finder.recent('articles', limit) ], | |
199 | + [ :communities, _('Communities'), @finder.recent('communities', limit) ], | |
200 | + [ :articles, _('Articles'), @finder.recent('articles', limit) ], | |
201 | 201 | [ :most_commented_articles, _('Most commented articles'), @finder.most_commented_articles(limit) ] |
202 | 202 | ].each do |key, name, list| |
203 | 203 | @order << key | ... | ... |