diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-19 19:20:04 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-09-19 19:20:04 +0000 |
commit | e87725cb4be71a58c0ddf4d0b0b6d92b8cc47d7b (patch) | |
tree | 275c5dae01347923c25d712ef54d126d5323d560 /plugins | |
parent | 739d6ef6099b31871cc335417c4e5d01b38f02ac (diff) |
SendSS: Translations
git-svn-id: http://svn.miranda-ng.org/main/trunk@15403 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UMainForm.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/SendScreenshotPlus/src/UMainForm.cpp b/plugins/SendScreenshotPlus/src/UMainForm.cpp index 2be98f8a58..eccc357e9b 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.cpp +++ b/plugins/SendScreenshotPlus/src/UMainForm.cpp @@ -984,16 +984,15 @@ INT_PTR TfrmMain::SaveScreenshot(FIBITMAP* dib) //Generate a description according to the screenshot - TCHAR winText[1024]; - GetDlgItemText(m_hwndTabPage, ID_edtCaption, winText, _countof(winText)); - - CMString tszFileDesc; if (m_opt_tabCapture) - tszFileDesc.Format(TranslateT("Screenshot of \"%s\""), winText); + tszFileDesc.Format(TranslateT("Screenshot of entire desktop")); else { + TCHAR winText[1024]; + GetDlgItemText(m_hwndTabPage, ID_edtCaption, winText, _countof(winText)); + if (m_opt_chkClientArea) tszFileDesc.Format(TranslateT("Screenshot for client area of \"%s\" window"), winText); else |