diff -urN smeserver-geneweb-2.3.0.old/createlinks smeserver-geneweb-2.3.0/createlinks --- smeserver-geneweb-2.3.0.old/createlinks 2021-03-14 22:35:28.000000000 +0400 +++ smeserver-geneweb-2.3.0/createlinks 2021-03-15 20:55:40.669000000 +0400 @@ -35,5 +35,5 @@ safe_symlink("try-restart", "root/etc/e-smith/events/$event/services2adjust/gwsetup"); templates2events("/etc/systemd/system-preset/49-koozali.preset", $event); event_link("systemd-default", $event, "06"); - +event_link("restart-smanager","smeserver-geneweb-update","10"); #-------------------------------------------------- diff -urN smeserver-geneweb-2.3.0.old/root/etc/e-smith/events/actions/restart-smanager smeserver-geneweb-2.3.0/root/etc/e-smith/events/actions/restart-smanager --- smeserver-geneweb-2.3.0.old/root/etc/e-smith/events/actions/restart-smanager 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/etc/e-smith/events/actions/restart-smanager 2021-03-15 20:53:12.393000000 +0400 @@ -0,0 +1,5 @@ +#!/bin/sh +if (systemctl is-active smanager) then + echo "Generate config files & restart smanager" + /sbin/e-smith/signal-event smanager-refresh; +fi diff -urN smeserver-geneweb-2.3.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/28gwd_gwsProxyPass smeserver-geneweb-2.3.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/28gwd_gwsProxyPass --- smeserver-geneweb-2.3.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/28gwd_gwsProxyPass 2020-11-05 20:15:06.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/28gwd_gwsProxyPass 2021-03-13 21:28:10.000000000 +0400 @@ -13,8 +13,26 @@ $OUT .= ' RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$' . "\n"; $OUT .= " RewriteRule ^/$place(/.*|\$) https://%{HTTP_HOST}/$place\$1 [L,R]\n\n"; } - $OUT .= " ProxyPass /$place/ http://127.0.0.1:${$place}{TCPPort}/\n"; - $OUT .= " ProxyPassReverse /$place/ http://127.0.0.1:${$place}{TCPPort}/\n"; + $OUT .= " RewriteRule ^/$place\$ https://%{HTTP_HOST}/$place/ [L,R]\n\n"; + + $OUT .= " ProxyRequests Off\n"; + $OUT .= " ProxyPreserveHost On\n"; + $OUT .= " ProxyPass /$place http://127.0.0.1:${$place}{TCPPort} KeepAlive=On\n"; + $OUT .= " ProxyPassReverse /$place http://127.0.0.1:${$place}{TCPPort}\n"; + $OUT .= " RequestHeader set X-Forwarded-Proto 'http'\n"; + + $OUT .= " \n"; + $OUT .= " order deny,allow\n"; + $OUT .= " deny from all\n"; + if ($port eq $plainPort) { + $OUT .= ' allow from 127.0.0.1' . "\n"; + } elsif (($haveSSL eq 'yes') && ($port eq $sslPort)) { + $OUT .= " allow from $localAccess $externalSSLAccess\n"; + } else { + $OUT .= " allow from $localAccess\n"; + } + + $OUT .= " \n\n"; } else { $OUT .= " # $place disabled\n"; diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm 2021-03-02 17:03:19.000000000 +0400 @@ -0,0 +1,186 @@ +package SrvMngr::Controller::Geneweb; + +#---------------------------------------------------------------------- +# heading : Administration +# description : Geneweb Admin +# navigation : 4000 4600 +# + +# name : geneweb, method : get, url : /geneweb, ctlact : Geneweb#main +# name : genewebd, method : post, url : /geneweb, ctlact : Geneweb#do_update + +# routes : end +#---------------------------------------------------------------------- + +use strict; +use warnings; +use Mojo::Base 'Mojolicious::Controller'; + +use Locale::gettext; +use SrvMngr::I18N; +use SrvMngr qw(theme_list init_session); + +our $cdb = esmith::ConfigDB->open() || die "Couldn't open config db"; + +our $REGEXP_DOMAIN = qq([a-zA-Z0-9\-\.]+); + + +sub main { + + my $c = shift; + $c->app->log->info($c->log_req); + + $cdb->reload(); + my $title = $c->l('gnw_FORM_TITLE'); + + $c->stash( title => $title ); + $c->render('geneweb'); +}; + + +sub do_update { + my $c = shift; + $c->app->log->info($c->log_req); + + my $res = ''; + my $result = ''; + + my $n_gw_dbdir = $c->param("Dbdir_gnw") || ''; + my $n_gw_st = $c->param("Status_gnw"); + my $n_gw_ac = $c->param("Access_gnw"); + my $n_gws_st = $c->param("Status_gws"); + my $n_gws_ac = $c->param("Access_gws"); + + my $gw_dbdir = get_gnw_dbdir(); + my $gw_st = get_gnw_st(); + my $gw_ac = get_gnw_ac(); + my $gws_st = get_gws_st(); + my $gws_ac = get_gws_ac(); + + if ( ($n_gw_dbdir eq $gw_dbdir) && ($n_gw_st eq $gw_st) + && ($n_gw_ac eq $gw_ac) && ($n_gws_st eq $gws_st) && ($n_gws_ac eq $gws_ac) ) { + $res = 'OK'; + $result = $c->l('gnw_NO_CHANGE'); + } + + if ( ! $result && $n_gw_dbdir ) { + $res = dir_must_exist( $c, $n_gw_dbdir ); + $result .= $res unless $res eq 'OK'; + } + + if ( ! $result ) { + + $cdb->set_prop("geneweb", "DBDir", $n_gw_dbdir); + $cdb->set_prop("geneweb", "status", $n_gw_st); + $cdb->set_prop("geneweb", "access", $n_gw_ac); + $cdb->set_prop("gwsetup", "status", $n_gws_st); + $cdb->set_prop("gwsetup", "access", $n_gws_ac); + + if ( system ( "/sbin/e-smith/signal-event", "geneweb-modify" ) ) { + $result = $c->error("gnw_ERROR_UPDATING"); + } else { + $res = 'OK'; + $result = $c->l('gnw_SUCCESS'); + } + } + + # common part + if ($res ne 'OK') { + my $title = $c->l('gnw_FORM_TITLE'); + + $c->stash( error => $result ); + $c->stash( title => $title ); + return $c->render( 'geneweb' ); + } + + my $message = "geneweb update DONE"; + $c->app->log->info($message); + $c->flash( success => $result ); + + $c->redirect_to("/geneweb"); + +}; + + +sub get_prop { + my ($item, $prop) = @_; + + my $record = $cdb->get($item); + if ($record) { + return $record->prop($prop); + } else { + return ''; + } +} + + +sub get_gnw_dbdir { + return get_prop("geneweb", "DBDir"); +} + +sub get_gnw_st { + return get_prop("geneweb", "status"); +} + +sub get_gnw_ac { + return get_prop("geneweb", "access"); +} + +sub get_gws_st { + return get_prop("gwsetup", "status"); +} + +sub get_gws_ac { + return get_prop("gwsetup", "access"); +} + + +sub dir_must_exist { + + my ($c, $gw_dbdir) = @_; + + $gw_dbdir = $1 if ($gw_dbdir =~ /^($REGEXP_DOMAIN)$/); + return $c->l('gnw_ERR_DIR_NOT_EXIST') unless ($gw_dbdir); + + if ($gw_dbdir) { + if ( ! -d "$gw_dbdir" ) { + return $c->l('gnw_ERR_DIR_NOT_EXIST'); + } + } + return 'OK'; +} + + +sub get_stat_gwd { + + my $c = shift; + + if ( get_gnw_st() eq 'enabled' + && system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") != 0 ) { + return $c->l('gnw_ERROR_STATUS_GENEWEB'); + } + if ( get_gnw_st() eq 'disabled' + && system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") == 0 ) { + return $c->l('gnw_ERROR2_STATUS_GENEWEB'); + } + return ''; +} + + +sub get_stat_gws { + + my $c = shift; + + if ( get_gws_st() eq 'enabled' + && system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") != 0 ) { + return $c->l('gnw_ERROR_STATUS_GWSETUP'); + } + if ( get_gws_st() eq 'disabled' + && system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") == 0 ) { + return $c->l('gnw_ERROR2_STATUS_GWSETUP'); + } + return ''; +} + + +1; diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_bg.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_bg.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_bg.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_bg.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'директория', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Web сървър', +'gnw_GENEWEB_ACCESS' => 'Достъп до POP3 сървър', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Администриране', +'gnw_GWSETUP_ACCESS' => 'Администриране', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'личен', +'gnw_PUBLIC' => 'Публичен', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_da.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_da.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_da.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_da.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administration af Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Der opstod en fejl under opdatering af Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Fejl: Dette IP-nummer er ikke et lokalt IP-nummer', +'gnw_NOT_VALID_IP' => 'Det er ikke et gyldigt IP-nummer. Prøv igen...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'IP-nummeret skal tilhøre dit lokale netværk og være et gyldigt IP-nummer (f.eks. 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nyt IP-nummer hvorfra du ønsker at administrere Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path eksisterer ikke', +'gnw_LABEL_DBDIR_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:', +'gnw_ERR_DIR_NOT_EXIST' => 'Backup mediet er ikke tilsluttet', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Webserver', +'gnw_GENEWEB_ACCESS' => 'POP3 server adgang', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administration af Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administration af Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privat', +'gnw_PUBLIC' => 'Offentlig', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_de.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_de.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_de.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_de.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Während des updates von Geneweb ist ein Fehler aufgetreten.', +'gnw_ERR_IP_NOT_LOCAL' => 'Fehler: Die IP-Adresse ist keine lokale IP-Adresse', +'gnw_NOT_VALID_IP' => 'Das ist keine gültige IP-Adresse. Versuchen Sie es erneut...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Die IP-Adresse muß in Ihrem lokalen Netzwerkbereich liegen und gültig sein (Bsp.: 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Neue IP-Adresse von der aus Sie Geneweb administrieren wollen.', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pfad Falscher', +'gnw_LABEL_DBDIR_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:', +'gnw_ERR_DIR_NOT_EXIST' => 'Sicherungsverzeichnis ist nicht eingebunden', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Web Server', +'gnw_GENEWEB_ACCESS' => 'Zugang zu externen News-Servern einschalten', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Geneweb Administration', +'gnw_GWSETUP_ACCESS' => 'Geneweb Administration', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privat', +'gnw_PUBLIC' => 'Öffentlich', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_el.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_el.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_el.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_el.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Δεν υφίσταται το παραπάνω Chroot Path', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Κατάλογος', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Διακομιστής Web', +'gnw_GENEWEB_ACCESS' => 'Πρόσβαση διακομιστή POP3', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Διαχείριση django', +'gnw_GWSETUP_ACCESS' => 'Διαχείριση django', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Ενεργοποίηση', +'gnw_PUBLIC' => 'Έκδοση', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_en.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_en.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_en.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_en.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,80 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' +Change IP and Administer +', +'gnw_ERROR_UPDATING' => +'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => +'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => +'That is not a valid IP. Try again...', +'gnw_SUCCESS' => +' +Successful change... now browse
enabled services from your client +', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => +' +This IP must be on your local network and be a valid IP (i.e. 192.168.0.244) +', +'gnw_LABEL_GENEWEB_ADMIN_IP' => +'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => +' + +

Browse to http://YourGenewebServer:2316
+-Geneweb will display the IP to set for administrative access from that client.

+

+', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) + - default is \'/opt/geneweb/bases - +', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update ! +', +'gnw_GENEWEB_STATUS' => +'Geneweb server +', +'gnw_GENEWEB_ACCESS' => 'Geneweb server access +', +'gnw_DESC_GENEWEB' => +'


Geneweb server (geneweb) is generally enabled and publicly accessible.
+Geneweb databases can be found in the directory shown below. This location can be changed.
+

+', +'gnw_GWSETUP_STATUS' => 'Geneweb administration +', +'gnw_GWSETUP_ACCESS' => +'Geneweb administration access +', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
+It is used during setup only. +

+', +'gnw_ERROR_STATUS_GENEWEB' => +' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => +' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => +' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => +' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => +'Private', +'gnw_PUBLIC' => +'Public', +'gnw_DESC_GWSETUP_ACCESS' => +'

The \'public\' access mode is possible but not recommended for security reason.
+It is even advisable to place it in the \'disabled \' state when it is not used. +

+', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_es.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_es.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_es.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_es.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administración Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'IP \'única\' actual asignada a Geneweb:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Ha ocurrido un error mientras se actualizaba Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: Esta IP no es una IP Local', +'gnw_NOT_VALID_IP' => 'Esa no es una IP válida. Inténtelo nuevamente...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Esta IP debe estar en su red local y ser una IP válida (ej. 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nueva IP desde la cual quiere administrar Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Ruta chroot no existe', +'gnw_LABEL_DBDIR_STATUS' => 'IP \'única\' actual asignada a Geneweb:', +'gnw_ERR_DIR_NOT_EXIST' => 'Directorio', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Servidor Web', +'gnw_GENEWEB_ACCESS' => 'Acceso a servidor POP3', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administración Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administración Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'privado', +'gnw_PUBLIC' => 'Público', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_et.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_et.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_et.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_et.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path pole olemas', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Kataloog', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Weebi server', +'gnw_GENEWEB_ACCESS' => 'POP3 serveri juurdepääs', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administreerimine', +'gnw_GWSETUP_ACCESS' => 'Vali administraatori parool', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Aktiveeri', +'gnw_PUBLIC' => 'Public', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_fr.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_fr.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_fr.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_fr.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administration Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'IP \'unique\' assignée actuellement à Geneweb:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Changer l\'IP et Administrer ', +'gnw_ERROR_UPDATING' => 'Il y\'a eu une erreur pendant la mise à jour de Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Erreur: Cette adresse IP n\'est pas une adresse IP locale', +'gnw_NOT_VALID_IP' => 'Cette adresse IP n\'est pas valide. Veuillez entrer une adresse IP valide', +'gnw_SUCCESS' => ' Changement réussi... Maintenant accédez aux services actifs depuis votre client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Cette adresse IP doit être sur votre réseau local et être une adresse IP valide (ex: 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nouvelle adresse IP d\'où vous voulez administrer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Pointez votre navigateur vers http://YourGenewebServer:2316
-Geneweb affichera l\'adresse IP à configurer pour l\'accès administratif depuis ce poste client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Ce dossier n\'existe pas', +'gnw_LABEL_DBDIR_STATUS' => 'Dossier de base de donnée Geneweb actuellement assigné:', +'gnw_ERR_DIR_NOT_EXIST' => 'Dossier non trouvé.', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'Ce dossier doit exister sur le serveur et accessible en écriture par Geneweb. (geneweb:geneweb 770)', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nouveau dossier pour base(s) de données Geneweb. :', +'gnw_NO_CHANGE' => 'Pas de changement... Pas de mise à jour !', +'gnw_GENEWEB_STATUS' => 'Serveur Geneweb', +'gnw_GENEWEB_ACCESS' => 'Accès au serveur Geneweb', +'gnw_DESC_GENEWEB' => '


Le serveur Geneweb (geneweb) est généralement activé avec un accés public.
Les bases de données de Genewebse trouvent dans ledossier ci dessous. Cet emplacement est modifiable.

', +'gnw_GWSETUP_STATUS' => 'Administration Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administration Geneweb', +'gnw_DESC_GWSETUP' => '

Le service d\'administration de Geneweb (gwsetup) est généralementprévu pour un accés privé (réseau local).
Il est utilisé uniquement pendant les opérations sur la(les) base(s) généalogique(s).

', +'gnw_ERROR_STATUS_GENEWEB' => ' Le service GENEWEB est inactif (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' Le service d\'administration de GENEWEB est inactif (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' Le service GENEWEB ne devrait pas être actif (geneweb) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' Le service d\'administration de GENEWEB ne devrait pas être inactif (gwsetup) ', +'gnw_PRIVATE' => 'Privé', +'gnw_PUBLIC' => 'Public', +'gnw_DESC_GWSETUP_ACCESS' => '

Le mode d\'accès \'public\' est possible mais non recommandé pour raison de sécurité.
Il est même conseilé de placer ce service dans l\'état \'Désactivé \' lorsqu\'il n\'est pas utilisé.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_he.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_he.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_he.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_he.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Geneweb server', +'gnw_GENEWEB_ACCESS' => 'Geneweb server access', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'מנהל מערכת', +'gnw_GWSETUP_ACCESS' => 'Geneweb administration access', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'הפעלה', +'gnw_PUBLIC' => 'Public', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_hu.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_hu.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_hu.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_hu.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Biztonsági mentés könyvtára nincs felcsatolva', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Web szerver', +'gnw_GENEWEB_ACCESS' => 'POP3 szerver hozzáférés', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Django adminisztrátor', +'gnw_GWSETUP_ACCESS' => 'Django adminisztrátor', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Személyes kulcs', +'gnw_PUBLIC' => 'Nyilvános', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_id.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_id.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_id.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_id.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Direktori', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Server Web', +'gnw_GENEWEB_ACCESS' => 'POP3 server akses', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administrasi', +'gnw_GWSETUP_ACCESS' => 'Masukkan kata sandi administrator', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Aktifkan', +'gnw_PUBLIC' => 'Public', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_it.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_it.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_it.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_it.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Amministrazione Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'Indirizzo IP assegnato solo a Geneweb', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Cambia indirizzo IP e amministra ', +'gnw_ERROR_UPDATING' => 'C\'è stato un errore aggiornando Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Errore: questo indirizzo IP non è un indirizzo IP locale.', +'gnw_NOT_VALID_IP' => 'Questo non un indirizzo IP valido. Provare di nuovo....', +'gnw_SUCCESS' => ' Cambio avvenuto con successo... collegarsi
alla porta 2316 dal client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Questo IP deve essere sulla rete locale ed essere valido (p.e.192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nuovo indirizzo IP da cui si desidera amministrare Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Aprire http://YourGenewebServer:2316
- Geneweb mostrerà l\'indirizzo IP da impostare per l\'accesso amministrativo dal client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'La cartella non esiste', +'gnw_LABEL_DBDIR_STATUS' => 'Cartella correntemente assegnata ai DB di Geneweb', +'gnw_ERR_DIR_NOT_EXIST' => 'Cartella non trovata', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'La cartella deve esistere sul server ed essere abilitata in scrittura per Geneweb. (geneweb:geneweb 770)', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nuova cartella per i database di Geneweb:', +'gnw_NO_CHANGE' => 'Nessuna modifica ... nessun aggiornamento!', +'gnw_GENEWEB_STATUS' => 'Server Web', +'gnw_GENEWEB_ACCESS' => 'Accesso server POP3', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Amministrazione Geneweb', +'gnw_GWSETUP_ACCESS' => 'Amministrazione Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GEOIP filtering è inattivo (iptables) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GEOIP filtering è inattivo (iptables) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GEOIP filtering è inattivo (iptables) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GEOIP filtering è inattivo (iptables) ', +'gnw_PRIVATE' => 'Privato', +'gnw_PUBLIC' => 'Pubblico', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ja.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ja.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ja.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ja.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'ディレクトリ', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Geneweb server', +'gnw_GENEWEB_ACCESS' => 'Geneweb server access', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Django 管理', +'gnw_GWSETUP_ACCESS' => 'Django 管理', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => '秘密鍵', +'gnw_PUBLIC' => '公開', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nb.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nb.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nb.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nb.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Mappe', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Webserver', +'gnw_GENEWEB_ACCESS' => 'POP3 server tilgang', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Django administrasjon', +'gnw_GWSETUP_ACCESS' => 'Django administrasjon', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privat nøkkel', +'gnw_PUBLIC' => 'Offentlig', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nl.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nl.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nl.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_nl.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Beheer', +'gnw_LABEL_ONLY_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Er is een fout opgetreden tijdens het wijzigen van Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Fout: Dit is niet een lokaal IP adres', +'gnw_NOT_VALID_IP' => 'Dat is niet een geldig IP adres. Probeer het nog eens...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Dit IP moet op U locale network zijn en een geldig IP adres zijn (b.v. 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nieuw IP adres waarvandaan U Geneweb wilt beheeren:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pad bestaat niet', +'gnw_LABEL_DBDIR_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:', +'gnw_ERR_DIR_NOT_EXIST' => 'Backup directory is niet gemonteerd', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Webserver', +'gnw_GENEWEB_ACCESS' => 'POP3 server toegang', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Geneweb Beheer', +'gnw_GWSETUP_ACCESS' => 'Geneweb Beheer', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privé ', +'gnw_PUBLIC' => 'Publiekelijk', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pl.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pl.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pl.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pl.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Katalog', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Serwer WWW', +'gnw_GENEWEB_ACCESS' => 'Geneweb server access', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administracja Django', +'gnw_GWSETUP_ACCESS' => 'Administracja Django', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Klucz osobisty', +'gnw_PUBLIC' => 'Publiczny', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt-br.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt-br.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt-br.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt-br.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administração Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local', +'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Este IP deve estar em sua rede local e ser um endereço IP válido (exemplo: 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe', +'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:', +'gnw_ERR_DIR_NOT_EXIST' => 'Diretório de backup não está montado.', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Servidor web', +'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administração Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administração Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privado', +'gnw_PUBLIC' => 'Público', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_pt.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administração Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local', +'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Este IP deve estar em sua rede local e ser um endereço IP válido (exemplo: 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe', +'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:', +'gnw_ERR_DIR_NOT_EXIST' => 'Diretório', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Servidor web', +'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administração Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administração Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Chave privada', +'gnw_PUBLIC' => 'Público', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ro.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ro.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ro.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ro.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Administrare Geneweb', +'gnw_LABEL_ONLY_STATUS' => 'IP curent atribuit doar pentru Geneweb', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Schimbă IP și Administrator ', +'gnw_ERROR_UPDATING' => 'Există o eroare la actualizarea Geneweb', +'gnw_ERR_IP_NOT_LOCAL' => 'Eroare: Acest IP nu este local', +'gnw_NOT_VALID_IP' => 'Acesta nu este un IP valid. Mai incearcă...', +'gnw_SUCCESS' => ' Schimb efectuat cu success... Navigați
pe portul 2316 de pe browserul dumneavoastră client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Acest IP trebuie să fie în reteaua internă și să fie valid (ex: 192,168,24,244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Noul IP de unde se va administra Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Accesați http://YourGenewebServer:2316
-Geneweb va afișa IP-ul de setat pentru accesul administrativ.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'IP curent atribuit doar pentru Geneweb', +'gnw_ERR_DIR_NOT_EXIST' => 'Director', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'server Web', +'gnw_GENEWEB_ACCESS' => 'Activați accesul la servere de știri externe', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administrare Geneweb', +'gnw_GWSETUP_ACCESS' => 'Administrare Geneweb', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Activare', +'gnw_PUBLIC' => 'Publicat', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ru.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ru.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ru.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_ru.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Произошла ошибка при обновлении Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Ошибка: этот IP не локальный IP', +'gnw_NOT_VALID_IP' => 'Это не допустимый IP. Попробуйте еще раз...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot путь не существует', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Каталог', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Веб-сервер', +'gnw_GENEWEB_ACCESS' => 'Доступ к POP3 серверу', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Администрирование Django', +'gnw_GWSETUP_ACCESS' => 'Администрирование Django', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Закрытый ключ', +'gnw_PUBLIC' => 'Опубликовать', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sl.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sl.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sl.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sl.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Spletni streznik', +'gnw_GENEWEB_ACCESS' => 'POP3 dostop do streznika', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Administracija Django', +'gnw_GWSETUP_ACCESS' => 'Administracija Django', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Aktiviraj', +'gnw_PUBLIC' => 'Objavi', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sv.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sv.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sv.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_sv.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb administration', +'gnw_LABEL_ONLY_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'Det uppstod ett fel vid uppdatering av Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Fel: Detta IP är inte ett lokalt IP', +'gnw_NOT_VALID_IP' => 'Detta är inte ett giltigt IP. Försök igen...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Denna IP-adress måste finnas på ditt lokala nätverk och vara en giltig IP (exvis 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Ny IP-adress från där du önskar administrera Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot-sökväg existerar inte', +'gnw_LABEL_DBDIR_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:', +'gnw_ERR_DIR_NOT_EXIST' => 'Katalog', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Webb-server', +'gnw_GENEWEB_ACCESS' => 'POP3 serveråtkomst', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Geneweb administration', +'gnw_GWSETUP_ACCESS' => 'Geneweb administration', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'Privat nyckel', +'gnw_PUBLIC' => 'Allmän', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_th.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_th.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_th.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_th.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'ไดเรกทอรี่', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'เว็บเซิร์ฟเวอร์', +'gnw_GENEWEB_ACCESS' => 'การเข้าถึง POP3 เซอร์ฟเวอร์', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'การบริหาร', +'gnw_GWSETUP_ACCESS' => 'การบริหาร', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'กุญแจส่วนตัว', +'gnw_PUBLIC' => 'สาธารณะ', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_tr.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_tr.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_tr.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_tr.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb Administration', +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.', +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP', +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.', +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:', +'gnw_ERR_DIR_NOT_EXIST' => 'Dizin', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Web sunucusu', +'gnw_GENEWEB_ACCESS' => 'POP3 sunucu erişimi', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'yönetim', +'gnw_GWSETUP_ACCESS' => 'yönetim', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => 'özel, gizli', +'gnw_PUBLIC' => 'açık/ortak/kamu', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-cn.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-cn.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-cn.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-cn.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb 管理', +'gnw_LABEL_ONLY_STATUS' => '当前指定的GenewebIP:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' Change IP and Administer ', +'gnw_ERROR_UPDATING' => '更新 Geneweb 时出错。', +'gnw_ERR_IP_NOT_LOCAL' => '错误:这个IP不是本地IP', +'gnw_NOT_VALID_IP' => '无效的IP,请重试...', +'gnw_SUCCESS' => ' Successful change... now browse
enabled services from your client ', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '这个 IP 必须在本地网络,且必须是有效的 IP (例如 192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => '管理 Geneweb 的新 IP:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

Browse to http://YourGenewebServer:2316
-Geneweb will display the IP to set for administrative access from that client.



', +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot 路径不存在', +'gnw_LABEL_DBDIR_STATUS' => '当前指定的GenewebIP:', +'gnw_ERR_DIR_NOT_EXIST' => '备份目录尚未挂载', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => 'Web服务器', +'gnw_GENEWEB_ACCESS' => 'POP3 服务器访问', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Geneweb 管理', +'gnw_GWSETUP_ACCESS' => 'Geneweb 管理', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => ' GENEWEB service is inactive (geneweb) ', +'gnw_ERROR_STATUS_GWSETUP' => ' GENEWEB administration service is inactive (gwsetup) ', +'gnw_ERROR2_STATUS_GENEWEB' => ' GENEWEB service should not be active (gwd) ', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => '私钥', +'gnw_PUBLIC' => '公共的', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-tw.lex smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-tw.lex --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-tw.lex 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/I18N/Modules/Geneweb/geneweb_zh-tw.lex 2021-03-01 19:46:38.000000000 +0400 @@ -0,0 +1,29 @@ +'gnw_FORM_TITLE' => 'Geneweb管理', +'gnw_LABEL_ONLY_STATUS' => '當前指定的Geneweb"唯一"位址:', +'gnw_DESC_STATE_ADMIN_BUTTON' => ' 修改IP和管理員 ', +'gnw_ERROR_UPDATING' => '更新Geneweb時出錯。', +'gnw_ERR_IP_NOT_LOCAL' => '錯誤:此位址不是本地位址', +'gnw_NOT_VALID_IP' => '此非有效位址。請重試...', +'gnw_SUCCESS' => '更改成功...現從客戶端瀏覽
2316埠號', +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '此位址需位於區網並為有效位址(例如:192.168.24.244)', +'gnw_LABEL_GENEWEB_ADMIN_IP' => '欲管理Geneweb的新位址:', +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => '

瀏覽http://YourGenewebServer:2316
-Geneweb將顯示指定存取管理客戶端的位址。



', +'gnw_ERR_DIR_NOT_EXIST' => '置換根目錄的路徑不存在', +'gnw_LABEL_DBDIR_STATUS' => '當前指定的Geneweb"唯一"位址:', +'gnw_ERR_DIR_NOT_EXIST' => '備份目錄尚未掛載', +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -', +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :', +'gnw_NO_CHANGE' => 'No change... no update !', +'gnw_GENEWEB_STATUS' => '網頁伺服器', +'gnw_GENEWEB_ACCESS' => 'POP3伺服器存取', +'gnw_DESC_GENEWEB' => '


Geneweb server (geneweb) is generally enabled and publicly accessible.
Geneweb databases can be found in the directory shown below. This location can be changed.

', +'gnw_GWSETUP_STATUS' => 'Geneweb管理', +'gnw_GWSETUP_ACCESS' => 'Geneweb管理', +'gnw_DESC_GWSETUP' => '

Geneweb administration service (gwsetup) is generally intended for private access.
It is used during setup only.

', +'gnw_ERROR_STATUS_GENEWEB' => '儲存設定時發生錯誤', +'gnw_ERROR_STATUS_GWSETUP' => '儲存設定時發生錯誤', +'gnw_ERROR2_STATUS_GENEWEB' => '尚未檢核...', +'gnw_ERROR2_STATUS_GWSETUP' => ' GENEWEB administration service should not be active (gwsetup) ', +'gnw_PRIVATE' => '私有', +'gnw_PUBLIC' => '公開', +'gnw_DESC_GWSETUP_ACCESS' => '

The \'public\' access mode is possible but not recommended for security reason.
It is even advisable to place it in the \'disabled \' state when it is not used.

', diff -urN smeserver-geneweb-2.3.0.old/root/usr/share/smanager/themes/default/templates/geneweb.html.ep smeserver-geneweb-2.3.0/root/usr/share/smanager/themes/default/templates/geneweb.html.ep --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/themes/default/templates/geneweb.html.ep 1970-01-01 04:00:00.000000000 +0400 +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/themes/default/templates/geneweb.html.ep 2021-03-02 17:28:05.000000000 +0400 @@ -0,0 +1,69 @@ +% layout 'default', title => "Sme server 2 - geneweb"; + +% content_for 'module' => begin +
+ % if ($config->{debug} == 1) { +

+ %= dumper $c->current_route +

+ % } + + % if ( stash 'error' ) { +
+ %= $c->render_to_string(inline => stash 'error') +
+ %} + +

<%= $title %>

+ + %= form_for 'geneweb' => (method => 'POST') => begin + %= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP')) +

+ %= l('gnw_GWSETUP_STATUS'), class => 'label' + + % param 'Status_gws' => $c->get_gws_st() unless param 'Status_gws'; + %= select_field 'Status_gws' => [[(l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input' +

+

+ %= $c->render_to_string(inline => $c->get_stat_gws()) + + %= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP_ACCESS')) +
+ %=l 'gnw_GWSETUP_ACCESS', class => 'label' + + % param 'Access_gws' => $c->get_gws_ac() unless param 'Access_gws'; + %= select_field 'Access_gws' => [[(l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input' +

+ + %= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB')) +

+ %= l('gnw_GENEWEB_STATUS'), class => 'label' + + % param 'Status_gnw' => $c->get_gnw_st() unless param 'Status_gnw'; + %= select_field 'Status_gnw' => [[ (l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input' +

+ %= $c->render_to_string(inline => $c->get_stat_gwd()) + +

+ %=l 'gnw_GENEWEB_ACCESS', class => 'label' + + % param 'Access_gnw' => $c->get_gnw_ac() unless param 'Access_gnw'; + %= select_field 'Access_gnw' => [[ (l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input' +

+

+ %= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION')) +
+ %=l 'gnw_LABEL_GENEWEB_BASE_DIR', class => 'label' + + % param 'Dbdir_gnw' => $c->get_gnw_dbdir() unless param 'Dbdir_gnw'; + %= text_field 'Dbdir_gnw', class => 'input' +

+ +
+ %= submit_button $c->l('SAVE'), class => 'action' +
+ + % end + +
+%end