From 528a94f839c2fa17d2453860442d654250149ff7 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 10 Feb 2012 05:27:24 -0500 Subject: Internationalization for HBAC and ipalib.output * hbacrule: Internationalize HBAC rule "all" category exceptions https://fedorahosted.org/freeipa/ticket/2267 * hbactest: Use internationalized names (doc) instead of names for output items Also don't convert result to bool, `not` does it implicitly * ipalib.output: Internationalize descriptions of some standard entries --- ipalib/plugins/hbactest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ipalib/plugins/hbactest.py') diff --git a/ipalib/plugins/hbactest.py b/ipalib/plugins/hbactest.py index 92b7145a..b81dca3d 100644 --- a/ipalib/plugins/hbactest.py +++ b/ipalib/plugins/hbactest.py @@ -359,7 +359,7 @@ class hbactest(Command): if res == pyhbac.HBAC_EVAL_DENY: notmatched_rules.append(ipa_rule.name) if warning_flag: - warning_rules.append(u'Sourcehost value of rule "%s" is ignored' % (ipa_rule.name)) + warning_rules.append(_(u'Sourcehost value of rule "%s" is ignored') % (ipa_rule.name)) except pyhbac.HbacError as (code, rule_name): if code == pyhbac.HBAC_EVAL_ERROR: error_rules.append(rule_name) @@ -402,7 +402,7 @@ class hbactest(Command): continue result = output[o] if isinstance(result, (list, tuple)): - textui.print_attribute(outp.name, result, '%s: %s', 1, True) + textui.print_attribute(unicode(outp.doc), result, '%s: %s', 1, True) elif isinstance(result, (unicode, bool)): if o == 'summary': textui.print_summary(result) @@ -410,6 +410,6 @@ class hbactest(Command): textui.print_indented(result) # Propagate integer value for result. It will give proper command line result for scripts - return int(not bool(output['value'])) + return int(not output['value']) api.register(hbactest) -- cgit