note
	description: "English settings"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	date: "$Date: 2017-03-29 12:26:46 +0000 (Wed, 29 Mar 2017) $"
	revision: "$Revision: 100065 $"

class 
	DATE_TIME_TOOLS

inherit
	DATE_TIME_LANGUAGE_CONSTANTS

create 
	default_create

feature -- Languge-dependent constants

	Name: STRING_8 = "English"
			-- Language.

	Days_text: ARRAY [STRING_8]
			-- Array of days in short format.
		once
			Result := <<"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT">>
			Result.compare_objects
		end

	Months_text: ARRAY [STRING_8]
			-- Array of monthes in short format.
		once
			Result := <<"JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC">>
			Result.compare_objects
		end

	Long_days_text: ARRAY [STRING_8]
			-- Array of days in long format.
		once
			Result := <<"SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY">>
			Result.compare_objects
		end

	Long_months_text: ARRAY [STRING_8]
			-- Array of monthes in long format.
		once
			Result := <<"JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER">>
			Result.compare_objects
		end

	Date_default_format_string: STRING_8 = "[0]mm/[0]dd/yyyy"
			-- Standard output of the date.

	Time_default_format_string: STRING_8 = "hh12:[0]mi:[0]ss.ff3 AM"
			-- Standard output of the time.

	Default_format_string: STRING_8 = "[0]mm/[0]dd/yyyy hh12:[0]mi:[0]ss.ff3 AM"
			-- Standard output of the date and time.
	
note
	copyright: "Copyright (c) 1984-2017, 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

Generated by ISE EiffelStudio