Commit 3cec04fc07895f34706dc8cf9b26cc4e7b3b0082

Authored by Rodrigo Souto
1 parent 11ae96a2

Replace obsolete double underscore on translation

app/views/enterprise_registration/creation.html.erb
1   -<h1><%= __('Enterprise registration completed') %></h1>
2   -<p><%= __("Your enterprise (%s) was successfully registered.") % @enterprise.name %></p>
3   -<p><%= link_to __('You can manage your enterprise now.'), @enterprise.admin_url %></p>
  1 +<h1><%= _('Enterprise registration completed') %></h1>
  2 +<p><%= _("Your enterprise (%s) was successfully registered.") % @enterprise.name %></p>
  3 +<p><%= link_to _('You can manage your enterprise now.'), @enterprise.admin_url %></p>
4 4  
5 5 <%= render :partial => 'shared/template_welcome_page', :locals => {:template => @enterprise.template, :header => _("What can I do with a %s?")} %>
6 6  
... ...
app/views/memberships/welcome.html.erb
1   -<h1><%= __('Community created') %></h1>
2   -<p><%= __("Your community (%s) was successfully created.") % @community.name %></p>
3   -<p><%= link_to __('You can manage your community now.'), @community.admin_url %></p>
  1 +<h1><%= _('Community created') %></h1>
  2 +<p><%= _("Your community (%s) was successfully created.") % @community.name %></p>
  3 +<p><%= link_to _('You can manage your community now.'), @community.admin_url %></p>
4 4  
5 5 <%= render :partial => 'shared/template_welcome_page', :locals => {:template => @community.template, :header => _("What can I do with a %s?")} %>
6 6  
... ...