diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-18 15:53:46 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-18 15:53:46 +0000 |
commit | 9b256d52003829baf392bdec916049366b3d63a1 (patch) | |
tree | 9ff00f0ae859f0e7113e1b33e3483886bad19374 | |
parent | bb06978499d5c46427f304572cec82af2ec6de6d (diff) | |
download | drakx-9b256d52003829baf392bdec916049366b3d63a1.tar drakx-9b256d52003829baf392bdec916049366b3d63a1.tar.gz drakx-9b256d52003829baf392bdec916049366b3d63a1.tar.bz2 drakx-9b256d52003829baf392bdec916049366b3d63a1.tar.xz drakx-9b256d52003829baf392bdec916049366b3d63a1.zip |
(_chooseDesktop) commit uncommited string compression
-rw-r--r-- | perl-install/install/steps_interactive.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 74f8d4002..bf71c62f4 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -482,9 +482,9 @@ sub _chooseDesktop { my ($o, $rpmsrate_flags_chosen, $chooseGroups) = @_; my @l = group_by2( - KDE => N("Install Mandriva KDE Desktop"), - GNOME => N("Install Mandriva GNOME Desktop"), - Custom => N("Custom install"), + KDE => N("KDE"), + GNOME => N("GNOME"), + Custom => N("Custom"), ); my $title = N("Desktop Selection"); my $message = N("You can choose your workstation desktop profile: KDE, GNOME or Custom"); |