diff --git a/res/values/strings.xml b/res/values/strings.xml index 94b9bd364f..dbf634132c 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -326,6 +326,7 @@ The scanned key matches! Verified! Identity Fingerprint + My Identity Fingerprint Initiate Despite Existing Request? diff --git a/src/org/thoughtcrime/securesms/ViewLocalIdentityActivity.java b/src/org/thoughtcrime/securesms/ViewLocalIdentityActivity.java index 3573c7f47b..1caaa40132 100644 --- a/src/org/thoughtcrime/securesms/ViewLocalIdentityActivity.java +++ b/src/org/thoughtcrime/securesms/ViewLocalIdentityActivity.java @@ -45,8 +45,7 @@ public class ViewLocalIdentityActivity extends ViewIdentityActivity { this.masterSecret = getIntent().getParcelableExtra("master_secret"); getIntent().putExtra("identity_key", IdentityKeyUtil.getIdentityKey(this, Curve.DJB_TYPE)); - getIntent().putExtra("title", getString(R.string.ApplicationPreferencesActivity_my) + " " + - getString(R.string.ViewIdentityActivity_identity_fingerprint)); + getIntent().putExtra("title", getString(R.string.ViewIdentityActivity_my_identity_fingerprint)); super.onCreate(bundle); }