From bd7fd006078cd2c06018b5f6413d239ca1dcc807 Mon Sep 17 00:00:00 2001 From: anothersimulacrum Date: Sun, 31 Jul 2022 00:31:33 +0000 Subject: [PATCH] Translate radio onomatopoeia --- src/iuse.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/iuse.cpp b/src/iuse.cpp index 95fea5a49a8b7..b507245f43819 100644 --- a/src/iuse.cpp +++ b/src/iuse.cpp @@ -2495,7 +2495,8 @@ cata::optional iuse::radio_on( Character *p, item *it, bool t, const tripoi } const city *c = overmap_buffer.closest_city( tripoint_abs_sm( tref.abs_sm_pos, 0 ) ).city; - const std::string cityname = c == nullptr ? "ksssh" : c->name; + //~ radio noise + const std::string cityname = c == nullptr ? _( "ksssh" ) : c->name; replace_city_tag( message, cityname ); int static_chance = radio_static_chance( tref );