forked from organicmaps/organicmaps-tmp
Fix string used in login button
Signed-off-by: Jean-Baptiste CHARRON <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
parent
143086b451
commit
71bdb65a99
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue