aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2013-09-14 10:09:37 +0200
committerSamuel Tardieu <sam@rfc1149.net>2013-09-14 10:09:37 +0200
commit840a810e11d8e9fbbb2059529322eae43073b2db (patch)
tree8162a3e559e9138268d88a8efb9a794df580a6ae /main
parent3574290ab2c9a784e87627d86548b7d22a98fcd6 (diff)
downloadcgeo-840a810e11d8e9fbbb2059529322eae43073b2db.zip
cgeo-840a810e11d8e9fbbb2059529322eae43073b2db.tar.gz
cgeo-840a810e11d8e9fbbb2059529322eae43073b2db.tar.bz2
Use the right string for substitution
Diffstat (limited to 'main')
-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());
}
}