Translate "No match" message in FindReplaceBar

(cherry picked from commit ac454ce2a7)
This commit is contained in:
Haoyu Qiu 2023-07-02 16:48:37 +08:00 committed by Yuri Sizov
parent a8bfdd8bea
commit 545e37cf77
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ void FindReplaceBar::_update_matches_label() {
matches_label->add_theme_color_override("font_color", results_count > 0 ? get_theme_color(SNAME("font_color"), SNAME("Label")) : get_theme_color(SNAME("error_color"), SNAME("Editor")));
if (results_count == 0) {
matches_label->set_text("No match");
matches_label->set_text(TTR("No match"));
} else if (results_count_to_current == -1) {
matches_label->set_text(vformat(TTRN("%d match", "%d matches", results_count), results_count));
} else {