oops, fixed it
[citadel.git] / webcit / gettext.c
index 9d3833cad2a648d1a66e1456c740cd547f8a7aed..317966d9ff1c9ec2d13d3b151dae73a2bc850752 100644 (file)
@@ -1,20 +1,16 @@
 /*
  * $Id
  */
-/**
- * \defgroup LocaleHeaderParser Parse the browser http locale headers and set the NLS stuff.
- * \ingroup WebcitHttpServer 
- */
-/*@{*/
+
 #include "webcit.h"
 #include "webserver.h"
 
 #ifdef ENABLE_NLS
 
-#define NUM_LANGS 10 /**< how many different locales do we know? */
-#define SEARCH_LANG 20 /**< how many langs should we parse? */
+#define NUM_LANGS 10           /* how many different locales do we know? */
+#define SEARCH_LANG 20         /* how many langs should we parse? */
 
-/** actual supported locales */
+/* actual supported locales */
 char *AvailLang[NUM_LANGS] = {
        "C",
        "en_US",
@@ -338,4 +334,3 @@ void preset_locale(void)
 #endif /* ENABLE_NLS */
 
 
-/*@}*/