summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <ramiro@users.noreply.github.com>2019-10-01 07:42:07 -0300
committerGitHub <noreply@github.com>2019-10-01 07:42:07 -0300
commit6df5931c764b0b52e3584ed9453909a48d96c893 (patch)
treea10c72c1b3b7ab8b5a997a09208ed2b3bcf329dc
parente1c1eaf0c6f4d3d2f60513d20aa9b84b17d096ec (diff)
downloaddjango-swap-closing-quote-period-in-admin-i18nable-literal.tar.gz
Fixed misplaced period in translatable literal.swap-closing-quote-period-in-admin-i18nable-literal
Thanks to translator Vláďa Macek (@tottle) who reported this on Transifex.
-rw-r--r--django/contrib/admin/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/models.py b/django/contrib/admin/models.py
index 0b2b779d7a..e7ceae0ec4 100644
--- a/django/contrib/admin/models.py
+++ b/django/contrib/admin/models.py
@@ -80,7 +80,7 @@ class LogEntry(models.Model):
'changes': self.get_change_message(),
}
elif self.is_deletion():
- return gettext('Deleted “%(object)s.”') % {'object': self.object_repr}
+ return gettext('Deleted “%(object)s”.') % {'object': self.object_repr}
return gettext('LogEntry Object')