gitlab-org--gitlab-foss/app/views/projects/mirrors
Bob Van Landuyt 08c0a1b852 Reject ruby interpolation in externalized strings
When using ruby interpolation in externalized strings, they can't be
detected. Which means they will never be presented to be translated.

To mix variables into translations we need to use `sprintf`
instead.

Instead of:

    _("Hello #{subject}")

Use:

    _("Hello %{subject}) % { subject: 'world' }
2018-08-25 18:43:21 +02:00
..
_instructions.html.haml Reject ruby interpolation in externalized strings 2018-08-25 18:43:21 +02:00
_mirror_repos.html.haml
_mirror_repos_form.html.haml
_show.html.haml