1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-08-28 17:55:03 +02:00

Fix copy and paste error on activity descriptions

Signed-off-by: Joas Schilling <coding@schilljs.com>
Dieser Commit ist enthalten in:
Joas Schilling 2017-07-20 09:31:14 +02:00
Ursprung 5e468c0bba
Commit 0b3266531b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E166FD8976B3BAC8
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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