[gimp] app: s/Bit/bit/ in the precision strings



commit 8f3fe621e66ae7c6e44eeeb964d5879b80e581b4
Author: Michael Natterer <mitch gimp org>
Date:   Sun Apr 22 23:23:43 2012 +0200

    app: s/Bit/bit/ in the precision strings

 app/core/core-enums.c |    4 ++--
 app/core/core-enums.h |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/app/core/core-enums.c b/app/core/core-enums.c
index f9b9e0d..42e3f5f 100644
--- a/app/core/core-enums.c
+++ b/app/core/core-enums.c
@@ -725,8 +725,8 @@ gimp_precision_get_type (void)
 
   static const GimpEnumDesc descs[] =
   {
-    { GIMP_PRECISION_U8, NC_("precision", "8-Bit unsigned integer"), NULL },
-    { GIMP_PRECISION_FLOAT, NC_("precision", "32-Bit floating point"), NULL },
+    { GIMP_PRECISION_U8, NC_("precision", "8-bit unsigned integer"), NULL },
+    { GIMP_PRECISION_FLOAT, NC_("precision", "32-bit floating point"), NULL },
     { 0, NULL, NULL }
   };
 
diff --git a/app/core/core-enums.h b/app/core/core-enums.h
index c563f08..00b487e 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -330,8 +330,8 @@ GType gimp_precision_get_type (void) G_GNUC_CONST;
 
 typedef enum /*< pdb-skip >*/
 {
-  GIMP_PRECISION_U8,    /*< desc="8-Bit unsigned integer" >*/
-  GIMP_PRECISION_FLOAT  /*< desc="32-Bit floating point"  >*/
+  GIMP_PRECISION_U8,    /*< desc="8-bit unsigned integer" >*/
+  GIMP_PRECISION_FLOAT  /*< desc="32-bit floating point"  >*/
 } GimpPrecision;
 
 



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