[gnome-software: 1/2] Fix usage of plural forms




commit 0ec363d8795d2f46fff2dafafd225f894947313c
Author: Yuri Chornoivan <yurchor ukr net>
Date:   Tue Aug 31 14:48:43 2021 +0000

    Fix usage of plural forms

 src/gs-review-histogram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gs-review-histogram.c b/src/gs-review-histogram.c
index ed9ac04f5..fd345a78c 100644
--- a/src/gs-review-histogram.c
+++ b/src/gs-review-histogram.c
@@ -69,7 +69,7 @@ gs_review_histogram_set_ratings (GsReviewHistogram *histogram,
        gs_review_bar_set_fraction (GS_REVIEW_BAR (priv->bar2), fraction[2]);
        gs_review_bar_set_fraction (GS_REVIEW_BAR (priv->bar1), fraction[1]);
 
-       text = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE, "%u reviews total", "%u reviews total", total), 
total);
+       text = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE, "%u review total", "%u reviews total", total), 
total);
        gtk_label_set_text (GTK_LABEL (priv->label_total), text);
 
        g_clear_pointer (&text, g_free);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]