mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Fix handling plural forms
https://bugzilla.gnome.org/show_bug.cgi?id=765929
This commit is contained in:
committed by
Christian Hergert
parent
395ab9025a
commit
67efcc462b
@ -137,7 +137,7 @@ sp_profiler_menu_button_update_label (SpProfilerMenuButton *self)
|
||||
return;
|
||||
}
|
||||
|
||||
str = g_strdup_printf (_("%u Processes"), n_pids);
|
||||
str = g_strdup_printf (ngettext("%u Process", "%u Processes", n_pids), n_pids);
|
||||
gtk_label_set_label (priv->label, str);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user