chore(translations): updating pot -> po -> json files (babel 2.9.1) (#26773)

This commit is contained in:
Evan Rusackas
2024-02-13 08:47:15 -07:00
committed by GitHub
parent 4796484190
commit 91ac575eab
38 changed files with 382021 additions and 376044 deletions

View File

@@ -59,7 +59,8 @@ class DeleteDatabaseCommand(BaseCommand):
if reports := ReportScheduleDAO.find_by_database_id(self._model_id):
report_names = [report.name for report in reports]
raise DatabaseDeleteFailedReportsExistError(
_(f"There are associated alerts or reports: {','.join(report_names)}")
_("There are associated alerts or reports: %(report_names)s")
% {"report_names": ",".join(report_names)}
)
# Check if there are datasets for this database
if self._model.tables: