[gnome-color-manager] Make a few spellings of colour incorrect



commit 6345a63a7413189a1b19d0c65e6ab511020f50c2
Author: Richard Hughes <richard hughsie com>
Date:   Fri Dec 4 21:59:23 2009 +0000

    Make a few spellings of colour incorrect

 contrib/gnome-color-manager.spec.in |    2 +-
 src/gcm-clut.c                      |    6 +++---
 src/gcm-prefs.c                     |    2 +-
 src/gcm-profile.c                   |    8 ++++----
 src/gcm-profile.h                   |    2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/contrib/gnome-color-manager.spec.in b/contrib/gnome-color-manager.spec.in
index aec6acf..aa915ee 100644
--- a/contrib/gnome-color-manager.spec.in
+++ b/contrib/gnome-color-manager.spec.in
@@ -46,7 +46,7 @@ BuildRequires: libXrandr-devel
 BuildRequires: gnome-desktop-devel
 
 %description
-gnome-color-manager provides a way to control ICC colour profiles.
+gnome-color-manager provides a way to control ICC color profiles.
 
 %prep
 %setup -q
diff --git a/src/gcm-clut.c b/src/gcm-clut.c
index 7f26357..2c3d895 100644
--- a/src/gcm-clut.c
+++ b/src/gcm-clut.c
@@ -21,10 +21,10 @@
 
 /**
  * SECTION:gcm-clut
- * @short_description: Colour lookup table object
+ * @short_description: Color lookup table object
  *
- * This object represents a colour lookup table that is useful to manipulating
- * gamma values in a trivial RGB colour space.
+ * This object represents a color lookup table that is useful to manipulating
+ * gamma values in a trivial RGB color space.
  */
 
 #include "config.h"
diff --git a/src/gcm-prefs.c b/src/gcm-prefs.c
index 5c914f7..9ef65cc 100644
--- a/src/gcm-prefs.c
+++ b/src/gcm-prefs.c
@@ -1318,7 +1318,7 @@ gcm_prefs_profile_type_to_text (GcmProfileType type)
 		/* TRANSLATORS: this the ICC profile type */
 		return _("Abstract");
 	}
-	if (type == GCM_PROFILE_TYPE_NAMED_COLOUR) {
+	if (type == GCM_PROFILE_TYPE_NAMED_COLOR) {
 		/* TRANSLATORS: this the ICC profile type */
 		return _("Named color");
 	}
diff --git a/src/gcm-profile.c b/src/gcm-profile.c
index 61e08d1..597dec3 100644
--- a/src/gcm-profile.c
+++ b/src/gcm-profile.c
@@ -85,7 +85,7 @@ static void     gcm_profile_finalize	(GObject     *object);
 #define GCM_PROFILE_CLASS_DEVICELINK		0x6c696e6b
 #define GCM_PROFILE_CLASS_COLORSPACE_CONVERSION	0x73706163
 #define GCM_PROFILE_CLASS_ABSTRACT		0x61627374
-#define GCM_PROFILE_CLASS_NAMED_COLOUR		0x6e6d636c
+#define GCM_PROFILE_CLASS_NAMED_COLOR		0x6e6d636c
 
 #define GCM_TRC_SIZE			0x08
 #define GCM_TRC_DATA			0x0c
@@ -840,8 +840,8 @@ gcm_profile_parse_data (GcmProfile *profile, const gchar *data, gsize length, GE
 	case GCM_PROFILE_CLASS_ABSTRACT:
 		priv->profile_type = GCM_PROFILE_TYPE_ABSTRACT;
 		break;
-	case GCM_PROFILE_CLASS_NAMED_COLOUR:
-		priv->profile_type = GCM_PROFILE_TYPE_NAMED_COLOUR;
+	case GCM_PROFILE_CLASS_NAMED_COLOR:
+		priv->profile_type = GCM_PROFILE_TYPE_NAMED_COLOR;
 		break;
 	default:
 		priv->profile_type = GCM_PROFILE_TYPE_UNKNOWN;
@@ -1234,7 +1234,7 @@ gcm_profile_type_to_text (GcmProfileType type)
 		return "colorspace-conversion";
 	if (type == GCM_PROFILE_TYPE_ABSTRACT)
 		return "abstract";
-	if (type == GCM_PROFILE_TYPE_NAMED_COLOUR)
+	if (type == GCM_PROFILE_TYPE_NAMED_COLOR)
 		return "named-color";
 	return "unknown";
 }
diff --git a/src/gcm-profile.h b/src/gcm-profile.h
index f03eef7..d165dc8 100644
--- a/src/gcm-profile.h
+++ b/src/gcm-profile.h
@@ -62,7 +62,7 @@ typedef enum {
 	GCM_PROFILE_TYPE_DEVICELINK,
 	GCM_PROFILE_TYPE_COLORSPACE_CONVERSION,
 	GCM_PROFILE_TYPE_ABSTRACT,
-	GCM_PROFILE_TYPE_NAMED_COLOUR,
+	GCM_PROFILE_TYPE_NAMED_COLOR,
 	GCM_PROFILE_TYPE_UNKNOWN
 } GcmProfileType;
 



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