Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/impress
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-02-01 17:13:46 (GMT)
committer Philip Withnall <philip@tecnocode.co.uk>2010-02-03 15:21:35 (GMT)
commit766adb9bff7a5c8ada0d18cafd3643e647fb6f23 (patch)
treee7073f068913cff28e8f5fa0e99672a80554e869 /backend/impress
parentd098f8e9bc72fb6406b75776c875d486be928e72 (diff)
Assorted string fixes
Assorted string fixes, fixing some missing words, incorrect capitalisation; and converting ellipses and dashes into the appropriate Unicode characters.
Diffstat (limited to 'backend/impress')
-rw-r--r--backend/impress/zip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/impress/zip.c b/backend/impress/zip.c
index 6d06f10..b1f25c8 100644
--- a/backend/impress/zip.c
+++ b/backend/impress/zip.c
@@ -56,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");
@@ -71,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");