1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-08-19 14:11:30 +02:00

l10n support enhanced in files_versions

Cette révision appartient à :
Thomas Mueller 2013-02-07 16:34:57 +01:00
Parent 18a288a3c3
révision e0212c1174

Voir le fichier

@ -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) ))));
}