[gnome-software/fix-plural-form-string] gs-review-histogram: fix singular in plural-form string




commit 6210f7a350d12f63fbb7e07a9b3ca0adc71f81c0
Author: Rafael Fontenelle <rffontenelle gmail com>
Date:   Fri Sep 3 00:06:18 2021 +0000

    gs-review-histogram: fix singular in plural-form string

 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]