From bfe835e8a4ad61619311ac2ba39fb7991d0e0637 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Wed, 16 Oct 2024 16:56:26 +0200 Subject: [PATCH] Fix wrong messages for replacement status --- PowerEditor/installer/nativeLang/english.xml | 8 ++++---- PowerEditor/installer/nativeLang/english_customizable.xml | 8 ++++---- PowerEditor/installer/nativeLang/french.xml | 4 ++-- PowerEditor/installer/nativeLang/taiwaneseMandarin.xml | 4 ++-- PowerEditor/src/ScintillaComponent/FindReplaceDlg.h | 8 ++++---- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/PowerEditor/installer/nativeLang/english.xml b/PowerEditor/installer/nativeLang/english.xml index ceef9aa72..5a41151a4 100644 --- a/PowerEditor/installer/nativeLang/english.xml +++ b/PowerEditor/installer/nativeLang/english.xml @@ -1685,8 +1685,8 @@ Find in all files but exclude folders tests, bin && bin64: Find in all files but exclude all folders log or logs recursively: *.* !+\log*"/> - - + + @@ -1700,8 +1700,8 @@ Find in all files but exclude all folders log or logs recursively: - - + + diff --git a/PowerEditor/installer/nativeLang/english_customizable.xml b/PowerEditor/installer/nativeLang/english_customizable.xml index 8bbc18628..b07ab0d32 100644 --- a/PowerEditor/installer/nativeLang/english_customizable.xml +++ b/PowerEditor/installer/nativeLang/english_customizable.xml @@ -1684,8 +1684,8 @@ Find in all files but exclude folders tests, bin && bin64: Find in all files but exclude all folders log or logs recursively: *.* !+\log*"/> - - + + @@ -1699,8 +1699,8 @@ Find in all files but exclude all folders log or logs recursively: - - + + diff --git a/PowerEditor/installer/nativeLang/french.xml b/PowerEditor/installer/nativeLang/french.xml index a8500ca14..af7c235ef 100644 --- a/PowerEditor/installer/nativeLang/french.xml +++ b/PowerEditor/installer/nativeLang/french.xml @@ -1695,8 +1695,8 @@ Rechercher dans tous les fichiers mais pas dans les dossiers log ou logs récurs - - + + diff --git a/PowerEditor/installer/nativeLang/taiwaneseMandarin.xml b/PowerEditor/installer/nativeLang/taiwaneseMandarin.xml index 30bdb14d4..2f01e3343 100644 --- a/PowerEditor/installer/nativeLang/taiwaneseMandarin.xml +++ b/PowerEditor/installer/nativeLang/taiwaneseMandarin.xml @@ -1560,8 +1560,8 @@ - - + + diff --git a/PowerEditor/src/ScintillaComponent/FindReplaceDlg.h b/PowerEditor/src/ScintillaComponent/FindReplaceDlg.h index 7096b8d20..8428cce95 100644 --- a/PowerEditor/src/ScintillaComponent/FindReplaceDlg.h +++ b/PowerEditor/src/ScintillaComponent/FindReplaceDlg.h @@ -38,10 +38,10 @@ enum DIALOG_TYPE {FIND_DLG, REPLACE_DLG, FINDINFILES_DLG, FINDINPROJECTS_DLG, MA #define DIR_DOWN true #define DIR_UP false -#define FIND_STATUS_END_REACHED_TEXT L"Find: End of document reached, first occurrence from the top found." -#define FIND_STATUS_TOP_REACHED_TEXT L"Find: Beginning of the document reached, first occurrence from the bottom found." -#define FIND_STATUS_REPLACE_END_REACHED_TEXT L"Replace: End of document reached, first occurrence from the top replaced." -#define FIND_STATUS_REPLACE_TOP_REACHED_TEXT L"Replace: Beginning of document reached, first occurrence from the bottom replaced." +#define FIND_STATUS_END_REACHED_TEXT L"Find: Reached document end, first occurrence from the top found." +#define FIND_STATUS_TOP_REACHED_TEXT L"Find: Reached document beginning, first occurrence from the bottom found." +#define FIND_STATUS_REPLACE_END_REACHED_TEXT L"Replace: Reached document end, started from top." +#define FIND_STATUS_REPLACE_TOP_REACHED_TEXT L"Replace: Reached document beginning, started from bottom." enum InWhat{ALL_OPEN_DOCS, FILES_IN_DIR, CURRENT_DOC, CURR_DOC_SELECTION, FILES_IN_PROJECTS};