diff options
-rw-r--r-- | settings/ajax/removegroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/removegroup.php b/settings/ajax/removegroup.php index cd1b8faf263..33e1a514c88 100644 --- a/settings/ajax/removegroup.php +++ b/settings/ajax/removegroup.php @@ -13,5 +13,5 @@ if( OC_Group::deleteGroup( $name )) { OC_JSON::success(array("data" => array( "groupname" => $name ))); } else{ - OC_JSON::error(array("data" => array( "message" => "Unable to delete group" ))); + OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete group") ))); } |