summaryrefslogtreecommitdiff
path: root/portato.py
diff options
context:
space:
mode:
authornecoro <>2007-08-05 06:14:40 +0000
committernecoro <>2007-08-05 06:14:40 +0000
commit21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21 (patch)
treee08ce263a05ef692af5cbba52a4ef221aa76a65a /portato.py
parent8ec40e4e4afe07b76016cacb9a121d5d339588da (diff)
downloadportato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.gz
portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.bz2
portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.zip
some translation fixes :)
Diffstat (limited to 'portato.py')
-rwxr-xr-xportato.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/portato.py b/portato.py
index 603e23d..e318411 100755
--- a/portato.py
+++ b/portato.py
@@ -75,13 +75,13 @@ def main ():
try:
etree.XMLSchema(file = XSD_LOCATION).assertValid(etree.parse(options.validate))
except etree.XMLSyntaxError, e:
- print _("Verification failed. XML syntax error: %s.") % e[0]
+ print _("Validation failed. XML syntax error: %s.") % e[0]
sys.exit(3)
except etree.DocumentInvalid:
- print _("Verification failed. Does not comply with schema.")
+ print _("Validation failed. Does not comply with schema.")
sys.exit(3)
else:
- print _("Verification succeeded.")
+ print _("Validation succeeded.")
return
else:
run()