From 4d4f11c4792bd67656518f489aca8390e993c9a3 Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 9 Mar 2025 09:16:37 +0100 Subject: [PATCH] feat: Make string translatable --- src/fellchensammlung/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index 6c83d46..55392d0 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -149,7 +149,7 @@ class RescueOrganization(models.Model): if self.description is None: return "" if len(self.description) > 200: - return self.description[:200] + f" ... [weiterlesen]({self.get_absolute_url()})" + return self.description[:200] + _(f" ... [weiterlesen]({self.get_absolute_url()})") # Admins can perform all actions and have the highest trust associated with them