My Rails Application uses internationalization.
In my admin stats I want to display the last log in time of users:
<td> <%= distance_of_time_in_words_to_now(user.current_sign_in_at) %> ago </td>
But rails wants to translate the whole statement and I get the following translation error:
translation missing: de.datetime.distance_in_words.x_days ago
How can I tell rails to use the default [EN] language in distance_of_time_in_words_to_now
?