Sweden-Number/programs/progman/It.rc

223 lines
9.5 KiB
Plaintext
Raw Normal View History

Release 970215 Sat Feb 15 11:59:17 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Converted a lot of functions to Win32 types. Removed HWND type. Fri Feb 14 15:09:19 1997 Onno Hovers <onno@stack.nl> * [memory/global.c] Implemented GMEM_MOVEABLE blocks for Win32. Fri Feb 14 00:24:39 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/task.c] [windows/queue.c] Do not read X events while in the intertask SendMessage(). * [misc/lstr.c] Fixed CharPrev32A(). * [windows/hook.c] [include/hook.h] Restored broken WH_CALLWNDPROC functionality for dialogs, etc... * [windows/win.c] [windows/defwnd.c] [windows/mdi.c] [windows/event.c] [controls/edit.c] Added WIN_ISWIN32 flag to windows created by Win32 calls. Several new Win32 messages are sent when this flag is on. * [msdos/dosmem.c] [memory/global.c] Some changes in DOS memory allocation. Fri Feb 7 21:46:03 1997 Andrew Taylor <andrew@riscan.com> * [win32/security.c] Added SID manipulation functions. * [include/debug.h] Added debugging class "security". Fri Feb 7 20:46:33 1997 Robert Pouliot <krynos@clic.net> * [debugger/msc.c] [debugger/source.c] [documentation/wine_os2.txt] [loader/signal.c] Some more changes for OS/2. Doesn't work yet. Fri Feb 7 09:31:17 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [scheduler/process.c] Added ExpandEnvironmentStrings*. * [misc/ntdll.c] [include/ntdll.h] Added some new functions. * [objects/cursoricon.c] CURSORICON_LoadHandler: check against some bizarre out of memory conditions. * [windows/mdi.c] Fixed DefFrameProc32*, added TranslateMDISysAccel32. Wed Feb 5 01:31:05 1997 John Zero <john@globe.graphisoft.hu> * [resources/sysres_Hu.rc] [misc/ole2nls.c] [misc/main.c] [programs/progman/Hu.rc] [programs/winhelp/Hu.rc] Added Hungarian language support.
1997-02-15 15:29:56 +01:00
/*
* Program Manager
*
* Copyright 1996 Ulrich Schmid
2003-11-20 23:07:35 +01:00
* Copyright 2002 Sylvain Petreolle
* Copyright 2003 Ivan Leo Puoti
*
* 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
Release 970215 Sat Feb 15 11:59:17 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Converted a lot of functions to Win32 types. Removed HWND type. Fri Feb 14 15:09:19 1997 Onno Hovers <onno@stack.nl> * [memory/global.c] Implemented GMEM_MOVEABLE blocks for Win32. Fri Feb 14 00:24:39 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/task.c] [windows/queue.c] Do not read X events while in the intertask SendMessage(). * [misc/lstr.c] Fixed CharPrev32A(). * [windows/hook.c] [include/hook.h] Restored broken WH_CALLWNDPROC functionality for dialogs, etc... * [windows/win.c] [windows/defwnd.c] [windows/mdi.c] [windows/event.c] [controls/edit.c] Added WIN_ISWIN32 flag to windows created by Win32 calls. Several new Win32 messages are sent when this flag is on. * [msdos/dosmem.c] [memory/global.c] Some changes in DOS memory allocation. Fri Feb 7 21:46:03 1997 Andrew Taylor <andrew@riscan.com> * [win32/security.c] Added SID manipulation functions. * [include/debug.h] Added debugging class "security". Fri Feb 7 20:46:33 1997 Robert Pouliot <krynos@clic.net> * [debugger/msc.c] [debugger/source.c] [documentation/wine_os2.txt] [loader/signal.c] Some more changes for OS/2. Doesn't work yet. Fri Feb 7 09:31:17 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [scheduler/process.c] Added ExpandEnvironmentStrings*. * [misc/ntdll.c] [include/ntdll.h] Added some new functions. * [objects/cursoricon.c] CURSORICON_LoadHandler: check against some bizarre out of memory conditions. * [windows/mdi.c] Fixed DefFrameProc32*, added TranslateMDISysAccel32. Wed Feb 5 01:31:05 1997 John Zero <john@globe.graphisoft.hu> * [resources/sysres_Hu.rc] [misc/ole2nls.c] [misc/main.c] [programs/progman/Hu.rc] [programs/winhelp/Hu.rc] Added Hungarian language support.
1997-02-15 15:29:56 +01:00
*/
/* Menu */
2003-11-20 23:07:35 +01:00
MAIN_MENU MENU LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
{
POPUP "&File" {
MENUITEM "&Nuovo...", PM_NEW
2003-12-30 20:12:38 +01:00
MENUITEM "&Apri\tInvio", PM_OPEN
2003-11-20 23:07:35 +01:00
MENUITEM "&Sposta...\tF7", PM_MOVE, GRAYED
MENUITEM "&Copia...\tF8", PM_COPY, GRAYED
MENUITEM "&Elimina\tEntf", PM_DELETE
2003-12-30 20:12:38 +01:00
MENUITEM "&Propriet<65>...\tAlt+Invio", PM_ATTRIBUTES
2003-11-20 23:07:35 +01:00
MENUITEM SEPARATOR
MENUITEM "&Esegui...", PM_EXECUTE
MENUITEM SEPARATOR
MENUITEM "&Esci", PM_EXIT
}
POPUP "&Opzioni" {
MENUITEM "&Disposizione automatica", PM_AUTO_ARRANGE
MENUITEM "&Riduci a icona in esecuzione", PM_MIN_ON_RUN
MENUITEM "&Salva impostazioni in uscita", PM_SAVE_SETTINGS
}
POPUP "&F&inestra" {
MENUITEM "&Sovrapponi\tShift+F5", PM_OVERLAP
MENUITEM "&A&ffianca\tShift+F4", PM_SIDE_BY_SIDE
MENUITEM "&Disponi icone", PM_ARRANGE
}
POPUP "&Aiuto" {
MENUITEM "&Sommario", PM_CONTENTS
MENUITEM "&Ricerca...", PM_SEARCH
MENUITEM SEPARATOR
MENUITEM "&Aiuto sulla Guida", PM_HELPONHELP
MENUITEM "&Tutorial", PM_TUTORIAL
MENUITEM SEPARATOR
POPUP "&Informazioni sul Program Manager" {
MENUITEM "&Licenza", PM_LICENSE
MENUITEM "&Garanzia", PM_NO_WARRANTY
MENUITEM "&Informazioni su WINE", PM_ABOUT_WINE
}
}
}
/* Dialog `New' */
DIALOG_NEW DIALOG 0, 0, 170, 65
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Nuovo"
{
RADIOBUTTON "", PM_NEW_GROUP, 10, 15, 10, 15
LTEXT "&Gruppo di programmi", PM_NEW_GROUP, 20, 18, 80, 15
RADIOBUTTON "", PM_NEW_PROGRAM, 10, 35, 10, 15
LTEXT "&Programma", PM_NEW_PROGRAM, 20, 38, 80, 15
DEFPUSHBUTTON "OK", IDOK, 105, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 105, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 105, 45, 60, 15, WS_TABSTOP
}
/* Dialog `Move' */
DIALOG_MOVE DIALOG 0, 0, 250, 65
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Move Program"
{
LTEXT "Sposta programma:", IDIGNORE, 5, 5, 90, 15
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
LTEXT "Dal gruppo:", IDIGNORE, 5, 13, 90, 15
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
LTEXT "&Al gruppo:", PM_TO_GROUP_TXT, 5, 28, 140, 15
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
}
/* Dialog `Copy' */
DIALOG_COPY DIALOG 0, 0, 250, 65
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Copy Program"
{
LTEXT "Copia programma:", IDIGNORE, 5, 5, 90, 15
LTEXT "", PM_PROGRAM, 95, 5, 90, 15
LTEXT "Dal gruppo:", IDIGNORE, 5, 13, 90, 15
LTEXT "", PM_FROM_GROUP, 95, 13, 90, 15
LTEXT "&Al grouppo:", PM_TO_GROUP_TXT, 5, 28, 140, 15
COMBOBOX PM_TO_GROUP, 5, 38, 140, 50, WS_TABSTOP | CBS_DROPDOWNLIST
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 185, 45, 60, 15, WS_TABSTOP
}
/* Dialog `Group attributes' */
DIALOG_GROUP DIALOG 0, 0, 230, 65
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Propriet<65> del gruppo di Programmi"
{
LTEXT "&Descrizione:", PM_DESCRIPTION_TXT, 05, 18, 50, 10
EDITTEXT PM_DESCRIPTION, 60, 18, 90, 15, WS_TABSTOP
LTEXT "&File di gruppo:", PM_FILE_TXT, 05, 38, 50, 10
EDITTEXT PM_FILE, 60, 38, 90, 15, WS_TABSTOP
DEFPUSHBUTTON "OK", IDOK, 155, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 155, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 155, 45, 60, 15, WS_TABSTOP
}
/* Dialog `Program attributes' */
DIALOG_PROGRAM DIALOG 0, 0, 250, 105
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Propriet<65> del programma"
{
LTEXT "&Descrizione:", PM_DESCRIPTION_TXT, 05, 10, 60, 10
EDITTEXT PM_DESCRIPTION, 80, 10, 90, 15, WS_TABSTOP
LTEXT "&Linea di comando:", PM_COMMAND_LINE_TXT, 05, 25, 60, 10
EDITTEXT PM_COMMAND_LINE, 80, 25, 90, 15, WS_TABSTOP
LTEXT "&Directory di &lavoro:", PM_DIRECTORY_TXT, 05, 40, 60, 10
EDITTEXT PM_DIRECTORY, 80, 40, 90, 15, WS_TABSTOP
LTEXT "&Tasto di scelta rapida:", PM_HOT_KEY_TXT, 05, 55, 60, 10
EDITTEXT PM_HOT_KEY, 80, 55, 90, 15, WS_TABSTOP
ICON "", PM_ICON, 20, 70
CHECKBOX "", PM_SYMBOL, 80, 75, 10, 10, WS_TABSTOP
LTEXT "&Avvia ridotto a icona", IDIGNORE, 95, 75, 75, 10
DEFPUSHBUTTON "OK", IDOK, 185, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 185, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Trova...", PM_BROWSE, 185, 45, 60, 15, WS_TABSTOP
PUSHBUTTON "&Cambia icona...", PM_OTHER_SYMBOL, 185, 65, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 185, 85, 60, 15, WS_TABSTOP
}
/* Dialog `Symbol' */
DIALOG_SYMBOL DIALOG 0, 0, 200, 85
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Cambia icona"
{
LTEXT "&Nome del file:", PM_ICON_FILE_TXT, 5, 15, 40, 10
EDITTEXT PM_ICON_FILE, 45, 15, 85, 15, WS_TABSTOP
LTEXT "I&cona corrente:", PM_SYMBOL_LIST_TXT, 5, 30, 125, 10
COMBOBOX PM_SYMBOL_LIST, 5, 40, 125, 50,
CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | CBS_OWNERDRAWFIXED | WS_TABSTOP
DEFPUSHBUTTON "OK", IDOK, 135, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Cerca...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
}
/* Dialog `Execute' */
DIALOG_EXECUTE DIALOG 0, 0, 200, 85
2004-03-30 01:05:55 +02:00
LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
2003-11-20 23:07:35 +01:00
CAPTION "Esegui programma"
{
LTEXT "&Linea di comando:", IDIGNORE, 05, 15, 120, 10
EDITTEXT PM_COMMAND, 05, 25, 120, 15, WS_TABSTOP
CHECKBOX "", PM_SYMBOL, 05, 45, 10, 10, WS_TABSTOP
LTEXT "&Avvia ridotto a icona", IDIGNORE, 20, 45, 120, 10
DEFPUSHBUTTON "OK", IDOK, 135, 5, 60, 15, WS_TABSTOP
PUSHBUTTON "Annulla", IDCANCEL, 135, 25, 60, 15, WS_TABSTOP
PUSHBUTTON "&Cerca...", PM_BROWSE, 135, 45, 60, 15, WS_TABSTOP
PUSHBUTTON "&Aiuto", PM_HELP, 135, 65, 60, 15, WS_TABSTOP
}
Release 970215 Sat Feb 15 11:59:17 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Converted a lot of functions to Win32 types. Removed HWND type. Fri Feb 14 15:09:19 1997 Onno Hovers <onno@stack.nl> * [memory/global.c] Implemented GMEM_MOVEABLE blocks for Win32. Fri Feb 14 00:24:39 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/task.c] [windows/queue.c] Do not read X events while in the intertask SendMessage(). * [misc/lstr.c] Fixed CharPrev32A(). * [windows/hook.c] [include/hook.h] Restored broken WH_CALLWNDPROC functionality for dialogs, etc... * [windows/win.c] [windows/defwnd.c] [windows/mdi.c] [windows/event.c] [controls/edit.c] Added WIN_ISWIN32 flag to windows created by Win32 calls. Several new Win32 messages are sent when this flag is on. * [msdos/dosmem.c] [memory/global.c] Some changes in DOS memory allocation. Fri Feb 7 21:46:03 1997 Andrew Taylor <andrew@riscan.com> * [win32/security.c] Added SID manipulation functions. * [include/debug.h] Added debugging class "security". Fri Feb 7 20:46:33 1997 Robert Pouliot <krynos@clic.net> * [debugger/msc.c] [debugger/source.c] [documentation/wine_os2.txt] [loader/signal.c] Some more changes for OS/2. Doesn't work yet. Fri Feb 7 09:31:17 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [scheduler/process.c] Added ExpandEnvironmentStrings*. * [misc/ntdll.c] [include/ntdll.h] Added some new functions. * [objects/cursoricon.c] CURSORICON_LoadHandler: check against some bizarre out of memory conditions. * [windows/mdi.c] Fixed DefFrameProc32*, added TranslateMDISysAccel32. Wed Feb 5 01:31:05 1997 John Zero <john@globe.graphisoft.hu> * [resources/sysres_Hu.rc] [misc/ole2nls.c] [misc/main.c] [programs/progman/Hu.rc] [programs/winhelp/Hu.rc] Added Hungarian language support.
1997-02-15 15:29:56 +01:00
/* Strings */
2004-03-30 01:05:55 +02:00
STRINGTABLE DISCARDABLE LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT
2003-11-20 23:07:35 +01:00
{
IDS_PROGRAM_MANAGER, "Program Manager"
IDS_ERROR, "ERRORE"
IDS_WARNING, "ATTENZONE"
IDS_INFO, "Informazioni"
IDS_DELETE, "Elimina"
IDS_DELETE_GROUP_s, "Eliminare il gruppo `%s' ?"
IDS_DELETE_PROGRAM_s, "Eliminare `%s' ?"
IDS_NOT_IMPLEMENTED, "Non implementato"
IDS_FILE_READ_ERROR_s, "Errore di lettura `%s'."
IDS_FILE_WRITE_ERROR_s, "Errore di scrittura `%s'."
IDS_GRPFILE_READ_ERROR_s, "\
Release 970215 Sat Feb 15 11:59:17 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Converted a lot of functions to Win32 types. Removed HWND type. Fri Feb 14 15:09:19 1997 Onno Hovers <onno@stack.nl> * [memory/global.c] Implemented GMEM_MOVEABLE blocks for Win32. Fri Feb 14 00:24:39 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/task.c] [windows/queue.c] Do not read X events while in the intertask SendMessage(). * [misc/lstr.c] Fixed CharPrev32A(). * [windows/hook.c] [include/hook.h] Restored broken WH_CALLWNDPROC functionality for dialogs, etc... * [windows/win.c] [windows/defwnd.c] [windows/mdi.c] [windows/event.c] [controls/edit.c] Added WIN_ISWIN32 flag to windows created by Win32 calls. Several new Win32 messages are sent when this flag is on. * [msdos/dosmem.c] [memory/global.c] Some changes in DOS memory allocation. Fri Feb 7 21:46:03 1997 Andrew Taylor <andrew@riscan.com> * [win32/security.c] Added SID manipulation functions. * [include/debug.h] Added debugging class "security". Fri Feb 7 20:46:33 1997 Robert Pouliot <krynos@clic.net> * [debugger/msc.c] [debugger/source.c] [documentation/wine_os2.txt] [loader/signal.c] Some more changes for OS/2. Doesn't work yet. Fri Feb 7 09:31:17 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [scheduler/process.c] Added ExpandEnvironmentStrings*. * [misc/ntdll.c] [include/ntdll.h] Added some new functions. * [objects/cursoricon.c] CURSORICON_LoadHandler: check against some bizarre out of memory conditions. * [windows/mdi.c] Fixed DefFrameProc32*, added TranslateMDISysAccel32. Wed Feb 5 01:31:05 1997 John Zero <john@globe.graphisoft.hu> * [resources/sysres_Hu.rc] [misc/ole2nls.c] [misc/main.c] [programs/progman/Hu.rc] [programs/winhelp/Hu.rc] Added Hungarian language support.
1997-02-15 15:29:56 +01:00
Il file di gruppo `%s' non puo' essere aperto.\n\
Provare ad aprirlo in futuro?"
2003-11-20 23:07:35 +01:00
IDS_OUT_OF_MEMORY, "Memoria esaurita"
IDS_WINHELP_ERROR, "Guida non disponibile"
IDS_UNKNOWN_FEATURE_s, "Funzione sconosciuta nel file %s"
IDS_FILE_NOT_OVERWRITTEN_s, "Il file `%s' esiste. Non sovrascritto."
IDS_SAVE_GROUP_AS_s, "Salvare il gruppo come `%s' per non sovrascrivere i file originali"
IDS_NO_HOT_KEY, "Nessuno"
IDS_ALL_FILES, "Tutti i file (*.*)"
IDS_PROGRAMS, "Programmi"
IDS_LIBRARIES_DLL, "Librerie (*.dll)"
IDS_SYMBOL_FILES, "File icona"
IDS_SYMBOLS_ICO, "Icone (*.ico)"
}