/[smecontribs]/rpms/smeserver-geneweb/contribs10/smeserver-geneweb-2.3.0-to_smanager.patch
ViewVC logotype

Annotation of /rpms/smeserver-geneweb/contribs10/smeserver-geneweb-2.3.0-to_smanager.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Mon Mar 15 17:11:43 2021 UTC (3 years, 2 months ago) by michel
Branch: MAIN
CVS Tags: smeserver-geneweb-2_3_0-2_el7_sme, smeserver-geneweb-2_3_0-4_el7_sme, smeserver-geneweb-2_3_0-3_el7_sme, smeserver-geneweb-2_3_0-6_el7_sme, smeserver-geneweb-2_3_0-5_el7_sme, smeserver-geneweb-2_3_0-8_el7_sme, smeserver-geneweb-2_3_0-7_el7_sme, HEAD
* Mon Mar 15 2021 Michel Begue <mab974@gmail.com> 2.3.0-2.sme
- change geneweb & gwsetup to systemd services
- add smeserver-geneweb-update event
- add template and controller for smanager

1 michel 1.1 diff -urN smeserver-geneweb-2.3.0.old/createlinks smeserver-geneweb-2.3.0/createlinks
2     --- smeserver-geneweb-2.3.0.old/createlinks 2021-03-14 22:35:28.000000000 +0400
3     +++ smeserver-geneweb-2.3.0/createlinks 2021-03-15 20:55:40.669000000 +0400
4     @@ -35,5 +35,5 @@
5     safe_symlink("try-restart", "root/etc/e-smith/events/$event/services2adjust/gwsetup");
6     templates2events("/etc/systemd/system-preset/49-koozali.preset", $event);
7     event_link("systemd-default", $event, "06");
8     -
9     +event_link("restart-smanager","smeserver-geneweb-update","10");
10     #--------------------------------------------------
11     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
12     --- smeserver-geneweb-2.3.0.old/root/etc/e-smith/events/actions/restart-smanager 1970-01-01 04:00:00.000000000 +0400
13     +++ smeserver-geneweb-2.3.0/root/etc/e-smith/events/actions/restart-smanager 2021-03-15 20:53:12.393000000 +0400
14     @@ -0,0 +1,5 @@
15     +#!/bin/sh
16     +if (systemctl is-active smanager) then
17     + echo "Generate config files & restart smanager"
18     + /sbin/e-smith/signal-event smanager-refresh;
19     +fi
20     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
21     --- 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
22     +++ 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
23     @@ -13,8 +13,26 @@
24     $OUT .= ' RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$' . "\n";
25     $OUT .= " RewriteRule ^/$place(/.*|\$) https://%{HTTP_HOST}/$place\$1 [L,R]\n\n";
26     }
27     - $OUT .= " ProxyPass /$place/ http://127.0.0.1:${$place}{TCPPort}/\n";
28     - $OUT .= " ProxyPassReverse /$place/ http://127.0.0.1:${$place}{TCPPort}/\n";
29     + $OUT .= " RewriteRule ^/$place\$ https://%{HTTP_HOST}/$place/ [L,R]\n\n";
30     +
31     + $OUT .= " ProxyRequests Off\n";
32     + $OUT .= " ProxyPreserveHost On\n";
33     + $OUT .= " ProxyPass /$place http://127.0.0.1:${$place}{TCPPort} KeepAlive=On\n";
34     + $OUT .= " ProxyPassReverse /$place http://127.0.0.1:${$place}{TCPPort}\n";
35     + $OUT .= " RequestHeader set X-Forwarded-Proto 'http'\n";
36     +
37     + $OUT .= " <Proxy '/$place'>\n";
38     + $OUT .= " order deny,allow\n";
39     + $OUT .= " deny from all\n";
40     + if ($port eq $plainPort) {
41     + $OUT .= ' allow from 127.0.0.1' . "\n";
42     + } elsif (($haveSSL eq 'yes') && ($port eq $sslPort)) {
43     + $OUT .= " allow from $localAccess $externalSSLAccess\n";
44     + } else {
45     + $OUT .= " allow from $localAccess\n";
46     + }
47     +
48     + $OUT .= " </Proxy>\n\n";
49    
50     } else {
51     $OUT .= " # $place disabled\n";
52     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
53     --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm 1970-01-01 04:00:00.000000000 +0400
54     +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm 2021-03-02 17:03:19.000000000 +0400
55     @@ -0,0 +1,186 @@
56     +package SrvMngr::Controller::Geneweb;
57     +
58     +#----------------------------------------------------------------------
59     +# heading : Administration
60     +# description : Geneweb Admin
61     +# navigation : 4000 4600
62     +#
63     +
64     +# name : geneweb, method : get, url : /geneweb, ctlact : Geneweb#main
65     +# name : genewebd, method : post, url : /geneweb, ctlact : Geneweb#do_update
66     +
67     +# routes : end
68     +#----------------------------------------------------------------------
69     +
70     +use strict;
71     +use warnings;
72     +use Mojo::Base 'Mojolicious::Controller';
73     +
74     +use Locale::gettext;
75     +use SrvMngr::I18N;
76     +use SrvMngr qw(theme_list init_session);
77     +
78     +our $cdb = esmith::ConfigDB->open() || die "Couldn't open config db";
79     +
80     +our $REGEXP_DOMAIN = qq([a-zA-Z0-9\-\.]+);
81     +
82     +
83     +sub main {
84     +
85     + my $c = shift;
86     + $c->app->log->info($c->log_req);
87     +
88     + $cdb->reload();
89     + my $title = $c->l('gnw_FORM_TITLE');
90     +
91     + $c->stash( title => $title );
92     + $c->render('geneweb');
93     +};
94     +
95     +
96     +sub do_update {
97     + my $c = shift;
98     + $c->app->log->info($c->log_req);
99     +
100     + my $res = '';
101     + my $result = '';
102     +
103     + my $n_gw_dbdir = $c->param("Dbdir_gnw") || '';
104     + my $n_gw_st = $c->param("Status_gnw");
105     + my $n_gw_ac = $c->param("Access_gnw");
106     + my $n_gws_st = $c->param("Status_gws");
107     + my $n_gws_ac = $c->param("Access_gws");
108     +
109     + my $gw_dbdir = get_gnw_dbdir();
110     + my $gw_st = get_gnw_st();
111     + my $gw_ac = get_gnw_ac();
112     + my $gws_st = get_gws_st();
113     + my $gws_ac = get_gws_ac();
114     +
115     + if ( ($n_gw_dbdir eq $gw_dbdir) && ($n_gw_st eq $gw_st)
116     + && ($n_gw_ac eq $gw_ac) && ($n_gws_st eq $gws_st) && ($n_gws_ac eq $gws_ac) ) {
117     + $res = 'OK';
118     + $result = $c->l('gnw_NO_CHANGE');
119     + }
120     +
121     + if ( ! $result && $n_gw_dbdir ) {
122     + $res = dir_must_exist( $c, $n_gw_dbdir );
123     + $result .= $res unless $res eq 'OK';
124     + }
125     +
126     + if ( ! $result ) {
127     +
128     + $cdb->set_prop("geneweb", "DBDir", $n_gw_dbdir);
129     + $cdb->set_prop("geneweb", "status", $n_gw_st);
130     + $cdb->set_prop("geneweb", "access", $n_gw_ac);
131     + $cdb->set_prop("gwsetup", "status", $n_gws_st);
132     + $cdb->set_prop("gwsetup", "access", $n_gws_ac);
133     +
134     + if ( system ( "/sbin/e-smith/signal-event", "geneweb-modify" ) ) {
135     + $result = $c->error("gnw_ERROR_UPDATING");
136     + } else {
137     + $res = 'OK';
138     + $result = $c->l('gnw_SUCCESS');
139     + }
140     + }
141     +
142     + # common part
143     + if ($res ne 'OK') {
144     + my $title = $c->l('gnw_FORM_TITLE');
145     +
146     + $c->stash( error => $result );
147     + $c->stash( title => $title );
148     + return $c->render( 'geneweb' );
149     + }
150     +
151     + my $message = "geneweb update DONE";
152     + $c->app->log->info($message);
153     + $c->flash( success => $result );
154     +
155     + $c->redirect_to("/geneweb");
156     +
157     +};
158     +
159     +
160     +sub get_prop {
161     + my ($item, $prop) = @_;
162     +
163     + my $record = $cdb->get($item);
164     + if ($record) {
165     + return $record->prop($prop);
166     + } else {
167     + return '';
168     + }
169     +}
170     +
171     +
172     +sub get_gnw_dbdir {
173     + return get_prop("geneweb", "DBDir");
174     +}
175     +
176     +sub get_gnw_st {
177     + return get_prop("geneweb", "status");
178     +}
179     +
180     +sub get_gnw_ac {
181     + return get_prop("geneweb", "access");
182     +}
183     +
184     +sub get_gws_st {
185     + return get_prop("gwsetup", "status");
186     +}
187     +
188     +sub get_gws_ac {
189     + return get_prop("gwsetup", "access");
190     +}
191     +
192     +
193     +sub dir_must_exist {
194     +
195     + my ($c, $gw_dbdir) = @_;
196     +
197     + $gw_dbdir = $1 if ($gw_dbdir =~ /^($REGEXP_DOMAIN)$/);
198     + return $c->l('gnw_ERR_DIR_NOT_EXIST') unless ($gw_dbdir);
199     +
200     + if ($gw_dbdir) {
201     + if ( ! -d "$gw_dbdir" ) {
202     + return $c->l('gnw_ERR_DIR_NOT_EXIST');
203     + }
204     + }
205     + return 'OK';
206     +}
207     +
208     +
209     +sub get_stat_gwd {
210     +
211     + my $c = shift;
212     +
213     + if ( get_gnw_st() eq 'enabled'
214     + && system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") != 0 ) {
215     + return $c->l('gnw_ERROR_STATUS_GENEWEB');
216     + }
217     + if ( get_gnw_st() eq 'disabled'
218     + && system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") == 0 ) {
219     + return $c->l('gnw_ERROR2_STATUS_GENEWEB');
220     + }
221     + return '';
222     +}
223     +
224     +
225     +sub get_stat_gws {
226     +
227     + my $c = shift;
228     +
229     + if ( get_gws_st() eq 'enabled'
230     + && system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") != 0 ) {
231     + return $c->l('gnw_ERROR_STATUS_GWSETUP');
232     + }
233     + if ( get_gws_st() eq 'disabled'
234     + && system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") == 0 ) {
235     + return $c->l('gnw_ERROR2_STATUS_GWSETUP');
236     + }
237     + return '';
238     +}
239     +
240     +
241     +1;
242     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
243     --- 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
244     +++ 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
245     @@ -0,0 +1,29 @@
246     +'gnw_FORM_TITLE' => 'Geneweb Administration',
247     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
248     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
249     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
250     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
251     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
252     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
253     +'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)',
254     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
255     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
256     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
257     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
258     +'gnw_ERR_DIR_NOT_EXIST' => 'директория',
259     +'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 -',
260     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
261     +'gnw_NO_CHANGE' => 'No change... no update !',
262     +'gnw_GENEWEB_STATUS' => 'Web сървър',
263     +'gnw_GENEWEB_ACCESS' => 'Достъп до POP3 сървър',
264     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
265     +'gnw_GWSETUP_STATUS' => 'Администриране',
266     +'gnw_GWSETUP_ACCESS' => 'Администриране',
267     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
268     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
269     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
270     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
271     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
272     +'gnw_PRIVATE' => 'личен',
273     +'gnw_PUBLIC' => 'Публичен',
274     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
275     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
276     --- 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
277     +++ 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
278     @@ -0,0 +1,29 @@
279     +'gnw_FORM_TITLE' => 'Administration af Geneweb',
280     +'gnw_LABEL_ONLY_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:',
281     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
282     +'gnw_ERROR_UPDATING' => 'Der opstod en fejl under opdatering af Geneweb.',
283     +'gnw_ERR_IP_NOT_LOCAL' => 'Fejl: Dette IP-nummer er ikke et lokalt IP-nummer',
284     +'gnw_NOT_VALID_IP' => 'Det er ikke et gyldigt IP-nummer. Prøv igen...',
285     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
286     +'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)',
287     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nyt IP-nummer hvorfra du ønsker at administrere Geneweb:',
288     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
289     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path eksisterer ikke',
290     +'gnw_LABEL_DBDIR_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:',
291     +'gnw_ERR_DIR_NOT_EXIST' => 'Backup mediet er ikke tilsluttet',
292     +'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 -',
293     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
294     +'gnw_NO_CHANGE' => 'No change... no update !',
295     +'gnw_GENEWEB_STATUS' => 'Webserver',
296     +'gnw_GENEWEB_ACCESS' => 'POP3 server adgang',
297     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
298     +'gnw_GWSETUP_STATUS' => 'Administration af Geneweb',
299     +'gnw_GWSETUP_ACCESS' => 'Administration af Geneweb',
300     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
301     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
302     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
303     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
304     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
305     +'gnw_PRIVATE' => 'Privat',
306     +'gnw_PUBLIC' => 'Offentlig',
307     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
308     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
309     --- 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
310     +++ 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
311     @@ -0,0 +1,29 @@
312     +'gnw_FORM_TITLE' => 'Geneweb Administration',
313     +'gnw_LABEL_ONLY_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:',
314     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
315     +'gnw_ERROR_UPDATING' => 'Während des updates von Geneweb ist ein Fehler aufgetreten.',
316     +'gnw_ERR_IP_NOT_LOCAL' => 'Fehler: Die IP-Adresse ist keine lokale IP-Adresse',
317     +'gnw_NOT_VALID_IP' => 'Das ist keine gültige IP-Adresse. Versuchen Sie es erneut...',
318     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
319     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Die IP-Adresse muß in Ihrem lokalen Netzwerkbereich liegen und gültig sein (Bsp.: 192.168.24.244)',
320     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Neue IP-Adresse von der aus Sie Geneweb administrieren wollen.',
321     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
322     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pfad Falscher',
323     +'gnw_LABEL_DBDIR_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:',
324     +'gnw_ERR_DIR_NOT_EXIST' => 'Sicherungsverzeichnis ist nicht eingebunden',
325     +'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 -',
326     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
327     +'gnw_NO_CHANGE' => 'No change... no update !',
328     +'gnw_GENEWEB_STATUS' => 'Web Server',
329     +'gnw_GENEWEB_ACCESS' => 'Zugang zu externen News-Servern einschalten',
330     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
331     +'gnw_GWSETUP_STATUS' => 'Geneweb Administration',
332     +'gnw_GWSETUP_ACCESS' => 'Geneweb Administration',
333     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
334     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
335     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
336     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
337     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
338     +'gnw_PRIVATE' => 'Privat',
339     +'gnw_PUBLIC' => 'Öffentlich',
340     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
341     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
342     --- 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
343     +++ 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
344     @@ -0,0 +1,29 @@
345     +'gnw_FORM_TITLE' => 'Geneweb Administration',
346     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
347     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
348     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
349     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
350     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
351     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
352     +'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)',
353     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
354     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
355     +'gnw_ERR_DIR_NOT_EXIST' => 'Δεν υφίσταται το παραπάνω Chroot Path',
356     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
357     +'gnw_ERR_DIR_NOT_EXIST' => 'Κατάλογος',
358     +'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 -',
359     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
360     +'gnw_NO_CHANGE' => 'No change... no update !',
361     +'gnw_GENEWEB_STATUS' => 'Διακομιστής Web',
362     +'gnw_GENEWEB_ACCESS' => 'Πρόσβαση διακομιστή POP3',
363     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
364     +'gnw_GWSETUP_STATUS' => 'Διαχείριση django',
365     +'gnw_GWSETUP_ACCESS' => 'Διαχείριση django',
366     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
367     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
368     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
369     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
370     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
371     +'gnw_PRIVATE' => 'Ενεργοποίηση',
372     +'gnw_PUBLIC' => 'Έκδοση',
373     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
374     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
375     --- 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
376     +++ 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
377     @@ -0,0 +1,80 @@
378     +'gnw_FORM_TITLE' => 'Geneweb Administration',
379     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
380     +'gnw_DESC_STATE_ADMIN_BUTTON' => '
381     +<a class="button-like"
382     +href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a>
383     +',
384     +'gnw_ERROR_UPDATING' =>
385     +'There was an error while updating Geneweb.',
386     +'gnw_ERR_IP_NOT_LOCAL' =>
387     +'Error: This IP is not a Local IP',
388     +'gnw_NOT_VALID_IP' =>
389     +'That is not a valid IP. Try again...',
390     +'gnw_SUCCESS' =>
391     +'
392     +Successful change... now browse <br/> enabled services from your client
393     +',
394     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' =>
395     +'
396     +This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)
397     +',
398     +'gnw_LABEL_GENEWEB_ADMIN_IP' =>
399     +'New IP from which you wish to administer Geneweb:',
400     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' =>
401     +'
402     +<ul>
403     +<li>Access to port 2316 provides the administrative interface for
404     +Geneweb @ <b>http://YourGenewebServer:2316</b></li>
405     +<li>Geneweb Administration can <font color="red"><b>only</b></font> be
406     +accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li>
407     +<li>This panel allows you to assign a valid LAN IP from which you wish
408     +to administer Geneweb on your LAN.</li></ul>
409     +<p><i>Browse to http://YourGenewebServer:2316 <br>
410     +-Geneweb will display the IP to set for administrative access from that client.</i></p>
411     +<br><br>
412     +',
413     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
414     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
415     +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
416     +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770)
417     + - default is \'/opt/geneweb/bases -
418     +',
419     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
420     +'gnw_NO_CHANGE' => 'No change... no update !
421     +',
422     +'gnw_GENEWEB_STATUS' =>
423     +'Geneweb server
424     +',
425     +'gnw_GENEWEB_ACCESS' => 'Geneweb server access
426     +',
427     +'gnw_DESC_GENEWEB' =>
428     +'<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br>
429     +Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br>
430     +</p>
431     +',
432     +'gnw_GWSETUP_STATUS' => 'Geneweb administration
433     +',
434     +'gnw_GWSETUP_ACCESS' =>
435     +'Geneweb administration access
436     +',
437     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br>
438     +It is used during <b>setup only</b>.
439     +</p>
440     +',
441     +'gnw_ERROR_STATUS_GENEWEB' =>
442     +' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
443     +'gnw_ERROR_STATUS_GWSETUP' =>
444     +' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
445     +'gnw_ERROR2_STATUS_GENEWEB' =>
446     +' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
447     +'gnw_ERROR2_STATUS_GWSETUP' =>
448     +' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
449     +'gnw_PRIVATE' =>
450     +'Private',
451     +'gnw_PUBLIC' =>
452     +'Public',
453     +'gnw_DESC_GWSETUP_ACCESS' =>
454     +'<p>The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br>
455     +It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used.
456     +</p>
457     +',
458     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
459     --- 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
460     +++ 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
461     @@ -0,0 +1,29 @@
462     +'gnw_FORM_TITLE' => 'Administración Geneweb',
463     +'gnw_LABEL_ONLY_STATUS' => 'IP \'única\' actual asignada a Geneweb:',
464     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
465     +'gnw_ERROR_UPDATING' => 'Ha ocurrido un error mientras se actualizaba Geneweb.',
466     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: Esta IP no es una IP Local',
467     +'gnw_NOT_VALID_IP' => 'Esa no es una IP válida. Inténtelo nuevamente...',
468     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
469     +'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)',
470     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nueva IP desde la cual quiere administrar Geneweb:',
471     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
472     +'gnw_ERR_DIR_NOT_EXIST' => 'Ruta chroot no existe',
473     +'gnw_LABEL_DBDIR_STATUS' => 'IP \'única\' actual asignada a Geneweb:',
474     +'gnw_ERR_DIR_NOT_EXIST' => 'Directorio',
475     +'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 -',
476     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
477     +'gnw_NO_CHANGE' => 'No change... no update !',
478     +'gnw_GENEWEB_STATUS' => 'Servidor Web',
479     +'gnw_GENEWEB_ACCESS' => 'Acceso a servidor POP3',
480     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
481     +'gnw_GWSETUP_STATUS' => 'Administración Geneweb',
482     +'gnw_GWSETUP_ACCESS' => 'Administración Geneweb',
483     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
484     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
485     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
486     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
487     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
488     +'gnw_PRIVATE' => 'privado',
489     +'gnw_PUBLIC' => 'Público',
490     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
491     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
492     --- 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
493     +++ 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
494     @@ -0,0 +1,29 @@
495     +'gnw_FORM_TITLE' => 'Geneweb Administration',
496     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
497     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
498     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
499     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
500     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
501     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
502     +'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)',
503     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
504     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
505     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path pole olemas',
506     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
507     +'gnw_ERR_DIR_NOT_EXIST' => 'Kataloog',
508     +'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 -',
509     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
510     +'gnw_NO_CHANGE' => 'No change... no update !',
511     +'gnw_GENEWEB_STATUS' => 'Weebi server',
512     +'gnw_GENEWEB_ACCESS' => 'POP3 serveri juurdepääs',
513     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
514     +'gnw_GWSETUP_STATUS' => 'Administreerimine',
515     +'gnw_GWSETUP_ACCESS' => 'Vali administraatori parool',
516     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
517     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
518     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
519     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
520     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
521     +'gnw_PRIVATE' => 'Aktiveeri',
522     +'gnw_PUBLIC' => 'Public',
523     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
524     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
525     --- 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
526     +++ 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
527     @@ -0,0 +1,29 @@
528     +'gnw_FORM_TITLE' => 'Administration Geneweb',
529     +'gnw_LABEL_ONLY_STATUS' => 'IP \'unique\' assignée actuellement à Geneweb:',
530     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Changer l\'IP et Administrer</a> ',
531     +'gnw_ERROR_UPDATING' => 'Il y\'a eu une erreur pendant la mise à jour de Geneweb.',
532     +'gnw_ERR_IP_NOT_LOCAL' => 'Erreur: Cette adresse IP n\'est pas une adresse IP locale',
533     +'gnw_NOT_VALID_IP' => 'Cette adresse IP n\'est pas valide. Veuillez entrer une adresse IP valide',
534     +'gnw_SUCCESS' => ' Changement réussi... Maintenant accédez aux services <b>actifs</b> depuis votre client ',
535     +'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)',
536     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nouvelle adresse IP d\'où vous voulez administrer Geneweb:',
537     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>L\'accès par le port 2316 fourni l\'interface d\'administration pour Geneweb en pointant votre navigateur vers <b>http://YourGenewebServer:2316</b></li> <li>L\'administration de Geneweb est <font color="red"><b>seulement </b></font> accessible par l\'adresse IP assignée dans /opt/geneweb/gw/gw/only.txt</li> <li> Cette interface vous permet d\'assigner une adresse IP valide du LAN depuis laquelle vous désirez administrerGeneweb sur votre réseau local.</li></ul> <p><i>Pointez votre navigateur vers http://YourGenewebServer:2316 <br> -Geneweb affichera l\'adresse IP à configurer pour l\'accès administratif depuis ce poste client.</i></p> <br><br> ',
538     +'gnw_ERR_DIR_NOT_EXIST' => 'Ce dossier n\'existe pas',
539     +'gnw_LABEL_DBDIR_STATUS' => 'Dossier de base de donnée Geneweb actuellement assigné:',
540     +'gnw_ERR_DIR_NOT_EXIST' => 'Dossier non trouvé.',
541     +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'Ce dossier doit exister sur le serveur et accessible en écriture par Geneweb. (geneweb:geneweb 770)',
542     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nouveau dossier pour base(s) de données Geneweb. :',
543     +'gnw_NO_CHANGE' => 'Pas de changement... Pas de mise à jour !',
544     +'gnw_GENEWEB_STATUS' => 'Serveur Geneweb',
545     +'gnw_GENEWEB_ACCESS' => 'Accès au serveur Geneweb',
546     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Le serveur Geneweb</b> (geneweb) est généralement activé avec un accés public.<br> Les bases de données de Genewebse trouvent dans le<b>dossier</b> ci dessous. Cet emplacement est modifiable. <br> </p>',
547     +'gnw_GWSETUP_STATUS' => 'Administration Geneweb',
548     +'gnw_GWSETUP_ACCESS' => 'Administration Geneweb',
549     +'gnw_DESC_GWSETUP' => '<p><b>Le service d\'administration de Geneweb</b> (gwsetup) est généralementprévu pour un accés privé (réseau local).<br> Il est utilisé uniquement pendant les opérations sur la(les) base(s) généalogique(s). </p> ',
550     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">Le service GENEWEB est <b>inactif</b></font> (geneweb) ',
551     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">Le service d\'administration de GENEWEB est <b>inactif</b></font> (gwsetup) ',
552     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">Le service GENEWEB ne devrait <b>pas être actif</b></font> (geneweb) ',
553     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">Le service d\'administration de GENEWEB ne devrait <b>pas être inactif</b></font> (gwsetup) ',
554     +'gnw_PRIVATE' => 'Privé',
555     +'gnw_PUBLIC' => 'Public',
556     +'gnw_DESC_GWSETUP_ACCESS' => '<p> Le mode d\'accès \'public\' est possible mais <font color="red"><b>non recommandé</b></font> pour raison de sécurité. <br> Il est même conseilé de placer ce service dans l\'état <font color="orange">\'Désactivé \'</font> lorsqu\'il n\'est pas utilisé. </p> ',
557     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
558     --- 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
559     +++ 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
560     @@ -0,0 +1,29 @@
561     +'gnw_FORM_TITLE' => 'Geneweb Administration',
562     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
563     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
564     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
565     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
566     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
567     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
568     +'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)',
569     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
570     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
571     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
572     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
573     +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
574     +'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 -',
575     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
576     +'gnw_NO_CHANGE' => 'No change... no update !',
577     +'gnw_GENEWEB_STATUS' => 'Geneweb server',
578     +'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
579     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
580     +'gnw_GWSETUP_STATUS' => 'מנהל מערכת',
581     +'gnw_GWSETUP_ACCESS' => 'Geneweb administration access',
582     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
583     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
584     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
585     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
586     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
587     +'gnw_PRIVATE' => 'הפעלה',
588     +'gnw_PUBLIC' => 'Public',
589     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
590     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
591     --- 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
592     +++ 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
593     @@ -0,0 +1,29 @@
594     +'gnw_FORM_TITLE' => 'Geneweb Administration',
595     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
596     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
597     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
598     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
599     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
600     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
601     +'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)',
602     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
603     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
604     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
605     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
606     +'gnw_ERR_DIR_NOT_EXIST' => 'Biztonsági mentés könyvtára nincs felcsatolva',
607     +'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 -',
608     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
609     +'gnw_NO_CHANGE' => 'No change... no update !',
610     +'gnw_GENEWEB_STATUS' => 'Web szerver',
611     +'gnw_GENEWEB_ACCESS' => 'POP3 szerver hozzáférés',
612     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
613     +'gnw_GWSETUP_STATUS' => 'Django adminisztrátor',
614     +'gnw_GWSETUP_ACCESS' => 'Django adminisztrátor',
615     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
616     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
617     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
618     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
619     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
620     +'gnw_PRIVATE' => 'Személyes kulcs',
621     +'gnw_PUBLIC' => 'Nyilvános',
622     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
623     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
624     --- 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
625     +++ 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
626     @@ -0,0 +1,29 @@
627     +'gnw_FORM_TITLE' => 'Geneweb Administration',
628     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
629     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
630     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
631     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
632     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
633     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
634     +'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)',
635     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
636     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
637     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
638     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
639     +'gnw_ERR_DIR_NOT_EXIST' => 'Direktori',
640     +'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 -',
641     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
642     +'gnw_NO_CHANGE' => 'No change... no update !',
643     +'gnw_GENEWEB_STATUS' => 'Server Web',
644     +'gnw_GENEWEB_ACCESS' => 'POP3 server akses',
645     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
646     +'gnw_GWSETUP_STATUS' => 'Administrasi',
647     +'gnw_GWSETUP_ACCESS' => 'Masukkan kata sandi administrator',
648     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
649     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
650     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
651     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
652     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
653     +'gnw_PRIVATE' => 'Aktifkan',
654     +'gnw_PUBLIC' => 'Public',
655     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
656     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
657     --- 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
658     +++ 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
659     @@ -0,0 +1,29 @@
660     +'gnw_FORM_TITLE' => 'Amministrazione Geneweb',
661     +'gnw_LABEL_ONLY_STATUS' => 'Indirizzo IP assegnato solo a Geneweb',
662     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Cambia indirizzo IP e amministra</a> ',
663     +'gnw_ERROR_UPDATING' => 'C\'è stato un errore aggiornando Geneweb.',
664     +'gnw_ERR_IP_NOT_LOCAL' => 'Errore: questo indirizzo IP non è un indirizzo IP locale.',
665     +'gnw_NOT_VALID_IP' => 'Questo non un indirizzo IP valido. Provare di nuovo....',
666     +'gnw_SUCCESS' => ' Cambio avvenuto con successo... collegarsi <br/>alla porta 2316 dal client ',
667     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Questo IP deve essere sulla rete locale ed essere valido (p.e.192.168.24.244)',
668     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nuovo indirizzo IP da cui si desidera amministrare Geneweb:',
669     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>L\'accesso alla porta 2316 consente il collegamento all\'interfaccia di amministrazione di Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li> All\'amministrazione di Geneweb <font color="red"><b>only</b></font> si può accedere attraverso l\'indirizzo IP assegnato in /opt/geneweb/gw/gw/only.txt</li> <li>Questo pannello consente di assegnare un indirizzo IP valido da amministrare Geneweb sulla LAN.</li></ul> <p><i>Aprire http://YourGenewebServer:2316 <br> - Geneweb mostrerà l\'indirizzo IP da impostare per l\'accesso amministrativo dal client.</i></p> <br><br> ',
670     +'gnw_ERR_DIR_NOT_EXIST' => 'La cartella non esiste',
671     +'gnw_LABEL_DBDIR_STATUS' => 'Cartella correntemente assegnata ai DB di Geneweb',
672     +'gnw_ERR_DIR_NOT_EXIST' => 'Cartella non trovata',
673     +'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'La cartella deve esistere sul server ed essere abilitata in scrittura per Geneweb. (geneweb:geneweb 770)',
674     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nuova cartella per i database di Geneweb:',
675     +'gnw_NO_CHANGE' => 'Nessuna modifica ... nessun aggiornamento!',
676     +'gnw_GENEWEB_STATUS' => 'Server Web',
677     +'gnw_GENEWEB_ACCESS' => 'Accesso server POP3',
678     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
679     +'gnw_GWSETUP_STATUS' => 'Amministrazione Geneweb',
680     +'gnw_GWSETUP_ACCESS' => 'Amministrazione Geneweb',
681     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
682     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
683     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
684     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
685     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
686     +'gnw_PRIVATE' => 'Privato',
687     +'gnw_PUBLIC' => 'Pubblico',
688     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
689     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
690     --- 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
691     +++ 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
692     @@ -0,0 +1,29 @@
693     +'gnw_FORM_TITLE' => 'Geneweb Administration',
694     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
695     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
696     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
697     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
698     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
699     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
700     +'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)',
701     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
702     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
703     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
704     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
705     +'gnw_ERR_DIR_NOT_EXIST' => 'ディレクトリ',
706     +'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 -',
707     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
708     +'gnw_NO_CHANGE' => 'No change... no update !',
709     +'gnw_GENEWEB_STATUS' => 'Geneweb server',
710     +'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
711     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
712     +'gnw_GWSETUP_STATUS' => 'Django 管理',
713     +'gnw_GWSETUP_ACCESS' => 'Django 管理',
714     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
715     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
716     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
717     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
718     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
719     +'gnw_PRIVATE' => '秘密鍵',
720     +'gnw_PUBLIC' => '公開',
721     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
722     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
723     --- 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
724     +++ 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
725     @@ -0,0 +1,29 @@
726     +'gnw_FORM_TITLE' => 'Geneweb Administration',
727     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
728     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
729     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
730     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
731     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
732     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
733     +'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)',
734     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
735     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
736     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
737     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
738     +'gnw_ERR_DIR_NOT_EXIST' => 'Mappe',
739     +'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 -',
740     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
741     +'gnw_NO_CHANGE' => 'No change... no update !',
742     +'gnw_GENEWEB_STATUS' => 'Webserver',
743     +'gnw_GENEWEB_ACCESS' => 'POP3 server tilgang',
744     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
745     +'gnw_GWSETUP_STATUS' => 'Django administrasjon',
746     +'gnw_GWSETUP_ACCESS' => 'Django administrasjon',
747     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
748     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
749     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
750     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
751     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
752     +'gnw_PRIVATE' => 'Privat nøkkel',
753     +'gnw_PUBLIC' => 'Offentlig',
754     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
755     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
756     --- 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
757     +++ 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
758     @@ -0,0 +1,29 @@
759     +'gnw_FORM_TITLE' => 'Geneweb Beheer',
760     +'gnw_LABEL_ONLY_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:',
761     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
762     +'gnw_ERROR_UPDATING' => 'Er is een fout opgetreden tijdens het wijzigen van Geneweb.',
763     +'gnw_ERR_IP_NOT_LOCAL' => 'Fout: Dit is niet een lokaal IP adres',
764     +'gnw_NOT_VALID_IP' => 'Dat is niet een geldig IP adres. Probeer het nog eens...',
765     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
766     +'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)',
767     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nieuw IP adres waarvandaan U Geneweb wilt beheeren:',
768     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
769     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pad bestaat niet',
770     +'gnw_LABEL_DBDIR_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:',
771     +'gnw_ERR_DIR_NOT_EXIST' => 'Backup directory is niet gemonteerd',
772     +'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 -',
773     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
774     +'gnw_NO_CHANGE' => 'No change... no update !',
775     +'gnw_GENEWEB_STATUS' => 'Webserver',
776     +'gnw_GENEWEB_ACCESS' => 'POP3 server toegang',
777     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
778     +'gnw_GWSETUP_STATUS' => 'Geneweb Beheer',
779     +'gnw_GWSETUP_ACCESS' => 'Geneweb Beheer',
780     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
781     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
782     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
783     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
784     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
785     +'gnw_PRIVATE' => 'Privé ',
786     +'gnw_PUBLIC' => 'Publiekelijk',
787     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
788     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
789     --- 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
790     +++ 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
791     @@ -0,0 +1,29 @@
792     +'gnw_FORM_TITLE' => 'Geneweb Administration',
793     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
794     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
795     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
796     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
797     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
798     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
799     +'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)',
800     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
801     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
802     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
803     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
804     +'gnw_ERR_DIR_NOT_EXIST' => 'Katalog',
805     +'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 -',
806     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
807     +'gnw_NO_CHANGE' => 'No change... no update !',
808     +'gnw_GENEWEB_STATUS' => 'Serwer WWW',
809     +'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
810     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
811     +'gnw_GWSETUP_STATUS' => 'Administracja Django',
812     +'gnw_GWSETUP_ACCESS' => 'Administracja Django',
813     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
814     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
815     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
816     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
817     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
818     +'gnw_PRIVATE' => 'Klucz osobisty',
819     +'gnw_PUBLIC' => 'Publiczny',
820     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
821     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
822     --- 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
823     +++ 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
824     @@ -0,0 +1,29 @@
825     +'gnw_FORM_TITLE' => 'Administração Geneweb',
826     +'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
827     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
828     +'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.',
829     +'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local',
830     +'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...',
831     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
832     +'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)',
833     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:',
834     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
835     +'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe',
836     +'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
837     +'gnw_ERR_DIR_NOT_EXIST' => 'Diretório de backup não está montado.',
838     +'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 -',
839     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
840     +'gnw_NO_CHANGE' => 'No change... no update !',
841     +'gnw_GENEWEB_STATUS' => 'Servidor web',
842     +'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3',
843     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
844     +'gnw_GWSETUP_STATUS' => 'Administração Geneweb',
845     +'gnw_GWSETUP_ACCESS' => 'Administração Geneweb',
846     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
847     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
848     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
849     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
850     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
851     +'gnw_PRIVATE' => 'Privado',
852     +'gnw_PUBLIC' => 'Público',
853     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
854     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
855     --- 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
856     +++ 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
857     @@ -0,0 +1,29 @@
858     +'gnw_FORM_TITLE' => 'Administração Geneweb',
859     +'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
860     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
861     +'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.',
862     +'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local',
863     +'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...',
864     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
865     +'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)',
866     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:',
867     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
868     +'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe',
869     +'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
870     +'gnw_ERR_DIR_NOT_EXIST' => 'Diretório',
871     +'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 -',
872     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
873     +'gnw_NO_CHANGE' => 'No change... no update !',
874     +'gnw_GENEWEB_STATUS' => 'Servidor web',
875     +'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3',
876     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
877     +'gnw_GWSETUP_STATUS' => 'Administração Geneweb',
878     +'gnw_GWSETUP_ACCESS' => 'Administração Geneweb',
879     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
880     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
881     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
882     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
883     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
884     +'gnw_PRIVATE' => 'Chave privada',
885     +'gnw_PUBLIC' => 'Público',
886     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
887     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
888     --- 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
889     +++ 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
890     @@ -0,0 +1,29 @@
891     +'gnw_FORM_TITLE' => 'Administrare Geneweb',
892     +'gnw_LABEL_ONLY_STATUS' => 'IP curent atribuit doar pentru Geneweb',
893     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Schimbă IP și Administrator</a> ',
894     +'gnw_ERROR_UPDATING' => 'Există o eroare la actualizarea Geneweb',
895     +'gnw_ERR_IP_NOT_LOCAL' => 'Eroare: Acest IP nu este local',
896     +'gnw_NOT_VALID_IP' => 'Acesta nu este un IP valid. Mai incearcă...',
897     +'gnw_SUCCESS' => ' Schimb efectuat cu success... Navigați <br/>pe portul 2316 de pe browserul dumneavoastră client ',
898     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Acest IP trebuie să fie în reteaua internă și să fie valid (ex: 192,168,24,244)',
899     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Noul IP de unde se va administra Geneweb:',
900     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Accesând portul 2316 aveți acces șa interfata de administrare Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Administrarea Geneweb poate fi accesată <font color="red"><b>doar</b></font> de la IP-ul alocat în /opt/geneweb/gw/gw/only.txt</li> <li>Acest panou vă lasă să configurați un IP valid de unde puteți administra Geneweb din rețeaua locală LAN.</li></ul> <p><i>Accesați http://YourGenewebServer:2316 <br> -Geneweb va afișa IP-ul de setat pentru accesul administrativ.</i></p> <br><br> ',
901     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
902     +'gnw_LABEL_DBDIR_STATUS' => 'IP curent atribuit doar pentru Geneweb',
903     +'gnw_ERR_DIR_NOT_EXIST' => 'Director',
904     +'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 -',
905     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
906     +'gnw_NO_CHANGE' => 'No change... no update !',
907     +'gnw_GENEWEB_STATUS' => 'server Web',
908     +'gnw_GENEWEB_ACCESS' => 'Activați accesul la servere de știri externe',
909     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
910     +'gnw_GWSETUP_STATUS' => 'Administrare Geneweb',
911     +'gnw_GWSETUP_ACCESS' => 'Administrare Geneweb',
912     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
913     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
914     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
915     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
916     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
917     +'gnw_PRIVATE' => 'Activare',
918     +'gnw_PUBLIC' => 'Publicat',
919     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
920     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
921     --- 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
922     +++ 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
923     @@ -0,0 +1,29 @@
924     +'gnw_FORM_TITLE' => 'Geneweb Administration',
925     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
926     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
927     +'gnw_ERROR_UPDATING' => 'Произошла ошибка при обновлении Geneweb.',
928     +'gnw_ERR_IP_NOT_LOCAL' => 'Ошибка: этот IP не локальный IP',
929     +'gnw_NOT_VALID_IP' => 'Это не допустимый IP. Попробуйте еще раз...',
930     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
931     +'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)',
932     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
933     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
934     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot путь не существует',
935     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
936     +'gnw_ERR_DIR_NOT_EXIST' => 'Каталог',
937     +'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 -',
938     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
939     +'gnw_NO_CHANGE' => 'No change... no update !',
940     +'gnw_GENEWEB_STATUS' => 'Веб-сервер',
941     +'gnw_GENEWEB_ACCESS' => 'Доступ к POP3 серверу',
942     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
943     +'gnw_GWSETUP_STATUS' => 'Администрирование Django',
944     +'gnw_GWSETUP_ACCESS' => 'Администрирование Django',
945     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
946     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
947     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
948     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
949     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
950     +'gnw_PRIVATE' => 'Закрытый ключ',
951     +'gnw_PUBLIC' => 'Опубликовать',
952     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
953     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
954     --- 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
955     +++ 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
956     @@ -0,0 +1,29 @@
957     +'gnw_FORM_TITLE' => 'Geneweb Administration',
958     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
959     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
960     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
961     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
962     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
963     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
964     +'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)',
965     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
966     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
967     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
968     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
969     +'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
970     +'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 -',
971     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
972     +'gnw_NO_CHANGE' => 'No change... no update !',
973     +'gnw_GENEWEB_STATUS' => 'Spletni streznik',
974     +'gnw_GENEWEB_ACCESS' => 'POP3 dostop do streznika',
975     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
976     +'gnw_GWSETUP_STATUS' => 'Administracija Django',
977     +'gnw_GWSETUP_ACCESS' => 'Administracija Django',
978     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
979     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
980     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
981     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
982     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
983     +'gnw_PRIVATE' => 'Aktiviraj',
984     +'gnw_PUBLIC' => 'Objavi',
985     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
986     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
987     --- 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
988     +++ 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
989     @@ -0,0 +1,29 @@
990     +'gnw_FORM_TITLE' => 'Geneweb administration',
991     +'gnw_LABEL_ONLY_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:',
992     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
993     +'gnw_ERROR_UPDATING' => 'Det uppstod ett fel vid uppdatering av Geneweb.',
994     +'gnw_ERR_IP_NOT_LOCAL' => 'Fel: Detta IP är inte ett lokalt IP',
995     +'gnw_NOT_VALID_IP' => 'Detta är inte ett giltigt IP. Försök igen...',
996     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
997     +'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)',
998     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Ny IP-adress från där du önskar administrera Geneweb:',
999     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
1000     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot-sökväg existerar inte',
1001     +'gnw_LABEL_DBDIR_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:',
1002     +'gnw_ERR_DIR_NOT_EXIST' => 'Katalog',
1003     +'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 -',
1004     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
1005     +'gnw_NO_CHANGE' => 'No change... no update !',
1006     +'gnw_GENEWEB_STATUS' => 'Webb-server',
1007     +'gnw_GENEWEB_ACCESS' => 'POP3 serveråtkomst',
1008     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
1009     +'gnw_GWSETUP_STATUS' => 'Geneweb administration',
1010     +'gnw_GWSETUP_ACCESS' => 'Geneweb administration',
1011     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
1012     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
1013     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
1014     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
1015     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
1016     +'gnw_PRIVATE' => 'Privat nyckel',
1017     +'gnw_PUBLIC' => 'Allmän',
1018     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
1019     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
1020     --- 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
1021     +++ 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
1022     @@ -0,0 +1,29 @@
1023     +'gnw_FORM_TITLE' => 'Geneweb Administration',
1024     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
1025     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
1026     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
1027     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
1028     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
1029     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
1030     +'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)',
1031     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
1032     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
1033     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
1034     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
1035     +'gnw_ERR_DIR_NOT_EXIST' => 'ไดเรกทอรี่',
1036     +'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 -',
1037     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
1038     +'gnw_NO_CHANGE' => 'No change... no update !',
1039     +'gnw_GENEWEB_STATUS' => 'เว็บเซิร์ฟเวอร์',
1040     +'gnw_GENEWEB_ACCESS' => 'การเข้าถึง POP3 เซอร์ฟเวอร์',
1041     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
1042     +'gnw_GWSETUP_STATUS' => 'การบริหาร',
1043     +'gnw_GWSETUP_ACCESS' => 'การบริหาร',
1044     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
1045     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
1046     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
1047     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
1048     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
1049     +'gnw_PRIVATE' => 'กุญแจส่วนตัว',
1050     +'gnw_PUBLIC' => 'สาธารณะ',
1051     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
1052     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
1053     --- 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
1054     +++ 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
1055     @@ -0,0 +1,29 @@
1056     +'gnw_FORM_TITLE' => 'Geneweb Administration',
1057     +'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
1058     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
1059     +'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
1060     +'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
1061     +'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
1062     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
1063     +'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)',
1064     +'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
1065     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
1066     +'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
1067     +'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
1068     +'gnw_ERR_DIR_NOT_EXIST' => 'Dizin',
1069     +'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 -',
1070     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
1071     +'gnw_NO_CHANGE' => 'No change... no update !',
1072     +'gnw_GENEWEB_STATUS' => 'Web sunucusu',
1073     +'gnw_GENEWEB_ACCESS' => 'POP3 sunucu erişimi',
1074     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
1075     +'gnw_GWSETUP_STATUS' => 'yönetim',
1076     +'gnw_GWSETUP_ACCESS' => 'yönetim',
1077     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
1078     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
1079     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
1080     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
1081     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
1082     +'gnw_PRIVATE' => 'özel, gizli',
1083     +'gnw_PUBLIC' => 'açık/ortak/kamu',
1084     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
1085     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
1086     --- 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
1087     +++ 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
1088     @@ -0,0 +1,29 @@
1089     +'gnw_FORM_TITLE' => 'Geneweb 管理',
1090     +'gnw_LABEL_ONLY_STATUS' => '当前指定的GenewebIP:',
1091     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
1092     +'gnw_ERROR_UPDATING' => '更新 Geneweb 时出错。',
1093     +'gnw_ERR_IP_NOT_LOCAL' => '错误:这个IP不是本地IP',
1094     +'gnw_NOT_VALID_IP' => '无效的IP,请重试...',
1095     +'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
1096     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '这个 IP 必须在本地网络,且必须是有效的 IP (例如 192.168.24.244)',
1097     +'gnw_LABEL_GENEWEB_ADMIN_IP' => '管理 Geneweb 的新 IP:',
1098     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>Access to port 2316 provides the administrative interface for Geneweb @ <b>http://YourGenewebServer:2316</b></li> <li>Geneweb Administration can <font color="red"><b>only</b></font> be accessed by the IP assigned in /opt/geneweb/gw/gw/only.txt</li> <li>This panel allows you to assign a valid LAN IP from which you wish to administer Geneweb on your LAN.</li></ul> <p><i>Browse to http://YourGenewebServer:2316 <br> -Geneweb will display the IP to set for administrative access from that client.</i></p> <br><br> ',
1099     +'gnw_ERR_DIR_NOT_EXIST' => 'Chroot 路径不存在',
1100     +'gnw_LABEL_DBDIR_STATUS' => '当前指定的GenewebIP:',
1101     +'gnw_ERR_DIR_NOT_EXIST' => '备份目录尚未挂载',
1102     +'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 -',
1103     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
1104     +'gnw_NO_CHANGE' => 'No change... no update !',
1105     +'gnw_GENEWEB_STATUS' => 'Web服务器',
1106     +'gnw_GENEWEB_ACCESS' => 'POP3 服务器访问',
1107     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
1108     +'gnw_GWSETUP_STATUS' => 'Geneweb 管理',
1109     +'gnw_GWSETUP_ACCESS' => 'Geneweb 管理',
1110     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
1111     +'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
1112     +'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
1113     +'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
1114     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
1115     +'gnw_PRIVATE' => '私钥',
1116     +'gnw_PUBLIC' => '公共的',
1117     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
1118     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
1119     --- 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
1120     +++ 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
1121     @@ -0,0 +1,29 @@
1122     +'gnw_FORM_TITLE' => 'Geneweb管理',
1123     +'gnw_LABEL_ONLY_STATUS' => '當前指定的Geneweb"唯一"位址:',
1124     +'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">修改IP和管理員</a> ',
1125     +'gnw_ERROR_UPDATING' => '更新Geneweb時出錯。',
1126     +'gnw_ERR_IP_NOT_LOCAL' => '錯誤:此位址不是本地位址',
1127     +'gnw_NOT_VALID_IP' => '此非有效位址。請重試...',
1128     +'gnw_SUCCESS' => '更改成功...現從客戶端瀏覽<br/>2316埠號',
1129     +'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '此位址需位於區網並為有效位址(例如:192.168.24.244)',
1130     +'gnw_LABEL_GENEWEB_ADMIN_IP' => '欲管理Geneweb的新位址:',
1131     +'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <ul> <li>存取2316埠號提供Geneweb管理介面@<b>http://YourGenewebServer:2316</b></li> <li>Geneweb管理<font color="red"><b>僅能</b></font>透過位於/opt/geneweb/gw/gw/only.txt的指定位址存取。</li> <li>此控制台允許您從區網指定有效區網位址來管理Geneweb。</li></ul> <p><i>瀏覽http://YourGenewebServer:2316<br>-Geneweb將顯示指定存取管理客戶端的位址。</i></p> <br><br> ',
1132     +'gnw_ERR_DIR_NOT_EXIST' => '置換根目錄的路徑不存在',
1133     +'gnw_LABEL_DBDIR_STATUS' => '當前指定的Geneweb"唯一"位址:',
1134     +'gnw_ERR_DIR_NOT_EXIST' => '備份目錄尚未掛載',
1135     +'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 -',
1136     +'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
1137     +'gnw_NO_CHANGE' => 'No change... no update !',
1138     +'gnw_GENEWEB_STATUS' => '網頁伺服器',
1139     +'gnw_GENEWEB_ACCESS' => 'POP3伺服器存取',
1140     +'gnw_DESC_GENEWEB' => '<br><hr class="sectionbar" /><br><p><b>Geneweb server</b> (geneweb) is generally enabled and publicly accessible.<br> Geneweb databases can be found in the <b>directory</b> shown below. This location can be changed. <br> </p>',
1141     +'gnw_GWSETUP_STATUS' => 'Geneweb管理',
1142     +'gnw_GWSETUP_ACCESS' => 'Geneweb管理',
1143     +'gnw_DESC_GWSETUP' => '<p><b>Geneweb administration service</b> (gwsetup) is generally intended for private access.<br> It is used during <b>setup only</b>. </p> ',
1144     +'gnw_ERROR_STATUS_GENEWEB' => '<font color="red">儲存設定時發生錯誤</font>',
1145     +'gnw_ERROR_STATUS_GWSETUP' => '<font color="red">儲存設定時發生錯誤</font>',
1146     +'gnw_ERROR2_STATUS_GENEWEB' => '<font color="orange">尚未檢核...</font>',
1147     +'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
1148     +'gnw_PRIVATE' => '私有',
1149     +'gnw_PUBLIC' => '公開',
1150     +'gnw_DESC_GWSETUP_ACCESS' => '<p> The \'public\' access mode is possible but <font color="red"><b>not recommended</b></font> for security reason. <br> It is even advisable to place it in the <font color="orange">\'disabled \'</font> state when it is not used. </p> ',
1151     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
1152     --- smeserver-geneweb-2.3.0.old/root/usr/share/smanager/themes/default/templates/geneweb.html.ep 1970-01-01 04:00:00.000000000 +0400
1153     +++ smeserver-geneweb-2.3.0/root/usr/share/smanager/themes/default/templates/geneweb.html.ep 2021-03-02 17:28:05.000000000 +0400
1154     @@ -0,0 +1,69 @@
1155     +% layout 'default', title => "Sme server 2 - geneweb";
1156     +
1157     +% content_for 'module' => begin
1158     +<div id="module">
1159     + % if ($config->{debug} == 1) {
1160     + <p>
1161     + %= dumper $c->current_route
1162     + </p>
1163     + % }
1164     +
1165     + % if ( stash 'error' ) {
1166     + <br><div class=sme-error>
1167     + %= $c->render_to_string(inline => stash 'error')
1168     + </div>
1169     + %}
1170     +
1171     + <h1><%= $title %></h1>
1172     +
1173     + %= form_for 'geneweb' => (method => 'POST') => begin
1174     + %= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP'))
1175     + <p><span class=label>
1176     + %= l('gnw_GWSETUP_STATUS'), class => 'label'
1177     + </span><span class=data>
1178     + % param 'Status_gws' => $c->get_gws_st() unless param 'Status_gws';
1179     + %= select_field 'Status_gws' => [[(l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input'
1180     + </span></p>
1181     + <p>
1182     + %= $c->render_to_string(inline => $c->get_stat_gws())
1183     +
1184     + %= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP_ACCESS'))
1185     + <br><span class=label>
1186     + %=l 'gnw_GWSETUP_ACCESS', class => 'label'
1187     + </span><span class=data>
1188     + % param 'Access_gws' => $c->get_gws_ac() unless param 'Access_gws';
1189     + %= select_field 'Access_gws' => [[(l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input'
1190     + </span></p>
1191     +
1192     + %= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB'))
1193     + <p><span class=label>
1194     + %= l('gnw_GENEWEB_STATUS'), class => 'label'
1195     + </span><span class=data>
1196     + % param 'Status_gnw' => $c->get_gnw_st() unless param 'Status_gnw';
1197     + %= select_field 'Status_gnw' => [[ (l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input'
1198     + </span></p>
1199     + %= $c->render_to_string(inline => $c->get_stat_gwd())
1200     +
1201     + <p><span class=label>
1202     + %=l 'gnw_GENEWEB_ACCESS', class => 'label'
1203     + </span><span class=data>
1204     + % param 'Access_gnw' => $c->get_gnw_ac() unless param 'Access_gnw';
1205     + %= select_field 'Access_gnw' => [[ (l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input'
1206     + </span></p>
1207     + <p>
1208     + %= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION'))
1209     + <br><span class=label>
1210     + %=l 'gnw_LABEL_GENEWEB_BASE_DIR', class => 'label'
1211     + </span><span class=data>
1212     + % param 'Dbdir_gnw' => $c->get_gnw_dbdir() unless param 'Dbdir_gnw';
1213     + %= text_field 'Dbdir_gnw', class => 'input'
1214     + </span></p>
1215     +
1216     + <div class='center'>
1217     + %= submit_button $c->l('SAVE'), class => 'action'
1218     + </div>
1219     +
1220     + % end
1221     +
1222     +</div>
1223     +%end

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed