class EL_LOCALIZED_APPLICATION
Client examples: CHECK_LOCALE_STRINGS_APP ; WINZIP_SOFTWARE_PACKAGE_BUILDER_APP
Localized application with English as the default locale
Inherit EL_APPLICATION and undefine make_solitary
note
description: "Localized application with English as the default locale"
notes: "Inherit [$source EL_APPLICATION] and undefine **make_solitary**"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:06 GMT (Tuesday 15th November 2022)"
revision: "2"
deferred class
EL_LOCALIZED_APPLICATION
inherit
EL_SOLITARY
rename
make as make_solitary
redefine
make_solitary
end
feature {NONE} -- Initialization
make_solitary
do
Precursor
if attached new_locale then
end
end
feature {NONE} -- Implementation
new_locale: EL_DEFAULT_LOCALE
do
create {EL_ENGLISH_DEFAULT_LOCALE} Result.make
end
end