diff options
author | monsta <[email protected]> | 2019-11-10 21:17:26 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-11-12 14:53:34 +0100 |
commit | b8168adf65cc2699968960f31f192fc2e4b66017 (patch) | |
tree | 87cbbaa34b7f91aced5416422a5a150ddd7572b5 /src/eom-window.c | |
parent | c5218734a82edf04aa86c93def743a2534badfb6 (diff) | |
download | eom-b8168adf65cc2699968960f31f192fc2e4b66017.tar.bz2 eom-b8168adf65cc2699968960f31f192fc2e4b66017.tar.xz |
add missing format specifier for ngettext
Diffstat (limited to 'src/eom-window.c')
-rw-r--r-- | src/eom-window.c | 2 |
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 { |