1 /*
2 * Clock (French resources)
3 *
4 * Copyright 1998 Robert Pouliot <krynos@clic.net>
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 * Copyright 2006 Jonathan Ernst <jonathan@ernstfamily.ch>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * 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 #include "clock_res.h"
24
25 /* UTF-8 */
26 #pragma code_page(65001)
27
28 LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
29
30 MAIN_MENU MENU
31 {
32 POPUP "&Propriétés" {
33 MENUITEM "Ana&logique", IDM_ANALOG
34 MENUITEM "&Numérique", IDM_DIGITAL
35 MENUITEM SEPARATOR
36 MENUITEM "&Police...", IDM_FONT
37 MENUITEM SEPARATOR
38 MENUITEM "Sans &barre de titre", IDM_NOTITLE
39 MENUITEM SEPARATOR
40 MENUITEM "&Secondes", IDM_SECONDS
41 MENUITEM "&Date", IDM_DATE
42 MENUITEM SEPARATOR
43 MENUITEM "&Toujours visible", IDM_ONTOP
44 }
45 POPUP "Inf&o" {
46 MENUITEM "&Licence...", IDM_LICENSE
47 MENUITEM "AUCUNE &GARANTIE...", IDM_NOWARRANTY
48 MENUITEM "À &propos de l'horloge", IDM_ABOUT
49 }
50 }
51
52 STRINGTABLE DISCARDABLE
53 {
54 IDS_CLOCK, "Horloge"
55 }
56
57 STRINGTABLE DISCARDABLE LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
58 {
59 IDS_LICENSE_CAPTION, "LICENCE"
60 IDS_LICENSE,
61 "Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou \
62 le modifier suivant les termes de la Licence Générale Publique Limitée GNU \
63 telle que publiée par la Free Software Foundation ; soit la version 2.1 \
64 de la Licence, soit (à votre gré) toute version ultérieure.\n\
65 Ce programme est distribué dans l'espoir qu'il sera utile, mais \
66 SANS AUCUNE GARANTIE : sans même la garantie implicite de \
67 COMMERCIALISABILITÉ ou d'ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez \
68 la Licence Générale Publique Limitée pour plus de détails.\n\
69 Vous devriez avoir reçu une copie de la Licence Générale Publique Limitée \
70 GNU avec ce programme ; si ce n'est pas le cas, écrivez à la : \
71 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, \
72 MA 02110-1301, USA."
73
74 IDS_WARRANTY_CAPTION, "AUCUNE GARANTIE"
75 IDS_WARRANTY,
76 "Ce programme est distribué dans l'espoir qu'il sera utile, mais \
77 SANS AUCUNE GARANTIE : sans même la garantie implicite de \
78 COMMERCIALISABILITÉ ou d'ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez \
79 la Licence Générale Publique Limitée pour plus de détails."
80 }
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.