From 7704cd4f54ed4c9e763915768224a35ac4fb368b Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Fri, 9 Dec 2005 05:14:13 +0000 Subject: [PATCH] Update svn: r5518 --- gramps2/src/Report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps2/src/Report.py b/gramps2/src/Report.py index 2fe15b668..66ae7a555 100644 --- a/gramps2/src/Report.py +++ b/gramps2/src/Report.py @@ -1424,7 +1424,7 @@ class ReportDialog(BareReportDialog): # check whether the dir has rwx permissions if not os.access(self.target_path,os.R_OK|os.W_OK|os.X_OK): ErrorDialog(_('Permission problem'), - _("You do not have permissions to write " + _("You do not have permission to write " "under the directory %s\n\n" "Please select another directory or correct " "the permissions." % self.target_path) @@ -1449,7 +1449,7 @@ class ReportDialog(BareReportDialog): parent_dir = os.path.dirname(os.path.normpath(self.target_path)) if not os.access(parent_dir,os.W_OK): ErrorDialog(_('Permission problem'), - _("You do not have permissions to create " + _("You do not have permission to create " "%s\n\n" "Please select another path or correct " "the permissions." % self.target_path)