diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-15 23:02:57 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-15 23:02:57 +0100 |
commit | 3ce6ac0ce2e482bc1f2784c3c7f716172b151902 (patch) | |
tree | 89052410c8e7c856bee1049464ee79463a7db48b /app/helpers | |
parent | a4313224d93cd762fd500e687e33247025035af8 (diff) |
Adding some localizations
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/accounts_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/accounts_helper.rb b/app/helpers/accounts_helper.rb index 17c7b4b82..af23a78d1 100644 --- a/app/helpers/accounts_helper.rb +++ b/app/helpers/accounts_helper.rb @@ -3,8 +3,8 @@ module AccountsHelper def pagination_options { - previous_label: safe_join([fa_icon('chevron-left'), 'Prev'], ' '), - next_label: safe_join(['Next', fa_icon('chevron-right')], ' '), + previous_label: safe_join([fa_icon('chevron-left'), t('pagination.prev')], ' '), + next_label: safe_join([t('pagination.next'), fa_icon('chevron-right')], ' '), inner_window: 1, outer_window: 0, } |