From c069bf41c917fc32f77932e222828f7e43521d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Fri, 27 Dec 2024 01:23:01 +0100 Subject: [PATCH] fix missing placeholder replacement --- src/c3nav/mapdata/quests/positioning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c3nav/mapdata/quests/positioning.py b/src/c3nav/mapdata/quests/positioning.py index 88af775a..9bc5d3ac 100644 --- a/src/c3nav/mapdata/quests/positioning.py +++ b/src/c3nav/mapdata/quests/positioning.py @@ -90,7 +90,7 @@ class RangingBeaconBSSIDsQuest(Quest): def quest_description(self) -> list[str]: return [ _("This quest only works in the app. It works fully automatically."), - _("We are trying to find the BSSIDs broadcast by “%s”."), + _("We are trying to find the BSSIDs broadcast by “%s”.") % self.obj.title, _("Please stand near “%s” and wait for the submit button to appear.") % self.obj.title, _("This should happen within less than a minute."), ]