diff --git a/ChangeLog b/ChangeLog
index 23ab13acc4bf4e4d15bb440f9413d9c90d65d985..d5e7991e3b932ddaaa88159de703bd41f5e3bcdc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-02	Benedikt Meurer <benny@xfce.org>
+
+	* thunar-uca/thunar-uca-model.c: Include <locale.h> to get LC_MESSAGES
+	  definition.
+
 2005-12-30	Benedikt Meurer <benny@xfce.org>
 
 	* configure.in.in: Add ca to XDT_I18n().
diff --git a/thunar-uca/thunar-uca-model.c b/thunar-uca/thunar-uca-model.c
index 583665d9f603e9953b29be4b9df49adeeb8f923c..d02f22ebfdefaf5e8810a407124bcef0f8f205aa 100644
--- a/thunar-uca/thunar-uca-model.c
+++ b/thunar-uca/thunar-uca-model.c
@@ -1,6 +1,6 @@
 /* $Id$ */
 /*-
- * Copyright (c) 2005 Benedikt Meurer <benny@xfce.org>
+ * Copyright (c) 2005-2006 Benedikt Meurer <benny@xfce.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -25,6 +25,9 @@
 #ifdef HAVE_ERRNO_H
 #include <errno.h>
 #endif
+#ifdef HAVE_LOCALE_H
+#include <locale.h>
+#endif
 #ifdef HAVE_MEMORY_H
 #include <memory.h>
 #endif