[yast-commit] r40678 - /trunk/metapackage/src/OneClickInstallUI.ycp
Author: benjimanw Date: Mon Sep 3 09:48:31 2007 New Revision: 40678 URL: http://svn.opensuse.org/viewcvs/yast?rev=40678&view=rev Log: Fixed some untranslated strings, one new string (sorry). Modified: trunk/metapackage/src/OneClickInstallUI.ycp Modified: trunk/metapackage/src/OneClickInstallUI.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/metapackage/src/OneClickInstallUI.ycp?rev=40678&r1=40677&r2=40678&view=diff ============================================================================== --- trunk/metapackage/src/OneClickInstallUI.ycp (original) +++ trunk/metapackage/src/OneClickInstallUI.ycp Mon Sep 3 09:48:31 2007 @@ -379,15 +379,14 @@ { UI::OpenDialog(`opt(`defaultsize ), `Wizard(`opt(`stepsEnabled), - `back, "&Back", - `abort, "Ab&ort", - `next, "&Next" ) ); - - UI::WizardCommand(`SetDialogIcon( "/usr/share/YaST2/theme/SuSELinux/icons/22x22/apps/user_add.png" ) ); - UI::WizardCommand(`SetDialogHeading( "Software Installation" ) ); + `back, Label::BackButton(), + `abort, Label::AbortButton(), + `next, Label::NextButton() ) ); + + UI::WizardCommand(`SetDialogHeading( INSTALLATION_HEADING ) ); UI::WizardCommand(`SetHelpText( HELP_TEXT ) ); - UI::WizardCommand(`AddStepHeading( "Installation Steps" ) ); + UI::WizardCommand(`AddStepHeading( _("Installation Steps") ) ); foreach ( map step,installation_steps, ``{ UI::WizardCommand(`AddStep( step["label"]:"", step["id"]:"" ) ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
benjimanw@svn.opensuse.org