Fix string used in login button

Signed-off-by: Jean-Baptiste CHARRON <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
Jean-Baptiste 2023-02-11 21:17:45 +01:00 committed by Alexander Borsuk
parent 143086b451
commit 71bdb65a99

View file

@ -45,7 +45,7 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
getToolbarController().setTitle(R.string.login);
mLoginInput = view.findViewById(R.id.osm_username);
mPasswordInput = view.findViewById(R.id.osm_password);
mLoginButton = view.findViewById(R.id.login);
mLoginButton = view.findViewById(R.id.login_osm);
mLoginButton.setOnClickListener((v) -> login());
mLostPasswordButton = view.findViewById(R.id.lost_password);
mLostPasswordButton.setOnClickListener((v) -> recoverPassword());
@ -90,7 +90,7 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
enableInput(true);
UiUtils.hide(mProgress);
mLoginButton.setText(R.string.login);
mLoginButton.setText(R.string.login_osm);
if (auth == null)
onAuthFail();
else