You can use the language string as the language key. In that case it's a parameter usage so it has no specific key beyond whatever is generated by our language parser. The below is with the generated key.
Code:
'IF_YOU_ALREADY_HAVE_AN_ACCOUNT_PLEASE_LOGIN_FIRST__29098f' => 'If you already have an account, please login first. Otherwise you need to register using this form.',
The below is with using the string as the key.
Code:
'If you already have an account, please login first. Otherwise you need to register using this form.' => 'If you already have an account, please login first. Otherwise you need to register using this form.',
So you can try either of the below in language overrides.
Key:
Code:
IF_YOU_ALREADY_HAVE_AN_ACCOUNT_PLEASE_LOGIN_FIRST__29098f
Text:
Code:
If you already have an account, please login first. Otherwise you need to register using this form.
Key:
Code:
If you already have an account, please login first. Otherwise you need to register using this form.
Text:
Code:
If you already have an account, please login first. Otherwise you need to register using this form.