Es.rc 2.29 KB
Newer Older
1 2 3 4
/*
 * Help Viewer
 *
 * Copyright 1996 Ulrich Schmid
5
 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6
 * Copyright 2003, 2004 Jos Manuel Ferrer Ortiz
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * 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
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 22 23 24
 */

/* Menu */

25
MAIN_MENU MENU LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
26 27
{
 POPUP "&Archivo" {
28
  MENUITEM "A&brir...", MNID_FILE_OPEN
29
  MENUITEM SEPARATOR
30
  MENUITEM "&Imprimir", MNID_FILE_PRINT
31
  MENUITEM "&Configuracin impresora...", MNID_FILE_SETUP
32
   MENUITEM SEPARATOR
33
  MENUITEM "&Salir", MNID_FILE_EXIT
34 35
 }
 POPUP "&Editar" {
36
   MENUITEM "&Copiar...", MNID_EDIT_COPYDLG
37
   MENUITEM SEPARATOR
38
   MENUITEM "&Anotar...", MNID_EDIT_ANNOTATE
39 40
 }
 POPUP "&Marcador" {
41
   MENUITEM "&Definir...", MNID_BKMK_DEFINE
42
 }
43
 POPUP "A&yuda" {
44
   MENUITEM "&Ayuda sobre la ayuda", MNID_HELP_HELPON
45
   MENUITEM "&Siempre visible", MNID_HELP_HELPTOP
46
   MENUITEM SEPARATOR
47
   MENUITEM "&Info...", MNID_HELP_ABOUT
48
#ifdef WINELIB
49
   MENUITEM "&Acerca de WINE", MNID_HELP_WINE
50 51 52
#endif
 }
}
53 54

/* Strings */
55
STRINGTABLE DISCARDABLE LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
56
{
57 58
STID_WINE_HELP, 	"Ayuda de WINE"
STID_WHERROR, 		"ERROR"
59
STID_WARNING,  		"ADVERTENCIA"
60 61 62
STID_INFO,  		"Informacin"
STID_NOT_IMPLEMENTED, 	"An no implementado"
STID_HLPFILE_ERROR_s, 	"Error al leer el archivo de ayuda `%s'"
63
STID_CONTENTS, 		"&ndice"
64 65
STID_SEARCH, 		"&Buscar"
STID_BACK, 		"&Anterior"
66
STID_HISTORY, 		"&Historial"
67
STID_TOPICS,		"&Temas"
68 69
STID_ALL_FILES, 	"Todos los archivos (*.*)"
STID_HELP_FILES_HLP, 	"Archivos de ayuda (*.hlp)"
70
STID_FILE_NOT_FOUND_s	"Cannot find '%s'. Do you want to find this file yourself?"
71
STID_NO_RICHEDIT	"Cannot find a richedit implementation... Aborting"
72
}