indexing description: "German settings" date: "$Date$" revision: "$Revision$" class DATE_TIME_TOOLS inherit DATE_TIME_LANGUAGE_CONSTANTS feature name: STRING is "German" days_text: ARRAY [STRING] is once Result := << "SON", "MON", "DIE", "MIT", "DON", "FRE", "SAM" >> Result.compare_objects end months_text: ARRAY [STRING] is once Result := << "JAN", "FEB", "MAR", "APR", "MAI", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEZ" >> Result.compare_objects end long_days_text: ARRAY [STRING] is once Result := << "SONNTAG", "MONTAG", "DIENSTAG", "MITTWOCH", "DONNERSTAG", "FREITAG", "SAMSTAG" >> Result.compare_objects end long_months_text: ARRAY [STRING] is once Result := << "JANUAR", "FEBRUAR", "MARZ", "APRIL", "MAI", "JUNI", "JULI", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DEZEMBER" >> Result.compare_objects end date_default_format_string: STRING is "[0]dd/[0]mm/yyyy" time_default_format_string: STRING is "[0]hh:[0]mi:[0]ss.ff3" default_format_string: STRING is "[0]dd/[0]mm/yyyy [0]hh:[0]mi:[0]ss.ff3" end -- class DATE_TIME_TOOLS --|---------------------------------------------------------------- --| EiffelTime: library of reusable components for ISE Eiffel. --| Copyright (C) 1986-2001 Interactive Software Engineering Inc. --| All rights reserved. Duplication and distribution prohibited. --| May be used only with ISE Eiffel, under terms of user license. --| Contact ISE for any other use. --| --| Interactive Software Engineering Inc. --| ISE Building --| 360 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Electronic mail --| Customer support: http://support.eiffel.com> --| For latest info see award-winning pages: http://www.eiffel.com --|----------------------------------------------------------------