1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

core: fix translation of message displayed after /upgrade

This commit is contained in:
Sébastien Helleu
2014-08-16 11:50:15 +02:00
parent 4de5627db2
commit d918c3d1b0
14 changed files with 57 additions and 89 deletions
+3 -4
View File
@@ -910,10 +910,9 @@ upgrade_weechat_end ()
gettimeofday (&tv_now, NULL);
time_diff = util_timeval_diff (&weechat_current_start_timeval, &tv_now);
gui_chat_printf (NULL,
/* TRANSLATORS: "%s" is translation of "second" or "seconds" */
_("Upgrade done (%.02f %s)"),
((float)time_diff) / 1000,
NG_("second", "seconds", time_diff / 1000));
/* TRANSLATORS: %.02fs is a float number + "s" ("seconds") */
_("Upgrade done (%.02fs)"),
((float)time_diff) / 1000);
/* upgrading ended */
weechat_upgrading = 0;