diff options
author | Pavel Zuna <pzuna@redhat.com> | 2011-02-23 16:47:49 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-03-01 10:31:40 -0500 |
commit | f3de95ce99855cb15e26d8007c8901aaec96c595 (patch) | |
tree | ab1924abd9e8d6b8fbe32834f5d110617ecead43 /ipalib/plugins/delegation.py | |
parent | 814595275293af836ceed7aeedf8412d94b13794 (diff) | |
download | freeipa-f3de95ce99855cb15e26d8007c8901aaec96c595.tar.gz freeipa-f3de95ce99855cb15e26d8007c8901aaec96c595.tar.xz freeipa-f3de95ce99855cb15e26d8007c8901aaec96c595.zip |
Fix translatable strings in ipalib plugins.
Needed for xgettext/pygettext processing.
Diffstat (limited to 'ipalib/plugins/delegation.py')
-rw-r--r-- | ipalib/plugins/delegation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/delegation.py b/ipalib/plugins/delegation.py index 8ea0af9cf..c3b5e4825 100644 --- a/ipalib/plugins/delegation.py +++ b/ipalib/plugins/delegation.py @@ -221,7 +221,7 @@ class delegation_find(crud.Search): """ msg_summary = ngettext( - '%(count)d delegation matched', '%(count)d delegations matched' + '%(count)d delegation matched', '%(count)d delegations matched', 0 ) def execute(self, term, **kw): |