From d549183d4ef0dcc05b865db045a29f5792904434 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 12 Jun 2005 20:38:19 +0000 Subject: [PATCH] hig a string --- src/vcard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vcard.py b/src/vcard.py index 17f7f30e3..fb639fbd5 100644 --- a/src/vcard.py +++ b/src/vcard.py @@ -128,7 +128,8 @@ class VcardWindow: if file: filesize = os.path.getsize(file) # in bytes if filesize > 8192: - dialogs.ErrorDialog(_('The filesize of image "%s" is too large') % file, _('The file must not be more than 8 kilobytes')).get_response() + dialogs.ErrorDialog(_('The filesize of image "%s" is too large') % file, + _('The file must not be more than 8 kilobytes.')).get_response() return fd = open(file) data = fd.read()