diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2005-07-06 10:24:01 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2005-07-06 10:24:01 +0000 |
commit | a8cde0b2875260ee174ec9e262e45050e3bac201 (patch) | |
tree | 532737f4ada0e905ad6c2d8e86117f866cbc8110 /samba_wizard | |
parent | 7893ee22441b8958dc8bc6199957f033768527e7 (diff) | |
download | drakwizard-a8cde0b2875260ee174ec9e262e45050e3bac201.tar drakwizard-a8cde0b2875260ee174ec9e262e45050e3bac201.tar.gz drakwizard-a8cde0b2875260ee174ec9e262e45050e3bac201.tar.bz2 drakwizard-a8cde0b2875260ee174ec9e262e45050e3bac201.tar.xz drakwizard-a8cde0b2875260ee174ec9e262e45050e3bac201.zip |
no spaces before question marks in English
Diffstat (limited to 'samba_wizard')
-rwxr-xr-x | samba_wizard/Sambashare.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/samba_wizard/Sambashare.pm b/samba_wizard/Sambashare.pm index 3267fe84..5dd305e1 100755 --- a/samba_wizard/Sambashare.pm +++ b/samba_wizard/Sambashare.pm @@ -85,7 +85,7 @@ my $wiz_samba_etc = "/etc/sysconfig/wizard_samba"; $o->{pages} = { welcome => { - name => N('What do you want todo with your share ?') . "\n\n" . N('add/remove/modify a share'), + name => N('What do you want todo with your share?') . "\n\n" . N('add/remove/modify a share'), pre => sub { if (! -f $wiz_samba_etc) { $::in->ask_warn(N("Information"), N("It seems that you don\'t setup a Samba server. Please setup a Samba server with Samba wizard before manage your share.")); @@ -118,7 +118,7 @@ $o->{pages} = { next => 'choose_share_to_modify', }, choose_share_to_delete => { - name => N('Delete which share ?') . "\n\n" . N('Please choose the share you want to remove.'), + name => N('Delete which share?') . "\n\n" . N('Please choose the share you want to remove.'), pre => \&list_all_shares, data => [ { label => '', type => 'list', val => \$o->{var}{wiz_selected_share}, fixed_list => \@listshare }, @@ -126,7 +126,7 @@ $o->{pages} = { next => 'summary_delete', }, choose_share_to_modify => { - name => N('Modify which share ?') . "\n\n" . N('Please choose the share you want to modify.'), + name => N('Modify which share?') . "\n\n" . N('Please choose the share you want to modify.'), pre => \&list_all_shares_to_modify, data => [ { label => '', type => 'list', val => \$o->{var}{wiz_selected_share}, fixed_list => \@listshare_tomodify }, |