mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
System Control Panel:
* add language support * english and german language files svn path=/trunk/; revision=13881
This commit is contained in:
parent
0b18ff226e
commit
7758ecc0bf
3 changed files with 70 additions and 25 deletions
28
reactos/lib/cpl/control/De.rc
Normal file
28
reactos/lib/cpl/control/De.rc
Normal file
|
@ -0,0 +1,28 @@
|
|||
// German language resource file (frik85, 2005-03-08)
|
||||
|
||||
LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Menu
|
||||
//
|
||||
|
||||
IDM_MAINMENU MENU DISCARDABLE
|
||||
BEGIN
|
||||
POPUP "&Datei"
|
||||
BEGIN
|
||||
MENUITEM "&Beenden", IDM_CLOSE
|
||||
END
|
||||
POPUP "&Ansicht"
|
||||
BEGIN
|
||||
MENUITEM "Große Symbole", IDM_LARGEICONS
|
||||
MENUITEM "Kleine Symbole", IDM_SMALLICONS
|
||||
MENUITEM "Liste", IDM_LIST
|
||||
MENUITEM "Details", IDM_DETAILS
|
||||
END
|
||||
POPUP "&?"
|
||||
BEGIN
|
||||
MENUITEM "Inf&o", IDM_ABOUT
|
||||
END
|
||||
END
|
||||
|
28
reactos/lib/cpl/control/En.rc
Normal file
28
reactos/lib/cpl/control/En.rc
Normal file
|
@ -0,0 +1,28 @@
|
|||
// English language resource file (frik85, 2005-03-08)
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Menu
|
||||
//
|
||||
|
||||
IDM_MAINMENU MENU DISCARDABLE
|
||||
BEGIN
|
||||
POPUP "&File"
|
||||
BEGIN
|
||||
MENUITEM "&Close", IDM_CLOSE
|
||||
END
|
||||
POPUP "&View"
|
||||
BEGIN
|
||||
MENUITEM "Large Icons", IDM_LARGEICONS
|
||||
MENUITEM "Small Icons", IDM_SMALLICONS
|
||||
MENUITEM "List", IDM_LIST
|
||||
MENUITEM "Details", IDM_DETAILS
|
||||
END
|
||||
POPUP "Help"
|
||||
BEGIN
|
||||
MENUITEM "About", IDM_ABOUT
|
||||
END
|
||||
END
|
||||
|
|
@ -20,31 +20,6 @@
|
|||
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Menu
|
||||
//
|
||||
|
||||
IDM_MAINMENU MENU DISCARDABLE
|
||||
BEGIN
|
||||
POPUP "&File"
|
||||
BEGIN
|
||||
MENUITEM "&Close", IDM_CLOSE
|
||||
END
|
||||
POPUP "&View"
|
||||
BEGIN
|
||||
MENUITEM "Large Icons", IDM_LARGEICONS
|
||||
MENUITEM "Small Icons", IDM_SMALLICONS
|
||||
MENUITEM "List", IDM_LIST
|
||||
MENUITEM "Details", IDM_DETAILS
|
||||
END
|
||||
POPUP "Help"
|
||||
BEGIN
|
||||
MENUITEM "About", IDM_ABOUT
|
||||
END
|
||||
END
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Icon
|
||||
|
@ -54,3 +29,17 @@ END
|
|||
// remains consistent on all systems.
|
||||
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 "De.rc"
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue