Update UserFollow.php

This commit is contained in:
Lucas Bartholemy 2022-11-14 12:28:17 +01:00 committed by GitHub
parent 0f02242b4d
commit 1ce9d29c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ class UserFollow extends BaseActivity implements ConfigurableActivityInterface
*/
public function getTitle()
{
return Yii::t('UserModule.activities', 'Following (User)');
return Yii::t('UserModule.base', 'Following (User)');
}
/**
@ -57,6 +57,6 @@ class UserFollow extends BaseActivity implements ConfigurableActivityInterface
*/
public function getDescription()
{
return Yii::t('UserModule.activities', 'Whenever a user follows another user.');
return Yii::t('UserModule.base', 'Whenever a user follows another user.');
}
}