diff options
Diffstat (limited to 'plugins/LotusNotify')
-rw-r--r-- | plugins/LotusNotify/res/LotusNotify.rc | 2 | ||||
-rw-r--r-- | plugins/LotusNotify/src/LotusNotify.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/LotusNotify/res/LotusNotify.rc b/plugins/LotusNotify/res/LotusNotify.rc index 38293712de..8ef47ca09e 100644 --- a/plugins/LotusNotify/res/LotusNotify.rc +++ b/plugins/LotusNotify/res/LotusNotify.rc @@ -65,7 +65,7 @@ BEGIN LTEXT "Text",IDC_STATIC,91,89,41,8
EDITTEXT IDC_INTERVAL1,57,97,21,12,ES_AUTOHSCROLL | WS_GROUP
RTEXT "Close after:",IDC_STATIC,9,99,47,9
- LTEXT "sek.(0 default,\n -1 disabled)",IDC_STATIC,81,99,89,15
+ LTEXT "sec.(0 default,\n -1 disabled)",IDC_STATIC,81,99,89,15
CONTROL "...but only if popup not clicked",IDC_NONCLICKEDONLY,
"Button",BS_AUTOCHECKBOX | BS_LEFT | BS_PUSHLIKE |
WS_TABSTOP,177,80,130,10
diff --git a/plugins/LotusNotify/src/LotusNotify.cpp b/plugins/LotusNotify/src/LotusNotify.cpp index af50679f67..a848402e9d 100644 --- a/plugins/LotusNotify/src/LotusNotify.cpp +++ b/plugins/LotusNotify/src/LotusNotify.cpp @@ -75,9 +75,9 @@ int diffstat = 0; int startuperror = 0;
TCHAR *startuperrors[] = {
LPGENT("Unable to load all required Lotus API functions"),
- LPGENT("Lotus Notes Client not detected. Check plugin configuration descripted on install.txt"),
+ LPGENT("Lotus Notes Client not detected. Check plugin configuration description on install.txt"),
LPGENT("Unable to initialize Notes."),
- LPGENT("Lotus Notes Extension Manager was not registered. Authentication function will not work propertly"),
+ LPGENT("Lotus Notes Extension Manager was not registered. Authentication function will not work properly"),
LPGENT("In notes.ini file there is no required entry EXTMGR_ADDINS=plugindllnamewithout\".dll\"")
};
@@ -413,7 +413,7 @@ BOOL checkNotesIniFile(BOOL bInfo) return FALSE;
if(!settingIniAnswer || bInfo){
- switch(MessageBox(NULL, TranslateT("This utility check your notes.ini file if it's set to autenticate this plugin as safe. Plugin is not added as Lotus Extension, so plugin buildin authentication will not work propertly. Do you want to add Plugin as Lotus Extension (modify notes.ini by adding \"EXTMGR_ADDINS=PLUGINNAME\")?"), TranslateT("LotusNotify plugin configuration"), MB_YESNO))
+ switch(MessageBox(NULL, TranslateT("This utility check your notes.ini file if it's set to authenticate this plugin as safe. Plugin is not added as Lotus Extension, so plugin build-in authentication will not work properly. Do you want to add plugin as Lotus Extension (modify notes.ini by adding \"EXTMGR_ADDINS=PLUGINNAME\")?"), TranslateT("LotusNotify plugin configuration"), MB_YESNO))
{
case IDYES:
{
|