Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
003161d8 by cal0pteryx at 2026-04-04T23:22:08+02:00
cq: Activity list: Improve string placeholders for translation

- - - - -


1 changed file:

- gajim/gtk/activity_list.py


Changes:

=====================================
gajim/gtk/activity_list.py
=====================================
@@ -784,7 +784,10 @@ def from_event(cls, event: events.ReactionUpdated) -> 
Reaction:
                 event.jid, event.occupant, AvatarSize.ROSTER, scale
             )
             nickname = event.occupant.nickname
-            title = _("Reaction from %s (%s)") % (nickname, groupchat_name)
+            title = _("Reaction from %(nickname)s (%(chat)s)") % {
+                "nickname": nickname,
+                "chat": groupchat_name,
+            }
 
         else:
             contact = client.get_module("Contacts").get_contact(event.jid)



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/003161d8e4442d3ab6e12dcad8c76d4aa9815ca6

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/003161d8e4442d3ab6e12dcad8c76d4aa9815ca6
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to