class EL_UNINSTALL_TEXTS

(source code)

Client examples: I18N_LOCALIZATION_TEST_SET

description

Localized texts for EL_STANDARD_UNINSTALL_APP

note
	description: "Localized texts for ${EL_STANDARD_UNINSTALL_APP}"

	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: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
	revision: "7"

class
	EL_UNINSTALL_TEXTS

inherit
	EL_REFLECTIVE_LOCALE_TEXTS

create
	make

feature -- Texts

	uninstall: ZSTRING

	uninstall_application: ZSTRING

	uninstall_confirmation: ZSTRING

	uninstall_warning: ZSTRING

	uninstall_x: ZSTRING

	uninstalling: ZSTRING

	remove_all_data_prompt: ZSTRING

feature -- Uninstall script

	app_removed_template: ZSTRING

	removing_program_files: ZSTRING

feature {NONE} -- Constants

	English_table: STRING
		once
			Result := "[
				app_removed_template:
					"%S" removed.
				remove_all_data_prompt:
					Delete data and configuration files for all %S users (y/n)
				uninstall_confirmation:
					If you are sure press 'y' and <return>:
				uninstall_warning:
					THIS ACTION WILL PERMANENTLY DELETE ALL YOUR DATA.
				uninstalling:
					Uninstalling:
				uninstall_application:
					Uninstall %S application
				uninstall_x:
					Uninstall %S
			]"
		end

end