GNOME Bugzilla – Bug 745480
Strange gettext construction
Last modified: 2015-03-04 08:23:06 UTC
In src/backend/bacon-video-widget-gst-missing-plugins.c: message_text = g_strdup_printf (ngettext (N_("%s is required to play the file, but is not installed."), N_("%s are required to play the file, but are not installed."), g_strv_length (ctx->descriptions)), descriptions_text); Why is used macro N_ inside ngettext? It may cause problems for languages with more plural forms.
Created attachment 298482 [details] [review] Fix erroneous ngettext use No need to wrap strings in ngettext calls in N_().