summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-08-29 17:35:07 +0200
committerPetr Vobornik <pvoborni@redhat.com>2012-09-06 09:44:15 +0200
commit6a8d6d3fde0ede2e0b976cd5af67a57c0691b1f8 (patch)
tree0e46119ffafca1f15b0da8868f72c3d9a16b8da8 /ipalib
parent6ae286a8f5ec7d1633ec733fbe116550bff7141a (diff)
downloadfreeipa-6a8d6d3fde0ede2e0b976cd5af67a57c0691b1f8.tar.gz
freeipa-6a8d6d3fde0ede2e0b976cd5af67a57c0691b1f8.tar.xz
freeipa-6a8d6d3fde0ede2e0b976cd5af67a57c0691b1f8.zip
Notify success on add, delete and update
Notification of success was added to: * details facet: update * association facet and association widget: add, delete items * attribute facet: delete items (notification of add should be handled in entity adder dialog) * sudo rule: add, remove option * dnsrecord: add, update, delete https://fedorahosted.org/freeipa/ticket/2977
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/internal.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index 890ebb452..26e1b63fb 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -166,6 +166,7 @@ class i18n_messages(Command):
"memberof": _("Add ${entity} ${primary_key} into ${other_entity}"),
"sourcehost": _("Add Source ${other_entity} into ${entity} ${primary_key}"),
},
+ "added": _("Items added"),
"direct_membership": _("Direct Membership"),
"indirect_membership": _("Indirect Membership"),
"no_entries": _("No entries."),
@@ -180,6 +181,7 @@ class i18n_messages(Command):
"memberof": _("Remove ${entity} ${primary_key} from ${other_entity}"),
"sourcehost": _("Remove Source ${other_entity} from ${entity} ${primary_key}"),
},
+ "removed": _("Items removed"),
"show_results": _("Show Results"),
},
"buttons": {
@@ -215,7 +217,8 @@ class i18n_messages(Command):
"general": _("General"),
"identity": _("Identity Settings"),
"settings": _("${entity} ${primary_key} Settings"),
- "to_top": _("Back to Top")
+ "to_top": _("Back to Top"),
+ "updated": _("${entity} ${primary_key} updated"),
},
"dialogs": {
"add_confirmation": _("${entity} successfully added"),
@@ -569,6 +572,8 @@ class i18n_messages(Command):
"external": _("External"),
"host": _("Access this host"),
"ipaenabledflag": _("Rule status"),
+ "option_added": _("Option added"),
+ "option_removed": _("Option(s) removed"),
"options": _("Options"),
"runas": _("As Whom"),
"specified_commands": _("Specified Commands and Groups"),