Such as:
# config/locales/en.yml
en:
notification:
one: You have 1 notification
other: You have %{count} notifications
#app/views/notifications/index.html.erb
<%= t("notification", count: current_user.notifications.count) %>
From watching the tests and doing some tests myself I cant see that, this library is doing like the the above?