Updated text from 'Remote Database' to 'Share Data'

This commit is contained in:
Graham Jones
2022-01-29 20:14:09 +00:00
parent e973154896
commit 02510d455d
2 changed files with 21 additions and 20 deletions

View File

@@ -235,11 +235,11 @@ public class LogManagerControlActivity extends AppCompatActivity {
tv = (TextView) findViewById(R.id.authStatusTv);
btn = (Button) findViewById(R.id.auth_button);
if (mLm.mWac.isLoggedIn()) {
tv.setText("Authenticated");
btn.setText("Log Out");
tv.setText(getString(R.string.logged_in_with_token));
btn.setText(getString(R.string.logout));
} else {
tv.setText("NOT AUTHENTICATED");
btn.setText("Log In");
tv.setText(getString(R.string.not_authenticated));
btn.setText(getString(R.string.login));
}
} else {
stopUpdating = false;