aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar un1versal2016-03-02 08:59:50 +0000
committerGravatar un1versal2016-03-02 08:59:50 +0000
commit2dd38adea73a5bc240d6d215a0ce5047d707b4fc (patch)
tree0eaf7d07f6363d7ba75905166756e409498f32dd
parent- tweak a string to not use a xgettext string, we escape % everywhere so prob... (diff)
downloadKVIrc-2dd38adea73a5bc240d6d215a0ce5047d707b4fc.tar.gz
KVIrc-2dd38adea73a5bc240d6d215a0ce5047d707b4fc.tar.bz2
KVIrc-2dd38adea73a5bc240d6d215a0ce5047d707b4fc.zip
libkvitheme: improve error message and fix dialog title
apologies @ctrlaltca @Dessa didn't do this on purpose, if you curse and swear at me, wouldn't blame you :D
-rw-r--r--src/modules/theme/libkvitheme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/theme/libkvitheme.cpp b/src/modules/theme/libkvitheme.cpp
index f4e493a29..0058de20e 100644
--- a/src/modules/theme/libkvitheme.cpp
+++ b/src/modules/theme/libkvitheme.cpp
@@ -203,7 +203,7 @@ static bool theme_kvs_cmd_screenshot(KviKvsModuleCommandCall * c)
bool bResult = KviFileDialog::askForSaveFileName(
szTmp,
- __tr2qs_ctx("Choose a Filename to Save the Screenshot to","theme"),
+ __tr2qs_ctx("Enter a Filename - KVIrc","theme"), //dialog header title
szFileName,
"*.png",
false,
@@ -230,7 +230,7 @@ static bool theme_kvs_cmd_screenshot(KviKvsModuleCommandCall * c)
QString szError;
if(!ThemeFunctions::makeKVIrcScreenshot(szFileName))
{
- c->error(__tr2qs_ctx("Error making screenshot","theme")); // FIXME: a nicer error ?
+ c->error(__tr2qs_ctx("Error capturing and saving screenshot!","theme"));
return false;
}