diff options
author | John Dennis <jdennis@redhat.com> | 2010-03-05 16:11:21 -0500 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2010-03-08 21:10:36 -0700 |
commit | b75d06e18938015ad6eafe53e15aa2d7a2f92f02 (patch) | |
tree | 856e8b5457e91cb1a9bd628ef8ce82c99dc79657 /ipalib/plugins/config.py | |
parent | b9df4f7f29a638d3646c5ff1ffc33c00f7d715c6 (diff) | |
download | freeipa-b75d06e18938015ad6eafe53e15aa2d7a2f92f02.tar.gz freeipa-b75d06e18938015ad6eafe53e15aa2d7a2f92f02.tar.xz freeipa-b75d06e18938015ad6eafe53e15aa2d7a2f92f02.zip |
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.
Diffstat (limited to 'ipalib/plugins/config.py')
-rw-r--r-- | ipalib/plugins/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py index 31e29f573..b89f17cab 100644 --- a/ipalib/plugins/config.py +++ b/ipalib/plugins/config.py @@ -85,7 +85,7 @@ class config(LDAPObject): Str('ipagroupsearchfields?', cli_name='groupsearch', label='Group search fields', - doc='A comma-separated list of fields to search when searching for groups', + doc=_('A comma-separated list of fields to search when searching for groups'), ), Bool('ipamigrationenabled?', cli_name='enable_migration', |