aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/src/cgeo/geocaching/network/OAuthAuthorizationActivity.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/main/src/cgeo/geocaching/network/OAuthAuthorizationActivity.java b/main/src/cgeo/geocaching/network/OAuthAuthorizationActivity.java
index 5ba65ee..fe5ae64 100644
--- a/main/src/cgeo/geocaching/network/OAuthAuthorizationActivity.java
+++ b/main/src/cgeo/geocaching/network/OAuthAuthorizationActivity.java
@@ -307,22 +307,22 @@ public abstract class OAuthAuthorizationActivity extends AbstractActivity {
}
protected String getAuthDialogWait() {
- return res.getString(R.string.auth_dialog_waiting, getTitle());
+ return res.getString(R.string.auth_dialog_waiting, getAuthTitle());
}
protected String getAuthExplainShort() {
- return res.getString(R.string.auth_explain_short, getTitle());
+ return res.getString(R.string.auth_explain_short, getAuthTitle());
}
protected String getAuthExplainLong() {
- return res.getString(R.string.auth_explain_long, getTitle());
+ return res.getString(R.string.auth_explain_long, getAuthTitle());
}
protected String getAuthAuthorize() {
- return res.getString(R.string.auth_authorize, getTitle());
+ return res.getString(R.string.auth_authorize, getAuthTitle());
}
protected String getAuthFinish() {
- return res.getString(R.string.auth_finish, getTitle());
+ return res.getString(R.string.auth_finish, getAuthTitle());
}
}