X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=backend%2Fimpress%2Fzip.c;h=b1f25c8c8801149f4b629e639a18271acd8b5dfb;hb=refs%2Ftags%2FEVINCE_2_31_2;hp=7143aa1e32bdebc3669bdeb9287e11294102a669;hpb=299f62a707f68651d76476e87dd030ef3b3174ea;p=evince.git diff --git a/backend/impress/zip.c b/backend/impress/zip.c index 7143aa1e..b1f25c8c 100644 --- a/backend/impress/zip.c +++ b/backend/impress/zip.c @@ -4,6 +4,7 @@ ** modify it under the terms of GNU General Public License. */ +#include #include "common.h" #include "zip.h" #include @@ -55,13 +56,13 @@ zip_error (int err) ret = _("Not enough memory"); break; case ZIP_NOSIG: - ret = _("Cannot find zip signature"); + ret = _("Cannot find ZIP signature"); break; case ZIP_BADZIP: - ret = _("Invalid zip file"); + ret = _("Invalid ZIP file"); break; case ZIP_NOMULTI: - ret = _("Multi file zips are not supported"); + ret = _("Multi file ZIPs are not supported"); break; case ZIP_EOPEN: ret = _("Cannot open the file"); @@ -70,7 +71,7 @@ zip_error (int err) ret = _("Cannot read data from file"); break; case ZIP_NOFILE: - ret = _("Cannot find file in the zip archive"); + ret = _("Cannot find file in the ZIP archive"); break; default: ret = _("Unknown error");