1. move rc languages to folder lang

2. Adding rsrc.rc so u can open rc file in vs 
3. fixing sublang id for hu.rc so it can be open in vs

svn path=/trunk/; revision=23477
This commit is contained in:
Magnus Olsen 2006-08-05 09:29:13 +00:00
parent 812c059223
commit 8c69a85ea6
8 changed files with 19 additions and 7 deletions

View file

@ -1,6 +1,6 @@
// Hungarian resources, by Robert Horvath (Talley at cubeclub.hu)
LANGUAGE LANG_HUNGARIAN, SUBLANG_NEUTRAL
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
IDD_MSCONFIG_DIALOG DIALOG DISCARDABLE 0, 0, 378, 220
STYLE DS_CENTER | WS_MINIMIZEBOX | WS_POPUP |

View file

@ -13,10 +13,5 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include <reactos/version.rc>
#include "De.rc"
#include "En.rc"
#include "Fr.rc"
#include "Hu.rc"
#include "Nl.rc"
#include "No.rc"
#include "rsrc.rc"

View file

@ -0,0 +1,17 @@
#include <windows.h>
#include "resource.h"
/* define language neutral resources */
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* include localised resources */
#include "lang/De.rc"
#include "lang/En.rc"
#include "lang/Fr.rc"
#include "lang/Hu.rc"
#include "lang/Nl.rc"
#include "lang/No.rc"