[totem] properties: Add singular for framerate label



commit 7faabc2c055da1636af3429f811f61a11580e7f0
Author: Bastien Nocera <hadess hadess net>
Date:   Mon May 6 13:00:54 2019 +0200

    properties: Add singular for framerate label
    
    Even if the string cannot be singular in English (it's > 1), it might be "singular"
    in another language, so set the string correctly.

 src/plugins/properties/bacon-video-widget-properties.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/plugins/properties/bacon-video-widget-properties.c 
b/src/plugins/properties/bacon-video-widget-properties.c
index 4343b2238..06bb68c9f 100644
--- a/src/plugins/properties/bacon-video-widget-properties.c
+++ b/src/plugins/properties/bacon-video-widget-properties.c
@@ -233,7 +233,7 @@ bacon_video_widget_properties_set_framerate (BaconVideoWidgetProperties *props,
        g_return_if_fail (BACON_IS_VIDEO_WIDGET_PROPERTIES (props));
 
        if (framerate > 1.0) {
-               temp = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE, "Do not translate", "%0.2f frames per 
second", (int) (ceilf (framerate))),
+               temp = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE, "%0.2f frame per second", "%0.2f frames 
per second", (int) (ceilf (framerate))),
                                        framerate);
        } else {
                temp = g_strdup (C_("Frame rate", "N/A"));


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