aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThialfihar <thialfihar@gmail.com>2010-07-18 06:54:39 +0000
committerThialfihar <thialfihar@gmail.com>2010-07-18 06:54:39 +0000
commit92059d6d3b1d449e18006157ba39d26a46c91c90 (patch)
treec03c9ed5a4b6df1ee34cf42526acc111562f2075 /src
parent93835f55953dc069430c0692bc30ef7f1cfc349d (diff)
downloadopen-keychain-92059d6d3b1d449e18006157ba39d26a46c91c90.tar.gz
open-keychain-92059d6d3b1d449e18006157ba39d26a46c91c90.tar.bz2
open-keychain-92059d6d3b1d449e18006157ba39d26a46c91c90.zip
fixed the made-up word "authentification", also changed the title of that dialog to "Pass Phrase", dialog message then only contains the key details or "Symmetric encryption."
Update issue 39 I tried to change "title_athentication", "passPhraseForSymmetricEncryption", and "passPhraseFor" in all languages. I think the changes are correct, but if you guys could make sure I didn't do anything dumb, then that'd be better. :)
Diffstat (limited to 'src')
-rw-r--r--src/org/thialfihar/android/apg/AskForSecretKeyPassPhrase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/thialfihar/android/apg/AskForSecretKeyPassPhrase.java b/src/org/thialfihar/android/apg/AskForSecretKeyPassPhrase.java
index 7c582ef0c..1e3dd3726 100644
--- a/src/org/thialfihar/android/apg/AskForSecretKeyPassPhrase.java
+++ b/src/org/thialfihar/android/apg/AskForSecretKeyPassPhrase.java
@@ -40,7 +40,7 @@ public class AskForSecretKeyPassPhrase {
PassPhraseCallbackInterface callback) {
AlertDialog.Builder alert = new AlertDialog.Builder(context);
- alert.setTitle(R.string.title_authentification);
+ alert.setTitle(R.string.title_authentication);
final PGPSecretKey secretKey;
final Activity activity = context;