From ce19c4a64756850ed2360b145e19876c2167f07d Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Mon, 10 Nov 2025 09:27:16 +0800 Subject: [PATCH] FileSystem dock: Use plural prompt message when moving/copying files --- editor/docks/filesystem_dock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/docks/filesystem_dock.cpp b/editor/docks/filesystem_dock.cpp index 7639665e66e..3704dc8e532 100644 --- a/editor/docks/filesystem_dock.cpp +++ b/editor/docks/filesystem_dock.cpp @@ -3144,10 +3144,10 @@ void FileSystemDock::drop_data_fw(const Point2 &p_point, const Variant &p_data, confirm_move_to_dir = to_dir; if (Input::get_singleton()->is_key_pressed(Key::CMD_OR_CTRL)) { - move_confirm_text = vformat(TTR("Copy %d selected item(s) to \"%s\"?"), to_move.size(), target_dir); + move_confirm_text = vformat(TTRN("Copy %d selected item to \"%s\"?", "Copy %d selected items to \"%s\"?", to_move.size()), to_move.size(), target_dir); confirm_to_copy = true; } else { - move_confirm_text = vformat(TTR("Move %d selected item(s) to \"%s\"?"), to_move.size(), target_dir); + move_confirm_text = vformat(TTRN("Move %d selected item to \"%s\"?", "Move %d selected items to \"%s\"?", to_move.size()), to_move.size(), target_dir); confirm_to_copy = false; }