diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-20 13:23:27 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-20 13:23:27 +0100 |
commit | b523613e7385ae1475234451e9c45aea96e33ad0 (patch) | |
tree | 7f7d8b594f8ceb805b358fe84b8ff3893455e7b7 | |
parent | 35157bc2f1c18171f6ed9464c0d483aa1bae5dbb (diff) | |
download | weechat-b523613e7385ae1475234451e9c45aea96e33ad0.zip |
Fix translated string in output of "/uptime -o"
-rw-r--r-- | src/core/wee-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index c862ce858..23c800012 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -3517,7 +3517,7 @@ command_uptime (void *data, struct t_gui_buffer *buffer, snprintf (string, sizeof (string), "WeeChat uptime: %d %s %02d:%02d:%02d, started on %s", day, - NG_("day", "days", day), + (day > 1) ? "days" : "day", hour, min, sec, |