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
f894164d
Commit
f894164d
authored
Jul 01, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 01, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gphoto2.ds: Build language resource files separately.
Do not include them from an other rc file.
parent
46e5df5c
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
51 additions
and
52 deletions
+51
-52
Makefile.in
dlls/gphoto2.ds/Makefile.in
+15
-1
gphoto2_Da.rc
dlls/gphoto2.ds/gphoto2_Da.rc
+2
-0
gphoto2_De.rc
dlls/gphoto2.ds/gphoto2_De.rc
+2
-0
gphoto2_En.rc
dlls/gphoto2.ds/gphoto2_En.rc
+2
-0
gphoto2_Es.rc
dlls/gphoto2.ds/gphoto2_Es.rc
+3
-2
gphoto2_Fr.rc
dlls/gphoto2.ds/gphoto2_Fr.rc
+2
-0
gphoto2_Ko.rc
dlls/gphoto2.ds/gphoto2_Ko.rc
+2
-0
gphoto2_Lt.rc
dlls/gphoto2.ds/gphoto2_Lt.rc
+2
-2
gphoto2_Nl.rc
dlls/gphoto2.ds/gphoto2_Nl.rc
+2
-0
gphoto2_No.rc
dlls/gphoto2.ds/gphoto2_No.rc
+2
-0
gphoto2_Pl.rc
dlls/gphoto2.ds/gphoto2_Pl.rc
+2
-0
gphoto2_Pt.rc
dlls/gphoto2.ds/gphoto2_Pt.rc
+2
-0
gphoto2_Ru.rc
dlls/gphoto2.ds/gphoto2_Ru.rc
+2
-0
gphoto2_Si.rc
dlls/gphoto2.ds/gphoto2_Si.rc
+2
-2
gphoto2_Sv.rc
dlls/gphoto2.ds/gphoto2_Sv.rc
+2
-0
gphoto2_Zh.rc
dlls/gphoto2.ds/gphoto2_Zh.rc
+2
-2
resource.h
dlls/gphoto2.ds/resource.h
+5
-0
rsrc.rc
dlls/gphoto2.ds/rsrc.rc
+0
-43
No files found.
dlls/gphoto2.ds/Makefile.in
View file @
f894164d
...
...
@@ -14,7 +14,21 @@ C_SRCS = \
ui.c
RC_SRCS
=
\
rsrc.rc
gphoto2_Da.rc
\
gphoto2_De.rc
\
gphoto2_En.rc
\
gphoto2_Es.rc
\
gphoto2_Fr.rc
\
gphoto2_Ko.rc
\
gphoto2_Lt.rc
\
gphoto2_Nl.rc
\
gphoto2_No.rc
\
gphoto2_Pl.rc
\
gphoto2_Pt.rc
\
gphoto2_Ru.rc
\
gphoto2_Si.rc
\
gphoto2_Sv.rc
\
gphoto2_Zh.rc
@MAKE_DLL_RULES@
...
...
dlls/gphoto2.ds/gphoto2_Da.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_De.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_En.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Es.rc
View file @
f894164d
...
...
@@ -18,6 +18,9 @@
* 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 "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
...
...
@@ -55,5 +58,3 @@ BEGIN
LTEXT "Conectando a la cámara... Por favor espere",IDC_STATIC,128,58,
116,8
END
#pragma code_page(default)
dlls/gphoto2.ds/gphoto2_Fr.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Ko.rc
View file @
f894164d
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Lt.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* UTF-8 */
#pragma code_page(65001)
...
...
@@ -56,5 +58,3 @@ BEGIN
LTEXT "Jungiamasi prie kameros... Prašome palaukti",IDC_STATIC,124,58,
140,8
END
#pragma code_page(default)
dlls/gphoto2.ds/gphoto2_Nl.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_No.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Pl.rc
View file @
f894164d
...
...
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Pt.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Ru.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Si.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
#pragma code_page(65001)
LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
...
...
@@ -54,5 +56,3 @@ BEGIN
LTEXT "Povezujem se s kamero ... Prosim, počakajte",IDC_STATIC,128,58,
116,8
END
#pragma code_page(default)
dlls/gphoto2.ds/gphoto2_Sv.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
IDD_CAMERAUI DIALOG DISCARDABLE 0, 0, 372, 273
...
...
dlls/gphoto2.ds/gphoto2_Zh.rc
View file @
f894164d
...
...
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "resource.h"
/* Chinese text is encoded in UTF-8 */
#pragma code_page(65001)
...
...
@@ -92,5 +94,3 @@ BEGIN
LTEXT "正在連接照相機... 請稍候",IDC_STATIC,128,58,
116,8
END
#pragma code_page(default)
dlls/gphoto2.ds/resource.h
View file @
f894164d
...
...
@@ -18,6 +18,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <commctrl.h>
#define IDD_DIALOG1 0x400
#define IDD_CAMERAUI 0x401
#define IDD_CONNECTING 0x402
...
...
dlls/gphoto2.ds/rsrc.rc
deleted
100644 → 0
View file @
46e5df5c
/*
* Top level resource file for Twain
*
* Copyright 2006 CodeWeavers, Aric Stewart
*
* 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 "winnls.h"
#include "commctrl.h"
#include "resource.h"
#include "gphoto2_Da.rc"
#include "gphoto2_De.rc"
#include "gphoto2_En.rc"
#include "gphoto2_Es.rc"
#include "gphoto2_Fr.rc"
#include "gphoto2_Ko.rc"
#include "gphoto2_Lt.rc"
#include "gphoto2_Nl.rc"
#include "gphoto2_No.rc"
#include "gphoto2_Pl.rc"
#include "gphoto2_Pt.rc"
#include "gphoto2_Ru.rc"
#include "gphoto2_Si.rc"
#include "gphoto2_Sv.rc"
#include "gphoto2_Zh.rc"
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