[yast-commit] r60460 - in /trunk/printer/src: Printer.ycp basicadd.ycp basicmodify.ycp driveradd.ycp
Author: jsmeix Date: Wed Jan 20 14:36:41 2010 New Revision: 60460 URL: http://svn.opensuse.org/viewcvs/yast?rev=60460&view=rev Log: In basicadd.ycp and basicmodify.ycp re-rename the PushButton to launch the "Add Driver" dialog from "Install Driver" to "Driver Packages" because the former can be confused by the user with the functionality what the [OK] button in basicadd.ycp and basicmodify.ycp does i.e. to install the print queue with the selected driver. Modified: trunk/printer/src/Printer.ycp trunk/printer/src/basicadd.ycp trunk/printer/src/basicmodify.ycp trunk/printer/src/driveradd.ycp Modified: trunk/printer/src/Printer.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/Printer.ycp?rev=60460&r1=60459&r2=60460&view=diff ============================================================================== --- trunk/printer/src/Printer.ycp (original) +++ trunk/printer/src/Printer.ycp Wed Jan 20 14:36:41 2010 @@ -2228,8 +2228,8 @@ // from the BasicAdd dialog but the RPM package hplip is not installed: // Do not change or translate "hp-setup", it is a program name. // Do not change or translate "hplip", it is a package name. - // Translate 'Add Driver' the same as the PushButton name to go to the "Add Driver" dialog: - _("To run hp-setup, the RPM package hplip must be installed.\nUse 'Add Driver' to install it.") + // Translate 'Driver Packages' the same as the PushButton name to go to the "Add Driver" dialog: + _("To run hp-setup, the RPM package hplip must be installed.\nUse 'Driver Packages' to install it.") ); } return false; Modified: trunk/printer/src/basicadd.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/basicadd.ycp?rev=60460&r1=60459&r2=60460&view=diff ============================================================================== --- trunk/printer/src/basicadd.ycp (original) +++ trunk/printer/src/basicadd.ycp Wed Jan 20 14:36:41 2010 @@ -170,8 +170,8 @@ `PushButton ( `id(`add_driver), // Label of a PushButton to go to the "Add Driver" dialog - // to install a new driver (and perhaps download it before): - _("&Install Driver") + // to install or remove driver packages (and perhaps download it before): + _("Driver &Packages") ) ), `ReplacePoint Modified: trunk/printer/src/basicmodify.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/basicmodify.ycp?rev=60460&r1=60459&r2=60460&view=diff ============================================================================== --- trunk/printer/src/basicmodify.ycp (original) +++ trunk/printer/src/basicmodify.ycp Wed Jan 20 14:36:41 2010 @@ -373,8 +373,8 @@ `PushButton ( `id(`add_driver), // Label of a PushButton to go to the "Add Driver" dialog - // to install a new driver (and perhaps download it before): - _("&Install Driver") + // to install or remove driver packages (and perhaps download it before): + _("Driver &Packages") ) ), `ReplacePoint @@ -415,7 +415,7 @@ ( `CheckBox ( `id(`default_queue_checkbox), // CheckBox to set a local print queue to be the default queue: - _("Default &Printer"), + _("&Use as Default"), is_default ), `HSpacing( 2 ), Modified: trunk/printer/src/driveradd.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/printer/src/driveradd.ycp?rev=60460&r1=60459&r2=60460&view=diff ============================================================================== --- trunk/printer/src/driveradd.ycp (original) +++ trunk/printer/src/driveradd.ycp Wed Jan 20 14:36:41 2010 @@ -45,7 +45,7 @@ */ any AddDriverDialog() { // Title of the Add Driver Dialog: - string caption = _("Add Driver"); + string caption = _("Driver Packages"); boolean cups_drivers_installed = Printerlib::TestAndInstallPackage( "cups-drivers", "installed" ); boolean gutenprint_installed = Printerlib::TestAndInstallPackage( "gutenprint", "installed" ); boolean hplip_installed = Printerlib::TestAndInstallPackage( "hplip", "installed" ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsmeix@svn.opensuse.org