$('#notification').html(t('files','replaced {new_name} with {old_name}',{new_name:newName},{old_name:oldName})+'<span class="undo">'+t('files','undo')+'</span>');
}
$('#notification').fadeIn();
},
@ -272,9 +272,9 @@ var FileList={
}else{
// NOTE: Temporary fix to change the text to unshared for files in root of Shared folder
html+='<span class="reshare">'+t('core','Shared with you and the group')+' '+data.reshare.share_with+' '+t('core','by')+' '+data.reshare.uid_owner+'</span>';
html+='<span class="reshare">'+t('core','Shared with you and the group {group} by {owner}',{group:data.reshare.share_with,owner:data.reshare.uid_owner})+'</span>';
}else{
html+='<span class="reshare">'+t('core','Shared with you by')+' '+data.reshare.uid_owner+'</span>';
html+='<span class="reshare">'+t('core','Shared with you by {owner}',{owner:data.reshare.uid_owner})+'</span>';