]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update settings/ajax/creategroup.php
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:48:42 +0000 (12:48 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:48:42 +0000 (12:48 +0300)
$l->t added to error messages

settings/ajax/creategroup.php

index 1307e18559a699f8c0abf824ed71490872afec17..83733ac4d2d58c130f447504b07bf5c02c6cb85d 100644 (file)
@@ -6,7 +6,7 @@ OCP\JSON::callCheck();
 
 // Check if we are a user
 if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )) {
-       OC_JSON::error(array("data" => array( "message" => "Authentication error" )));
+       OC_JSON::error(array("data" => array( "message" => $l->t("Authentication error") )));
        exit();
 }
 
@@ -16,7 +16,7 @@ $groupname = $_POST["groupname"];
 
 // Does the group exist?
 if( in_array( $groupname, OC_Group::getGroups())) {
-       OC_JSON::error(array("data" => array( "message" => "Group already exists" )));
+       OC_JSON::error(array("data" => array( "message" => $l->t("Group already exists") )));
        exit();
 }
 
@@ -25,5 +25,5 @@ if( OC_Group::createGroup( $groupname )) {
        OC_JSON::success(array("data" => array( "groupname" => $groupname )));
 }
 else{
-       OC_JSON::error(array("data" => array( "message" => "Unable to add group" )));
+       OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") )));
 }