Commit b18cb4fe478fd55997cec2d35b6e3eb7aa0bc02e

Authored by Daniela Feitosa
1 parent 3c65e751

Making clear that emails sent to community goes to admins

app/views/blocks/profile_info_actions/community.rhtml
... ... @@ -32,7 +32,7 @@
32 32 { :profile => profile.identifier,
33 33 :controller => 'contact',
34 34 :action => 'new' },
35   - :class => 'button with-text icon-menu-mail' %>
  35 + {:class => 'button with-text icon-menu-mail', :title => _('Send an e-mail to the administrators')} %>
36 36 </li>
37 37 <% end %>
38 38  
... ...
app/views/contact/new.rhtml
1   -<h1><%= _('Send an e-mail to %s') % profile.name %></h1>
  1 +<h1><%= _('Send an e-mail to administrators') %></h1>
2 2  
3   -<%= error_messages_for 'contact' %>
  3 +<div class='tooltip'><%= _("The e-mail will be sent to the administrator of community '%s'") % profile.name %></div>
4 4  
  5 +<%= error_messages_for 'contact' %>
5 6  
6 7 <% labelled_form_for :contact, @contact do |f| %>
7 8 <%= hidden_field_tag(:confirm, 'false') %>
... ...