mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
DolphinQt2: Remove the %1 from "%1 Banner Details"
It's not particularily useful to list the platform here, and these kinds of messages that use words as parameters are more likely to be mistranslated than the average string.
This commit is contained in:
@ -60,7 +60,7 @@ QGroupBox* InfoWidget::CreateISODetails()
|
|||||||
|
|
||||||
QGroupBox* InfoWidget::CreateBannerDetails()
|
QGroupBox* InfoWidget::CreateBannerDetails()
|
||||||
{
|
{
|
||||||
QGroupBox* group = new QGroupBox(tr("%1 Banner Details").arg(m_game.GetPlatform()));
|
QGroupBox* group = new QGroupBox(tr("Banner Details"));
|
||||||
QFormLayout* layout = new QFormLayout;
|
QFormLayout* layout = new QFormLayout;
|
||||||
|
|
||||||
m_long_name = CreateValueDisplay();
|
m_long_name = CreateValueDisplay();
|
||||||
|
Reference in New Issue
Block a user