diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 13:58:27 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 13:58:27 +0200 |
commit | ccaca4003972445d8f3301ed670901da84e601ed (patch) | |
tree | 95dbc314dfb4398954f0f0c1447deb30ec136d3a | |
parent | f5a58c5eaa14f741cb582e9a1b2b60bcb9811c99 (diff) | |
download | webadmin-ccaca4003972445d8f3301ed670901da84e601ed.tar.gz |
Also translate the edit success notification
-rw-r--r-- | lib/client/kolab_client_task_group.php | 2 | ||||
-rw-r--r-- | lib/client/kolab_client_task_user.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/client/kolab_client_task_group.php b/lib/client/kolab_client_task_group.php index eb20069..0e04e4a 100644 --- a/lib/client/kolab_client_task_group.php +++ b/lib/client/kolab_client_task_group.php @@ -271,7 +271,7 @@ class kolab_client_task_group extends kolab_client_task $form->set_title(kolab_html::escape($title)); - $this->output->add_translation('group.add.success', 'group.delete.success'); + $this->output->add_translation('group.add.success', 'group.edit.success', 'group.delete.success'); return $form->output(); } diff --git a/lib/client/kolab_client_task_user.php b/lib/client/kolab_client_task_user.php index d1e5b9f..f4ef0ea 100644 --- a/lib/client/kolab_client_task_user.php +++ b/lib/client/kolab_client_task_user.php @@ -312,7 +312,7 @@ class kolab_client_task_user extends kolab_client_task $form->set_title(kolab_html::escape($title)); $this->output->add_translation('user.password.mismatch', - 'user.add.success', 'user.delete.success'); + 'user.add.success', 'user.edit.success', 'user.delete.success'); return $form->output(); } |