diff --git a/src/modules/locale/Config.cpp b/src/modules/locale/Config.cpp index 92f38cd5a..b2ef0e890 100644 --- a/src/modules/locale/Config.cpp +++ b/src/modules/locale/Config.cpp @@ -378,12 +378,7 @@ Config::currentLocationStatus() const { if ( m_currentLocation ) { - // See currentTimezoneName() which constructs the name with / - const auto region = m_regionModel->translated( m_currentLocation->region() ); - const auto zone = m_currentLocation->translated(); - - // TODO: 3.4 Use currentTimezoneName() and drop /%2 - return tr( "Set timezone to %1/%2", "@action" ).arg( region, zone ); + return tr( "Set timezone to %1.", "@action" ).arg( currentTimezoneName()); } return QString(); }