Fr.rc 2.84 KB
Newer Older
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 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
#include "clock_res.h"

25 26 27
/* UTF-8 */
#pragma code_page(65001)

28 29 30
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL

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 41
  MENUITEM "&Secondes", IDM_SECONDS
  MENUITEM "&Date", IDM_DATE
42 43
  MENUITEM SEPARATOR
  MENUITEM "&Toujours visible", IDM_ONTOP
44
 }
45 46 47
 POPUP "Inf&o" {
  MENUITEM "&Licence...", IDM_LICENSE
  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 58 59 60

STRINGTABLE DISCARDABLE LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
{
IDS_LICENSE_CAPTION,            "LICENCE"
IDS_LICENSE,
61 62 63 64 65 66 67 68 69 70
"Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou \
le modifier suivant les termes de la Licence Générale Publique Limitée GNU \
telle que publiée par la Free Software Foundation ; soit la version 2.1 \
de la Licence, soit (à votre gré) toute version ultérieure.\n\
Ce programme est distribué dans l'espoir qu'il sera utile, mais \
SANS AUCUNE GARANTIE : sans même la garantie implicite de \
COMMERCIALISABILITÉ ou d'ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez \
la Licence Générale Publique Limitée pour plus de détails.\n\
Vous devriez avoir reçu une copie de la Licence Générale Publique Limitée \
GNU avec ce programme ; si ce n'est pas le cas, écrivez à la : \
71 72
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, \
MA 02110-1301, USA."
73 74 75

IDS_WARRANTY_CAPTION, "AUCUNE GARANTIE"
IDS_WARRANTY,
76 77 78 79
"Ce programme est distribué dans l'espoir qu'il sera utile, mais \
SANS AUCUNE GARANTIE : sans même la garantie implicite de \
COMMERCIALISABILITÉ ou d'ADÉQUATION À UN OBJECTIF PARTICULIER. Consultez \
la Licence Générale Publique Limitée pour plus de détails."
80
}