summaryrefslogtreecommitdiffstats
path: root/samba_wizard/Sambashare.pm
diff options
context:
space:
mode:
Diffstat (limited to 'samba_wizard/Sambashare.pm')
-rwxr-xr-xsamba_wizard/Sambashare.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/samba_wizard/Sambashare.pm b/samba_wizard/Sambashare.pm
index c991e4d9..ec5e01d2 100755
--- a/samba_wizard/Sambashare.pm
+++ b/samba_wizard/Sambashare.pm
@@ -108,7 +108,7 @@ $o->{pages} = {
name => N("What do you want to do?") . "\n\n" . N("Manage, create special share, create public/user share"),
pre => sub {
if (! -f $wiz_samba_etc) {
- $::in->ask_warn(N("Information"), N("It seems that you hadn't setup a Samba server. Please setup a Samba server with Samba wizard before manage your share."));
+ $::in->ask_warn(N("Information"), N("It seems that you haven't setup a Samba server. Please setup a Samba server with Samba wizard before manage your share."));
exit(1);
}
$o->{var}{wiz_share} = 0;
@@ -338,7 +338,7 @@ $o->{pages} = {
$::in->ask_warn(N("Error"), N("Can\'t create the directory, please enter a correct path.")) and return 1;
}
if (!$o->{var}{wiz_addshare_comment}) {
- $::in->ask_warn(N("Error"), N("Please enter a Comment for this share.")) and return 1;
+ $::in->ask_warn(N("Error"), N("Please enter a comment for this share.")) and return 1;
}
if (! -d $o->{var}{wiz_addshare_path}) {
mkdir_p($o->{var}{wiz_addshare_path}) or $::in->ask_warn(N("Error"), N("Can\'t create the directory, please enter a correct path."));
@@ -403,7 +403,7 @@ $o->{pages} = {
$::in->ask_warn(N("Error"), N("Can\'t create the directory, please enter a correct path.")) and return 1;
}
if (!$o->{var}{wiz_add_user_share_comment}) {
- $::in->ask_warn(N("Error"), N("Please enter a Comment for this share.")) and return 1;
+ $::in->ask_warn(N("Error"), N("Please enter a comment for this share.")) and return 1;
}
if (! -d $o->{var}{wiz_add_user_share_path}) {
mkdir_p($o->{var}{wiz_add_user_share_path}) or $::in->ask_warn(N("Error"), N("Can\'t create the directory, please enter a correct path."));
@@ -446,13 +446,13 @@ $o->{pages} = {
}
}
if ($o->{var}{wiz_add_public_share_writable} eq 'yes') {
- $::in->ask_okcancel(N("WARNING"), N("Be carrefull, you define your public share writable. This wizard will change permission to nobody.users, so do not use this feature on an home directory !")) or return 1;
+ $::in->ask_okcancel(N("WARNING"), N("Be careful, you define your public share writable. This wizard will change permission to nobody.users, so do not use this feature on a home directory !")) or return 1;
}
if (!$o->{var}{wiz_add_public_share_path}) {
$::in->ask_warn(N("Error"), N("Can't create the directory, please enter a correct path.")) and return 1;
}
if (!$o->{var}{wiz_add_public_share_comment}) {
- $::in->ask_warn(N("Error"), N("Please enter a Comment for this share.")) and return 1;
+ $::in->ask_warn(N("Error"), N("Please enter a comment for this share.")) and return 1;
}
if (! -d $o->{var}{wiz_add_public_share_path}) {
mkdir_p($o->{var}{wiz_add_public_share_path}) or $::in->ask_warn(N("Error"), N("Can't create the directory, please enter a correct path."));