Fix more strings

This commit is contained in:
Dominik Schürmann
2014-04-19 14:13:50 +02:00
parent 8822f6574d
commit 71d8bcc8f4
13 changed files with 36 additions and 36 deletions

View File

@@ -265,7 +265,7 @@ public class CertifyKeyActivity extends ActionBarActivity implements
startSigning();
}
} else {
AppMsg.makeText(this, R.string.key_has_already_been_signed, AppMsg.STYLE_ALERT)
AppMsg.makeText(this, R.string.key_has_already_been_certified, AppMsg.STYLE_ALERT)
.show();
setResult(RESULT_CANCELED);
@@ -312,7 +312,7 @@ public class CertifyKeyActivity extends ActionBarActivity implements
if (message.arg1 == KeychainIntentServiceHandler.MESSAGE_OKAY) {
AppMsg.makeText(CertifyKeyActivity.this, R.string.key_sign_success,
AppMsg.makeText(CertifyKeyActivity.this, R.string.key_certify_success,
AppMsg.STYLE_INFO).show();
// check if we need to send the key to the server or not

View File

@@ -402,7 +402,7 @@ public class ViewKeyActivity extends ActionBarActivity {
public void handleMessage(Message msg) {
switch (msg.what) {
case NFC_SENT:
AppMsg.makeText(ViewKeyActivity.this, R.string.nfc_successfull,
AppMsg.makeText(ViewKeyActivity.this, R.string.nfc_successful,
AppMsg.STYLE_INFO).show();
break;
}