When the user is blocked in the console, the UI show hard coded string: The user account has been disabled by an administrator
I need to customize this string.
I have tried adding this <string name="account_disabled">Account is disabled by the administrator</string> from (https://github.com/firebase/FirebaseUI-Android/blob/master/app/src/main/res/values/strings.xml#L78) to mystrings.xml, but this didn't works.
<string name="account_disabled" ... is not available in the customizable strings for auth (https://github.com/firebase/FirebaseUI-Android/blob/master/auth/src/main/res/values/strings.xml)
When the user is blocked in the console, the UI show hard coded string:
The user account has been disabled by an administratorI need to customize this string.
I have tried adding this
<string name="account_disabled">Account is disabled by the administrator</string>from (https://github.com/firebase/FirebaseUI-Android/blob/master/app/src/main/res/values/strings.xml#L78) to mystrings.xml, but this didn't works.<string name="account_disabled" ...is not available in the customizable strings for auth (https://github.com/firebase/FirebaseUI-Android/blob/master/auth/src/main/res/values/strings.xml)