aboutsummaryrefslogtreecommitdiffstats
path: root/g10/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/misc.c')
-rw-r--r--g10/misc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/g10/misc.c b/g10/misc.c
index 5583787e8..7ee6d2d67 100644
--- a/g10/misc.c
+++ b/g10/misc.c
@@ -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;