note description: "French settings" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class DATE_TIME_TOOLS inherit DATE_TIME_LANGUAGE_CONSTANTS feature name: STRING = "French" days_text: ARRAY [STRING] once Result := << "DIM", "LUN", "MAR", "MER", "JEU", "VEN", "SAM" >> Result.compare_objects end months_text: ARRAY [STRING] once Result := << "JAN", "FEV", "MAR", "AVR", "MAI", "JUN", "JUL", "AOU", "SEP", "OCT", "NOV", "DEC" >> Result.compare_objects end long_days_text: ARRAY [STRING] once Result := << "DIMANCHE", "LUNDI", "MARDI", "MERCREDI", "JEUDI", "VENDREDI", "SAMEDI" >> Result.compare_objects end long_months_text: ARRAY [STRING] once Result := << "JANVIER", "FEVRIER", "MARS", "AVRIL", "MAI", "JUIN", "JUILLET", "AOUT", "SEPTEMBRE", "OCTOBRE", "NOVEMBRE", "DECEMBRE" >> Result.compare_objects end default_format_string: STRING = "[0]dd/[0]mm/yyyy [0]hh:[0]mi:[0]ss.ff3" date_default_format_string: STRING = "[0]dd/[0]mm/yyyy" time_default_format_string: STRING = "[0]hh:[0]mi:[0]ss.ff3"; note copyright: "Copyright (c) 1984-2009, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class DATE_TIME_TOOLS