diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-25 01:02:41 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-25 01:02:41 (EST) |
commit | 82091b3275f171aa587fbd07db01095b8de4d9f4 (patch) | |
tree | a28e03fc6c36b495fcc83eac445e70efeaad30fd | |
parent | 0ded8bcc4faf53d5eda5e6ddb3f44d8236842f2a (diff) | |
download | marquee-82091b3275f171aa587fbd07db01095b8de4d9f4.zip marquee-82091b3275f171aa587fbd07db01095b8de4d9f4.tar.gz marquee-82091b3275f171aa587fbd07db01095b8de4d9f4.tar.bz2 |
MqWindow: Make plural form translation less confusing
-rw-r--r-- | src/window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index 544d9c6..56f166c 100644 --- a/src/window.c +++ b/src/window.c @@ -121,10 +121,10 @@ delete_event_cb(MqWindow *window, GdkEvent G_GNUC_UNUSED *event) } /* Message */ + /* The number of tabs is always greater than 1, but some non-English + * languages pluralize nouns differently depending on the number. */ message = g_strdup_printf(PL_( - /* TRANSLATORS: The number of tabs is always greater - than 1. */ - "You are about to close %d tabs. " + "You are about to close %d tab. " "Are you sure you want to continue?", "You are about to close %d tabs. " "Are you sure you want to continue?", |