Browse Source

spellcheck and some comments

tokul 20 năm trước cách đây
mục cha
commit
2c7f79e0f1
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      config/conf.pl

+ 4 - 1
config/conf.pl

@@ -2592,6 +2592,9 @@ sub command63 {
 
 # writing into global filebased abook control
 sub command64 {
+    print "This setting controls writing into global file address\n";
+    print "book options. Address book file must be writeable by\n";
+    print "webserver's user, if you want to enable this option.\n";
     print "\n";
 
     if ( lc($abook_global_file_writeable) eq 'true' ) {
@@ -2600,7 +2603,7 @@ sub command64 {
         $abook_global_file_writeable = 'false';
         $default_value               = "n";
     }
-    print "Allow writting into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
+    print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
     $new_show = <STDIN>;
     if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
         $abook_global_file_writeable = 'true';