From e269c5a72db6605982b2cf3517c6381e378a44af Mon Sep 17 00:00:00 2001 From: Alayan-stk-2 Date: Mon, 17 Sep 2018 02:32:46 +0200 Subject: [PATCH] Fix #3442 --- src/states_screens/options/options_screen_ui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/states_screens/options/options_screen_ui.cpp b/src/states_screens/options/options_screen_ui.cpp index 8187909e8..e9dd46e88 100644 --- a/src/states_screens/options/options_screen_ui.cpp +++ b/src/states_screens/options/options_screen_ui.cpp @@ -162,7 +162,8 @@ void OptionsScreenUI::init() CheckBoxWidget* difficulty = getWidget("perPlayerDifficulty"); assert( difficulty != NULL ); difficulty->setState( UserConfigParams::m_per_player_difficulty ); - difficulty->setTooltip(_("In multiplayer mode, players can select handicapped (more difficult) profiles on the kart selection screen")); + // I18N: Tooltip in the UI menu. Use enough linebreaks to make sure the text fits the screen in low resolutions. + difficulty->setTooltip(_("In multiplayer mode, players can select handicapped\n(more difficult) profiles on the kart selection screen")); CheckBoxWidget* show_login = getWidget("show-login"); assert( show_login!= NULL ); @@ -326,4 +327,3 @@ void OptionsScreenUI::unloaded() } // unloaded // ----------------------------------------------------------------------------- -