diff options
| author | 2016-03-02 08:59:50 +0000 | |
|---|---|---|
| committer | 2016-03-02 08:59:50 +0000 | |
| commit | 2dd38adea73a5bc240d6d215a0ce5047d707b4fc (patch) | |
| tree | 0eaf7d07f6363d7ba75905166756e409498f32dd /src/modules/theme | |
| parent | - tweak a string to not use a xgettext string, we escape % everywhere so prob... (diff) | |
| download | KVIrc-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
Diffstat (limited to 'src/modules/theme')
| -rw-r--r-- | src/modules/theme/libkvitheme.cpp | 4 |
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; } |
