language fix

This commit is contained in:
Dominik Schürmann
2014-01-29 10:46:59 +01:00
parent 08d301a308
commit 1b1724f7af
18 changed files with 21 additions and 22 deletions

View File

@@ -293,7 +293,7 @@ public class PgpKeyHelper {
public static String getMainUserIdSafe(Context context, PGPPublicKey key) {
String userId = getMainUserId(key);
if (userId == null || userId.equals("")) {
userId = context.getString(R.string.unknown_user_id);
userId = context.getString(R.string.user_id_no_name);
}
return userId;
}
@@ -301,7 +301,7 @@ public class PgpKeyHelper {
public static String getMainUserIdSafe(Context context, PGPSecretKey key) {
String userId = getMainUserId(key);
if (userId == null || userId.equals("")) {
userId = context.getString(R.string.unknown_user_id);
userId = context.getString(R.string.user_id_no_name);
}
return userId;
}