l10n support enhanced in files_versions

This commit is contained in:
Thomas Mueller 2013-02-07 16:34:57 +01:00
parent 18a288a3c3
commit e0212c1174
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ if(OCA\Files_Versions\Storage::rollback( $file, $revision )) {
OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file )));
}else{
$l = OC_L10N::get('files_versions');
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", $file ))));
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) ))));
}