Merge pull request #5801 from nextcloud/activity-description-copy-paste

Fix copy and paste error on activity descriptions
This commit is contained in:
Morris Jobke 2017-07-20 13:08:44 +02:00 committed by GitHub
commit 4826fd701d
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ class FileDeleted implements ISetting {
* @since 11.0.0
*/
public function getName() {
return $this->l->t('A new file or folder has been <strong>deleted</strong>');
return $this->l->t('A file or folder has been <strong>deleted</strong>');
}
/**

View file

@ -50,7 +50,7 @@ class FileRestored implements ISetting {
* @since 11.0.0
*/
public function getName() {
return $this->l->t('A new file or folder has been <strong>restored</strong>');
return $this->l->t('A file or folder has been <strong>restored</strong>');
}
/**