aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-10-25 21:46:05 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-10-25 21:46:05 +0200
commit2f81c2fb0f20bfc17e6e658047734f9063532269 (patch)
tree4bd81fde1ac79b3d935c9438da54c70a58ca6bfe /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java
parent283037acf51cbdae245323ff31b774915bc922ec (diff)
downloadopen-keychain-2f81c2fb0f20bfc17e6e658047734f9063532269.tar.gz
open-keychain-2f81c2fb0f20bfc17e6e658047734f9063532269.tar.bz2
open-keychain-2f81c2fb0f20bfc17e6e658047734f9063532269.zip
spring-cleaning: remove unused resources, rename strings from camelCase to snake_case to follow standard practice
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java
index 5b43ebbd9..6c65e840c 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/UserIdEditor.java
@@ -138,7 +138,7 @@ public class UserIdEditor extends LinearLayout implements Editor, OnClickListene
if (email.length() > 0) {
Matcher emailMatcher = EMAIL_PATTERN.matcher(email);
if (!emailMatcher.matches()) {
- throw new InvalidEmailException(getContext().getString(R.string.error_invalidEmail,
+ throw new InvalidEmailException(getContext().getString(R.string.error_invalid_email,
email));
}
}