diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-31 11:18:41 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-31 11:18:41 +0000 |
commit | 934e05b8ef177d9a329133f4537e0c68acf39e18 (patch) | |
tree | dcfec72f345d4ee53e8f468919b85b816b6611fb /plugins/Boltun | |
parent | cd15bdeb56eeb8135ad3ac162d10cb5d7d19f9ce (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3378 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Boltun')
-rw-r--r-- | plugins/Boltun/src/boltun.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/Boltun/src/boltun.h b/plugins/Boltun/src/boltun.h index dc0cdcdb22..5bc0d26f29 100644 --- a/plugins/Boltun/src/boltun.h +++ b/plugins/Boltun/src/boltun.h @@ -50,23 +50,23 @@ //Plugin name
#define BOLTUN_NAME "Boltun"
-#define MIND_FILE_DESC _T("Mind Files")
-#define ALL_FILES_DESC _T("All Files")
+#define MIND_FILE_DESC LPGENT("Mind Files")
+#define ALL_FILES_DESC LPGENT("All Files")
//UI strings
-#define BOLTUN_AUTO_CHAT "Boltun/Auto Chat"
-#define BOLTUN_NOT_TO_CHAT "Boltun/Not to Chat"
-#define BOLTUN_START_CHATTING "Boltun/Start Chatting"
+#define BOLTUN_AUTO_CHAT LPGEN("Boltun/Auto Chat")
+#define BOLTUN_NOT_TO_CHAT LPGEN("Boltun/Not to Chat")
+#define BOLTUN_START_CHATTING LPGEN("Boltun/Start Chatting")
-#define DEFAULT_WARN_TEXT _T("Hello. I'm Boltun! I'll talk to you, while my owner is away. Please write without mistakes!")
+#define DEFAULT_WARN_TEXT LPGENT("Hello. I'm Boltun! I'll talk to you, while my owner is away. Please write without mistakes!")
// Error messages
-#define BOLTUN_ERROR _T("Boltun Error")
-#define FAILED_TO_LOAD_BASE _T("Failed to load base of remarks. Error at line %d of %s. (Or few lines before).")
-#define FAILED_TO_SAVE_BASE _T("Failed to save base of remarks to %s")
+#define BOLTUN_ERROR LPGENT("Boltun Error")
+#define FAILED_TO_LOAD_BASE LPGENT("Failed to load base of remarks. Error at line %d of %s. (Or few lines before).")
+#define FAILED_TO_SAVE_BASE LPGENT("Failed to save base of remarks to %s")
//Settings tab names
-#define TAB_GENERAL "General Settings"
-#define TAB_ENGINE "Engine Settings"
+#define TAB_GENERAL LPGEN("General Settings")
+#define TAB_ENGINE LPGEN("Engine Settings")
#endif /*_BOLTUN_H*/
|