1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* seskey.c (do_encode_md): Comment about earlier (pre-PGP 2.3) encodings.

* misc.c (compress_algo_to_string): Translate "Uncompressed". Requested by
Tommi Vainikainen. (string_to_compress_algo): Include multi-string for
"uncompressed|none".
This commit is contained in:
David Shaw 2003-11-21 01:11:25 +00:00
parent e81943f748
commit 85a80265c7
3 changed files with 25 additions and 3 deletions

View file

@ -549,7 +549,7 @@ compress_algo_to_string(int algo)
switch(algo)
{
case COMPRESS_ALGO_NONE:
s="Uncompressed";
s=_("Uncompressed");
break;
case COMPRESS_ALGO_ZIP:
@ -573,7 +573,10 @@ compress_algo_to_string(int algo)
int
string_to_compress_algo(const char *string)
{
if(ascii_strcasecmp(string,"uncompressed")==0)
/* NOTE TO TRANSLATOR: See doc/TRANSLATE about this string. */
if(match_multistr(_("uncompressed|none"),string))
return 0;
else if(ascii_strcasecmp(string,"uncompressed")==0)
return 0;
else if(ascii_strcasecmp(string,"none")==0)
return 0;