
All values on this (probably) mail template seems like default values. The trans() helper call happens here. The notification subject also did not get translated?
->subject(trans('backup::notifications.backup_successful_subject', ['application_name' => $this->applicationName()]))
->line(trans('backup::notifications.backup_successful_body', ['application_name' => $this->applicationName(), 'disk_name' => $this->diskName()]));
Saw by your profile that you're from Vi峄噒 Nam. At the moment laravel-backup does not have a vietnamese (vi) language file. Maybe check the values for locale and fallback_locale at your config/app.php.
In that case it would be great to be able to specify in config/backup.php what language to use (that is supported by the package) instead of defaulting to the app locale.
Most helpful comment
All values on this (probably) mail template seems like default values. The
trans()helper call happens here. The notification subject also did not get translated?Saw by your profile that you're from Vi峄噒 Nam. At the moment
laravel-backupdoes not have a vietnamese (vi) language file. Maybe check the values forlocaleandfallback_localeat yourconfig/app.php.