]> www.fi.muni.cz Git - evince.git/blobdiff - backend/impress/zip.c
Updated Hungarian translation
[evince.git] / backend / impress / zip.c
index 4b179b55ef900ad53d88e71d05aad159eb6e1cb6..b1f25c8c8801149f4b629e639a18271acd8b5dfb 100644 (file)
@@ -4,11 +4,14 @@
 ** modify it under the terms of GNU General Public License.
 */
 
 ** modify it under the terms of GNU General Public License.
 */
 
+#include <config.h>
 #include "common.h"
 #include "zip.h"
 #include <zlib.h>
 #define _(x) x
 
 #include "common.h"
 #include "zip.h"
 #include <zlib.h>
 #define _(x) x
 
+typedef unsigned long ulong;
+
 enum {
        ZIP_OK = 0,
        ZIP_NOMEM,
 enum {
        ZIP_OK = 0,
        ZIP_NOMEM,
@@ -53,13 +56,13 @@ zip_error (int err)
                        ret = _("Not enough memory");
                        break;
                case ZIP_NOSIG:
                        ret = _("Not enough memory");
                        break;
                case ZIP_NOSIG:
-                       ret = _("Cannot find zip signature");
+                       ret = _("Cannot find ZIP signature");
                        break;
                case ZIP_BADZIP:
                        break;
                case ZIP_BADZIP:
-                       ret = _("Invalid zip file");
+                       ret = _("Invalid ZIP file");
                        break;
                case ZIP_NOMULTI:
                        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");
                        break;
                case ZIP_EOPEN:
                        ret = _("Cannot open the file");
@@ -68,7 +71,7 @@ zip_error (int err)
                        ret = _("Cannot read data from file");
                        break;
                case ZIP_NOFILE:
                        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");
                        break;
                default:
                        ret = _("Unknown error");