Fixed first day of week https://en.wikipedia.org/wiki/Week#/media/File:First_Day_of_W...
[AROS.git] / workbench / locale / countries / france.c
blob674cbc9b73c8fe73d68201ff5befcc0f7e92239e
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Country data for France
6 based on the Amiga Developer CD 2.1 file -:
7 NDK/NDK_3.5/Examples/Locale/Countries/make_country_files.c
8 */
10 #include "country_locale.h"
11 #include <libraries/locale.h>
13 struct IntCountryPrefs francePrefs =
16 /* Reserved */
17 { 0, 0, 0, 0 },
19 /* The country codes in the past have been rather inconsistant,
20 sometimes they are 1 character, 2 chars or 3. It would be nice
21 to have some consistency. Maybe use the 3 character name from
22 ISO 3166?
25 /* Country code, telephone code, measuring system */
26 MAKE_ID('F',0,0,0), 33, MS_ISO,
28 /* Date time format, date format, time format */
29 "%A %e %B %Y %Hh%M",
30 "%A %e %B %Y",
31 "%Hh%M",
33 /* Short datetime, short date, short time formats */
34 "%d/%m/%Y %Hh%M",
35 "%d/%m/%Y",
36 "%Hh%M",
38 /* Decimal point, group separator, frac group separator */
39 ",", " ", " ",
41 /* For grouping rules, see <libraries/locale.h> */
43 /* Grouping, Frac Grouping */
44 { 3 }, { 3 },
46 /* Mon dec pt, mon group sep, mon frac group sep */
47 ",", " ", " ",
49 /* Mon Grouping, Mon frac grouping */
50 { 3 }, { 3 },
52 /* Mon Frac digits, Mon IntFrac digits, then number of digits in
53 the fractional part of the money value. Most countries that
54 use dollars and cents, would have 2 for this value
56 (As would many of those you don't).
58 2, 4,
60 #ifdef _EURO
61 /* Currency symbol, Small currency symbol */
62 "Euro", "Cent",
64 /* Int CS, this is the ISO 4217 symbol, followed by the character to
65 separate that symbol from the rest of the money. (\x00 for none).
67 "EUR",
68 #else
69 "F", "",
70 "FRF",
71 #endif
72 /* Mon +ve sign, +ve space sep, +ve sign pos, +ve cs pos */
73 "", SS_NOSPACE, SP_PREC_ALL, CSP_SUCCEEDS,
75 /* Mon -ve sign, -ve space sep, -ve sign pos, -ve cs pos */
76 "-", SS_NOSPACE, SP_PREC_ALL, CSP_SUCCEEDS,
78 /* Calendar type */
79 CT_7MON
81 "$VER: france.country 44.0 (12.04.2013)",
82 NULL,
83 "Countries/France"