En.rc 2.6 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4
/*
 * Clock (English resources)
 *
 * Copyright 1998 Marcel Baur <mbaur@g26.ethz.ch>
5
 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
20 21
 */

22 23
#include "clock_res.h"

24 25 26
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT

MAIN_MENU MENU 
27 28
{
 POPUP "&Properties" {
29 30
  MENUITEM "Ana&log", IDM_ANALOG
  MENUITEM "Digi&tal", IDM_DIGITAL
31
  MENUITEM SEPARATOR
32
  MENUITEM "&Font...", IDM_FONT
33
  MENUITEM SEPARATOR
34
  MENUITEM "&Without Titlebar", IDM_NOTITLE
35
  MENUITEM SEPARATOR
36 37
  MENUITEM "&Seconds", IDM_SECONDS
  MENUITEM "&Date", IDM_DATE
38 39
  MENUITEM SEPARATOR
  MENUITEM "&Always on Top", IDM_ONTOP
40
 }
41 42 43 44
 POPUP "Inf&o" {
  MENUITEM "&License...", IDM_LICENSE
  MENUITEM "&NO WARRANTY...", IDM_NOWARRANTY
  MENUITEM "&About Clock...", IDM_ABOUT
45
 }
46
}
47

48
STRINGTABLE DISCARDABLE
49
{
50
IDS_CLOCK, "Clock"
51
}
52 53 54 55 56

STRINGTABLE DISCARDABLE LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
{
IDS_LICENSE_CAPTION,            "LICENSE"
IDS_LICENSE,
57
"This program is free software; you can redistribute it and/or \
58 59 60
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\
61
This program is distributed in the hope that it will be useful, \
62 63 64 65
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\
You should have received a copy of the GNU Lesser General Public \
66
License along with this program; if not, write to the Free Software \
67
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA"
68 69 70

IDS_WARRANTY_CAPTION, "NO WARRANTY"
IDS_WARRANTY,
71
"This program is distributed in the hope that it will be useful, \
72 73 74 75
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."
}