summaryrefslogtreecommitdiffstats
path: root/settings/ajax/changepassword.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-06-20 14:51:33 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-06-20 14:51:33 +0200
commit4c1d3155a3ee4ddb48a0bb4281fe74391db1f016 (patch)
tree67630ddb4253bc68f819d648be34b5c84484c13d /settings/ajax/changepassword.php
parent76b12c4ae0ea9941b030f0a13786d0ac3fc32f76 (diff)
downloadnextcloud-server-4c1d3155a3ee4ddb48a0bb4281fe74391db1f016.tar.gz
nextcloud-server-4c1d3155a3ee4ddb48a0bb4281fe74391db1f016.zip
make personal settings translatable
Diffstat (limited to 'settings/ajax/changepassword.php')
-rw-r--r--settings/ajax/changepassword.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php
index 1a9ad73610e..f568d3ef876 100644
--- a/settings/ajax/changepassword.php
+++ b/settings/ajax/changepassword.php
@@ -3,33 +3,35 @@
// Init owncloud
require_once('../../lib/base.php');
+$l=new OC_L10N('settings');
+
// We send json data
header( "Content-Type: application/jsonrequest" );
// Check if we are a user
if( !OC_USER::isLoggedIn()){
- echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
+ echo json_encode( array( "status" => "error", "data" => array( "message" => $l->t( "Authentication error" ) )));
exit();
}
// Get data
if( !isset( $_POST["password"] ) && !isset( $_POST["oldpassword"] )){
- echo json_encode( array( "status" => "error", "data" => array( "message" => "You have to enter the old and the new password!" )));
+ echo json_encode( array( "status" => "error", "data" => array( "message" => $l->t( "You have to enter the old and the new password!" ) )));
exit();
}
// Check if the old password is correct
if( !OC_USER::checkPassword( $_SESSION["user_id"], $_POST["oldpassword"] )){
- echo json_encode( array( "status" => "error", "data" => array( "message" => "Your old password is wrong!" )));
+ echo json_encode( array( "status" => "error", "data" => array( "message" => $l->t("Your old password is wrong!") )));
exit();
}
// Change password
if( OC_USER::setPassword( $_SESSION["user_id"], $_POST["password"] )){
- echo json_encode( array( "status" => "success", "data" => array( "message" => "Password changed" )));
+ echo json_encode( array( "status" => "success", "data" => array( "message" => $l->t("Password changed") )));
}
else{
- echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to change password" )));
+ echo json_encode( array( "status" => "error", "data" => array( "message" => $l->t("Unable to change password") )));
}
?>