diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-07 23:57:18 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-07 23:57:18 +0100 |
commit | b67251b0ffbba5d52802ced8e1ff02f408be8cc7 (patch) | |
tree | f1f72008b1ecaf6e3e1bae649a078b8414f9b28d /apps/files/ajax/move.php | |
parent | fc7230349b6028184b21b229ef5873ea8b7aa99a (diff) | |
download | nextcloud-server-b67251b0ffbba5d52802ced8e1ff02f408be8cc7.tar.gz nextcloud-server-b67251b0ffbba5d52802ced8e1ff02f408be8cc7.zip |
Files: add translation support back to move/rename
Diffstat (limited to 'apps/files/ajax/move.php')
-rw-r--r-- | apps/files/ajax/move.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 78ed218c136..03d2a6a5624 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -12,7 +12,7 @@ $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; } @@ -22,8 +22,8 @@ if ($dir != '' || $file != 'Shared') { if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } }else{ - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } |