summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-07 02:46:59 +0200
committerGluzskiy Alexandr <sss@sss.chaoslab.ru>2011-11-07 02:46:59 +0200
commitd783b07eeb0776f3763e3ce8d725748b7290c257 (patch)
tree33434074e90e433bbdad1364901f1a832f4f807f /main.cpp
parent24f43db848336aec381d0d61f30e5ec067905e32 (diff)
removed old warning about gpg version
small ui corrections possible translation fixes
Diffstat (limited to 'main.cpp')
-rwxr-xr-x[-rw-r--r--]main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index e75ec4d..913ecbf 100644..100755
--- a/main.cpp
+++ b/main.cpp
@@ -1803,14 +1803,14 @@ void InitCheck()
mir_free(home_dir);
tmp_dir += _T("\\tmp");
_wmkdir(tmp_dir.c_str());
- string question = "Your secret key whith id: ";
+ string question = Translate("Your secret key whith id: ");
char *keyid = UniGetContactSettingUtf(NULL, szGPGModuleName, "KeyID", "");
question += keyid;
mir_free(keyid);
- question += " deleted from gpg secret keyring\nDo you want to set another key ?";
+ question += Translate(" deleted from gpg secret keyring\nDo you want to set another key ?");
void ShowFirstRunDialog();
if(out.find(keyid) == string::npos)
- if(MessageBoxA(0, question.c_str(), "Own secret key warning", MB_YESNO) == IDYES)
+ if(MessageBoxA(0, question.c_str(), Translate("Own secret key warning"), MB_YESNO) == IDYES)
ShowFirstRunDialog();
}
{