initial commit of file from CVS for smeserver-geneweb on Sat Sep 7 19:54:18 AEST 2024
This commit is contained in:
@@ -0,0 +1,167 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
#-------------------------------------------
|
||||
# Copyright (c) Craig D. Jensen 2004-2007
|
||||
# Genweb Administration panel
|
||||
#-------------------------------------------
|
||||
package esmith::FormMagick::Panel::geneweb;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use esmith::FormMagick;
|
||||
use esmith::ConfigDB;
|
||||
use esmith::HostsDB;
|
||||
use esmith::util;
|
||||
|
||||
use File::Basename;
|
||||
use Exporter;
|
||||
|
||||
our @ISA = qw(esmith::FormMagick Exporter);
|
||||
|
||||
our @EXPORT = qw(
|
||||
get_prop
|
||||
);
|
||||
|
||||
our $VERSION = sprintf '%d.%03d', q$Revision: 0.09 $ =~ /: (\d+).(\d+)/;
|
||||
|
||||
our $cdb = esmith::ConfigDB->open || die "Couldn't open Configuration DB\n";
|
||||
|
||||
our $REGEXP_DOMAIN = qq([a-zA-Z0-9\-\.]+);
|
||||
|
||||
|
||||
sub new {
|
||||
shift;
|
||||
my $self = esmith::FormMagick->new();
|
||||
$self->{calling_package} = (caller)[0];
|
||||
bless $self;
|
||||
#$self->debug(1);
|
||||
return $self;
|
||||
}
|
||||
|
||||
|
||||
sub get_prop {
|
||||
my $fm = shift if (ref($_[0]) );
|
||||
my $item = shift;
|
||||
my $prop = shift;
|
||||
|
||||
my $record = $cdb->get($item);
|
||||
if ($record) {
|
||||
return $record->prop($prop);
|
||||
}
|
||||
else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
sub get_dbdir {
|
||||
return $cdb->get_prop("geneweb", "DBDir");
|
||||
}
|
||||
|
||||
|
||||
sub get_geneweb_st {
|
||||
return $cdb->get_prop("geneweb", "status");
|
||||
}
|
||||
|
||||
|
||||
sub get_geneweb_ac {
|
||||
return $cdb->get_prop("geneweb", "access");
|
||||
}
|
||||
|
||||
|
||||
sub get_gwsetup_st {
|
||||
return $cdb->get_prop("gwsetup", "status");
|
||||
}
|
||||
|
||||
|
||||
sub get_gwsetup_ac {
|
||||
return $cdb->get_prop("gwsetup", "access");
|
||||
}
|
||||
|
||||
|
||||
sub change_settings {
|
||||
|
||||
my $self = shift;
|
||||
my $q = $self->{'cgi'};
|
||||
|
||||
my $n_gw_dbdir = $q->param("geneweb_dbdir") || '';
|
||||
my $n_gw_st = $q->param("geneweb_st");
|
||||
my $n_gw_ac = $q->param("geneweb_ac");
|
||||
|
||||
my $n_gws_st = $q->param("gwsetup_st");
|
||||
my $n_gws_ac = $q->param("gwsetup_ac");
|
||||
|
||||
my $gw_dbdir = get_dbdir();
|
||||
my $gw_st = get_geneweb_st();
|
||||
my $gw_ac = get_geneweb_ac();
|
||||
|
||||
my $gws_st = get_gwsetup_st();
|
||||
my $gws_ac = get_gwsetup_ac();
|
||||
|
||||
if ( ($n_gw_dbdir eq $gw_dbdir) && ($n_gw_st eq $gw_st)
|
||||
&& ($n_gw_ac eq $gw_ac) && ($n_gws_st eq $gws_st) && ($n_gws_ac eq $gws_ac) ) {
|
||||
return $self->success("NO_CHANGE");
|
||||
}
|
||||
if ($n_gw_dbdir) { $cdb->set_prop("geneweb", "DBDir", $n_gw_dbdir) };
|
||||
|
||||
$cdb->set_prop("geneweb", "status", $n_gw_st);
|
||||
$cdb->set_prop("geneweb", "access", $n_gw_ac);
|
||||
|
||||
$cdb->set_prop("gwsetup", "status", $n_gws_st);
|
||||
$cdb->set_prop("gwsetup", "access", $n_gws_ac);
|
||||
|
||||
return ( system ( "/sbin/e-smith/signal-event", "geneweb-update" ) ) ?
|
||||
$self->error("ERROR_UPDATING") : $self->success("SUCCESS");
|
||||
}
|
||||
|
||||
|
||||
sub dir_must_exist {
|
||||
|
||||
my $self = shift;
|
||||
my $q = $self->{cgi};
|
||||
|
||||
my $gw_dbdir = $q->param("geneweb_dbdir") || '';
|
||||
$gw_dbdir = $1 if ($gw_dbdir =~ /^($REGEXP_DOMAIN)$/);
|
||||
return 'ERR_DIR_NOT_EXIST' unless ($gw_dbdir);
|
||||
|
||||
if ($gw_dbdir) {
|
||||
if ( ! -d "$gw_dbdir" ) {
|
||||
return $self->localise('ERR_DIR_NOT_EXIST');
|
||||
}
|
||||
}
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
||||
sub get_stat_gwd {
|
||||
|
||||
my $fm = shift;
|
||||
if ( get_geneweb_st() eq 'enabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") != 0 ) {
|
||||
return $fm->localise('ERROR_STATUS_GENEWEB');
|
||||
}
|
||||
if ( get_geneweb_st() eq 'disabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") == 0 ) {
|
||||
return $fm->localise('ERROR2_STATUS_GENEWEB');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
sub get_stat_gws {
|
||||
|
||||
my $fm = shift;
|
||||
if ( get_gwsetup_st() eq 'enabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") != 0 ) {
|
||||
return $fm->localise('ERROR_STATUS_GWSETUP');
|
||||
}
|
||||
if ( get_gwsetup_st() eq 'disabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") == 0 ) {
|
||||
return $fm->localise('ERROR2_STATUS_GWSETUP');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
1;
|
186
root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm
Normal file
186
root/usr/share/smanager/lib/SrvMngr/Controller/Geneweb.pm
Normal file
@@ -0,0 +1,186 @@
|
||||
package SrvMngr::Controller::Geneweb;
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
# heading : System
|
||||
# description : Geneweb Admin
|
||||
# navigation : 4000 600
|
||||
#
|
||||
|
||||
# name : geneweb, method : get, url : /geneweb, ctlact : Geneweb#main
|
||||
# name : genewebd, method : post, url : /geneweb, ctlact : Geneweb#do_update
|
||||
|
||||
# routes : end
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
use Locale::gettext;
|
||||
use SrvMngr::I18N;
|
||||
use SrvMngr qw(theme_list init_session);
|
||||
|
||||
our $cdb = esmith::ConfigDB->open() || die "Couldn't open config db";
|
||||
|
||||
our $REGEXP_DOMAIN = qq([a-zA-Z0-9\-\.]+);
|
||||
|
||||
|
||||
sub main {
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
$cdb->reload();
|
||||
my $title = $c->l('gnw_FORM_TITLE');
|
||||
|
||||
$c->stash( title => $title );
|
||||
$c->render('geneweb');
|
||||
};
|
||||
|
||||
|
||||
sub do_update {
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my $res = '';
|
||||
my $result = '';
|
||||
|
||||
my $n_gw_dbdir = $c->param("Dbdir_gnw") || '';
|
||||
my $n_gw_st = $c->param("Status_gnw");
|
||||
my $n_gw_ac = $c->param("Access_gnw");
|
||||
my $n_gws_st = $c->param("Status_gws");
|
||||
my $n_gws_ac = $c->param("Access_gws");
|
||||
|
||||
my $gw_dbdir = get_gnw_dbdir();
|
||||
my $gw_st = get_gnw_st();
|
||||
my $gw_ac = get_gnw_ac();
|
||||
my $gws_st = get_gws_st();
|
||||
my $gws_ac = get_gws_ac();
|
||||
|
||||
if ( ($n_gw_dbdir eq $gw_dbdir) && ($n_gw_st eq $gw_st)
|
||||
&& ($n_gw_ac eq $gw_ac) && ($n_gws_st eq $gws_st) && ($n_gws_ac eq $gws_ac) ) {
|
||||
$res = 'OK';
|
||||
$result = $c->l('gnw_NO_CHANGE');
|
||||
}
|
||||
|
||||
if ( ! $result && $n_gw_dbdir ) {
|
||||
$res = dir_must_exist( $c, $n_gw_dbdir );
|
||||
$result .= $res unless $res eq 'OK';
|
||||
}
|
||||
|
||||
if ( ! $result ) {
|
||||
|
||||
$cdb->set_prop("geneweb", "DBDir", $n_gw_dbdir);
|
||||
$cdb->set_prop("geneweb", "status", $n_gw_st);
|
||||
$cdb->set_prop("geneweb", "access", $n_gw_ac);
|
||||
$cdb->set_prop("gwsetup", "status", $n_gws_st);
|
||||
$cdb->set_prop("gwsetup", "access", $n_gws_ac);
|
||||
|
||||
if ( system ( "/sbin/e-smith/signal-event", "geneweb-modify" ) ) {
|
||||
$result = $c->error("gnw_ERROR_UPDATING");
|
||||
} else {
|
||||
$res = 'OK';
|
||||
$result = $c->l('gnw_SUCCESS');
|
||||
}
|
||||
}
|
||||
|
||||
# common part
|
||||
if ($res ne 'OK') {
|
||||
my $title = $c->l('gnw_FORM_TITLE');
|
||||
|
||||
$c->stash( error => $result );
|
||||
$c->stash( title => $title );
|
||||
return $c->render( 'geneweb' );
|
||||
}
|
||||
|
||||
my $message = "geneweb update DONE";
|
||||
$c->app->log->info($message);
|
||||
$c->flash( success => $result );
|
||||
|
||||
$c->redirect_to("/geneweb");
|
||||
|
||||
};
|
||||
|
||||
|
||||
sub get_prop {
|
||||
my ($item, $prop) = @_;
|
||||
|
||||
my $record = $cdb->get($item);
|
||||
if ($record) {
|
||||
return $record->prop($prop);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
sub get_gnw_dbdir {
|
||||
return get_prop("geneweb", "DBDir");
|
||||
}
|
||||
|
||||
sub get_gnw_st {
|
||||
return get_prop("geneweb", "status");
|
||||
}
|
||||
|
||||
sub get_gnw_ac {
|
||||
return get_prop("geneweb", "access");
|
||||
}
|
||||
|
||||
sub get_gws_st {
|
||||
return get_prop("gwsetup", "status");
|
||||
}
|
||||
|
||||
sub get_gws_ac {
|
||||
return get_prop("gwsetup", "access");
|
||||
}
|
||||
|
||||
|
||||
sub dir_must_exist {
|
||||
|
||||
my ($c, $gw_dbdir) = @_;
|
||||
|
||||
$gw_dbdir = $1 if ($gw_dbdir =~ /^($REGEXP_DOMAIN)$/);
|
||||
return $c->l('gnw_ERR_DIR_NOT_EXIST') unless ($gw_dbdir);
|
||||
|
||||
if ($gw_dbdir) {
|
||||
if ( ! -d "$gw_dbdir" ) {
|
||||
return $c->l('gnw_ERR_DIR_NOT_EXIST');
|
||||
}
|
||||
}
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
||||
sub get_stat_gwd {
|
||||
|
||||
my $c = shift;
|
||||
|
||||
if ( get_gnw_st() eq 'enabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") != 0 ) {
|
||||
return $c->l('gnw_ERROR_STATUS_GENEWEB');
|
||||
}
|
||||
if ( get_gnw_st() eq 'disabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwd' > /dev/null") == 0 ) {
|
||||
return $c->l('gnw_ERROR2_STATUS_GENEWEB');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
sub get_stat_gws {
|
||||
|
||||
my $c = shift;
|
||||
|
||||
if ( get_gws_st() eq 'enabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") != 0 ) {
|
||||
return $c->l('gnw_ERROR_STATUS_GWSETUP');
|
||||
}
|
||||
if ( get_gws_st() eq 'disabled'
|
||||
&& system ( "/bin/ps cax | /bin/grep 'gwsetup' > /dev/null") == 0 ) {
|
||||
return $c->l('gnw_ERROR2_STATUS_GWSETUP');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
1;
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'директория',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Web сървър',
|
||||
'gnw_GENEWEB_ACCESS' => 'Достъп до POP3 сървър',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Администриране',
|
||||
'gnw_GWSETUP_ACCESS' => 'Администриране',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'личен',
|
||||
'gnw_PUBLIC' => 'Публичен',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administration af Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:',
|
||||
'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
|
||||
'gnw_ERROR_UPDATING' => 'Der opstod en fejl under opdatering af Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Fejl: Dette IP-nummer er ikke et lokalt IP-nummer',
|
||||
'gnw_NOT_VALID_IP' => 'Det er ikke et gyldigt IP-nummer. Prøv igen...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'IP-nummeret skal tilhøre dit lokale netværk og være et gyldigt IP-nummer (f.eks. 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nyt IP-nummer hvorfra du ønsker at administrere Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path eksisterer ikke',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Nuværende tilknyttede Genewebs \'eneste\' IP-nummer:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Backup mediet er ikke tilsluttet',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Webserver',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 server adgang',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administration af Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administration af Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privat',
|
||||
'gnw_PUBLIC' => 'Offentlig',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Während des updates von Geneweb ist ein Fehler aufgetreten.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Fehler: Die IP-Adresse ist keine lokale IP-Adresse',
|
||||
'gnw_NOT_VALID_IP' => 'Das ist keine gültige IP-Adresse. Versuchen Sie es erneut...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Die IP-Adresse muß in Ihrem lokalen Netzwerkbereich liegen und gültig sein (Bsp.: 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Neue IP-Adresse von der aus Sie Geneweb administrieren wollen.',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pfad Falscher',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Die momentan \'nur\' Geneweb zugeordnete IP:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Sicherungsverzeichnis ist nicht eingebunden',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Web Server',
|
||||
'gnw_GENEWEB_ACCESS' => 'Zugang zu externen News-Servern einschalten',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb Administration',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb Administration',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privat',
|
||||
'gnw_PUBLIC' => 'Öffentlich',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Δεν υφίσταται το παραπάνω Chroot Path',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Κατάλογος',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Διακομιστής Web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Πρόσβαση διακομιστή POP3',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Διαχείριση django',
|
||||
'gnw_GWSETUP_ACCESS' => 'Διαχείριση django',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Ενεργοποίηση',
|
||||
'gnw_PUBLIC' => 'Έκδοση',
|
||||
'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> ',
|
@@ -0,0 +1,80 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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>
|
||||
',
|
||||
'gnw_ERROR_UPDATING' =>
|
||||
'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' =>
|
||||
'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' =>
|
||||
'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' =>
|
||||
'
|
||||
Successful change... now browse <br/> enabled services from your client
|
||||
',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' =>
|
||||
'
|
||||
This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)
|
||||
',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' =>
|
||||
'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' =>
|
||||
'
|
||||
<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>
|
||||
',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770)
|
||||
- default is \'/opt/geneweb/bases -
|
||||
',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !
|
||||
',
|
||||
'gnw_GENEWEB_STATUS' =>
|
||||
'Geneweb server
|
||||
',
|
||||
'gnw_GENEWEB_ACCESS' => 'Geneweb server access
|
||||
',
|
||||
'gnw_DESC_GENEWEB' =>
|
||||
'<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>
|
||||
',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb administration
|
||||
',
|
||||
'gnw_GWSETUP_ACCESS' =>
|
||||
'Geneweb administration access
|
||||
',
|
||||
'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>
|
||||
',
|
||||
'gnw_ERROR_STATUS_GENEWEB' =>
|
||||
' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' =>
|
||||
' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' =>
|
||||
' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' =>
|
||||
' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' =>
|
||||
'Private',
|
||||
'gnw_PUBLIC' =>
|
||||
'Public',
|
||||
'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>
|
||||
',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administración Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'IP \'única\' actual asignada a Geneweb:',
|
||||
'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
|
||||
'gnw_ERROR_UPDATING' => 'Ha ocurrido un error mientras se actualizaba Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: Esta IP no es una IP Local',
|
||||
'gnw_NOT_VALID_IP' => 'Esa no es una IP válida. Inténtelo nuevamente...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Esta IP debe estar en su red local y ser una IP válida (ej. 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nueva IP desde la cual quiere administrar Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Ruta chroot no existe',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'IP \'única\' actual asignada a Geneweb:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Directorio',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Servidor Web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Acceso a servidor POP3',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administración Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administración Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'privado',
|
||||
'gnw_PUBLIC' => 'Público',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Path pole olemas',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Kataloog',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Weebi server',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 serveri juurdepääs',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administreerimine',
|
||||
'gnw_GWSETUP_ACCESS' => 'Vali administraatori parool',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Aktiveeri',
|
||||
'gnw_PUBLIC' => 'Public',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administration Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'IP \'unique\' assignée actuellement à Geneweb:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Il y\'a eu une erreur pendant la mise à jour de Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Erreur: Cette adresse IP n\'est pas une adresse IP locale',
|
||||
'gnw_NOT_VALID_IP' => 'Cette adresse IP n\'est pas valide. Veuillez entrer une adresse IP valide',
|
||||
'gnw_SUCCESS' => ' Changement réussi... Maintenant accédez aux services <b>actifs</b> depuis votre client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Cette adresse IP doit être sur votre réseau local et être une adresse IP valide (ex: 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nouvelle adresse IP d\'où vous voulez administrer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Ce dossier n\'existe pas',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Dossier de base de donnée Geneweb actuellement assigné:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Dossier non trouvé.',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'Ce dossier doit exister sur le serveur et accessible en écriture par Geneweb. (geneweb:geneweb 770)',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nouveau dossier pour base(s) de données Geneweb. :',
|
||||
'gnw_NO_CHANGE' => 'Pas de changement... Pas de mise à jour !',
|
||||
'gnw_GENEWEB_STATUS' => 'Serveur Geneweb',
|
||||
'gnw_GENEWEB_ACCESS' => 'Accès au serveur Geneweb',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administration Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administration Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">Le service GENEWEB est <b>inactif</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">Le service d\'administration de GENEWEB est <b>inactif</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">Le service GENEWEB ne devrait <b>pas être actif</b></font> (geneweb) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">Le service d\'administration de GENEWEB ne devrait <b>pas être inactif</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privé',
|
||||
'gnw_PUBLIC' => 'Public',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Geneweb server',
|
||||
'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'מנהל מערכת',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb administration access',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'הפעלה',
|
||||
'gnw_PUBLIC' => 'Public',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Biztonsági mentés könyvtára nincs felcsatolva',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Web szerver',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 szerver hozzáférés',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Django adminisztrátor',
|
||||
'gnw_GWSETUP_ACCESS' => 'Django adminisztrátor',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Személyes kulcs',
|
||||
'gnw_PUBLIC' => 'Nyilvános',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Direktori',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Server Web',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 server akses',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administrasi',
|
||||
'gnw_GWSETUP_ACCESS' => 'Masukkan kata sandi administrator',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Aktifkan',
|
||||
'gnw_PUBLIC' => 'Public',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Amministrazione Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Indirizzo IP assegnato solo a Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'C\'è stato un errore aggiornando Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Errore: questo indirizzo IP non è un indirizzo IP locale.',
|
||||
'gnw_NOT_VALID_IP' => 'Questo non un indirizzo IP valido. Provare di nuovo....',
|
||||
'gnw_SUCCESS' => ' Cambio avvenuto con successo... collegarsi <br/>alla porta 2316 dal client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Questo IP deve essere sulla rete locale ed essere valido (p.e.192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nuovo indirizzo IP da cui si desidera amministrare Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'La cartella non esiste',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Cartella correntemente assegnata ai DB di Geneweb',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Cartella non trovata',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'La cartella deve esistere sul server ed essere abilitata in scrittura per Geneweb. (geneweb:geneweb 770)',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'Nuova cartella per i database di Geneweb:',
|
||||
'gnw_NO_CHANGE' => 'Nessuna modifica ... nessun aggiornamento!',
|
||||
'gnw_GENEWEB_STATUS' => 'Server Web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Accesso server POP3',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Amministrazione Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Amministrazione Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="red">GEOIP filtering è <b>inattivo</b></font> (iptables) ',
|
||||
'gnw_PRIVATE' => 'Privato',
|
||||
'gnw_PUBLIC' => 'Pubblico',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'ディレクトリ',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Geneweb server',
|
||||
'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Django 管理',
|
||||
'gnw_GWSETUP_ACCESS' => 'Django 管理',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => '秘密鍵',
|
||||
'gnw_PUBLIC' => '公開',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Mappe',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Webserver',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 server tilgang',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Django administrasjon',
|
||||
'gnw_GWSETUP_ACCESS' => 'Django administrasjon',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privat nøkkel',
|
||||
'gnw_PUBLIC' => 'Offentlig',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Beheer',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Er is een fout opgetreden tijdens het wijzigen van Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Fout: Dit is niet een lokaal IP adres',
|
||||
'gnw_NOT_VALID_IP' => 'Dat is niet een geldig IP adres. Probeer het nog eens...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Dit IP moet op U locale network zijn en een geldig IP adres zijn (b.v. 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Nieuw IP adres waarvandaan U Geneweb wilt beheeren:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot Pad bestaat niet',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Huidig toegewezen \'alleen\' Geneweb IP:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Backup directory is niet gemonteerd',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Webserver',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 server toegang',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb Beheer',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb Beheer',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privé ',
|
||||
'gnw_PUBLIC' => 'Publiekelijk',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Katalog',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Serwer WWW',
|
||||
'gnw_GENEWEB_ACCESS' => 'Geneweb server access',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administracja Django',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administracja Django',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Klucz osobisty',
|
||||
'gnw_PUBLIC' => 'Publiczny',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administração Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
|
||||
'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
|
||||
'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local',
|
||||
'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Este IP deve estar em sua rede local e ser um endereço IP válido (exemplo: 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Diretório de backup não está montado.',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Servidor web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administração Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administração Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privado',
|
||||
'gnw_PUBLIC' => 'Público',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administração Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
|
||||
'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">Change IP and Administer</a> ',
|
||||
'gnw_ERROR_UPDATING' => 'Houve um erro enquanto atualizando Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Erro: Este IP não é um endereço IP local',
|
||||
'gnw_NOT_VALID_IP' => 'Aquele não é um endereço IP válido. Tente novamente...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Este IP deve estar em sua rede local e ser um endereço IP válido (exemplo: 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Novo IP a partir do qual você deseja administrar Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Caminho do CHROOT não existe',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Endereço IP atualmente designado \'somente\' para GeneWeb:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Diretório',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Servidor web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Acesso ao servidor POP3',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administração Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administração Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Chave privada',
|
||||
'gnw_PUBLIC' => 'Público',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Administrare Geneweb',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'IP curent atribuit doar pentru Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Există o eroare la actualizarea Geneweb',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Eroare: Acest IP nu este local',
|
||||
'gnw_NOT_VALID_IP' => 'Acesta nu este un IP valid. Mai incearcă...',
|
||||
'gnw_SUCCESS' => ' Schimb efectuat cu success... Navigați <br/>pe portul 2316 de pe browserul dumneavoastră client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Acest IP trebuie să fie în reteaua internă și să fie valid (ex: 192,168,24,244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Noul IP de unde se va administra Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'IP curent atribuit doar pentru Geneweb',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Director',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'server Web',
|
||||
'gnw_GENEWEB_ACCESS' => 'Activați accesul la servere de știri externe',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administrare Geneweb',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administrare Geneweb',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Activare',
|
||||
'gnw_PUBLIC' => 'Publicat',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Произошла ошибка при обновлении Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Ошибка: этот IP не локальный IP',
|
||||
'gnw_NOT_VALID_IP' => 'Это не допустимый IP. Попробуйте еще раз...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot путь не существует',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Каталог',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Веб-сервер',
|
||||
'gnw_GENEWEB_ACCESS' => 'Доступ к POP3 серверу',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Администрирование Django',
|
||||
'gnw_GWSETUP_ACCESS' => 'Администрирование Django',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Закрытый ключ',
|
||||
'gnw_PUBLIC' => 'Опубликовать',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Directory not found.',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Spletni streznik',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 dostop do streznika',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Administracija Django',
|
||||
'gnw_GWSETUP_ACCESS' => 'Administracija Django',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Aktiviraj',
|
||||
'gnw_PUBLIC' => 'Objavi',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'Det uppstod ett fel vid uppdatering av Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Fel: Detta IP är inte ett lokalt IP',
|
||||
'gnw_NOT_VALID_IP' => 'Detta är inte ett giltigt IP. Försök igen...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'Denna IP-adress måste finnas på ditt lokala nätverk och vara en giltig IP (exvis 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'Ny IP-adress från där du önskar administrera Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot-sökväg existerar inte',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Nuvarande tilldelad Geneweb \'endast\' IP:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Katalog',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Webb-server',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 serveråtkomst',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb administration',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb administration',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'Privat nyckel',
|
||||
'gnw_PUBLIC' => 'Allmän',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'ไดเรกทอรี่',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'เว็บเซิร์ฟเวอร์',
|
||||
'gnw_GENEWEB_ACCESS' => 'การเข้าถึง POP3 เซอร์ฟเวอร์',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'การบริหาร',
|
||||
'gnw_GWSETUP_ACCESS' => 'การบริหาร',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'กุญแจส่วนตัว',
|
||||
'gnw_PUBLIC' => 'สาธารณะ',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb Administration',
|
||||
'gnw_LABEL_ONLY_STATUS' => 'Current assigned Geneweb \'only\' IP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => 'There was an error while updating Geneweb.',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => 'Error: This IP is not a Local IP',
|
||||
'gnw_NOT_VALID_IP' => 'That is not a valid IP. Try again...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => 'This IP must be on your local network and be a valid IP (i.e. 192.168.0.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => 'New IP from which you wish to administer Geneweb:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'This directory does not exist.',
|
||||
'gnw_LABEL_DBDIR_STATUS' => 'Current assigned Geneweb Database(s) directory:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Dizin',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Web sunucusu',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 sunucu erişimi',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'yönetim',
|
||||
'gnw_GWSETUP_ACCESS' => 'yönetim',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => 'özel, gizli',
|
||||
'gnw_PUBLIC' => 'açık/ortak/kamu',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb 管理',
|
||||
'gnw_LABEL_ONLY_STATUS' => '当前指定的GenewebIP:',
|
||||
'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> ',
|
||||
'gnw_ERROR_UPDATING' => '更新 Geneweb 时出错。',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => '错误:这个IP不是本地IP',
|
||||
'gnw_NOT_VALID_IP' => '无效的IP,请重试...',
|
||||
'gnw_SUCCESS' => ' Successful change... now browse <br/> enabled services from your client ',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '这个 IP 必须在本地网络,且必须是有效的 IP (例如 192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => '管理 Geneweb 的新 IP:',
|
||||
'gnw_GENEWEB_ADMINACCESS_STATUS_DESCRIPTION' => ' <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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => 'Chroot 路径不存在',
|
||||
'gnw_LABEL_DBDIR_STATUS' => '当前指定的GenewebIP:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => '备份目录尚未挂载',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => 'Web服务器',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3 服务器访问',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb 管理',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb 管理',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => ' <font color="red">GENEWEB service is <b>inactive</b></font> (geneweb) ',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => ' <font color="red">GENEWEB administration service is <b>inactive</b></font> (gwsetup) ',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => ' <font color="orange">GENEWEB service should <b>not be active</b></font> (gwd) ',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => '私钥',
|
||||
'gnw_PUBLIC' => '公共的',
|
||||
'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> ',
|
@@ -0,0 +1,29 @@
|
||||
'gnw_FORM_TITLE' => 'Geneweb管理',
|
||||
'gnw_LABEL_ONLY_STATUS' => '當前指定的Geneweb"唯一"位址:',
|
||||
'gnw_DESC_STATE_ADMIN_BUTTON' => ' <a class="button-like" href="geneweb?page=0&page_stack=&Next=Next&wherenext=GENEWEB_PAGE_ADMINISTER">修改IP和管理員</a> ',
|
||||
'gnw_ERROR_UPDATING' => '更新Geneweb時出錯。',
|
||||
'gnw_ERR_IP_NOT_LOCAL' => '錯誤:此位址不是本地位址',
|
||||
'gnw_NOT_VALID_IP' => '此非有效位址。請重試...',
|
||||
'gnw_SUCCESS' => '更改成功...現從客戶端瀏覽<br/>2316埠號',
|
||||
'gnw_DESC_GENEWEB_ADMIN_IP_DESCRIPTION' => '此位址需位於區網並為有效位址(例如:192.168.24.244)',
|
||||
'gnw_LABEL_GENEWEB_ADMIN_IP' => '欲管理Geneweb的新位址:',
|
||||
'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> ',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => '置換根目錄的路徑不存在',
|
||||
'gnw_LABEL_DBDIR_STATUS' => '當前指定的Geneweb"唯一"位址:',
|
||||
'gnw_ERR_DIR_NOT_EXIST' => '備份目錄尚未掛載',
|
||||
'gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION' => 'This directory must exist on server and be writeable for Geneweb. (geneweb:geneweb 770) - default is \'/opt/geneweb/bases -',
|
||||
'gnw_LABEL_GENEWEB_BASE_DIR' => 'New directory for Geneweb database(s). :',
|
||||
'gnw_NO_CHANGE' => 'No change... no update !',
|
||||
'gnw_GENEWEB_STATUS' => '網頁伺服器',
|
||||
'gnw_GENEWEB_ACCESS' => 'POP3伺服器存取',
|
||||
'gnw_DESC_GENEWEB' => '<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>',
|
||||
'gnw_GWSETUP_STATUS' => 'Geneweb管理',
|
||||
'gnw_GWSETUP_ACCESS' => 'Geneweb管理',
|
||||
'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> ',
|
||||
'gnw_ERROR_STATUS_GENEWEB' => '<font color="red">儲存設定時發生錯誤</font>',
|
||||
'gnw_ERROR_STATUS_GWSETUP' => '<font color="red">儲存設定時發生錯誤</font>',
|
||||
'gnw_ERROR2_STATUS_GENEWEB' => '<font color="orange">尚未檢核...</font>',
|
||||
'gnw_ERROR2_STATUS_GWSETUP' => ' <font color="orange">GENEWEB administration service should <b>not be active</b></font> (gwsetup) ',
|
||||
'gnw_PRIVATE' => '私有',
|
||||
'gnw_PUBLIC' => '公開',
|
||||
'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> ',
|
@@ -0,0 +1,69 @@
|
||||
% layout 'default', title => "Sme server 2 - geneweb";
|
||||
|
||||
% content_for 'module' => begin
|
||||
<div id="module" class="module geneweb-panel">
|
||||
% if ($config->{debug} == 1) {
|
||||
<p>
|
||||
%= dumper $c->current_route
|
||||
</p>
|
||||
% }
|
||||
|
||||
% if ( stash 'error' ) {
|
||||
<br><div class=sme-error>
|
||||
%= $c->render_to_string(inline => stash 'error')
|
||||
</div>
|
||||
%}
|
||||
|
||||
<h1><%= $title %></h1>
|
||||
|
||||
%= form_for 'geneweb' => (method => 'POST') => begin
|
||||
%= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP'))
|
||||
<p><span class=label>
|
||||
%= l('gnw_GWSETUP_STATUS'), class => 'label'
|
||||
</span><span class=data>
|
||||
% param 'Status_gws' => $c->get_gws_st() unless param 'Status_gws';
|
||||
%= select_field 'Status_gws' => [[(l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input'
|
||||
</span></p>
|
||||
<p>
|
||||
%= $c->render_to_string(inline => $c->get_stat_gws())
|
||||
|
||||
%= $c->render_to_string(inline => $c->l('gnw_DESC_GWSETUP_ACCESS'))
|
||||
<br><span class=label>
|
||||
%=l 'gnw_GWSETUP_ACCESS', class => 'label'
|
||||
</span><span class=data>
|
||||
% param 'Access_gws' => $c->get_gws_ac() unless param 'Access_gws';
|
||||
%= select_field 'Access_gws' => [[(l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input'
|
||||
</span></p>
|
||||
|
||||
%= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB'))
|
||||
<p><span class=label>
|
||||
%= l('gnw_GENEWEB_STATUS'), class => 'label'
|
||||
</span><span class=data>
|
||||
% param 'Status_gnw' => $c->get_gnw_st() unless param 'Status_gnw';
|
||||
%= select_field 'Status_gnw' => [[ (l 'DISABLED') => 'disabled'], [ (l 'ENABLED') => 'enabled']], class => 'input'
|
||||
</span></p>
|
||||
%= $c->render_to_string(inline => $c->get_stat_gwd())
|
||||
|
||||
<p><span class=label>
|
||||
%=l 'gnw_GENEWEB_ACCESS', class => 'label'
|
||||
</span><span class=data>
|
||||
% param 'Access_gnw' => $c->get_gnw_ac() unless param 'Access_gnw';
|
||||
%= select_field 'Access_gnw' => [[ (l 'gnw_PRIVATE') => 'private'], [ (l 'gnw_PUBLIC') => 'public']], class => 'input'
|
||||
</span></p>
|
||||
<p>
|
||||
%= $c->render_to_string(inline => $c->l('gnw_DESC_GENEWEB_BASE_DIR_DESCRIPTION'))
|
||||
<br><span class=label>
|
||||
%=l 'gnw_LABEL_GENEWEB_BASE_DIR', class => 'label'
|
||||
</span><span class=data>
|
||||
% param 'Dbdir_gnw' => $c->get_gnw_dbdir() unless param 'Dbdir_gnw';
|
||||
%= text_field 'Dbdir_gnw', class => 'input'
|
||||
</span></p>
|
||||
|
||||
<div class='center'>
|
||||
%= submit_button $c->l('SAVE'), class => 'action'
|
||||
</div>
|
||||
|
||||
% end
|
||||
|
||||
</div>
|
||||
%end
|
Reference in New Issue
Block a user