mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +00:00
1. move rc languages to folder lang
2. Adding rsrc.rc so u can open rc file in vs 3. fixing sublang id for some languages so it can be open in vs svn path=/trunk/; revision=23481
This commit is contained in:
parent
db565c34cd
commit
5cf9d852b7
13 changed files with 27 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
|||
LANGUAGE LANG_DANISH, SUBLANG_NEUTRAL
|
||||
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
|
||||
|
||||
IDD_FIRSTPAGE DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
|
@ -2,7 +2,7 @@
|
|||
* Copyright 2005 Robert Horvath - Hungarian translation - talley at cubeclub.hu
|
||||
*/
|
||||
|
||||
LANGUAGE LANG_HUNGARIAN, SUBLANG_NEUTRAL
|
||||
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
|
||||
|
||||
IDD_FIRSTPAGE DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
|
@ -1,4 +1,4 @@
|
|||
LANGUAGE LANG_RUSSIAN, SUBLANG_NEUTRAL
|
||||
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
|
||||
|
||||
IDD_FIRSTPAGE DIALOGEX 0, 0, PROPSHEETWIDTH, PROPSHEETHEIGHT
|
||||
STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_DISABLED | WS_CAPTION
|
|
@ -28,7 +28,7 @@
|
|||
#include <commctrl.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "reporterror.h"
|
||||
#include "resource.h"
|
||||
|
||||
static LPSTR ErrorReportingServerName = "errors.reactos.com";
|
||||
static HINSTANCE hAppInstance;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#include <windows.h>
|
||||
#include "reporterror.h"
|
||||
#include "resource.h"
|
||||
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Error Reporting Assistant\0"
|
||||
#define REACTOS_STR_INTERNAL_NAME "reporterror\0"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "reporterror.exe\0"
|
||||
#include <reactos/version.rc>
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
1 24 DISCARDABLE "manifest.xml"
|
||||
|
||||
|
@ -14,12 +14,4 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|||
IDB_WATERMARK BITMAP "resources/watermark.bmp"
|
||||
IDB_HEADER BITMAP "resources/header.bmp"
|
||||
|
||||
#include "en.rc"
|
||||
#include "de.rc"
|
||||
#include "dk.rc"
|
||||
#include "Ja.rc"
|
||||
#include "sv.rc"
|
||||
#include "hu.rc"
|
||||
#include "Nl.rc"
|
||||
#include "ru.rc"
|
||||
#include "no.rc"
|
||||
#include "rsrc.rc"
|
||||
|
|
20
reactos/base/applications/reporterror/rsrc.rc
Normal file
20
reactos/base/applications/reporterror/rsrc.rc
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
|
||||
#include <windows.h>
|
||||
#include "resource.h"
|
||||
|
||||
/* define language neutral resources */
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
/* include localised resources */
|
||||
#include "lang/En.rc"
|
||||
#include "lang/De.rc"
|
||||
#include "lang/Dk.rc"
|
||||
#include "lang/Ja.rc"
|
||||
#include "lang/Sv.rc"
|
||||
#include "lang/Hu.rc"
|
||||
#include "lang/Nl.rc"
|
||||
#include "lang/Ru.rc"
|
||||
#include "lang/No.rc"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue