From 2b713fb75b5f72f2d3e53a1a70a9d59b2124f830 Mon Sep 17 00:00:00 2001 From: Don HO Date: Mon, 11 May 2020 18:21:49 +0200 Subject: [PATCH] Reword some labels in Find & Replace Dialog Close #4283 --- PowerEditor/installer/nativeLang/english.xml | 2 +- PowerEditor/installer/nativeLang/english_customizable.xml | 2 +- PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PowerEditor/installer/nativeLang/english.xml b/PowerEditor/installer/nativeLang/english.xml index a908f4cbb..3a39ce6b3 100644 --- a/PowerEditor/installer/nativeLang/english.xml +++ b/PowerEditor/installer/nativeLang/english.xml @@ -1230,7 +1230,7 @@ Find in all files except exe, obj && log: - + diff --git a/PowerEditor/installer/nativeLang/english_customizable.xml b/PowerEditor/installer/nativeLang/english_customizable.xml index 8eafb6d98..4c2dd824d 100644 --- a/PowerEditor/installer/nativeLang/english_customizable.xml +++ b/PowerEditor/installer/nativeLang/english_customizable.xml @@ -1230,7 +1230,7 @@ Find in all files except exe, obj && log: - + diff --git a/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp b/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp index 918f186f4..5f81e7406 100644 --- a/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp +++ b/PowerEditor/src/ScitillaComponent/FindReplaceDlg.cpp @@ -1796,9 +1796,9 @@ bool FindReplaceDlg::processReplace(const TCHAR *txt2find, const TCHAR *txt2repl { generic_string msg; if (moreMatches) - msg = pNativeSpeaker->getLocalizedStrFromID("find-status-replaced-next-found", TEXT("Replace: 1 occurrence was replaced. The next occurrence found")); + msg = pNativeSpeaker->getLocalizedStrFromID("find-status-replaced-next-found", TEXT("Replace: 1 occurrence was replaced. The next occurrence found.")); else - msg = pNativeSpeaker->getLocalizedStrFromID("find-status-replaced-next-not-found", TEXT("Replace: 1 occurrence was replaced. The next occurrence not found")); + msg = pNativeSpeaker->getLocalizedStrFromID("find-status-replaced-next-not-found", TEXT("Replace: 1 occurrence was replaced. No more occurrences were found.")); setStatusbarMessage(msg, FSMessage); }