2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 1998 Juergen Schmied
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
|
|
|
|
2009-07-02 00:28:19 +02:00
|
|
|
#include "shresdef.h"
|
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
|
|
|
|
|
2003-09-30 02:25:28 +02:00
|
|
|
MENU_001 MENU DISCARDABLE
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Lar&ge Icons", FCIDM_SHVIEW_BIGICON
|
|
|
|
MENUITEM "S&mall Icons", FCIDM_SHVIEW_SMALLICON
|
|
|
|
MENUITEM "&List", FCIDM_SHVIEW_LISTVIEW
|
|
|
|
MENUITEM "&Details", FCIDM_SHVIEW_REPORTVIEW
|
|
|
|
END
|
|
|
|
|
|
|
|
/*
|
|
|
|
shellview background menu
|
|
|
|
*/
|
|
|
|
MENU_002 MENU DISCARDABLE
|
|
|
|
BEGIN
|
2004-09-23 06:28:04 +02:00
|
|
|
POPUP ""
|
2003-09-30 02:25:28 +02:00
|
|
|
BEGIN
|
|
|
|
POPUP "&View"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Lar&ge Icons", FCIDM_SHVIEW_BIGICON
|
|
|
|
MENUITEM "S&mall Icons", FCIDM_SHVIEW_SMALLICON
|
|
|
|
MENUITEM "&List", FCIDM_SHVIEW_LISTVIEW
|
|
|
|
MENUITEM "&Details", FCIDM_SHVIEW_REPORTVIEW
|
|
|
|
END
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
POPUP "Arrange &Icons"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "By &Name", 0x30 /* column 0 */
|
|
|
|
MENUITEM "By &Type", 0x32 /* column 2 */
|
|
|
|
MENUITEM "By &Size", 0x31 /* ... */
|
|
|
|
MENUITEM "By &Date", 0x33
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&Auto Arrange", FCIDM_SHVIEW_AUTOARRANGE
|
|
|
|
END
|
|
|
|
MENUITEM "Line up Icons", FCIDM_SHVIEW_SNAPTOGRID
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Refresh", FCIDM_SHVIEW_REFRESH
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Paste", FCIDM_SHVIEW_INSERT
|
|
|
|
MENUITEM "Paste as Link", FCIDM_SHVIEW_INSERTLINK
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
POPUP "New"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "New &Folder", FCIDM_SHVIEW_NEWFOLDER
|
|
|
|
MENUITEM "New &Link", FCIDM_SHVIEW_NEWLINK
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
END
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Properties", FCIDM_SHVIEW_PROPERTIES
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
|
|
|
/*
|
|
|
|
shellview item menu
|
|
|
|
*/
|
|
|
|
MENU_SHV_FILE MENU DISCARDABLE
|
|
|
|
BEGIN
|
2004-09-23 06:28:04 +02:00
|
|
|
POPUP ""
|
2003-09-30 02:25:28 +02:00
|
|
|
BEGIN
|
2007-12-01 20:47:23 +01:00
|
|
|
MENUITEM "&Select" FCIDM_SHVIEW_OPEN
|
2004-07-12 22:44:33 +02:00
|
|
|
MENUITEM "E&xplore", FCIDM_SHVIEW_EXPLORE
|
|
|
|
MENUITEM "&Open", FCIDM_SHVIEW_OPEN
|
2003-09-30 02:25:28 +02:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "C&ut", FCIDM_SHVIEW_CUT
|
|
|
|
MENUITEM "&Copy", FCIDM_SHVIEW_COPY
|
|
|
|
MENUITEM SEPARATOR
|
2004-07-12 22:44:33 +02:00
|
|
|
MENUITEM "Create &Link", FCIDM_SHVIEW_CREATELINK
|
2003-09-30 02:25:28 +02:00
|
|
|
MENUITEM "&Delete", FCIDM_SHVIEW_DELETE
|
|
|
|
MENUITEM "&Rename", FCIDM_SHVIEW_RENAME
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "&Properties", FCIDM_SHVIEW_PROPERTIES
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
2008-07-22 18:31:03 +02:00
|
|
|
MENU_CPANEL MENU
|
|
|
|
BEGIN
|
|
|
|
POPUP "&File"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "E&xit", IDM_CPANEL_EXIT
|
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&View"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Lar&ge Icons", FCIDM_SHVIEW_BIGICON
|
|
|
|
MENUITEM "S&mall Icons", FCIDM_SHVIEW_SMALLICON
|
|
|
|
MENUITEM "&List", FCIDM_SHVIEW_LISTVIEW
|
|
|
|
MENUITEM "&Details", FCIDM_SHVIEW_REPORTVIEW
|
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&Help"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "&About Control Panel...", IDM_CPANEL_ABOUT
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
2003-09-30 02:25:28 +02:00
|
|
|
SHBRSFORFOLDER_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 188, 192
|
|
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | DS_MODALFRAME | DS_SETFONT | DS_3DLOOK
|
|
|
|
CAPTION "Browse for Folder"
|
2004-08-24 20:33:01 +02:00
|
|
|
FONT 8, "MS Shell Dlg"
|
2003-09-30 02:25:28 +02:00
|
|
|
{
|
|
|
|
DEFPUSHBUTTON "OK", 1, 80, 176, 50, 12, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "Cancel", 2, 134, 176, 50, 12, WS_GROUP | WS_TABSTOP
|
|
|
|
LTEXT "", IDD_TITLE, 4, 4, 180, 12
|
|
|
|
LTEXT "", IDD_STATUS, 4, 25, 180, 12
|
|
|
|
CONTROL "", IDD_TREEVIEW, "SysTreeView32",
|
|
|
|
TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
|
|
|
|
WS_BORDER | WS_TABSTOP,
|
|
|
|
4, 40, 180, 120
|
|
|
|
}
|
|
|
|
|
2007-06-07 23:55:09 +02:00
|
|
|
SHNEWBRSFORFOLDER_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 218, 196
|
2008-07-07 12:05:02 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU | WS_SIZEBOX | DS_MODALFRAME | DS_SETFONT | DS_3DLOOK
|
2007-06-07 23:55:09 +02:00
|
|
|
CAPTION "Browse for Folder"
|
|
|
|
FONT 8, "MS Shell Dlg"
|
|
|
|
{
|
|
|
|
LTEXT "", IDD_TITLE, 10, 8, 198, 24
|
|
|
|
LTEXT "", IDD_STATUS, 10, 25, 198, 12
|
|
|
|
LTEXT "Folder:", IDD_FOLDER, 10, 156, 40, 12
|
|
|
|
CONTROL "", IDD_TREEVIEW, "SysTreeView32",
|
|
|
|
TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
|
|
|
|
WS_BORDER | WS_TABSTOP,
|
|
|
|
12, 38, 194, 105
|
|
|
|
EDITTEXT IDD_FOLDERTEXT, 46, 150, 160, 14, WS_BORDER | WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Make New Folder", IDD_MAKENEWFOLDER, 12, 174, 70, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
DEFPUSHBUTTON "OK", IDOK, 102, 174, 50, 14, BS_DEFPUSHBUTTON | WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 156, 174, 50, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
}
|
|
|
|
|
2007-02-09 16:59:43 +01:00
|
|
|
SHELL_YESTOALL_MSGBOX DIALOG 200, 100, 280, 90
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
|
|
CAPTION "Message"
|
|
|
|
FONT 8, "MS Shell Dlg"
|
|
|
|
{
|
|
|
|
DEFPUSHBUTTON "&Yes", IDYES, 34, 69, 53, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "Yes to &all", IDD_YESTOALL, 92, 69, 65, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "&No", IDNO, 162, 69, 53, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
PUSHBUTTON "&Cancel", IDCANCEL, 220, 69, 53, 14, WS_GROUP | WS_TABSTOP
|
|
|
|
ICON "", IDD_ICON, 10, 10, 16, 16
|
|
|
|
LTEXT "", IDD_MESSAGE, 40, 10, 238, 52, 0
|
|
|
|
}
|
|
|
|
|
2008-03-26 20:51:12 +01:00
|
|
|
SHELL_ABOUT_MSGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 15, 40, 220, 152
|
1999-04-25 20:31:35 +02:00
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
|
|
CAPTION "About %s"
|
2004-08-24 20:33:01 +02:00
|
|
|
FONT 10, "MS Shell Dlg"
|
1999-04-25 20:31:35 +02:00
|
|
|
{
|
2008-03-26 20:51:12 +01:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 153, 133, 60, 12, WS_TABSTOP
|
|
|
|
PUSHBUTTON "Wine &license...", IDC_ABOUT_LICENSE, 153, 113, 60, 12, WS_TABSTOP
|
2008-03-21 18:38:51 +01:00
|
|
|
LISTBOX IDC_ABOUT_LISTBOX, 8, 65, 137, 82, LBS_NOTIFY | WS_VSCROLL | WS_BORDER
|
|
|
|
ICON "", stc1, 10, 10, 30, 30
|
2008-03-26 20:51:12 +01:00
|
|
|
LTEXT "", IDC_ABOUT_STATIC_TEXT1, 42, 10, 170, 10
|
|
|
|
LTEXT "", IDC_ABOUT_STATIC_TEXT2, 42, 22, 170, 10
|
|
|
|
LTEXT "Running on %s", IDC_ABOUT_STATIC_TEXT3, 42, 34, 170, 10
|
|
|
|
LTEXT "Wine was brought to you by:", IDC_ABOUT_WINE_TEXT, 8, 54, 204, 10
|
1999-04-25 20:31:35 +02:00
|
|
|
}
|
|
|
|
|
2002-06-10 04:34:36 +02:00
|
|
|
SHELL_RUN_DLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 0, 0, 227, 95
|
|
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
|
|
CAPTION ""
|
2004-08-24 20:33:01 +02:00
|
|
|
FONT 8, "MS Shell Dlg"
|
2002-06-10 04:34:36 +02:00
|
|
|
{
|
2008-06-27 19:03:24 +02:00
|
|
|
ICON "", IDC_RUNDLG_ICON, 7, 11, 18, 20, WS_VISIBLE
|
|
|
|
LTEXT "Type the name of a program, folder, document, or Internet resource, and Wine will open it for you.", IDC_RUNDLG_DESCRIPTION, 36, 11, 182, 18
|
|
|
|
LTEXT "&Open:", IDC_RUNDLG_LABEL, 7, 39, 24, 10
|
2008-06-27 17:28:57 +02:00
|
|
|
CONTROL "", IDC_RUNDLG_EDITPATH, "COMBOBOX", WS_TABSTOP | WS_GROUP | WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 36, 37, 183, 100
|
2002-06-10 04:34:36 +02:00
|
|
|
DEFPUSHBUTTON "OK", IDOK, 62, 63, 50, 14, WS_TABSTOP
|
|
|
|
PUSHBUTTON "Cancel", IDCANCEL, 116, 63, 50, 14, WS_TABSTOP
|
2008-06-27 17:28:57 +02:00
|
|
|
PUSHBUTTON "&Browse...", IDC_RUNDLG_BROWSE, 170, 63, 50, 14, WS_TABSTOP
|
2002-06-10 04:34:36 +02:00
|
|
|
}
|
|
|
|
|
2008-03-02 22:37:26 +01:00
|
|
|
STRINGTABLE
|
2003-09-30 02:25:28 +02:00
|
|
|
{
|
2005-04-25 12:56:29 +02:00
|
|
|
/* columns in the shellview */
|
|
|
|
IDS_SHV_COLUMN1 "File"
|
|
|
|
IDS_SHV_COLUMN2 "Size"
|
|
|
|
IDS_SHV_COLUMN3 "Type"
|
|
|
|
IDS_SHV_COLUMN4 "Modified"
|
|
|
|
IDS_SHV_COLUMN5 "Attributes"
|
|
|
|
IDS_SHV_COLUMN6 "Size"
|
|
|
|
IDS_SHV_COLUMN7 "Size available"
|
|
|
|
IDS_SHV_COLUMN8 "Name"
|
|
|
|
IDS_SHV_COLUMN9 "Comments"
|
|
|
|
IDS_SHV_COLUMN10 "Owner"
|
|
|
|
IDS_SHV_COLUMN11 "Group"
|
2006-08-03 19:04:11 +02:00
|
|
|
IDS_SHV_COLUMN_DELFROM "Original location"
|
|
|
|
IDS_SHV_COLUMN_DELDATE "Date deleted"
|
2005-04-25 12:56:29 +02:00
|
|
|
|
|
|
|
/* special folders */
|
2003-09-30 02:25:28 +02:00
|
|
|
IDS_DESKTOP "Desktop"
|
|
|
|
IDS_MYCOMPUTER "My Computer"
|
2006-08-03 19:04:11 +02:00
|
|
|
IDS_RECYCLEBIN_FOLDER_NAME "Trash"
|
2008-06-23 19:54:00 +02:00
|
|
|
IDS_CONTROLPANEL "Control Panel"
|
2003-09-30 02:25:28 +02:00
|
|
|
|
2005-04-25 12:56:29 +02:00
|
|
|
/* context menus */
|
2003-09-30 02:25:28 +02:00
|
|
|
IDS_VIEW_LARGE "Lar&ge Icons"
|
|
|
|
IDS_VIEW_SMALL "S&mall Icons"
|
|
|
|
IDS_VIEW_LIST "&List"
|
|
|
|
IDS_VIEW_DETAILS "&Details"
|
|
|
|
IDS_SELECT "Select"
|
|
|
|
IDS_OPEN "Open"
|
|
|
|
|
2005-05-06 17:44:31 +02:00
|
|
|
IDS_CREATEFOLDER_DENIED "Unable to create new Folder: Permission denied."
|
2003-11-20 23:07:35 +01:00
|
|
|
IDS_CREATEFOLDER_CAPTION "Error during creation of a new folder"
|
2005-05-06 17:44:31 +02:00
|
|
|
IDS_DELETEITEM_CAPTION "Confirm file deletion"
|
|
|
|
IDS_DELETEFOLDER_CAPTION "Confirm folder deletion"
|
2003-09-30 02:25:28 +02:00
|
|
|
IDS_DELETEITEM_TEXT "Are you sure you want to delete '%1'?"
|
|
|
|
IDS_DELETEMULTIPLE_TEXT "Are you sure you want to delete these %1 items?"
|
2006-07-06 20:46:21 +02:00
|
|
|
IDS_DELETESELECTED_TEXT "Are you sure you want to delete the selected item(s)?"
|
2006-07-19 18:36:22 +02:00
|
|
|
IDS_TRASHITEM_TEXT "Are you sure that you want to send '%1' to the Trash?"
|
2007-05-03 21:29:53 +02:00
|
|
|
IDS_TRASHFOLDER_TEXT "Are you sure that you want to send '%1' and all its content to the Trash?"
|
2006-07-19 18:36:22 +02:00
|
|
|
IDS_TRASHMULTIPLE_TEXT "Are you sure that you want to send these %1 items to the Trash?"
|
2006-07-19 18:37:02 +02:00
|
|
|
IDS_CANTTRASH_TEXT "The item '%1' can't be sent to Trash. Do you want to delete it instead?"
|
2007-02-09 17:13:25 +01:00
|
|
|
IDS_OVERWRITEFILE_TEXT "This folder already contains a file called '%1'.\n\nDo you want to replace it?"
|
|
|
|
IDS_OVERWRITEFILE_CAPTION "Confirm file overwrite"
|
|
|
|
IDS_OVERWRITEFOLDER_TEXT "This folder already contains a folder named '%1'.\n\n"\
|
|
|
|
"If the files in the destination folder have the same names as files in the\n"\
|
|
|
|
"selected folder they will be replaced. Do you still want to move or copy\n"\
|
|
|
|
"the folder?"
|
2003-09-30 02:25:28 +02:00
|
|
|
|
2005-04-25 12:56:29 +02:00
|
|
|
/* message box strings */
|
|
|
|
IDS_RESTART_TITLE "Restart"
|
|
|
|
IDS_RESTART_PROMPT "Do you want to simulate a Windows reboot?"
|
|
|
|
IDS_SHUTDOWN_TITLE "Shutdown"
|
|
|
|
IDS_SHUTDOWN_PROMPT "Do you want to shutdown your Wine session?"
|
2004-07-10 00:51:19 +02:00
|
|
|
|
2008-06-27 18:16:47 +02:00
|
|
|
/* Run File dialog */
|
|
|
|
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
|
|
|
|
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"
|
|
|
|
IDS_RUNDLG_BROWSE_CAPTION "Browse"
|
|
|
|
IDS_RUNDLG_BROWSE_FILTER "Executable Files\0*.exe\0All Files\0*.*\0\0"
|
|
|
|
|
2005-04-25 12:56:29 +02:00
|
|
|
/* shell folder path default values */
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_PROGRAMS "Start Menu\\Programs"
|
|
|
|
IDS_PERSONAL "My Documents"
|
|
|
|
IDS_FAVORITES "Favorites"
|
|
|
|
IDS_STARTUP "Start Menu\\Programs\\StartUp"
|
|
|
|
IDS_RECENT "Recent"
|
|
|
|
IDS_SENDTO "SendTo"
|
|
|
|
IDS_STARTMENU "Start Menu"
|
2006-02-02 13:28:05 +01:00
|
|
|
IDS_MYMUSIC "My Music"
|
2007-11-12 20:57:33 +01:00
|
|
|
IDS_MYVIDEO "My Videos"
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_DESKTOPDIRECTORY "Desktop"
|
|
|
|
IDS_NETHOOD "NetHood"
|
|
|
|
IDS_TEMPLATES "Templates"
|
|
|
|
IDS_APPDATA "Application Data"
|
|
|
|
IDS_PRINTHOOD "PrintHood"
|
|
|
|
IDS_LOCAL_APPDATA "Local Settings\\Application Data"
|
2006-01-04 14:48:59 +01:00
|
|
|
IDS_INTERNET_CACHE "Local Settings\\Temporary Internet Files"
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_COOKIES "Cookies"
|
2006-01-04 14:48:59 +01:00
|
|
|
IDS_HISTORY "Local Settings\\History"
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_PROGRAM_FILES "Program Files"
|
2006-02-02 13:28:05 +01:00
|
|
|
IDS_MYPICTURES "My Pictures"
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_PROGRAM_FILES_COMMON "Program Files\\Common Files"
|
|
|
|
IDS_COMMON_DOCUMENTS "Documents"
|
|
|
|
IDS_ADMINTOOLS "Start Menu\\Programs\\Administrative Tools"
|
2009-07-20 20:19:26 +02:00
|
|
|
IDS_COMMON_MUSIC "Music"
|
|
|
|
IDS_COMMON_PICTURES "Pictures"
|
|
|
|
IDS_COMMON_VIDEO "Videos"
|
2004-10-21 21:59:46 +02:00
|
|
|
IDS_CDBURN_AREA "Local Settings\\Application Data\\Microsoft\\CD Burning"
|
2007-12-06 10:20:48 +01:00
|
|
|
|
|
|
|
IDS_NEWFOLDER "New Folder"
|
2008-07-22 18:30:51 +02:00
|
|
|
|
|
|
|
IDS_CPANEL_TITLE "Wine Control Panel"
|
2008-07-24 23:10:33 +02:00
|
|
|
IDS_CPANEL_NAME "Name"
|
|
|
|
IDS_CPANEL_DESCRIPTION "Description"
|
2009-02-26 02:14:30 +01:00
|
|
|
|
|
|
|
IDS_SHLEXEC_NOASSOC "There is no Windows program configured to open this type of file."
|
2004-10-21 21:59:46 +02:00
|
|
|
}
|
2008-03-26 20:51:12 +01:00
|
|
|
|
|
|
|
STRINGTABLE
|
|
|
|
{
|
|
|
|
IDS_LICENSE_CAPTION, "Wine License"
|
|
|
|
IDS_LICENSE,
|
|
|
|
"Wine 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.\n\n\
|
|
|
|
Wine 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.\n\n\
|
|
|
|
You should have received a copy of the GNU Lesser General Public \
|
2008-05-29 18:22:56 +02:00
|
|
|
License along with Wine; if not, write to the Free Software \
|
2008-03-26 20:51:12 +01:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA."
|
|
|
|
}
|