How to pass arguments in I18n.translate
You can pass the params after the key
I18n.translate('error.messages.greater_than_or_equal_to', count: 2)
For multiple params it could be:
I18n.translate('error.messages.greater_than_or_equal_to', {
count: 2,
foo: 'bar'
})