diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log
index 240abf38..5cc945a5 100644
--- a/PowerEditor/bin/change.log
+++ b/PowerEditor/bin/change.log
@@ -1,6 +1,6 @@
Notepad++ v6.9.2 new features and bug-fixes:
-1. Add most wanted feature: Log Mornitoring (tail -f).
+1. Add most wanted feature: Log Monitoring (tail -f).
2. Add new feature: Find in Finder.
3. Fix status bar display bug in high dpi environment.
4. Fix open in explorer problem while path contain unusual characters.
diff --git a/PowerEditor/installer/nativeLang/polish.xml b/PowerEditor/installer/nativeLang/polish.xml
index 4f6e91c3..eb3786a0 100644
--- a/PowerEditor/installer/nativeLang/polish.xml
+++ b/PowerEditor/installer/nativeLang/polish.xml
@@ -290,7 +290,7 @@
-
+
@@ -803,7 +803,7 @@
-
+
@@ -849,6 +849,7 @@
+
diff --git a/PowerEditor/installer/nativeLang/turkish.xml b/PowerEditor/installer/nativeLang/turkish.xml
index 66ed5f44..a2f94bb4 100644
--- a/PowerEditor/installer/nativeLang/turkish.xml
+++ b/PowerEditor/installer/nativeLang/turkish.xml
@@ -86,7 +86,8 @@
-
+
+
@@ -848,6 +849,7 @@
+
diff --git a/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp b/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp
index c08b5fa0..76c76930 100644
--- a/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp
+++ b/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp
@@ -470,10 +470,10 @@ void PluginsManager::notify(const SCNotification *notification)
}
catch (...)
{
- TCHAR funcInfo[128];
+ TCHAR funcInfo[256];
generic_sprintf(funcInfo, TEXT("notify(SCNotification *notification) : \r notification->nmhdr.code == %d\r notification->nmhdr.hwndFrom == %p\r notification->nmhdr.idFrom == %d"),\
scNotif.nmhdr.code, scNotif.nmhdr.hwndFrom, scNotif.nmhdr.idFrom);
- pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), funcInfo);
+ pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo);
}
}
}
@@ -498,7 +498,7 @@ void PluginsManager::relayNppMessages(UINT Message, WPARAM wParam, LPARAM lParam
{
TCHAR funcInfo[128];
generic_sprintf(funcInfo, TEXT("relayNppMessages(UINT Message : %d, WPARAM wParam : %d, LPARAM lParam : %d)"), Message, wParam, lParam);
- pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), TEXT(""));
+ pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo);
}
}
}
@@ -529,7 +529,7 @@ bool PluginsManager::relayPluginMessages(UINT Message, WPARAM wParam, LPARAM lPa
{
TCHAR funcInfo[128];
generic_sprintf(funcInfo, TEXT("relayPluginMessages(UINT Message : %d, WPARAM wParam : %d, LPARAM lParam : %d)"), Message, wParam, lParam);
- pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), funcInfo);
+ pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo);
}
return true;
}
diff --git a/PowerEditor/src/MISC/PluginsManager/PluginsManager.h b/PowerEditor/src/MISC/PluginsManager/PluginsManager.h
index eaef46dc..9eb95822 100644
--- a/PowerEditor/src/MISC/PluginsManager/PluginsManager.h
+++ b/PowerEditor/src/MISC/PluginsManager/PluginsManager.h
@@ -142,9 +142,9 @@ private:
void pluginCrashAlert(const TCHAR *pluginName, const TCHAR *funcSignature)
{
generic_string msg = pluginName;
- msg += TEXT(" just crash in\r");
+ msg += TEXT(" just crashed in\r");
msg += funcSignature;
- ::MessageBox(NULL, msg.c_str(), TEXT(" just crash in\r"), MB_OK|MB_ICONSTOP);
+ ::MessageBox(NULL, msg.c_str(), TEXT("Plugin Crash"), MB_OK|MB_ICONSTOP);
}
bool isInLoadedDlls(const TCHAR *fn) const