diff options
author | necoro <> | 2007-08-05 06:14:40 +0000 |
---|---|---|
committer | necoro <> | 2007-08-05 06:14:40 +0000 |
commit | 21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21 (patch) | |
tree | e08ce263a05ef692af5cbba52a4ef221aa76a65a /portato.py | |
parent | 8ec40e4e4afe07b76016cacb9a121d5d339588da (diff) | |
download | portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.gz portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.bz2 portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.zip |
some translation fixes :)
Diffstat (limited to '')
-rwxr-xr-x | portato.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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() |