note description : "Names for buttons, labels, ..." legal: "See notice at end of class." status: "See notice at end of class." date : "$Date$" revision : "$Revision$" class INTERFACE_NAMES inherit WIZARD_SHARED feature -- Labels names l_menu_bar: STRING_GENERAL do Result := locale.translation ("Menu Bar") end l_tool_bar: STRING_GENERAL do Result := locale.translation ("Tool Bar") end l_status_bar: STRING_GENERAL do Result := locale.translation ("Status Bar") end l_about_dialogbox: STRING_GENERAL do Result := locale.translation ("About DialogBox") end feature -- Title t_new_vision2_wizard: STRING_GENERAL do Result := locale.translation ("New Vision2 Application Wizard") end t_welcome_to_the_wizard: STRING_GENERAL do Result := locale.translation ("Welcome to the New Vision2%NApplication Wizard") end t_completing_wizard: STRING_GENERAL do Result := locale.translation ("Completing the New Vision2%NApplication Wizard") end t_vision2_application_appearance: STRING_GENERAL do Result := locale.translation ("Vision2 Application Appearance") end t_subtitle: STRING_GENERAL do Result := locale.translation ("You can choose the appearance of your application.") end feature -- Message m_you_have_specified_the_following_setting (a_project_name, a_project_location: STRING_GENERAL): STRING_GENERAL do Result := locale.formatted_string (locale.translation ( "You have specified the following settings:%N% %%N% %Project name: %T$1%N% %Location: %T$2%N" ), [a_project_name, a_project_location]) end m_click_finish_to (a_compile: BOOLEAN): STRING_GENERAL do if a_compile then Result := locale.translation ("Click Finish to generate and compile this project") else Result := locale.translation ("Click Finish to generate this project") end end m_wizard_introduction: STRING_GENERAL do Result := locale.translation ( "Using this wizard you can create a graphical application%N% %based on the EiffelVision2 library.%N% %%N% %The generated application will run on any Windows system%N% %as well as on any GTK supported platform (Linux, FreeBSD, ...)%N% %%N% %%N% %To continue, click Next.") end m_click_checkboxes_to: STRING_GENERAL do Result := locale.translation ("Click the checkboxes to change the appearance.") end note copyright: "Copyright (c) 1984-2006, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 356 Storke Road, 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 INTERFACE_NAMES