aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/theme/ThemeFunctions.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2016-01-12 02:35:13 +0000
committerGravatar un1versal2016-01-17 06:01:54 +0000
commit034ec9e19be0b6a5d9225f12a3fea2678afe1fd9 (patch)
treec7497a8fb6015bc594248211cc5fe1761f432dfb /src/modules/theme/ThemeFunctions.cpp
parentThemeFunctions: fix "Theme Engine Version" label capitalization (diff)
downloadKVIrc-034ec9e19be0b6a5d9225f12a3fea2678afe1fd9.tar.gz
KVIrc-034ec9e19be0b6a5d9225f12a3fea2678afe1fd9.tar.bz2
KVIrc-034ec9e19be0b6a5d9225f12a3fea2678afe1fd9.zip
ThemeFunctions: fix messages on theme installer
when installing lower version themes engine on newer KVIrc with greater theme engine version known issue: does not account account for greater engine version themes on kvirc with lower theme engine version
Diffstat (limited to 'src/modules/theme/ThemeFunctions.cpp')
-rw-r--r--src/modules/theme/ThemeFunctions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/theme/ThemeFunctions.cpp b/src/modules/theme/ThemeFunctions.cpp
index 153ac1368..2e7d7444f 100644
--- a/src/modules/theme/ThemeFunctions.cpp
+++ b/src/modules/theme/ThemeFunctions.cpp
@@ -213,7 +213,7 @@ namespace ThemeFunctions
if(!bValid)
{
szDetails += "<p><center><font color=\"#ff0000\"><b>";
- szDetails += __tr2qs_ctx("Warning: The theme might be incompatible with this version of KVIrc","theme");
+ szDetails += __tr2qs_ctx("Warning: this theme might be incompatible with this version of KVIrc","theme");
szDetails += "</b></font></center></p>";
iValidThemeCount--;
}
@@ -229,7 +229,7 @@ namespace ThemeFunctions
if(iValidThemeCount < iThemeCount)
{
szWarnings += "<p><center><font color=\"#ff0000\"><b>";
- szWarnings += __tr2qs_ctx("Warning: Some of the theme contained in this package might be either corrupted or incompatible with this version of KVIrc","theme");
+ szWarnings += __tr2qs_ctx("Warning: the theme contained in this package might be either corrupted or incompatible with this version of KVIrc","theme");
szWarnings += "</b></font></center></p>";
}