mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-09-03 20:52:56 -05:00
localize doc strings
A number of doc strings were not localized, wrap them in _(). Some messages were not localized, wrap them in _() Fix a couple of failing tests: The method name in RPC should not be unicode. The doc attribute must use the .msg attribute for comparison. Also clean up imports of _() The import should come from ipalib or ipalib.text, not ugettext from request.
This commit is contained in:
committed by
Jason Gerard DeRose
parent
b9df4f7f29
commit
b75d06e189
@@ -31,7 +31,7 @@ from tests.data import binary_bytes, utf8_bytes, unicode_str
|
||||
from ipalib import parameters, request, errors, config
|
||||
from ipalib.constants import TYPE_ERROR, CALLABLE_ERROR, NULLS
|
||||
from ipalib.errors import ValidationError
|
||||
|
||||
from ipalib import _
|
||||
|
||||
class test_DefaultFrom(ClassChecker):
|
||||
"""
|
||||
@@ -192,9 +192,9 @@ class test_Param(ClassChecker):
|
||||
assert o.flags == frozenset()
|
||||
|
||||
# Test that doc defaults from label:
|
||||
o = self.cls('my_param', doc='Hello world')
|
||||
o = self.cls('my_param', doc=_('Hello world'))
|
||||
assert o.label.msg == 'my_param'
|
||||
assert o.doc == 'Hello world'
|
||||
assert o.doc.msg == 'Hello world'
|
||||
|
||||
o = self.cls('my_param', label='My Param')
|
||||
assert o.label == 'My Param'
|
||||
|
||||
Reference in New Issue
Block a user