Update translation keys for renaming of user to users

Fixes #2031
This commit is contained in:
Tom Hughes 2018-10-22 10:59:05 +01:00
parent 248f63f728
commit a5124ed409
2 changed files with 5 additions and 4 deletions

View file

@ -14,9 +14,9 @@
<% if @user.home_lon and @user.home_lat and contact.home_lon and contact.home_lat %>
<% distance = @user.distance(contact) %>
<% if distance < 1 %>
(<%= t 'user.show.m away', :count => (distance * 1000).round %>)
(<%= t 'users.show.m away', :count => (distance * 1000).round %>)
<% else %>
(<%= t 'user.show.km away', :count => distance.round %>)
(<%= t 'users.show.km away', :count => distance.round %>)
<% end %>
<% end %>
</p>