summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2019-11-10 21:17:26 +0300
committerraveit65 <[email protected]>2019-11-12 14:53:34 +0100
commitb8168adf65cc2699968960f31f192fc2e4b66017 (patch)
tree87cbbaa34b7f91aced5416422a5a150ddd7572b5
parentc5218734a82edf04aa86c93def743a2534badfb6 (diff)
downloadeom-b8168adf65cc2699968960f31f192fc2e4b66017.tar.bz2
eom-b8168adf65cc2699968960f31f192fc2e4b66017.tar.xz
add missing format specifier for ngettext
-rw-r--r--src/eom-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eom-window.c b/src/eom-window.c
index ecac89d..fad39b3 100644
--- a/src/eom-window.c
+++ b/src/eom-window.c
@@ -3331,7 +3331,7 @@ show_move_to_trash_confirm_dialog (EomWindow *window, GList *images, gboolean ca
} else {
if (can_trash) {
prompt = g_strdup_printf (ngettext("Are you sure you want to move\n"
- "the selected image to the trash?",
+ "the %d selected image to the trash?",
"Are you sure you want to move\n"
"the %d selected images to the trash?", n_images), n_images);
} else {