From df23f0679ecca7d9cce927fda6a18e986a168079 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 22 Jul 2007 21:26:38 +0000 Subject: [PATCH] fixing intl are on english here is the issue, either it is gcc bugs being tricked for wrc (I do not think it is this case) or it is a bug in windres for some rc syntax. I think it is this issue, only way to workaround this bug are move en-us.rc to top of the langues list so it comes the frist langues for select svn path=/trunk/; revision=27783 --- reactos/dll/cpl/intl/intl.rc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/dll/cpl/intl/intl.rc b/reactos/dll/cpl/intl/intl.rc index 207b5508aed..5c70c8df184 100644 --- a/reactos/dll/cpl/intl/intl.rc +++ b/reactos/dll/cpl/intl/intl.rc @@ -3,6 +3,8 @@ #include #include "resource.h" +LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL + #define REACTOS_VERSION_DLL #define REACTOS_STR_FILE_DESCRIPTION "ReactOS Control Panel\0" #define REACTOS_STR_INTERNAL_NAME "intl\0" @@ -20,10 +22,9 @@ IDC_FLAGS ICON "resources/flags.ico" * files. Note that you can and may override resources which also have * a neutral version. This is to get localized bitmaps for example. */ - +#include "lang/en-US.rc" #include "lang/cs-CZ.rc" #include "lang/de-DE.rc" -#include "lang/en-US.rc" #include "lang/es-ES.rc" #include "lang/fr-FR.rc" #include "lang/hu-HU.rc"