En.rc 2.58 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 24
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT

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

46
STRINGTABLE DISCARDABLE
47
{
48
IDS_CLOCK, "Clock"
49
}
50 51 52 53 54

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

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