sw/inc/strings.hrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 5a600355080b6b66842e07d22f14e89b161f1c00 Author: Pedro Pinto Silva <[email protected]> AuthorDate: Fri Aug 15 13:30:16 2025 +0200 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Mon Nov 24 10:45:20 2025 +0100 tdf#169531 QuickFindPanel: Make result label shorter and easier to scan - Shorten the sentence - Remove full stop. It's a short label without element immediately after or before so the full stop seem unnecessary and a visual clutter - Remove "found" as it's over-verbose and it seems to be obvious that what was matched was found. - Use result instead of match: Users think in terms of "results" when searching and not "matches" or what was "matched" Signed-off-by: Pedro Pinto Silva <[email protected]> Change-Id: I3da73acf482741c470df90f7459d50f6ff1255e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189683 Reviewed-by: Andras Timar <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194156 Tested-by: Jenkins Reviewed-by: Szymon Kłos <[email protected]> Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc index 63bfd5e8363a..135b7e1b9759 100644 --- a/sw/inc/strings.hrc +++ b/sw/inc/strings.hrc @@ -1430,8 +1430,8 @@ #define STR_NUM_OUTLINE NC_("STR_NUM_OUTLINE", "Outline ") #define STR_EDIT_FOOTNOTE NC_("STR_EDIT_FOOTNOTE", "Edit Footnote/Endnote") #define STR_NB_REPLACED NC_("STR_NB_REPLACED", "Search key replaced XX times.") -#define STR_SEARCH_KEY_FOUND_TIMES NNC_("STR_SEARCH_KEY_FOUND_TIMES", "One match found.", "%1 matches found.") -#define STR_SEARCH_KEY_FOUND_XOFN NNC_("STR_SEARCH_KEY_FOUND_XOFN", "Match one of one match found.", "Match %1 of %2 matches found.") +#define STR_SEARCH_KEY_FOUND_TIMES NNC_("STR_SEARCH_KEY_FOUND_TIMES", "One match found.", "%1 results") +#define STR_SEARCH_KEY_FOUND_XOFN NNC_("STR_SEARCH_KEY_FOUND_XOFN", "Match one of one match found.", "Result %1 of %2") #define STR_SRCVIEW_ROW NC_("STR_SRCVIEW_ROW", "Row ") #define STR_SRCVIEW_COL NC_("STR_SRCVIEW_COL", "Column ") #define STR_SAVEAS_SRC NC_("STR_SAVEAS_SRC", "~Export source...")
