summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Voborník <pvoborni@redhat.com>2012-02-10 18:29:57 +0100
committerEndi S. Dewata <edewata@redhat.com>2012-02-14 08:37:39 -0600
commit83fe7696a08e7f04b69014435332a2c4e0447076 (patch)
tree87ebc22fcbfaeddb87a4b5d10b1e0d17b8189837
parentcbdbab317cfa3054a6dc8f9b60ced54462ca37b1 (diff)
downloadfreeipa.git-83fe7696a08e7f04b69014435332a2c4e0447076.tar.gz
freeipa.git-83fe7696a08e7f04b69014435332a2c4e0447076.tar.xz
freeipa.git-83fe7696a08e7f04b69014435332a2c4e0447076.zip
Removed question marks from field labels
In user group adder dialog, the "Is this a POSIX group?" was replaced with "POSIX group". In host search facet, the "Enrolled?" was replaced with "Enrolled". https://fedorahosted.org/freeipa/ticket/2353
-rw-r--r--install/ui/test/data/ipa_init.json4
-rw-r--r--ipalib/plugins/internal.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json
index 37550b2f..9c5abb80 100644
--- a/install/ui/test/data/ipa_init.json
+++ b/install/ui/test/data/ipa_init.json
@@ -216,7 +216,7 @@
},
"group": {
"details": "Group Settings",
- "posix": "Is this a POSIX group?"
+ "posix": "POSIX group"
},
"hbacrule": {
"any_host": "Any Host",
@@ -253,7 +253,7 @@
"cn": "Host Name",
"delete_key_unprovision": "Delete Key, Unprovision",
"details": "Host Settings",
- "enrolled": "Enrolled?",
+ "enrolled": "Enrolled",
"enrollment": "Enrollment",
"fqdn": "Fully Qualified Host Name",
"keytab": "Kerberos Key",
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index 843d71f7..805f458a 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -353,7 +353,7 @@ class i18n_messages(Command):
},
"group": {
"details": _("Group Settings"),
- "posix": _("Is this a POSIX group?"),
+ "posix": _("POSIX group"),
},
"hbacrule": {
"any_host": _("Any Host"),
@@ -391,7 +391,7 @@ class i18n_messages(Command):
"cn": _("Host Name"),
"delete_key_unprovision": _("Delete Key, Unprovision"),
"details": _("Host Settings"),
- "enrolled": _("Enrolled?"),
+ "enrolled": _("Enrolled"),
"enrollment": _("Enrollment"),
"fqdn": _("Fully Qualified Host Name"),
"keytab": _("Kerberos Key"),