fixing the language so it can be edit from vs, open the rsrc.rc file in vs to edit a languages.

svn path=/trunk/; revision=23350
This commit is contained in:
Magnus Olsen 2006-07-29 15:56:00 +00:00
parent 66b40e74ee
commit 3d997c8dae
8 changed files with 34 additions and 27 deletions

View file

@ -1,6 +1,6 @@
// Danish language resource file (Thomas Larsen, 2005-03-11)
LANGUAGE LANG_DANISH, SUBLANG_NEUTRAL
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -1,6 +1,6 @@
// English language resource file (frik85, 2005-03-08)
LANGUAGE LANG_FINNISH, SUBLANG_NEUTRAL
LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -1,6 +1,6 @@
// Hungarian language resource file (talley, 2005-10-12)
LANGUAGE LANG_HUNGARIAN, SUBLANG_NEUTRAL
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -1,6 +1,6 @@
// Polish language resource file (Sebastian Gasiorek, 2005-07-06)
LANGUAGE LANG_POLISH, SUBLANG_NEUTRAL
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -1,6 +1,6 @@
// Russian language resource file (unC0Rr, 2005-03-11)
LANGUAGE LANG_RUSSIAN, SUBLANG_NEUTRAL
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -6,7 +6,7 @@
* PROGRAMMERS: temarez
*/
LANGUAGE LANG_UKRAINIAN, SUBLANG_NEUTRAL
LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
/////////////////////////////////////////////////////////////////////////////
//

View file

@ -25,24 +25,4 @@ IDI_MAINICON ICON DISCARDABLE "resources/config.ico"
/////////////////////////////////////////////////////////////////////////////
/*
* Everything specific to any language goes in one of the specific
* files. Note that you can and may override resources which also have
* a neutral version. This is to get localized bitmaps for example.
*/
#include "En.rc"
#include "Cz.rc"
#include "De.rc"
#include "Dk.rc"
#include "Gr.rc"
#include "Ja.rc"
#include "Nl.rc"
#include "Pl.rc"
#include "Ru.rc"
#include "Sv.rc"
#include "Es.rc"
#include "Hu.rc"
#include "Fi.rc"
#include "Uk.rc"
#include "No.rc"
#include "rsrc.rc"

View file

@ -0,0 +1,27 @@
#include <windows.h>
#include "resource.h"
/* define language neutral resources */
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* include localised resources */
#include "Cz.rc"
#include "De.rc"
#include "Dk.rc"
#include "En.rc"
#include "Es.rc"
#include "Fi.rc"
#include "Gr.rc"
#include "Hu.rc"
#include "Ja.rc"
#include "Nl.rc"
#include "No.rc"
#include "Pl.rc"
#include "Ru.rc"
#include "Sv.rc"
#include "Uk.rc"