Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d0df28b9
Commit
d0df28b9
authored
Jun 30, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wldap32: Build language resource files separately.
Instead of including them from an other rc file.
parent
afe626fb
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
43 additions
and
41 deletions
+43
-41
Makefile.in
dlls/wldap32/Makefile.in
+15
-1
wldap32.rc
dlls/wldap32/wldap32.rc
+0
-38
wldap32_Da.rc
dlls/wldap32/wldap32_Da.rc
+2
-0
wldap32_De.rc
dlls/wldap32/wldap32_De.rc
+2
-0
wldap32_En.rc
dlls/wldap32/wldap32_En.rc
+2
-0
wldap32_Es.rc
dlls/wldap32/wldap32_Es.rc
+2
-0
wldap32_Fr.rc
dlls/wldap32/wldap32_Fr.rc
+2
-0
wldap32_Ko.rc
dlls/wldap32/wldap32_Ko.rc
+2
-0
wldap32_Lt.rc
dlls/wldap32/wldap32_Lt.rc
+2
-2
wldap32_Nl.rc
dlls/wldap32/wldap32_Nl.rc
+2
-0
wldap32_No.rc
dlls/wldap32/wldap32_No.rc
+2
-0
wldap32_Pl.rc
dlls/wldap32/wldap32_Pl.rc
+2
-0
wldap32_Pt.rc
dlls/wldap32/wldap32_Pt.rc
+2
-0
wldap32_Ru.rc
dlls/wldap32/wldap32_Ru.rc
+2
-0
wldap32_Sv.rc
dlls/wldap32/wldap32_Sv.rc
+2
-0
wldap32_Tr.rc
dlls/wldap32/wldap32_Tr.rc
+2
-0
No files found.
dlls/wldap32/Makefile.in
View file @
d0df28b9
...
...
@@ -29,7 +29,21 @@ C_SRCS = \
search.c
\
value.c
RC_SRCS
=
wldap32.rc
RC_SRCS
=
\
wldap32_Da.rc
\
wldap32_De.rc
\
wldap32_En.rc
\
wldap32_Es.rc
\
wldap32_Fr.rc
\
wldap32_Ko.rc
\
wldap32_Lt.rc
\
wldap32_Nl.rc
\
wldap32_No.rc
\
wldap32_Pl.rc
\
wldap32_Pt.rc
\
wldap32_Ru.rc
\
wldap32_Sv.rc
\
wldap32_Tr.rc
@MAKE_DLL_RULES@
...
...
dlls/wldap32/wldap32.rc
deleted
100644 → 0
View file @
afe626fb
/*
* Top level resource file for WLDAP32
*
* Copyright 2005 Hans Leidekker
*
* 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 "winbase.h"
#include "winuser.h"
#include "wldap32_Da.rc"
#include "wldap32_De.rc"
#include "wldap32_En.rc"
#include "wldap32_Es.rc"
#include "wldap32_Fr.rc"
#include "wldap32_Ko.rc"
#include "wldap32_Lt.rc"
#include "wldap32_Nl.rc"
#include "wldap32_No.rc"
#include "wldap32_Pl.rc"
#include "wldap32_Pt.rc"
#include "wldap32_Ru.rc"
#include "wldap32_Sv.rc"
#include "wldap32_Tr.rc"
dlls/wldap32/wldap32_Da.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_De.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_En.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Es.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Fr.rc
View file @
d0df28b9
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Ko.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Lt.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -124,5 +126,3 @@ STRINGTABLE DISCARDABLE
96 "Aptiktas ciklas apdorojant perdavimus"
97 "Viršyta perdavimo šuolių riba"
}
#pragma code_page(default)
dlls/wldap32/wldap32_Nl.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_No.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Pl.rc
View file @
d0df28b9
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Pt.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Ru.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Sv.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE DISCARDABLE
...
...
dlls/wldap32/wldap32_Tr.rc
View file @
d0df28b9
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
STRINGTABLE DISCARDABLE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment