-
Notifications
You must be signed in to change notification settings - Fork 1
/
openvpn-gui-res.rc
89 lines (83 loc) · 3.13 KB
/
openvpn-gui-res.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* OpenVPN-GUI -- A Windows GUI for OpenVPN.
*
* Copyright (C) 2009 Heiko Hund <heikoh@users.sf.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (see the file COPYING included with this
* distribution); if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <windows.h>
#include "config.h"
#include "openvpn-gui-res.h"
/* Manifest for XP visual styles */
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "openvpn-gui.manifest"
/* Application Icons */
ID_ICO_APP ICON DISCARDABLE "openvpn-gui.ico"
ID_ICO_LOGO ICON DISCARDABLE "openvpn-gui-text.ico"
ID_ICO_CONNECTED ICON DISCARDABLE "connected.ico"
ID_ICO_CONNECTING ICON DISCARDABLE "connecting.ico"
ID_ICO_DISCONNECTED ICON DISCARDABLE "disconnected.ico"
#include "openvpn-gui-res-de.rc"
#include "openvpn-gui-res-dk.rc"
#include "openvpn-gui-res-en.rc"
#include "openvpn-gui-res-es.rc"
#include "openvpn-gui-res-fi.rc"
#include "openvpn-gui-res-fr.rc"
#include "openvpn-gui-res-it.rc"
#include "openvpn-gui-res-nl.rc"
#include "openvpn-gui-res-no.rc"
#include "openvpn-gui-res-pl.rc"
#include "openvpn-gui-res-pt.rc"
#include "openvpn-gui-res-se.rc"
#include "openvpn-gui-res-tr.rc"
/* Version information and such */
VS_VERSION_INFO VERSIONINFO
FILEVERSION PACKAGE_MAJOR_VERSION,PACKAGE_MINOR_VERSION,PACKAGE_RELEASE,0
FILEOS VOS_NT
FILETYPE VFT_APP
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation"
, LANG_GERMAN, 1200
, LANG_DANISH, 1200
, LANG_ENGLISH, 1200
, LANG_SPANISH, 1200
, LANG_FINNISH, 1200
, LANG_FRENCH, 1200
, LANG_ITALIAN, 1200
, LANG_DUTCH, 1200
, LANG_NORWEGIAN, 1200
, LANG_POLISH, 1200
, LANG_PORTUGUESE, 1200
, LANG_SWEDISH, 1200
, LANG_TURKISH, 1200
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0" /* en_US, Unicode */
BEGIN
VALUE "FileDescription", PACKAGE_NAME " for Windows"
VALUE "FileVersion", PACKAGE_VERSION
VALUE "InternalName", PACKAGE_TARNAME
VALUE "OriginalFilename", PACKAGE_TARNAME ".exe"
VALUE "ProductName", PACKAGE_NAME
VALUE "ProductVersion", PACKAGE_VERSION
VALUE "Website", PACKAGE_URL
VALUE "LegalCopyright", "The " PACKAGE_NAME " developers"
VALUE "CompanyName", PACKAGE_NAME
END
END
END