diff options
author | George Hazan <george.hazan@gmail.com> | 2024-01-09 19:30:02 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-01-09 19:30:02 +0300 |
commit | c34bfae80508daf3604b88acbcf5a9f7589d67a9 (patch) | |
tree | ae2a91b6ab512175452d12f2bb1c292b14eb160a /plugins | |
parent | 011bae9d09a8248168a68a0c17e786df22ab1b00 (diff) |
fixes #4112 completely
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index 388a027732..4ce49fbd20 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -828,7 +828,7 @@ public: { auto *pDriver = GetDatabasePlugin("JSON"); if (pDriver == nullptr) { - CMStringW wszText(TranslateT("Import plugin is missing to perform this operation.")); + CMStringW wszText(TranslateT("The required plugin 'Import' isn't loaded to perform this operation.")); if (ServiceExists(MS_PU_SHOWLIST)) { wszText.AppendFormat(L" %s", TranslateT("Do you want to install it using Plugin Updater?")); if (IDYES == MessageBoxW(m_hwnd, wszText, TranslateT("Missing plugin"), MB_YESNO | MB_ICONQUESTION)) |