Commit 8919ba34 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

shdoclc: Build language resource files separately.

Do not include them from an other rc file.
parent 3b3e1a1e
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_BULGARIAN, SUBLANG_DEFAULT
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
......
......@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
......
......@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
......
......@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_FINNISH, SUBLANG_DEFAULT
......
......@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
......
......@@ -17,6 +17,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
......
......@@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
/* UTF-8 */
#pragma code_page(65001)
......@@ -247,5 +249,3 @@ IDR_BROWSE_CONTEXT_MENU MENU
MENUITEM "Slinkti dešinėn", IDM_SCROLL_RIGHT
}
}
#pragma code_page(default)
......@@ -5,7 +5,25 @@ VPATH = @srcdir@
MODULE = shdoclc.dll
IMPORTS = kernel32
RC_SRCS = rsrc.rc
RC_SRCS = \
Bg.rc \
Da.rc \
De.rc \
En.rc \
Es.rc \
Fi.rc \
Fr.rc \
Hu.rc \
Ko.rc \
Lt.rc \
Nl.rc \
No.rc \
Pt.rc \
Ru.rc \
Si.rc \
Sv.rc \
Tr.rc \
Zh.rc
@MAKE_DLL_RULES@
......
......@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
......@@ -247,5 +248,3 @@ IDR_BROWSE_CONTEXT_MENU MENU
MENUITEM "Drsenje desno", IDM_SCROLL_RIGHT
}
}
#pragma code_page(default)
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
......
......@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
......
......@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "shdoclc.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
......@@ -479,5 +480,3 @@ IDR_BROWSE_CONTEXT_MENU MENU
MENUITEM "向右滾動", IDM_SCROLL_RIGHT
}
}
#pragma code_page(default)
/*
* Copyright 2005 Jacek Caban
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
#include "winuser.h"
#include "mshtmcid.h"
#include "shdoclc.h"
#include "Bg.rc"
#include "Da.rc"
#include "De.rc"
#include "En.rc"
#include "Es.rc"
#include "Fi.rc"
#include "Fr.rc"
#include "Hu.rc"
#include "Ko.rc"
#include "Lt.rc"
#include "Nl.rc"
#include "No.rc"
#include "Pt.rc"
#include "Ru.rc"
#include "Si.rc"
#include "Sv.rc"
#include "Tr.rc"
#include "Zh.rc"
......@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <mshtmcid.h>
#define IDS_MESSAGE_BOX_TITLE 2213
#define IDS_PRINT_HEADER_TEMPLATE 8403
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment