diff --git a/lang/de b/lang/de index 88e8ca8d4..78515b537 100644 --- a/lang/de +++ b/lang/de @@ -191,7 +191,7 @@ month_8=August  month_9=September  no=Nein ok=OK -fail=Failed +fail=Problem pam_header=Anmelden an Webmin pam_login=Fortsetzen pam_mesg=Sie müssen auf die Frage unten antworten um sich am Webmin-Server $1 anmelden zu können. diff --git a/majordomo/check_inst.cgi b/majordomo/check_inst.cgi index 643d7fab6..28b9ff700 100755 --- a/majordomo/check_inst.cgi +++ b/majordomo/check_inst.cgi @@ -9,11 +9,11 @@ use Fcntl ':mode'; $conf = &get_config(); eval { require "$config{'program_dir'}/majordomo_version.pl"; }; -&ui_print_header(undef, $text{'check_title'}, "", undef, 1, 1, 0, +&ui_print_header(undef, $text{'check_title'}, "", undef, 1, 0, 0, &mdom_help(), undef, undef, &text('index_version', $majordomo_version)); -&check_mdom_config($conf); +#&check_mdom_config($conf); $aliases_files = &get_aliases_file(); $email = &find_value("whoami", $conf); $email =~ s/\@.*$//g; @@ -23,6 +23,7 @@ $owner = &find_value("whoami_owner", $conf); $owner =~ s/\@.*$//g; local $cdiv='
', $ediv='
'; local $ok="
".&text('ok')."
"; local $fail="
".&text('fail')."
"; +local $possible="
".&text('check_possible')."
"; local $res=$ok, $tocheck, $sec; # init / start table @@ -53,13 +54,13 @@ if ( $res eq $ok) { "$gconfig{'webprefix'}/config.cgi?$module_name"); } print &ui_columns_row(["  Majordomo programm dir", $tocheck, $res] , \@tds); if ($res eq $ok) { - $res="$cdiv $ok $edviv"; - $sec=$cdiv.&text('check_perm').$ediv; + $res=$ok; + $sec=$cdiv.&text('check_perm').":"; $tocheck=$config{'program_dir'}; - if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= ": world executable!"; } - if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= ": world readable!"; } - if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= ": world writeable!"; } - print &ui_columns_row(["", $sec, $res] , \@tds); + if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= " ".&text('check_exec'); } + if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= " ".&text('check_read'); } + if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= " ".&text('check_write'); } + print &ui_columns_row(["", $sec.$ediv, $res] , \@tds); $res=$ok; $tocheck=$majordomo_version; if ($tocheck eq "" || $tocheck < 1.94 || $tocheck >= 2) { $res=$fail; $tocheck .= ": ".$text{'index_eversion'}; } @@ -68,28 +69,29 @@ if ( $res eq $ok) { # Check home / list / archive dir from majordomo.cf $res=$ok; - local $home=&find_value("homedir", $conf); + local $home=&find_value("homedir2", $conf); $tocheck=$home; - if (!&homedir_valid($conf)) { $res=$fail; $tocheck = &text('index_ehomedir', "$home"); } - print &ui_columns_row(["  Majordomo HOME dir", $tocheck, $res] , \@tds); - $res="$cdiv $ok $edviv"; - $sec=$cdiv.&text('check_perm').$ediv; - $tocheck=$home; - if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$fail; $sec .= ": world executable!"; } - if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$fail; $sec .= ": world readable!"; } - if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$fail; $sec .= ": world writeable!"; } - print &ui_columns_row(["", $sec, $res] , \@tds); - + if (! -d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$homedir2', $home); } + print &ui_columns_row(["  Majordomo HOME2 dir", $tocheck, $res] , \@tds); + if ($res eq $ok) { + $res=$ok; + $sec=$cdiv.&text('check_perm').":"; + $tocheck=$home; + if (((stat($tocheck)) [2] & S_IXOTH) != 0) { $res=$possible; $sec .= " ".&text('check_exec'); } + if (((stat($tocheck)) [2] & S_IROTH) != 0) { $res=$possible; $sec .= " ".&text('check_read'); } + if (((stat($tocheck)) [2] & S_IWOTH) != 0) { $res=$possible; $sec .= " ".&text('check_write'); } + print &ui_columns_row(["", $sec.$ediv, $res] , \@tds); + } $res=$ok; $tocheck = &perl_var_replace(&find_value("listdir", $conf), $conf); - if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_elistdir', '$listdir', $tocheck); } + if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$listdir', $tocheck); } print &ui_columns_row(["  Majordomo LIST directory", $tocheck, $res] , \@tds); + $res=$ok; $tocheck = &perl_var_replace(&find_value("filedir", $conf), $conf); - if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_elistdir', '$filedir', $tocheck); } + if (!-d $tocheck) { $res=$fail; $tocheck = &text('index_emdomdir', '$filedir', $tocheck); } print &ui_columns_row(["  Majordomo ARCHIVE directory", $tocheck, $res] , \@tds); } print &ui_columns_end(); -&ui_print_footer("/", $text{'index'}); -irint&ui_columns_row(\@cols, \@tds); +&ui_print_footer("index.cgi", $text{'index'}); diff --git a/majordomo/edit_global.cgi b/majordomo/edit_global.cgi index 1eec74192..ac24d3a7e 100755 --- a/majordomo/edit_global.cgi +++ b/majordomo/edit_global.cgi @@ -44,7 +44,9 @@ print "\n"; print " $text{'access_taboo'} \n"; print "\n"; -print "\n"; +print &ui_submit($text{'save'}),"\n"; +print "
", + &ui_submit($text{'check_title'})."
\n"; &ui_print_footer("", $text{'index_return'}); diff --git a/majordomo/lang/ca b/majordomo/lang/ca index 243557536..d7eaf2d78 100644 --- a/majordomo/lang/ca +++ b/majordomo/lang/ca @@ -3,8 +3,7 @@ index_econfig=El fitxer de configuraci index_eprograms=El directori $1 del majordomo no existeix. Pot ser que la configuració del mòdul sigui incorrecta, o bé que el majordomo no estigui instal·lat. index_eversion=Aquesta versió del majordomo no està suportada per Webmin. Només estan suportades les versions 1.94 i posteriors. index_eversion2=No s'ha trobat el fitxer $1 de versió de Majordomo al directori de programes $2. Pot ser que la configuració del mòdul sigui incorrecta, o bé que majordomo no estigui instal·lat. -index_ehomedir=La variable $homedir del fitxer de configuració del majordomo està establerta a $1, que no existeix. -index_elistdir=La variable $listdir del fitxer de configuració del majordomo està establerta a $1, que no existeix. +index_emdomdir=La variable $1 del fitxer de configuració del majordomo està establerta a $1, que no existeix. index_esendmail2=Sendmail no està instal·lat al sistema o bé no està configurat adequadament. Comprova la configuració del mòdul Sendmail. index_epostfix=O bé Postfix no està instal·lat al sistema, o bé no està adequadament configurat. Comprova la configuració del mòdul Postfix. index_esendmail3=El mòdul Sendmail de Webmin necessari per gestionar àlies no està instal·lat. diff --git a/majordomo/lang/cz b/majordomo/lang/cz index bed656dba..11d8f5615 100644 --- a/majordomo/lang/cz +++ b/majordomo/lang/cz @@ -2,8 +2,7 @@ index_title=Majordomo mana index_econfig=Majordomo konfiguraèní soubor $1 neexistuje. Mo¾ná va¹e konfigurace modulu není správná, nebo majordomo není nainstalován. index_eprograms=Majordomo adresáø $1 neexistuje. Mo¾ná va¹e konfigurace modulu není správná, nebo majordomo není nainstalován. index_eversion=Verze va¹eho majordomunení Webminem podporována. Jsou podporovány pouze verze 1.94 a vy¹¹í. -index_ehomedir=Promìnná $homedir v konfiguraèním souboru va¹eho majordomu je nastavena na $1, av¹ak tato hodnota není platná. -index_elistdir=Promìnná $listdir v konfiguraèním souboru va¹eho majordomu je nastavena na $1, av¹ak tato hodnota není platná. +index_emdomdir=Promìnná $1 v konfiguraèním souboru va¹eho majordomu je nastavena na $1, av¹ak tato hodnota není platná. index_esendmail=Konfiguraèní soubor Sendmailu $1 neexistuje. Zkontrolujte va¹i konfiguraci modulu Sendmailu. index_esendmailversion=Sendmail konfiguraèní soubor nevyhovuje posledním verzím Sendmailu. Webmin podporuje pouze verze 8.8 a vy¹¹í. index_setupdesc=Majordomo je ve va¹em systému nainstalován, není v¹ak pravdìpodobnì správnì nastaven v souburu Sendmail aliasù. diff --git a/majordomo/lang/de b/majordomo/lang/de index aabe992e1..4fdb0af7a 100644 --- a/majordomo/lang/de +++ b/majordomo/lang/de @@ -116,8 +116,7 @@ index_add=Neue Mailingliste index_count=# Teilnehmer index_digest=Neue Übersichtsliste index_econfig=Die Majordomo-Konfigurationsdatei $1 gibt es nicht. Vielleicht ist Ihre Modulkonfiguration falsch oder Majordomo ist nicht installiert. -index_ehomedir=Die $homedir Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $1 eingestellt. Dieses existiert jedoch nicht. -index_elistdir=Die $1 Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht. +index_emdomdir=Die $1 Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht. index_epostfix=Postfix ist entweder nicht installiert oder nicht richtig auf Ihrem System eingestellt. Prüfe die Postfix Modul Konfiguration. index_eprograms=Das Majordomo-Verzeichnis $1 gibt es nicht. Vielleicht ist Ihre Modulkonfiguration falsch oder Majordomo ist nicht installiert. index_esendmail2=Sendmail ist entweder nicht nicht installiert oder nicht richtig auf Ihrem System eingerichtet. Prüfen Sie bitte die Modulkonfiguration. @@ -227,6 +226,10 @@ subs_uopen=Jeder kann sich selbst kündigen subs_welcome=Soll die einleitende Mitteilung versandt werden? check_title=Testen der Majordomo Konfiguration check_test=Test für ... -check_result=Ergebis / weitere Tests +check_result=Ergebnis / weitere Tests check_perm=Zugriffsrechte check_status=Status +check_exec=für alle ausführbar! +check_write=für alle schreibbar! +check_possible=Eventuelles Problem +check_read=für alle lesbar! diff --git a/majordomo/lang/de.UTF-8 b/majordomo/lang/de.UTF-8 index c9040aff8..3517cc6a6 100644 --- a/majordomo/lang/de.UTF-8 +++ b/majordomo/lang/de.UTF-8 @@ -116,8 +116,7 @@ index_add=Neue Mailingliste index_count=# Teilnehmer index_digest=Neue Übersichtsliste index_econfig=Die Majordomo-Konfigurationsdatei $1 gibt es nicht. Vielleicht ist Ihre Modulkonfiguration falsch oder Majordomo ist nicht installiert. -index_ehomedir=Die $homedir Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $1 eingestellt. Dieses existiert jedoch nicht. -index_elistdir=Die $1 Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht. +index_emdomdir=Die $1 Variable in Ihrer Majordomo-Konfigurationsdatei ist auf $2 eingestellt. Dieses existiert jedoch nicht. index_epostfix=Postfix ist entweder nicht installiert oder nicht richtig auf Ihrem System eingestellt. Prüfe die Postfix Modul Konfiguration. index_eprograms=Das Majordomo-Verzeichnis $1 gibt es nicht. Vielleicht ist Ihre Modulkonfiguration falsch oder Majordomo ist nicht installiert. index_esendmail2=Sendmail ist entweder nicht nicht installiert oder nicht richtig auf Ihrem System eingerichtet. Prüfen Sie bitte die Modulkonfiguration. @@ -228,6 +227,10 @@ subs_welcome=Soll die einleitende Mitteilung versandt werden? check_title=Testen der Majordomo Konfiguration check_test=Test für ... -check_result=Ergebis / weitere Tests +check_result=Ergebnis / weitere Tests check_status=Status +check_exec=für alle ausführbar! +check_write=für alle schreibbar! +check_read=für alle lesbar! +check_possible=Eventuelles Problem check_perm=Zugriffsrechte diff --git a/majordomo/lang/en b/majordomo/lang/en index d7d4b1a57..a415d4660 100644 --- a/majordomo/lang/en +++ b/majordomo/lang/en @@ -3,8 +3,7 @@ index_econfig=The majordomo config file $1 does not exist. Maybe your module configuration is incorrect, or majordomo is not installed. index_eversion=Your majordomo version is not supported by Webmin. Only versions 1.94 and above are supported. index_eversion2=The Majordomo version file $1 was not found under the programs directory $2. Maybe your module configuration is incorrect, or majordomo is not installed. -index_ehomedir=The $homedir variable in your majordomo config file is set to $1, which does not exist. -index_elistdir=The $1 variable in your majordomo config file is set to $2, which does not exist. +index_emdomdir=The $1 variable in your majordomo config file is set to $2, which does not exist. index_esendmail2=Sendmail is either not installed or not properly set up on your system. Check the Sendmail module configuration. index_epostfix=Postfix is either not installed or not properly set up on your system. Check the Postfix module configuration. index_esendmail3=The Sendmail Webmin module needed to manage aliases is not installed. @@ -247,4 +246,7 @@ check_test=Test for ... check_result=Result / additional check check_status=Status check_perm=Permissions - +check_exec=world executable! +check_write=world writeable! +check_read=world readable! +check_possible=Possible problem diff --git a/majordomo/lang/es b/majordomo/lang/es index e37fa30e0..3372fd9fd 100644 --- a/majordomo/lang/es +++ b/majordomo/lang/es @@ -113,8 +113,7 @@ head_title=Cabeceras y Pies index_add=Añadir una nueva lista de correo index_digest=Añadir una nueva lista de resumen index_econfig=El archivo de configuración de majordomo $1 no existe. Quizás tu configuración del módulo sea incorrecta o majordomo no está instalado. -index_ehomedir=La variable $homedir de tu archivo de configuración de majordomo está configurada con el valor $1, el cual no existe. -index_elistdir=La variable $listdir de tu archivo de configuración de majordomo está configurada con el valor $1, el cual no existe. +index_emdomdir=La variable $1 de tu archivo de configuración de majordomo está configurada con el valor $1, el cual no existe. index_eprograms=El directorio de majordomo $1 no existe. Quizás tu configuración del módulo sea incorrecta o majordomo no está instalado. index_esendmail2=Sendmail o bien no está instalado o bien no está adecuadamente configurado en su sistema. Compruebe la configuración del módulo Sendmail. index_esendmailversion=Tu archivo de configuración de sendmail no parece ser el de la última versión de sendmail. Webmin sólo soporta versiones 8.8 y superiores. diff --git a/majordomo/lang/ja_JP.euc b/majordomo/lang/ja_JP.euc index 5509312b6..62ca59617 100644 --- a/majordomo/lang/ja_JP.euc +++ b/majordomo/lang/ja_JP.euc @@ -2,8 +2,7 @@ index_title=Majordomo index_econfig=Majordomo ÀßÄê¥Õ¥¡¥¤¥ë $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£¥â¥¸¥å¡¼¥ëÀßÄ꤬ÉÔÀµ¤«¡¢majordomo ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£ index_eprograms=Majordomo ¥Ç¥£¥ì¥¯¥È¥ê $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£¥â¥¸¥å¡¼¥ëÀßÄê ¤¬ÉÔÀµ¤«¡¢majordomo ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£ index_eversion=Webmin ¤Ï¡¢¤´»ÈÍѤΠmajordomo ¤Î¥Ð¡¼¥¸¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£¥Ð¡¼¥¸¥ç¥ó 1.94 °Ê¹ß¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ -index_ehomedir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$homedir ÊÑ¿ô¤¬ $1 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ -index_elistdir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$listdir ÊÑ¿ô¤¬ $1 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ +index_emdomdir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$1 ÊÑ¿ô¤¬ $2 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ index_esendmail=sendmail ÀßÄê¥Õ¥¡¥¤¥ë $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£sendmail ¥â¥¸¥å¡¼¥ëÀßÄê¤ò³Îǧ¤·¤Æ²¼¤µ¤¤¡£ index_esendmailversion=¤³¤Îsendmail ÀßÄê¥Õ¥¡¥¤¥ë¤ÏºÇ¿·¤Î sendmail ¥Ð¡¼¥¸¥ç¥óÍѤǤʤ¤¤è¤¦¤Ë»×¤ï¤ì¤Þ¤¹¡£Webmin ¤Ï¥Ð¡¼¥¸¥ç¥ó 8.8 °Ê¹ß¤Î¤ß¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£ index_setupdesc=Majordomo ¤Ï¥·¥¹¥Æ¥à¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢sendmail ¥¨¥¤¥ê¥¢¥¹ ¥Õ¥¡¥¤¥ë¤ÇÀµ¤·¤¯ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó¡£ diff --git a/majordomo/lang/ja_JP.jis b/majordomo/lang/ja_JP.jis index 5509312b6..62ca59617 100644 --- a/majordomo/lang/ja_JP.jis +++ b/majordomo/lang/ja_JP.jis @@ -2,8 +2,7 @@ index_title=Majordomo index_econfig=Majordomo ÀßÄê¥Õ¥¡¥¤¥ë $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£¥â¥¸¥å¡¼¥ëÀßÄ꤬ÉÔÀµ¤«¡¢majordomo ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£ index_eprograms=Majordomo ¥Ç¥£¥ì¥¯¥È¥ê $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£¥â¥¸¥å¡¼¥ëÀßÄê ¤¬ÉÔÀµ¤«¡¢majordomo ¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£ index_eversion=Webmin ¤Ï¡¢¤´»ÈÍѤΠmajordomo ¤Î¥Ð¡¼¥¸¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£¥Ð¡¼¥¸¥ç¥ó 1.94 °Ê¹ß¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£ -index_ehomedir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$homedir ÊÑ¿ô¤¬ $1 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ -index_elistdir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$listdir ÊÑ¿ô¤¬ $1 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ +index_emdomdir=Majordomo ÀßÄê¥Õ¥¡¥¤¥ëÆâ¤Î$1 ÊÑ¿ô¤¬ $2 ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤½¤ì¤Ï¸ºß¤·¤Þ¤»¤ó¡£ index_esendmail=sendmail ÀßÄê¥Õ¥¡¥¤¥ë $1 ¤Ï¸ºß¤·¤Þ¤»¤ó¡£sendmail ¥â¥¸¥å¡¼¥ëÀßÄê¤ò³Îǧ¤·¤Æ²¼¤µ¤¤¡£ index_esendmailversion=¤³¤Îsendmail ÀßÄê¥Õ¥¡¥¤¥ë¤ÏºÇ¿·¤Î sendmail ¥Ð¡¼¥¸¥ç¥óÍѤǤʤ¤¤è¤¦¤Ë»×¤ï¤ì¤Þ¤¹¡£Webmin ¤Ï¥Ð¡¼¥¸¥ç¥ó 8.8 °Ê¹ß¤Î¤ß¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£ index_setupdesc=Majordomo ¤Ï¥·¥¹¥Æ¥à¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢sendmail ¥¨¥¤¥ê¥¢¥¹ ¥Õ¥¡¥¤¥ë¤ÇÀµ¤·¤¯ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó¡£ diff --git a/majordomo/lang/ko_KR.euc b/majordomo/lang/ko_KR.euc index c8a550d69..996d8f65f 100644 --- a/majordomo/lang/ko_KR.euc +++ b/majordomo/lang/ko_KR.euc @@ -2,8 +2,7 @@ index_title=majordomo index_econfig=majordomo ±¸¼º ÆÄÀÏ $1ÀÌ(°¡) Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù. ¸ðµâ ±¸¼ºÀÌ Á¤È®ÇÏÁö ¾Ê°Å³ª majordomo°¡ ¼³Ä¡µÇÁö ¾Ê¾ÒÀ» ¼ö ÀÖ½À´Ï´Ù. index_eprograms=majordomo µð·ºÅ丮 $1ÀÌ(°¡) Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù. ¸ðµâ ±¸¼ºÀÌ Á¤È®ÇÏÁö ¾Ê°Å³ª majordomo°¡ ¼³Ä¡µÇÁö ¾Ê¾ÒÀ» ¼ö ÀÖ½À´Ï´Ù. index_eversion=Webmin¿¡¼­ Áö¿øÇÏÁö ¾Ê´Â majordomo ¹öÀüÀÔ´Ï´Ù. Webmin¿¡¼­´Â 1.94 ÀÌ»ó ¹öÀü¸¸ Áö¿øÇÕ´Ï´Ù. -index_ehomedir=majordomo ±¸¼º ÆÄÀÏÀÇ$homedir º¯¼ö°¡ Á¸ÀçÇÏÁö ¾Ê´Â $1(À¸)·Î ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù. -index_elistdir=majordomo ±¸¼º ÆÄÀÏÀÇ$listdir º¯¼ö°¡ Á¸ÀçÇÏÁö ¾Ê´Â $1(À¸)·Î ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù. +index_emdomdir=majordomo ±¸¼º ÆÄÀÏÀÇ$1 º¯¼ö°¡ Á¸ÀçÇÏÁö ¾Ê´Â $1(À¸)·Î ¼³Á¤µÇ¾î ÀÖ½À´Ï´Ù. index_esendmail=sendmail ±¸¼º ÆÄÀÏ $1ÀÌ(°¡) Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù. sendmail ¸ðµâ ±¸¼ºÀ» °Ë»çÇϽʽÿÀ. index_esendmailversion=sendmail ±¸¼º ÆÄÀÏÀÌ ÃֽŠsendmail ¹öÀü¿ëÀÌ ¾Æ´Õ´Ï´Ù. Webmin¿¡¼­´Â 8.8 ÀÌ»ó ¹öÀü¸¸ Áö¿øÇÕ´Ï´Ù. index_setupdesc=majordomo°¡ ½Ã½ºÅÛ¿¡ ¼³Ä¡µÇ¾î ÀÖÁö¸¸ sendmail º°Äª ÆÄÀÏ¿¡¼­ ¿Ã¹Ù¸£°Ô ¼³Á¤µÇÁö ¾Ê¾Ò½À´Ï´Ù. diff --git a/majordomo/lang/nl b/majordomo/lang/nl index 7e12602f2..c89ce8298 100644 --- a/majordomo/lang/nl +++ b/majordomo/lang/nl @@ -113,8 +113,7 @@ head_title=Headers en Footers index_add=Toevoegen nieuwe email lijst index_digest=Toevoegen nieuwe samenvatting lijst. index_econfig=De Majordomo config file $1 bestaat niet. Misschien is uw module configuratie niet correct, of Majordomo is niet geinstalleerd. -index_ehomedir=De $homedir variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet. -index_elistdir=De $listdir variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet. +index_emdomdir=De $1 variabel in uw Majordomo config file is ingesteld naar $1, en die bestaat niet. index_epostfix=Postfix is of niet geinstalleerd of niet goed geconfigureerd op uw systeem. Controleer de Postfix module configuratie. index_eprograms=De Majordomo directory $1 bestaat niet. Misschien is uw module configuratie niet correct, of Majordomo is niet geinstalleerd. index_esendmail2=Sendmail is of niet geinstalleerd of niet goed geconfigureerd op uw systeem. Controleer de Sendmail module configuratie. diff --git a/majordomo/lang/no b/majordomo/lang/no index 1b68a5a45..e0dc5fc26 100644 --- a/majordomo/lang/no +++ b/majordomo/lang/no @@ -113,8 +113,7 @@ head_title=Topp- og bunntekster index_add=Legg til en ny e-post liste. index_digest=Legg til en ny sammendrag liste. index_econfig=Majordomo konfig.filen $1 finnes ikke. Kanskje modulkonfigurasjonen er feil, eller så er majordomo ikke installert. -index_ehomedir=$homedir variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke. -index_elistdir=$listdir variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke. +index_emdomdir=$1 variablene i fin majordomo konfig.fil er satt til $1. Denne katalogen finnes ikke. index_epostfix=Postfix er enten ikke installert eller ikke riktig satt opp på systemet ditt. Sjekk Postfix modulens konfigurasjon. index_eprograms=Majordomo katalogen $1 finnes ikke. Kanskje modulkonfigurasjonen er feil, eller så er majordomo ikke installert. index_esendmail2=Sendmail er enten ikke installert eller satt opp riktig på systemet ditt. Sjekk Sendmail modul konfigurasjonen. diff --git a/majordomo/lang/ru_RU b/majordomo/lang/ru_RU index 982247bdb..a2a0bf14e 100644 --- a/majordomo/lang/ru_RU +++ b/majordomo/lang/ru_RU @@ -63,7 +63,6 @@ access_res1= access_adv=Âêëþ÷èòü ýòîò ñïèñîê â îòâåò íà êîìàíäó lists äëÿ.. mesg_bulk=Íóæíîå access_res2=Àäðåñà â ôàéëå -index_ehomedir=Ïåðåìåííàÿ $homedir â âàøåì ôàéëå íàñòðîåê majordomo óñòàíîâëåíà â $1, ÷åãî íå ñóùåñòâóåò. access_who=Äîñòóï ê êîìàíäå who index_global=Ðåäàêòèðîâàíèå íàñòðîåê Majordomo edit_return=ñïèñîê ðàññûëêè @@ -125,7 +124,7 @@ create_emoderator= global_title=Îáùèå ïàðàìåòðû info_intro=Ââîäíîå ñîîáùåíèå, îòïðàâëÿåìîå âíîâü ïîäïèñàííûì íà ñïèñîê digest_maxdays=Âîçðàñò ñàìîãî ñòàðîãî ñîîáùåíèÿ ïåðåä îòïðàâêîé -index_elistdir=Ïåðåìåííàÿ $listdir â âàøåì ôàéëå íàñòðîåê majordomo óñòàíîâëåíà â $1, ÷åãî íå ñóùåñòâóåò. +index_emdomdir=Ïåðåìåííàÿ $1 â âàøåì ôàéëå íàñòðîåê majordomo óñòàíîâëåíà â $1, ÷åãî íå ñóùåñòâóåò. create_err=îøèáêà ïðè ñîçäàíèè ñïèñêà ðàññûëêè members_rem=Óäàëèòü digest_header=Ïàðàìåòðû ñîçäàíèÿ äàéäæåñòà diff --git a/majordomo/lang/ru_SU b/majordomo/lang/ru_SU index 33146aa19..995b9259a 100644 --- a/majordomo/lang/ru_SU +++ b/majordomo/lang/ru_SU @@ -2,8 +2,7 @@ index_title= index_econfig=æÁÊÌ ÎÁÓÔÒÏÅË majordomo $1 ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. ÷ÏÚÍÏÖÎÏ ÎÅËÏÒÒÅËÔÎÙ ÎÁÓÔÒÏÊËÉ ÍÏÄÕÌÑ, ÌÉÂÏ majordomo ÎÅ ÕÓÔÁÎÏ×ÌÅÎ. index_eprograms=ëÁÔÁÌÏÇ majordomo $1 ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. ÷ÏÚÍÏÖÎÏ ÎÅËÏÒÒÅËÔÎÙ ÎÁÓÔÒÏÊËÉ ÍÏÄÕÌÑ, ÌÉÂÏ majordomo ÎÅ ÕÓÔÁÎÏ×ÌÅÎ. index_eversion=÷ÁÛÁ ×ÅÒÓÉÑ majordomo ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ Webmin. ðÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÔÏÌØËÏ ×ÅÒÓÉÉ 1.94 É ×ÙÛÅ. -index_ehomedir=ðÅÒÅÍÅÎÎÁÑ $homedir × ×ÁÛÅÍ ÆÁÊÌÅ ÎÁÓÔÒÏÅË majordomo ÕÓÔÁÎÏ×ÌÅÎÁ × $1, ÞÅÇÏ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. -index_elistdir=ðÅÒÅÍÅÎÎÁÑ $listdir × ×ÁÛÅÍ ÆÁÊÌÅ ÎÁÓÔÒÏÅË majordomo ÕÓÔÁÎÏ×ÌÅÎÁ × $1, ÞÅÇÏ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. +index_emdomdir=ðÅÒÅÍÅÎÎÁÑ $1 × ×ÁÛÅÍ ÆÁÊÌÅ ÎÁÓÔÒÏÅË majordomo ÕÓÔÁÎÏ×ÌÅÎÁ × $1, ÞÅÇÏ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. index_esendmail=æÁÊÌ ÎÁÓÔÒÏÅË sendmail $1 ÎÅ ÓÕÝÅÓÔ×ÕÅÔ. ðÒÏ×ÅÒØÔÅ ÎÁÓÔÒÏÊËÉ ÍÏÄÕÌÑ Sendmail. index_esendmailversion=÷ÁÛ ÆÁÊÌ ÎÁÓÔÒÏÅË sendmail ÐÒÅÄÎÁÚÎÁÞÅÎ ÄÌÑ ÓÔÁÒÙÈ ×ÅÒÓÉÊ sendmail. Webmin ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ×ÅÒÓÉÉ 8.8 É ×ÙÛÅ. index_setupdesc=Majordomo ÕÓÔÁÎÏ×ÌÅÎ ÎÁ ×ÁÛÅÊ ÓÉÓÔÅÍÅ, ÎÏ ÎÅ ÎÁÓÔÒÏÅÎ × ÆÁÊÌÅ ÐÓÅ×ÄÏÎÉÍÏ× sendmail (aliases). diff --git a/majordomo/lang/sv b/majordomo/lang/sv index 4b0134667..76d8c332c 100644 --- a/majordomo/lang/sv +++ b/majordomo/lang/sv @@ -2,8 +2,7 @@ index_title=Majordomos listhanterare index_econfig=Konfigurationsfilen $1 för majordomo finns inte. Dina modulinställningar kanske är felaktiga, eller också har majordomo inte installerats. index_eprograms=Majordomo-katalogen $1 finns inte. Dina modulinställningar kanske är felaktiga, eller också har majordomo inte installerats. index_eversion=Din version av majordomo stöds inte av Webmin. Endast versionerna 1.94 och högre stöds. -index_ehomedir=Variabeln $homedir i din konfigurationsfil för majordomo är satt till $1, som inte finns. -index_elistdir=Variabeln $listdir i din konfigurationsfil för majordomo är satt till $1, som inte finns. +index_emdomdir=Variabeln $1 i din konfigurationsfil för majordomo är satt till $1, som inte finns. index_esendmail=Konfigurationsfilen $1 för sendmail finns inte. Kontrollera inställningarna för din Sendmail-modul. index_esendmailversion=Din konfigurationsfil för sendmail verkar inte höra till den senaste sendmail-versionen. Webmin stödjer endast version 8.8 och uppåt. index_setupdesc=Majordomo är installerat på systemet, men har inte satts upp ordentligt i sendmails aliasfil. diff --git a/majordomo/lang/tr b/majordomo/lang/tr index 2bb53d592..b8a0127b8 100644 --- a/majordomo/lang/tr +++ b/majordomo/lang/tr @@ -2,8 +2,7 @@ index_title=Majordomo Liste Y index_econfig=Majordomo yapýlandýrma dosyasý $1 mevcut deðil. Modül yapýlandýrmasý yanlýþ ya da, majordomo kurulmamýþ olabilir. index_eprograms=Majordomo dizini $1 mevcut deðil. Modül yapýlandýrmasý yanlýþ ya da, majordomo kurulmamýþ olabilir. index_eversion=Majordomo sürümünüz Webmin tarafýndan desteklenmemektedir. Sadece 1.94 ve üzeri sürümler desteklenmektedir -index_ehomedir=Majordomo yapýlandýrma dosyasýndaki $homedir deðiþkeni olan $1 mevcut deðildir. -index_elistdir=Majordomo yapýlandýrma dosyasýndaki $listdir deðiþkeni olan $1 mevcut deðildir. +index_emdomdir=Majordomo yapýlandýrma dosyasýndaki $1 deðiþkeni olan $2 mevcut deðildir. index_esendmail=Sendmail yapýlandýrma dosyasý $1 mevcut deðildir. Sendmail modül yapýlandýrmanýzý kontrol ediniz. index_esendmailversion=Sendmail yapýlandýrma dosyanýz en son sürüm sendmail'e sahip deðilsiniz gibi görünüyor. Webmin sadece 8.8 ve daha üstü sürümleri desteklemektedir. index_setupdesc=Majordomo sisteminizde kurulu fakat sendmail takma isimler dosyanýz deðiþtirilmemiþ. diff --git a/majordomo/lang/uk_UA b/majordomo/lang/uk_UA index 7dfc76a84..b66b96a40 100644 --- a/majordomo/lang/uk_UA +++ b/majordomo/lang/uk_UA @@ -63,7 +63,6 @@ access_res1= access_adv=Óêëþ÷èòè öåé ñïèñîê ó â³äïîâ³äü íà êîìàíäó lists äëÿ.. mesg_bulk=Ïîòð³áíå access_res2=Àäðåñè ó ôàéë³ -index_ehomedir=Ïåðåì³ííà $homedir ó âàøîìó ôàéë³ íàñòðîþâàíü majordomo âñòàíîâëåíà â $1, ÷îãî íå ³ñíóº. access_who=Äîñòóï äî êîìàíäè who index_global=Ðåäàãóâàííÿ íàñòðîþâàíü Majordomo edit_return=ñïèñîê ðîçñèëàííÿ @@ -125,7 +124,7 @@ create_emoderator= global_title=Çàãàëüí³ ïàðàìåòðè info_intro=Âñòóïíå ïîâ³äîìëåííÿ, ùî â³äïðàâëÿºòüñÿ çíîâó ï³äïèñàíèì íà ñïèñîê digest_maxdays=³ê ñàìîãî ñòàðîãî ïîâ³äîìëåííÿ ïåðåä â³äïðàâëåííÿì -index_elistdir=Ïåðåì³ííà $listdir ó âàøîìó ôàéë³ íàñòðîþâàíü majordomo âñòàíîâëåíà â $1, ÷îãî íå ³ñíóº. +index_emdomdir=Ïåðåì³ííà $1 ó âàøîìó ôàéë³ íàñòðîþâàíü majordomo âñòàíîâëåíà â $1, ÷îãî íå ³ñíóº. create_err=ïîìèëêà ïðè ñòâîðåíí³ ñïèñêó ðîçñèëàííÿ members_rem=Âèäàëèòè digest_header=Ïàðàìåòðè ñòâîðåííÿ äàéäæåñòó diff --git a/majordomo/lang/zh_CN b/majordomo/lang/zh_CN index 92fa0dcf4..51d0dafd8 100644 --- a/majordomo/lang/zh_CN +++ b/majordomo/lang/zh_CN @@ -2,8 +2,7 @@ index_title=Majordomo index_econfig=Majordomo ÅäÖÃÎļþ $1 ²»´æÔÚ.¿ÉÄÜÄúµÄÄ£¿éÅäÖò»ÕýÈ·,»òÕß Majordomo ûÓа²×°¡£ index_eprograms=Majordomo Ŀ¼ $1 ²»´æÔÚ.¿ÉÄÜÄúµÄÄ£¿éÅäÖò»ÕýÈ·,»òÕß Majordomo ûÓа²×°¡£ index_eversion=Webmin ²»Ö§³ÖÄúµÄ Majordomo °æ±¾,Ëü½öÖ§³Ö1.94»ò¸ü¸ß°æ±¾µÄMajordomo¡£ -index_ehomedir=ÄúµÄ Majordomo ÅäÖÃÎļþÖеÄ$homedir±äÁ¿ÉèÖÃΪ $1£¬µ«Ëü²»´æÔÚ¡£ -index_elistdir=ÄúµÄ Majordomo ÅäÖÃÎļþÖеÄ$listdir±äÁ¿ÉèÖÃΪ $1,µ«Ëü²»´æ>ÔÚ¡£ +index_emdomdir=ÄúµÄ Majordomo ÅäÖÃÎļþÖеÄ$1±äÁ¿ÉèÖÃΪ $1,µ«Ëü²»´æ>ÔÚ¡£ index_esendmail=Sendmail ÅäÖÃÎļþ $1²»´æÔÚ,Çë¼ì²éÄúµÄSendmail Ä£¿é ÅäÖᣠindex_esendmailversion=ÄúµÄ sendmail ÅäÖÃÎļþ¿ÉÄܲ»ÊÇ×îеİ汾, WebminÖ»ÄÜÖ§³Ö8.8»ò¸ü¸ß°æ±¾¡£ index_setupdesc=Majordomo ÒѾ­°²×°ÔÚÄúµÄϵͳÉÏ,µ«Î´ÔÚ sendmail aliase ÎļþÖÐÕýÈ·ÉèÖᣠdiff --git a/majordomo/majordomo-lib.pl b/majordomo/majordomo-lib.pl index 7d0952719..92a4ad84d 100755 --- a/majordomo/majordomo-lib.pl +++ b/majordomo/majordomo-lib.pl @@ -480,14 +480,14 @@ if ($majordomo_version < 1.94 || $majordomo_version >= 2) { } # Check $homedir in majordomo.cf if (!&homedir_valid($conf)) { - print &text('index_ehomedir', "$homedir"),"

\n"; + print &text('index_emdomdir', '$homedir', $homedir),"

\n"; &ui_print_footer("/", $text{'index'}); exit; } # Check $listdir in majordomo.cf local $listdir = &perl_var_replace(&find_value("listdir", $conf), $conf); if (!-d $listdir) { - print &text('index_elistdir', "$listdir"),"

\n"; + print &text('index_emdomdir', '$listdir', $listdir),"

\n"; &ui_print_footer("/", $text{'index'}); exit 1; }