diff options
author | Eugeni Dodonov <eugeni@mandriva.org> | 2009-08-17 14:34:31 +0000 |
---|---|---|
committer | Eugeni Dodonov <eugeni@mandriva.org> | 2009-08-17 14:34:31 +0000 |
commit | e55164d1fc013a89367c9f11d1e3cd8300b57297 (patch) | |
tree | 8b35c063e5620c14c167b3a8067d0a180c426f57 /bin | |
parent | fb5b3484b7243f6999f58605da6db01087d99f9e (diff) | |
download | drakx-net-e55164d1fc013a89367c9f11d1e3cd8300b57297.tar drakx-net-e55164d1fc013a89367c9f11d1e3cd8300b57297.tar.gz drakx-net-e55164d1fc013a89367c9f11d1e3cd8300b57297.tar.bz2 drakx-net-e55164d1fc013a89367c9f11d1e3cd8300b57297.tar.xz drakx-net-e55164d1fc013a89367c9f11d1e3cd8300b57297.zip |
Improved new profile help text.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/draknetprofile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/draknetprofile b/bin/draknetprofile index f9bc2e3..5ae4eb4 100755 --- a/bin/draknetprofile +++ b/bin/draknetprofile @@ -152,7 +152,7 @@ sub clone_profile() { my $dialog = _create_dialog(N("New profile...")); my $entry_dialog = Gtk2::Entry->new; gtkpack($dialog->vbox, - Gtk2::WrappedLabel->new(N("Name of new profile to create (the new profile initially will be created with base on current settings):")), + Gtk2::WrappedLabel->new(N("Please specify the name of new network profile to create (e.g., work, home, roaming, ..). This new profile initially will be created with base on current settings, and you'll be able to configure your system configuration as usual afterwards.")), $entry_dialog, ); gtkpack($dialog->action_area, @@ -169,6 +169,7 @@ sub clone_profile() { $dialog->destroy; network::network::netprofile_set($net, $dest_profile); update_profiles(); + info_dialog(N("New profile created"), N("You are now using network profile %s. You can configure your system as usual, and all your network settings from now on will be saved into this profile.", $dest_profile)); }), ); $bok->can_default(1); |