[gnome-photos] properties-dialog: Replace dots with commas in EXIF labels



commit dca0f6d51eaa971141acd4c55a63b8be3f9cfc80
Author: Debarshi Ray <debarshir gnome org>
Date:   Mon Sep 2 16:34:00 2013 +0200

    properties-dialog: Replace dots with commas in EXIF labels
    
    Fixes: https://bugzilla.gnome.org/706824

 src/photos-properties-dialog.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/photos-properties-dialog.c b/src/photos-properties-dialog.c
index d49f86e..6be1c9c 100644
--- a/src/photos-properties-dialog.c
+++ b/src/photos-properties-dialog.c
@@ -524,9 +524,9 @@ photos_properties_dialog_constructed (GObject *object)
       gchar *flash_str;
 
       if (flash == PHOTOS_FLASH_OFF)
-        flash_str = g_strdup (_("Off, Did not fire"));
+        flash_str = g_strdup (_("Off, did not fire"));
       else if (flash == PHOTOS_FLASH_ON)
-        flash_str = g_strdup (_("On, Fired"));
+        flash_str = g_strdup (_("On, fired"));
       else
         g_assert_not_reached ();
 


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