aboutsummaryrefslogtreecommitdiffstats
path: root/g10/getkey.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/getkey.c')
-rw-r--r--g10/getkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/getkey.c b/g10/getkey.c
index 8676758f5..a3a1be8c3 100644
--- a/g10/getkey.c
+++ b/g10/getkey.c
@@ -183,7 +183,7 @@ get_primary_uid ( KBNODE keyblock, size_t *uidlen )
}
/* fixme: returning translatable constants instead of a user ID is
* not good because they are probably not utf-8 encoded. */
- s = _("[User id not found]");
+ s = _("[User ID not found]");
*uidlen = strlen (s);
return s;
}
@@ -2688,7 +2688,7 @@ get_user_id( u32 *keyid, size_t *rn )
}
}
} while( ++pass < 2 && !get_pubkey( NULL, keyid ) );
- p = m_strdup( _("[User id not found]") );
+ p = m_strdup( _("[User ID not found]") );
*rn = strlen(p);
return p;
}