Skip to content

Make registration introduction text properly translatable, with support to links

Ref #352 (closed)

Before the text is split into three fragments of strings which are not properly translatable:

#: ./frontend/controlcenter/src/views/register.vue:8
msgid "Please create a new administrator account - this is necessary to login"
msgstr ""

#: ./frontend/controlcenter/src/views/register.vue:9
msgid "Get help"
msgstr ""

#: ./frontend/controlcenter/src/views/register.vue:11
msgid "to avoid repeating this step if you've done it before"
msgstr ""

With this MR, they become a single one, properly translatable:

#: ./frontend/controlcenter/src/views/register.vue:6
msgid "Please create a new administrator account - this is necessary to login. %{openHelpLink}Get help%{closeHelpLink} to avoid repeating this step if you've done it before."
msgstr ""
Edited by Leandro Santiago

Merge request reports