aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme/ThemeManagementDialog.cpp
diff options
context:
space:
mode:
authorGravatar Alexey Sokolov2015-12-29 22:59:42 +0000
committerGravatar Alexey Sokolov2015-12-29 23:03:25 +0000
commit1439f7c04a2a256861581139d7bf593a8c998802 (patch)
treed7720aa29665fc31d249c2535348e9a48ccf3be2 /src/modules/theme/ThemeManagementDialog.cpp
parentMerge pull request #1796 from TheReign/phonon_deprecated (diff)
downloadKVIrc-1439f7c04a2a256861581139d7bf593a8c998802.tar.gz
KVIrc-1439f7c04a2a256861581139d7bf593a8c998802.tar.bz2
KVIrc-1439f7c04a2a256861581139d7bf593a8c998802.zip
Make the current theme string to be more translatable
Diffstat (limited to 'src/modules/theme/ThemeManagementDialog.cpp')
-rw-r--r--src/modules/theme/ThemeManagementDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/theme/ThemeManagementDialog.cpp b/src/modules/theme/ThemeManagementDialog.cpp
index fe5b58249..60447417b 100644
--- a/src/modules/theme/ThemeManagementDialog.cpp
+++ b/src/modules/theme/ThemeManagementDialog.cpp
@@ -370,7 +370,7 @@ void ThemeManagementDialog::applyCurrentTheme()
return;
}
- m_pCurrentInstalledThemeLabel->setText(__tr2qs_ctx("<b><u>Current Installed Theme:</u> ","theme")+KVI_OPTION_STRING(KviOption_stringIconThemeSubdir)+"</b>");
+ m_pCurrentInstalledThemeLabel->setText(QString(__tr2qs_ctx("<b><u>Current Installed Theme:</u> %1</b>","theme")).arg(KVI_OPTION_STRING(KviOption_stringIconThemeSubdir)));
m_pItemDelegate->setDefaultIcon(g_pIconManager->getBigIcon(QString(KVI_BIGICON_THEME))->scaled(64,64,Qt::KeepAspectRatio));
}