summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-10-11 11:30:48 +0200
committerMartin Kosek <mkosek@redhat.com>2011-10-11 14:51:16 +0200
commitc23b3819e1c2d9c58b97617ef7516a3177b38bbf (patch)
tree5271a2f27a747da72b87c917607622a1bd2107a7
parent38817664c6688dd713d9ad07a4d8dec2925192d1 (diff)
downloadfreeipa-c23b3819e1c2d9c58b97617ef7516a3177b38bbf.tar.gz
freeipa-c23b3819e1c2d9c58b97617ef7516a3177b38bbf.tar.xz
freeipa-c23b3819e1c2d9c58b97617ef7516a3177b38bbf.zip
Fix i18n in config plugin
-rw-r--r--ipalib/plugins/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py
index aa0c19d2d..9bed5d823 100644
--- a/ipalib/plugins/config.py
+++ b/ipalib/plugins/config.py
@@ -199,7 +199,7 @@ class config_mod(LDAPUpdate):
try:
api.Command['group_show'](group)
except errors.NotFound:
- raise errors.NotFound(message=unicode("The group doesn't exist"))
+ raise errors.NotFound(message=_("The group doesn't exist"))
kw = {}
if 'ipausersearchfields' in entry_attrs:
kw['ipausersearchfields'] = 'ipauserobjectclasses'
@@ -214,7 +214,7 @@ class config_mod(LDAPUpdate):
a = a.strip()
if a not in allowed_attrs:
raise errors.ValidationError(
- name=k, error='attribute "%s" not allowed' % a
+ name=k, error=_('attribute "%s" not allowed') % a
)
for (attr, obj) in (('ipauserobjectclasses', 'user'),