diff options
author | Mai M <mathew1800@gmail.com> | 2022-06-11 13:19:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 13:19:18 -0400 |
commit | d796341d3395224efac3959d1b03c9f5c50f6ef9 (patch) | |
tree | 7e5f781f4e505c717560f5c867b1c5f8ccad5659 /src/yuzu/game_list.cpp | |
parent | 5282efac1b2a875ab3ea81b4ea21efdcac4e8d51 (diff) | |
parent | 2ff606628cf1393d85fb51060a296bceb4d29bfd (diff) |
Merge pull request #8449 from Docteh/translate_placeholder
retranslate the game list placeholder
Diffstat (limited to 'src/yuzu/game_list.cpp')
-rw-r--r-- | src/yuzu/game_list.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index d13530a5b..6321afc83 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -870,7 +870,7 @@ GameListPlaceholder::GameListPlaceholder(GMainWindow* parent) : QWidget{parent} layout->setAlignment(Qt::AlignCenter); image->setPixmap(QIcon::fromTheme(QStringLiteral("plus_folder")).pixmap(200)); - text->setText(tr("Double-click to add a new folder to the game list")); + RetranslateUI(); QFont font = text->font(); font.setPointSize(20); text->setFont(font); @@ -891,3 +891,15 @@ void GameListPlaceholder::onUpdateThemedIcons() { void GameListPlaceholder::mouseDoubleClickEvent(QMouseEvent* event) { emit GameListPlaceholder::AddDirectory(); } + +void GameListPlaceholder::changeEvent(QEvent* event) { + if (event->type() == QEvent::LanguageChange) { + RetranslateUI(); + } + + QWidget::changeEvent(event); +} + +void GameListPlaceholder::RetranslateUI() { + text->setText(tr("Double-click to add a new folder to the game list")); +} |