From c8daa729ba2a4f79b010f9bb19334e85fcb00a24 Mon Sep 17 00:00:00 2001 From: Arnaud Desmons Date: Wed, 18 Dec 2002 09:33:29 +0000 Subject: some gtk2 bug fix --- Makefile | 9 +- client_wizard/client.wiz | 2 +- db_wizard/db.wiz | 2 +- dhcp_wizard/dhcp.wiz | 2 +- dns_wizard/dns.wiz | 2 +- drakwizard.pl | 18 +- firewall_wizard/firewall.wiz | 2 +- ftp_wizard/ftp.wiz | 2 +- news_wizard/news.wiz | 2 +- nfs_wizard/nfs.wiz | 2 +- po/drakwizard.pot | 2000 +++++++++++++++++++++++------------------- postfix_wizard/postfix.wiz | 2 +- proxy_wizard/proxy.wiz | 2 +- samba_wizard/samba.wiz | 2 +- server_wizard/server.wiz | 2 +- time_wizard/time.wiz | 2 +- web_wizard/web.wiz | 2 +- 17 files changed, 1110 insertions(+), 945 deletions(-) diff --git a/Makefile b/Makefile index 3b22ea19..27aa07d3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ RPM=$(HOME)/rpm NAME = drakwizard TAR = $(NAME).tar.bz2 + +WIZ_HOME=${prefix}/share/wizards + WIZ = common\ server_wizard\ dhcp_wizard\ @@ -29,8 +32,9 @@ install: for l in $(WIZ); do \ $(MAKE) -C $$l $@; \ done - find ${prefix}/share/wizards -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \ - perl -i -pe "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \; + find $(WIZ_HOME) ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \ + perl -i -pe "s|__WIZ_HOME__|$(WIZ_HOME)|g" \{\} \; + perl -i -pe "s|__WIZ_HOME__|$(WIZ_HOME)|g" drakwizard.pl clean: $(MAKE) -C po $@ @@ -57,3 +61,4 @@ test: clean_test cp Wizard.dtd Makefile drakwizard.pl drakwizard.spec test.pl test find test -regex ".*\.wiz$$\|.*\.pm$$\|.*\.sh$$" -exec \ perl -i -pe "s|__WIZ_HOME__|$(PWD)/test|g" \{\} \; + perl -i -pe "s|__WIZ_HOME__|$(PWD)/test|g" test/drakwizard.pl \ No newline at end of file diff --git a/client_wizard/client.wiz b/client_wizard/client.wiz index ca3e5803..e0695bce 100644 --- a/client_wizard/client.wiz +++ b/client_wizard/client.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="DNS Wizard (add client)" imagePosition="top" - defaultImage="__WIZ_HOME__/client_wizard/images/DNS" + defaultImage="__WIZ_HOME__/client_wizard/images/DNS.png" perlModule="__WIZ_HOME__/client_wizard/scripts/Clientconf.pm" rpm="bind" > diff --git a/db_wizard/db.wiz b/db_wizard/db.wiz index 53c092e1..4c48aec0 100644 --- a/db_wizard/db.wiz +++ b/db_wizard/db.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="MySQL Database wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/db_wizard/images/SQL" + defaultImage="__WIZ_HOME__/db_wizard/images/SQL.png" rpm="MySQL" > diff --git a/dhcp_wizard/dhcp.wiz b/dhcp_wizard/dhcp.wiz index 2ad6606e..f95284f1 100644 --- a/dhcp_wizard/dhcp.wiz +++ b/dhcp_wizard/dhcp.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="DHCP Wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/dhcp_wizard/images/DHCP" + defaultImage="__WIZ_HOME__/dhcp_wizard/images/DHCP.png" perlModule="__WIZ_HOME__/dhcp_wizard/scripts/Dhcpconf.pm" rpm="dhcp-server" > diff --git a/dns_wizard/dns.wiz b/dns_wizard/dns.wiz index bd2c20fa..d4274173 100644 --- a/dns_wizard/dns.wiz +++ b/dns_wizard/dns.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="DNS Wizard (configuration)" imagePosition="top" - defaultImage="__WIZ_HOME__/dns_wizard/images/DNS" + defaultImage="__WIZ_HOME__/dns_wizard/images/DNS.png" perlModule="__WIZ_HOME__/dns_wizard/scripts/Dnsconf.pm" rpm="bind" > diff --git a/drakwizard.pl b/drakwizard.pl index 866ea8a2..69846a2c 100755 --- a/drakwizard.pl +++ b/drakwizard.pl @@ -30,20 +30,21 @@ use common; #- I18N. push @::textdomains, 'drakwizard'; +$::isWizard = 1; my $in = 'interactive'->vnew('su', 'default'); $::direct = /-direct/; $::Wizard_no_previous = 1; $::Wizard_title = "Drakwizard"; my $standalone = 1; -! -r '/etc/sysconfig/network-scripts/drakconnect_conf' && - ( -r '/etc/sysconfig/network-scripts/draknet_conf' || - die "no drakconnect conf file found, install drakconnect and try again") && - MDK::Common::cp_af('/etc/sysconfig/network-scripts/draknet_conf', - '/etc/sysconfig/network-scripts/drakconnect_conf'); +# ! -r '/etc/sysconfig/network-scripts/drakconnect_conf' && +# ( -r '/etc/sysconfig/network-scripts/draknet_conf' || +# die "no drakconnect conf file found, install drakconnect and try again") && +# MDK::Common::cp_af('/etc/sysconfig/network-scripts/draknet_conf', +# '/etc/sysconfig/network-scripts/drakconnect_conf'); if (!defined($ARGV[0])) { - my $prefix = "/usr/share/wizards/"; + my $prefix = "__WIZ_HOME__/"; my %wiz = ( 1 => [$prefix."web_wizard/web.wiz", "Apache"], 2 => [$prefix."dhcp_wizard/dhcp.wiz", "Dhcp"], @@ -235,8 +236,8 @@ sub get_parameter { } elsif (ref($leaf) eq 'HASH') { my $common_freetext_chooser; my %actions = ( - Wizard => sub { - load_wizard(@{$leaf}{qw(wizardTitle libScript perlModule rpm defaultImage)}) },, + Wizard => sub { + load_wizard(@{$leaf}{qw(wizardTitle libScript perlModule rpm defaultImage)}) }, Variable => sub { $variable{$leaf->{name}} = $leaf->{shellVariable}; $ENV{$variable{$leaf->{name}}} = $leaf->{defaultValue}; @@ -405,6 +406,7 @@ sub is_disabled_summary { is_disabled_summary($widget, $page->{next_page}) if $page->{next_page}; } +# find in the page which widget to disable from "is" dependance key. sub is_disabled { my ($widget, $page) = @_; my $ret; diff --git a/firewall_wizard/firewall.wiz b/firewall_wizard/firewall.wiz index 5b1bdde0..c4e20f81 100644 --- a/firewall_wizard/firewall.wiz +++ b/firewall_wizard/firewall.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Firewall wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/firewall_wizard/images/firewall" + defaultImage="__WIZ_HOME__/firewall_wizard/images/firewall.png" perlModule="__WIZ_HOME__/firewall_wizard/scripts/FWconf.pm" > diff --git a/ftp_wizard/ftp.wiz b/ftp_wizard/ftp.wiz index df020c4f..5d0632d8 100644 --- a/ftp_wizard/ftp.wiz +++ b/ftp_wizard/ftp.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="FTP wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/ftp_wizard/images/FTP" + defaultImage="__WIZ_HOME__/ftp_wizard/images/FTP.png" perlModule="__WIZ_HOME__/ftp_wizard/scripts/ProFtpconf.pm" rpm="proftpd" summaryFunc="do_it" diff --git a/news_wizard/news.wiz b/news_wizard/news.wiz index 516ad650..1a56faf2 100644 --- a/news_wizard/news.wiz +++ b/news_wizard/news.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="News Wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/news_wizard/images/news" + defaultImage="__WIZ_HOME__/news_wizard/images/news.png" perlModule="__WIZ_HOME__/news_wizard/scripts/Newsconf.pm" rpm="leafnode" summaryFunc="do_it" diff --git a/nfs_wizard/nfs.wiz b/nfs_wizard/nfs.wiz index a2c232e2..48438853 100644 --- a/nfs_wizard/nfs.wiz +++ b/nfs_wizard/nfs.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="NFS Wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/nfs_wizard/images/NFS" + defaultImage="__WIZ_HOME__/nfs_wizard/images/NFS.png" perlModule="__WIZ_HOME__/nfs_wizard/scripts/NFSConf.pm" rpm="nfs-utils" summaryFunc="do_it" diff --git a/po/drakwizard.pot b/po/drakwizard.pot index 23717cae..c9c5e815 100644 --- a/po/drakwizard.pot +++ b/po/drakwizard.pot @@ -1,5 +1,6 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Free Software Foundation, Inc. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy @@ -12,393 +13,447 @@ msgstr "" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8-bit\n" +"Content-Transfer-Encoding: 8bit\n" -#: ../client_wizard/client.wiz_.c:1 +#: ../client_wizard/client.wiz_.c:1 ../db_wizard/db.wiz_.c:4 +#: ../postfix_wizard/postfix.wiz_.c:1 ../proxy_wizard/proxy.wiz_.c:1 +#: ../samba_wizard-old/samba.wiz_.c:2 ../samba_wizard/samba.wiz_.c:2 +#: ../test/client_wizard/client.wiz_.c:1 ../test/db_wizard/db.wiz_.c:4 +#: ../test/postfix_wizard/postfix.wiz_.c:1 ../test/proxy_wizard/proxy.wiz_.c:1 +#: ../test/samba_wizard/samba.wiz_.c:2 msgid "" -"A client of your local network is a machine connected to the network having " -"its own name and IP number." +"Press next to configure these parameters now, or Cancel to exit this wizard." msgstr "" -#: ../client_wizard/client.wiz_.c:2 ../dns_wizard/dns.wiz_.c:3 -msgid "This is not a valid address... press next to continue" +#: ../client_wizard/client.wiz_.c:2 ../db_wizard/db.wiz_.c:5 +#: ../dhcp_wizard/dhcp.wiz_.c:7 ../dns_wizard/dns.wiz_.c:5 +#: ../ftp_wizard/ftp.wiz_.c:10 ../proxy_wizard/proxy.wiz_.c:5 +#: ../samba_wizard-old/samba.wiz_.c:8 ../samba_wizard/samba.wiz_.c:8 +#: ../server_wizard/server.wiz_.c:4 ../test/client_wizard/client.wiz_.c:2 +#: ../test/db_wizard/db.wiz_.c:5 ../test/dhcp_wizard/dhcp.wiz_.c:7 +#: ../test/dns_wizard/dns.wiz_.c:5 ../test/ftp_wizard/ftp.wiz_.c:10 +#: ../test/proxy_wizard/proxy.wiz_.c:5 ../test/samba_wizard/samba.wiz_.c:8 +#: ../test/server_wizard/server.wiz_.c:4 ../test/web_wizard/web.wiz_.c:10 +#: ../web_wizard/web.wiz_.c:10 +msgid "OK" msgstr "" -#: ../client_wizard/client.wiz_.c:3 +#: ../client_wizard/client.wiz_.c:3 ../test/client_wizard/client.wiz_.c:3 msgid "" -"Press next if you want to change the already existing value, or back to " -"correct your choice." +"If you choose to configure now, you will automatically continue with the " +"Client configuration" msgstr "" -#: ../client_wizard/client.wiz_.c:4 ../db_wizard/db.wiz_.c:1 -#: ../dhcp_wizard/dhcp.wiz_.c:3 ../dns_wizard/dns.wiz_.c:4 -#: ../firewall_wizard/firewall.wiz_.c:4 ../ftp_wizard/ftp.wiz_.c:3 -#: ../news_wizard/news.wiz_.c:4 ../nfs_wizard/nfs.wiz_.c:2 -#: ../postfix_wizard/postfix.wiz_.c:2 ../proxy_wizard/proxy.wiz_.c:36 -#: ../samba_wizard/samba.wiz_.c:32 ../server_wizard/server.wiz_.c:30 -#: ../web_wizard/web.wiz_.c:20 -msgid "Congratulations" +#: ../client_wizard/client.wiz_.c:4 ../test/client_wizard/client.wiz_.c:4 +msgid "DNS Client Wizard" msgstr "" -#: ../client_wizard/client.wiz_.c:5 -msgid "DNS Client Wizard" +#: ../client_wizard/client.wiz_.c:5 ../test/client_wizard/client.wiz_.c:5 +msgid "Press next to begin, or Cancel to leave this wizard." msgstr "" -#: ../client_wizard/client.wiz_.c:6 +#: ../client_wizard/client.wiz_.c:6 ../test/client_wizard/client.wiz_.c:6 +msgid "" +"Your client on the network will be identified by name, as in clientname." +"company.net. Every machine on the network must have a (unique) IP address, " +"in the usual dotted syntax." +msgstr "" + +#: ../client_wizard/client.wiz_.c:7 ../test/client_wizard/client.wiz_.c:7 msgid "" "The wizard collected the following parameters needed to add a client to your " "network:" msgstr "" -#: ../client_wizard/client.wiz_.c:7 ../dhcp_wizard/dhcp.wiz_.c:8 -#: ../dns_wizard/dns.wiz_.c:6 -msgid "System error, no configuration done" +#: ../client_wizard/client.wiz_.c:8 ../test/client_wizard/client.wiz_.c:8 +msgid "The wizard successfully added the client." msgstr "" -#: ../client_wizard/client.wiz_.c:8 -msgid "Client name" +#: ../client_wizard/client.wiz_.c:9 ../test/client_wizard/client.wiz_.c:9 +msgid "(you don't need to type the domain after the name)" msgstr "" -#: ../client_wizard/client.wiz_.c:9 -msgid "Adding a new client to your network" +#: ../client_wizard/client.wiz_.c:10 ../test/client_wizard/client.wiz_.c:10 +msgid "" +"Note that the given IP number and client name should be unique in the " +"network." msgstr "" -#: ../client_wizard/client.wiz_.c:10 ../dhcp_wizard/dhcp.wiz_.c:9 -#: ../dns_wizard/dns.wiz_.c:7 ../firewall_wizard/firewall.wiz_.c:8 -#: ../ftp_wizard/ftp.wiz_.c:5 ../news_wizard/news.wiz_.c:8 -#: ../nfs_wizard/nfs.wiz_.c:7 ../proxy_wizard/proxy.wiz_.c:11 -#: ../samba_wizard/samba.wiz_.c:9 ../server_wizard/server.wiz_.c:8 -#: ../web_wizard/web.wiz_.c:6 -msgid "Configure" +#: ../client_wizard/client.wiz_.c:11 ../dns_wizard/dns.wiz_.c:18 +#: ../postfix_wizard/postfix.wiz_.c:21 ../proxy_wizard/proxy.wiz_.c:22 +#: ../test/client_wizard/client.wiz_.c:11 ../test/dns_wizard/dns.wiz_.c:18 +#: ../test/postfix_wizard/postfix.wiz_.c:21 +#: ../test/proxy_wizard/proxy.wiz_.c:22 +msgid "Warning:" msgstr "" -#: ../client_wizard/client.wiz_.c:11 -msgid "Client identification:" +#: ../client_wizard/client.wiz_.c:12 ../test/client_wizard/client.wiz_.c:12 +msgid "Name of the machine:" msgstr "" -#: ../client_wizard/client.wiz_.c:12 -msgid "(you don't need to type the domain after the name)" +#: ../client_wizard/client.wiz_.c:13 ../test/client_wizard/client.wiz_.c:13 +msgid "Adding a new client to your network" msgstr "" -#: ../client_wizard/client.wiz_.c:13 -msgid "" -"If you choose to configure now, you will automatically continue with the " -"Client configuration" +#: ../client_wizard/client.wiz_.c:14 ../dhcp_wizard/dhcp.wiz_.c:18 +#: ../dns_wizard/dns.wiz_.c:21 ../test/client_wizard/client.wiz_.c:14 +#: ../test/dhcp_wizard/dhcp.wiz_.c:18 ../test/dns_wizard/dns.wiz_.c:21 +msgid "System error, no configuration done" msgstr "" -#: ../client_wizard/client.wiz_.c:14 -msgid "" -"The server will use the informations you enter here to make the name of the " -"client available to other machines into your network." +#: ../client_wizard/client.wiz_.c:15 ../test/client_wizard/client.wiz_.c:15 +msgid "Client identification:" msgstr "" -#: ../client_wizard/client.wiz_.c:15 -msgid "You have entered a machine name or an IP number already used." +#: ../client_wizard/client.wiz_.c:16 ../test/client_wizard/client.wiz_.c:16 +msgid "This wizard will help you in adding a new client in your local DNS." msgstr "" -#: ../client_wizard/client.wiz_.c:16 -msgid "The wizard successfully added the client." +#: ../client_wizard/client.wiz_.c:17 ../test/client_wizard/client.wiz_.c:17 +msgid "" +"A client of your local network is a machine connected to the network having " +"its own name and IP number." msgstr "" -#: ../client_wizard/client.wiz_.c:17 -msgid "Name of the machine:" +#: ../client_wizard/client.wiz_.c:18 ../test/client_wizard/client.wiz_.c:18 +msgid "" +"To accept these values, and add your client, click the Next button or use " +"the Back button to correct them." msgstr "" -#: ../client_wizard/client.wiz_.c:18 ../db_wizard/db.wiz_.c:9 -#: ../dhcp_wizard/dhcp.wiz_.c:12 ../dns_wizard/dns.wiz_.c:12 -#: ../ftp_wizard/ftp.wiz_.c:9 ../proxy_wizard/proxy.wiz_.c:17 -#: ../samba_wizard/samba.wiz_.c:12 ../server_wizard/server.wiz_.c:13 -#: ../web_wizard/web.wiz_.c:9 -msgid "OK" +#: ../client_wizard/client.wiz_.c:19 ../dns_wizard/dns.wiz_.c:24 +#: ../test/client_wizard/client.wiz_.c:19 ../test/dns_wizard/dns.wiz_.c:24 +msgid "This is not a valid address... press next to continue" msgstr "" -#: ../client_wizard/client.wiz_.c:19 -msgid "" -"Your client on the network will be identified by name, as in clientname." -"company.net. Every machine on the network must have a (unique) IP address, " -"in the usual dotted syntax." +#: ../client_wizard/client.wiz_.c:20 ../test/client_wizard/client.wiz_.c:20 +msgid "Client IP:" msgstr "" -#: ../client_wizard/client.wiz_.c:20 -msgid "" -"Note that the given IP number and client name should be unique in the " -"network." +#: ../client_wizard/client.wiz_.c:21 ../dhcp_wizard/dhcp.wiz_.c:6 +#: ../dns_wizard/dns.wiz_.c:4 ../firewall_wizard/firewall.wiz_.c:2 +#: ../ftp_wizard/ftp.wiz_.c:5 ../news_wizard/news.wiz_.c:6 +#: ../nfs_wizard/nfs.wiz_.c:4 ../proxy_wizard/proxy.wiz_.c:33 +#: ../samba_wizard-old/samba.wiz_.c:28 ../samba_wizard/samba.wiz_.c:28 +#: ../server_wizard/server.wiz_.c:31 ../test/client_wizard/client.wiz_.c:21 +#: ../test/dhcp_wizard/dhcp.wiz_.c:6 ../test/dns_wizard/dns.wiz_.c:4 +#: ../test/firewall_wizard/firewall.wiz_.c:2 ../test/ftp_wizard/ftp.wiz_.c:5 +#: ../test/news_wizard/news.wiz_.c:6 ../test/nfs_wizard/nfs.wiz_.c:4 +#: ../test/proxy_wizard/proxy.wiz_.c:33 ../test/samba_wizard/samba.wiz_.c:28 +#: ../test/server_wizard/server.wiz_.c:31 ../test/web_wizard/web.wiz_.c:7 +#: ../web_wizard/web.wiz_.c:7 +msgid "Configure" msgstr "" -#: ../client_wizard/client.wiz_.c:21 -msgid "DNS Wizard (add client)" +#: ../client_wizard/client.wiz_.c:22 ../dns_wizard/dns.wiz_.c:9 +#: ../test/client_wizard/client.wiz_.c:22 ../test/dns_wizard/dns.wiz_.c:9 +msgid "You need to be root to run this wizard" msgstr "" -#: ../client_wizard/client.wiz_.c:22 ../dhcp_wizard/dhcp.wiz_.c:14 -#: ../ftp_wizard/ftp.wiz_.c:13 ../web_wizard/web.wiz_.c:28 -msgid "Warning\\nYou are in dhcp, server may not work with your configuration." +#: ../client_wizard/client.wiz_.c:23 ../db_wizard/db.wiz_.c:9 +#: ../postfix_wizard/postfix.wiz_.c:8 ../proxy_wizard/proxy.wiz_.c:40 +#: ../samba_wizard-old/samba.wiz_.c:36 ../samba_wizard/samba.wiz_.c:36 +#: ../test/client_wizard/client.wiz_.c:23 ../test/db_wizard/db.wiz_.c:9 +#: ../test/postfix_wizard/postfix.wiz_.c:8 +#: ../test/proxy_wizard/proxy.wiz_.c:40 ../test/samba_wizard/samba.wiz_.c:36 +msgid "Network not configured yet" msgstr "" -#: ../client_wizard/client.wiz_.c:23 -msgid "IP number of the machine:" +#: ../client_wizard/client.wiz_.c:24 ../test/client_wizard/client.wiz_.c:24 +msgid "You have entered a machine name or an IP number already used." msgstr "" -#: ../client_wizard/client.wiz_.c:24 ../db_wizard/db.wiz_.c:18 -#: ../dhcp_wizard/dhcp.wiz_.c:15 ../dns_wizard/dns.wiz_.c:19 -#: ../firewall_wizard/firewall.wiz_.c:19 ../ftp_wizard/ftp.wiz_.c:16 -#: ../news_wizard/news.wiz_.c:20 ../nfs_wizard/nfs.wiz_.c:17 -#: ../postfix_wizard/postfix.wiz_.c:16 ../proxy_wizard/proxy.wiz_.c:48 -#: ../samba_wizard/samba.wiz_.c:49 ../server_wizard/server.wiz_.c:49 -#: ../time_wizard/time.wiz_.c:47 ../web_wizard/web.wiz_.c:30 -msgid "Quit" +#: ../client_wizard/client.wiz_.c:25 ../test/client_wizard/client.wiz_.c:25 +msgid "DNS Wizard (add client)" msgstr "" -#: ../client_wizard/client.wiz_.c:25 ../db_wizard/db.wiz_.c:19 -#: ../postfix_wizard/postfix.wiz_.c:17 ../proxy_wizard/proxy.wiz_.c:47 -#: ../samba_wizard/samba.wiz_.c:48 -msgid "Network not configured yet" +#: ../client_wizard/client.wiz_.c:26 ../db_wizard/db.wiz_.c:12 +#: ../dhcp_wizard/dhcp.wiz_.c:14 ../dns_wizard/dns.wiz_.c:16 +#: ../firewall_wizard/firewall.wiz_.c:14 ../ftp_wizard/ftp.wiz_.c:18 +#: ../news_wizard/news.wiz_.c:14 ../nfs_wizard/nfs.wiz_.c:11 +#: ../postfix_wizard/postfix.wiz_.c:15 ../proxy_wizard/proxy.wiz_.c:43 +#: ../samba_wizard-old/samba.wiz_.c:46 ../samba_wizard/samba.wiz_.c:46 +#: ../server_wizard/server.wiz_.c:44 ../test/client_wizard/client.wiz_.c:26 +#: ../test/db_wizard/db.wiz_.c:12 ../test/dhcp_wizard/dhcp.wiz_.c:14 +#: ../test/dns_wizard/dns.wiz_.c:16 ../test/firewall_wizard/firewall.wiz_.c:14 +#: ../test/ftp_wizard/ftp.wiz_.c:18 ../test/news_wizard/news.wiz_.c:14 +#: ../test/nfs_wizard/nfs.wiz_.c:11 ../test/postfix_wizard/postfix.wiz_.c:15 +#: ../test/proxy_wizard/proxy.wiz_.c:43 ../test/samba_wizard/samba.wiz_.c:46 +#: ../test/server_wizard/server.wiz_.c:44 ../test/time_wizard/time.wiz_.c:39 +#: ../test/web_wizard/web.wiz_.c:17 ../time_wizard/time.wiz_.c:39 +#: ../web_wizard/web.wiz_.c:17 +msgid "Quit" msgstr "" -#: ../client_wizard/client.wiz_.c:26 -msgid "This wizard will help you in adding a new client in your local DNS." +#: ../client_wizard/client.wiz_.c:27 ../dhcp_wizard/dhcp.wiz_.c:15 +#: ../ftp_wizard/ftp.wiz_.c:20 ../test/client_wizard/client.wiz_.c:27 +#: ../test/dhcp_wizard/dhcp.wiz_.c:15 ../test/ftp_wizard/ftp.wiz_.c:20 +#: ../test/web_wizard/web.wiz_.c:19 ../web_wizard/web.wiz_.c:19 +msgid "Warning\\nYou are in dhcp, server may not work with your configuration." msgstr "" -#: ../client_wizard/client.wiz_.c:27 +#: ../client_wizard/client.wiz_.c:28 ../test/client_wizard/client.wiz_.c:28 msgid "" -"To accept these values, and add your client, click the Next button or use " -"the Back button to correct them." -msgstr "" - -#: ../client_wizard/client.wiz_.c:28 -msgid "Press next to begin, or Cancel to leave this wizard." +"The server will use the informations you enter here to make the name of the " +"client available to other machines into your network." msgstr "" -#: ../client_wizard/client.wiz_.c:29 ../db_wizard/db.wiz_.c:23 -#: ../postfix_wizard/postfix.wiz_.c:25 ../proxy_wizard/proxy.wiz_.c:52 -#: ../samba_wizard/samba.wiz_.c:53 -msgid "" -"Press next to configure these parameters now, or Cancel to exit this wizard." +#: ../client_wizard/client.wiz_.c:29 ../db_wizard/db.wiz_.c:18 +#: ../dhcp_wizard/dhcp.wiz_.c:17 ../dns_wizard/dns.wiz_.c:19 +#: ../firewall_wizard/firewall.wiz_.c:20 ../ftp_wizard/ftp.wiz_.c:23 +#: ../news_wizard/news.wiz_.c:21 ../nfs_wizard/nfs.wiz_.c:16 +#: ../postfix_wizard/postfix.wiz_.c:24 ../proxy_wizard/proxy.wiz_.c:48 +#: ../samba_wizard-old/samba.wiz_.c:53 ../samba_wizard/samba.wiz_.c:53 +#: ../server_wizard/server.wiz_.c:48 ../test/client_wizard/client.wiz_.c:29 +#: ../test/db_wizard/db.wiz_.c:18 ../test/dhcp_wizard/dhcp.wiz_.c:17 +#: ../test/dns_wizard/dns.wiz_.c:19 ../test/firewall_wizard/firewall.wiz_.c:20 +#: ../test/ftp_wizard/ftp.wiz_.c:23 ../test/news_wizard/news.wiz_.c:21 +#: ../test/nfs_wizard/nfs.wiz_.c:16 ../test/postfix_wizard/postfix.wiz_.c:24 +#: ../test/proxy_wizard/proxy.wiz_.c:48 ../test/samba_wizard/samba.wiz_.c:53 +#: ../test/server_wizard/server.wiz_.c:48 ../test/web_wizard/web.wiz_.c:21 +#: ../web_wizard/web.wiz_.c:21 +msgid "Congratulations" msgstr "" -#: ../client_wizard/client.wiz_.c:30 ../dns_wizard/dns.wiz_.c:21 -msgid "You need to be root to run this wizard" +#: ../client_wizard/client.wiz_.c:30 ../test/client_wizard/client.wiz_.c:30 +msgid "IP number of the machine:" msgstr "" -#: ../client_wizard/client.wiz_.c:31 -msgid "Client IP:" +#: ../client_wizard/client.wiz_.c:31 ../test/client_wizard/client.wiz_.c:31 +msgid "" +"Press next if you want to change the already existing value, or back to " +"correct your choice." msgstr "" -#: ../client_wizard/client.wiz_.c:32 ../db_wizard/db.wiz_.c:24 -#: ../postfix_wizard/postfix.wiz_.c:27 ../proxy_wizard/proxy.wiz_.c:31 -#: ../samba_wizard/samba.wiz_.c:24 +#: ../client_wizard/client.wiz_.c:32 ../db_wizard/db.wiz_.c:22 +#: ../postfix_wizard/postfix.wiz_.c:27 ../proxy_wizard/proxy.wiz_.c:52 +#: ../samba_wizard-old/samba.wiz_.c:57 ../samba_wizard/samba.wiz_.c:57 +#: ../test/client_wizard/client.wiz_.c:32 ../test/db_wizard/db.wiz_.c:22 +#: ../test/postfix_wizard/postfix.wiz_.c:27 +#: ../test/proxy_wizard/proxy.wiz_.c:52 ../test/samba_wizard/samba.wiz_.c:57 msgid "" "You have to configure the basic network parameters before launching this " "wizard." msgstr "" -#: ../client_wizard/client.wiz_.c:33 ../dns_wizard/dns.wiz_.c:24 -#: ../postfix_wizard/postfix.wiz_.c:29 ../proxy_wizard/proxy.wiz_.c:55 -msgid "Warning:" -msgstr "" - -#: ../db_wizard/db.wiz_.c:2 -msgid "Configuration Wizard" -msgstr "" - -#: ../db_wizard/db.wiz_.c:3 -msgid "MySQL Database Server" -msgstr "" - -#: ../db_wizard/db.wiz_.c:4 -msgid "Please enter a username and password to add a user" +#: ../client_wizard/client.wiz_.c:33 ../test/client_wizard/client.wiz_.c:33 +msgid "Client name" msgstr "" -#: ../db_wizard/db.wiz_.c:5 +#: ../db_wizard/db.wiz_.c:1 ../test/db_wizard/db.wiz_.c:1 msgid "User addition" msgstr "" -#: ../db_wizard/db.wiz_.c:6 +#: ../db_wizard/db.wiz_.c:2 ../test/db_wizard/db.wiz_.c:2 msgid "" "To accept this value, and configure your server, click on \\qConfirm\\q or " "use the Back button to correct them." msgstr "" -#: ../db_wizard/db.wiz_.c:7 -msgid "The wizard successfully configured your MySQL Database Server" +#: ../db_wizard/db.wiz_.c:3 ../test/db_wizard/db.wiz_.c:3 +msgid "Please type a password for the root user:" msgstr "" -#: ../db_wizard/db.wiz_.c:8 -msgid "Database Server" +#: ../db_wizard/db.wiz_.c:6 ../test/db_wizard/db.wiz_.c:6 +msgid "Configuring the MySQL Database Server" msgstr "" -#: ../db_wizard/db.wiz_.c:10 -msgid "Root Password:" +#: ../db_wizard/db.wiz_.c:7 ../test/db_wizard/db.wiz_.c:7 +msgid "Confirm" msgstr "" -#: ../db_wizard/db.wiz_.c:11 -msgid "Confirm" +#: ../db_wizard/db.wiz_.c:8 ../test/db_wizard/db.wiz_.c:8 +msgid "Password:" msgstr "" -#: ../db_wizard/db.wiz_.c:12 ../ftp_wizard/ftp.wiz_.c:10 -#: ../web_wizard/web.wiz_.c:10 -msgid "Sorry, you must be root to do this..." +#: ../db_wizard/db.wiz_.c:10 ../test/db_wizard/db.wiz_.c:10 +msgid "The wizard successfully configured your MySQL Database Server" msgstr "" -#: ../db_wizard/db.wiz_.c:13 -msgid "Password:" +#: ../db_wizard/db.wiz_.c:11 ../test/db_wizard/db.wiz_.c:11 +msgid "Username:" msgstr "" -#: ../db_wizard/db.wiz_.c:14 -msgid "" -"If you choose to configure now, you will automatically continue with the " -"MySQL Database configuration" +#: ../db_wizard/db.wiz_.c:13 ../test/db_wizard/db.wiz_.c:13 +msgid "Add" msgstr "" -#: ../db_wizard/db.wiz_.c:15 -msgid "" -"This wizard will help you configuring the MySQL Database Server for your " -"network." +#: ../db_wizard/db.wiz_.c:14 ../ftp_wizard/ftp.wiz_.c:19 +#: ../test/db_wizard/db.wiz_.c:14 ../test/ftp_wizard/ftp.wiz_.c:19 +#: ../test/web_wizard/web.wiz_.c:18 ../web_wizard/web.wiz_.c:18 +msgid "Sorry, you must be root to do this..." msgstr "" -#: ../db_wizard/db.wiz_.c:16 -msgid "Username:" +#: ../db_wizard/db.wiz_.c:15 ../test/db_wizard/db.wiz_.c:15 +msgid "Database Server" msgstr "" -#: ../db_wizard/db.wiz_.c:17 +#: ../db_wizard/db.wiz_.c:16 ../test/db_wizard/db.wiz_.c:16 msgid "Note: This user will have all permissions" msgstr "" -#: ../db_wizard/db.wiz_.c:20 -msgid "Add" +#: ../db_wizard/db.wiz_.c:17 ../test/db_wizard/db.wiz_.c:17 +msgid "MySQL Database wizard" msgstr "" -#: ../db_wizard/db.wiz_.c:21 -msgid "Please type a password for the root user:" +#: ../db_wizard/db.wiz_.c:19 ../test/db_wizard/db.wiz_.c:19 +msgid "Configuration Wizard" msgstr "" -#: ../db_wizard/db.wiz_.c:22 -msgid "Configuring the MySQL Database Server" +#: ../db_wizard/db.wiz_.c:20 ../test/db_wizard/db.wiz_.c:20 +msgid "To run your server, you first need to specify a root password" msgstr "" -#: ../db_wizard/db.wiz_.c:25 -msgid "To run your server, you first need to specify a root password" +#: ../db_wizard/db.wiz_.c:21 ../test/db_wizard/db.wiz_.c:21 +msgid "Root Password:" msgstr "" -#: ../db_wizard/db.wiz_.c:26 -msgid "MySQL Database wizard" +#: ../db_wizard/db.wiz_.c:23 ../test/db_wizard/db.wiz_.c:23 +msgid "MySQL Database Server" msgstr "" -#: ../db_wizard/db.wiz_.c:27 +#: ../db_wizard/db.wiz_.c:24 ../test/db_wizard/db.wiz_.c:24 msgid "" "The wizard collected the following parameters needed to configure your MySQL " "Database Server" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:1 ../dns_wizard/dns.wiz_.c:1 -#: ../server_wizard/server.wiz_.c:1 -msgid "IP addresses are a dotted list of four numbers smaller than 256." +#: ../db_wizard/db.wiz_.c:25 ../test/db_wizard/db.wiz_.c:25 +msgid "" +"This wizard will help you configuring the MySQL Database Server for your " +"network." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:2 +#: ../db_wizard/db.wiz_.c:26 ../test/db_wizard/db.wiz_.c:26 +msgid "Please enter a username and password to add a user" +msgstr "" + +#: ../db_wizard/db.wiz_.c:27 ../test/db_wizard/db.wiz_.c:27 msgid "" -"Select the range of addresses assigned to the workstations by the DHCP " -"service; unless you have special needs, you can safely accept the proposed " -"values." +"If you choose to configure now, you will automatically continue with the " +"MySQL Database configuration" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:4 -msgid "Highest IP Address:" +#: ../dhcp_wizard/dhcp.wiz_.c:1 ../test/dhcp_wizard/dhcp.wiz_.c:1 +msgid "" +"The wizard collected the following parameters needed to configure your DHCP " +"service:" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:5 -msgid "Range of addresses used by dhcp" +#: ../dhcp_wizard/dhcp.wiz_.c:2 ../ftp_wizard/ftp.wiz_.c:1 +#: ../news_wizard/news.wiz_.c:2 ../samba_wizard-old/samba.wiz_.c:1 +#: ../samba_wizard/samba.wiz_.c:1 ../server_wizard/server.wiz_.c:1 +#: ../test/dhcp_wizard/dhcp.wiz_.c:2 ../test/ftp_wizard/ftp.wiz_.c:1 +#: ../test/news_wizard/news.wiz_.c:2 ../test/samba_wizard/samba.wiz_.c:1 +#: ../test/server_wizard/server.wiz_.c:1 ../test/web_wizard/web.wiz_.c:1 +#: ../web_wizard/web.wiz_.c:1 +msgid "Fix it" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:6 ../dns_wizard/dns.wiz_.c:5 -#: ../firewall_wizard/firewall.wiz_.c:6 ../ftp_wizard/ftp.wiz_.c:4 -#: ../news_wizard/news.wiz_.c:7 ../postfix_wizard/postfix.wiz_.c:4 -#: ../proxy_wizard/proxy.wiz_.c:37 ../samba_wizard/samba.wiz_.c:35 -#: ../server_wizard/server.wiz_.c:33 ../web_wizard/web.wiz_.c:21 +#: ../dhcp_wizard/dhcp.wiz_.c:3 ../test/dhcp_wizard/dhcp.wiz_.c:3 +msgid "Is the server authoritative ? Ask your system administrator." +msgstr "" + +#: ../dhcp_wizard/dhcp.wiz_.c:4 ../test/dhcp_wizard/dhcp.wiz_.c:4 +msgid "Lowest IP Address:" +msgstr "" + +#: ../dhcp_wizard/dhcp.wiz_.c:5 ../dns_wizard/dns.wiz_.c:3 +#: ../server_wizard/server.wiz_.c:2 ../test/dhcp_wizard/dhcp.wiz_.c:5 +#: ../test/dns_wizard/dns.wiz_.c:3 ../test/server_wizard/server.wiz_.c:2 +msgid "IP addresses are a dotted list of four numbers smaller than 256." +msgstr "" + +#: ../dhcp_wizard/dhcp.wiz_.c:8 ../dns_wizard/dns.wiz_.c:6 +#: ../firewall_wizard/firewall.wiz_.c:4 ../ftp_wizard/ftp.wiz_.c:9 +#: ../news_wizard/news.wiz_.c:8 ../postfix_wizard/postfix.wiz_.c:3 +#: ../proxy_wizard/proxy.wiz_.c:6 ../samba_wizard-old/samba.wiz_.c:7 +#: ../samba_wizard/samba.wiz_.c:7 ../server_wizard/server.wiz_.c:5 +#: ../test/dhcp_wizard/dhcp.wiz_.c:8 ../test/dns_wizard/dns.wiz_.c:6 +#: ../test/firewall_wizard/firewall.wiz_.c:4 ../test/ftp_wizard/ftp.wiz_.c:9 +#: ../test/news_wizard/news.wiz_.c:8 ../test/postfix_wizard/postfix.wiz_.c:3 +#: ../test/proxy_wizard/proxy.wiz_.c:6 ../test/samba_wizard/samba.wiz_.c:7 +#: ../test/server_wizard/server.wiz_.c:5 ../test/web_wizard/web.wiz_.c:9 +#: ../web_wizard/web.wiz_.c:9 msgid "" "To accept these values, and configure your server, click the Next button or " "use the Back button to correct them." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:7 -msgid "" -"DHCP is a service that automatically assigns networking addresses to your " -"workstations." +#: ../dhcp_wizard/dhcp.wiz_.c:9 ../test/dhcp_wizard/dhcp.wiz_.c:9 +msgid "DHCP Wizard" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:10 ../ftp_wizard/ftp.wiz_.c:6 -#: ../news_wizard/news.wiz_.c:11 ../samba_wizard/samba.wiz_.c:39 -#: ../server_wizard/server.wiz_.c:36 ../web_wizard/web.wiz_.c:23 -msgid "Fix it" +#: ../dhcp_wizard/dhcp.wiz_.c:10 ../test/dhcp_wizard/dhcp.wiz_.c:10 +msgid "This wizard will help you configuring the DHCP services of your server." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:11 -msgid "The wizard successfully configured the DHCP services of your server." +#: ../dhcp_wizard/dhcp.wiz_.c:11 ../test/dhcp_wizard/dhcp.wiz_.c:11 +msgid "Range of addresses used by dhcp" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:13 -msgid "This wizard will help you configuring the DHCP services of your server." +#: ../dhcp_wizard/dhcp.wiz_.c:12 ../test/dhcp_wizard/dhcp.wiz_.c:12 +msgid "The wizard successfully configured the DHCP services of your server." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:16 +#: ../dhcp_wizard/dhcp.wiz_.c:13 ../test/dhcp_wizard/dhcp.wiz_.c:13 msgid "" -"The wizard collected the following parameters needed to configure your DHCP " -"service:" -msgstr "" - -#: ../dhcp_wizard/dhcp.wiz_.c:17 -msgid "Lowest IP Address:" +"Select the range of addresses assigned to the workstations by the DHCP " +"service; unless you have special needs, you can safely accept the proposed " +"values." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:18 -msgid "DHCP Configuration Wizard" +#: ../dhcp_wizard/dhcp.wiz_.c:16 ../test/dhcp_wizard/dhcp.wiz_.c:16 +msgid "The IP range specified is not correct" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:19 -msgid "Is the server authoritative ? Ask your system administrator." +#: ../dhcp_wizard/dhcp.wiz_.c:19 ../test/dhcp_wizard/dhcp.wiz_.c:19 +msgid "" +"DHCP is a service that automatically assigns networking addresses to your " +"workstations." msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:20 -msgid "The IP range specified is not correct" +#: ../dhcp_wizard/dhcp.wiz_.c:20 ../test/dhcp_wizard/dhcp.wiz_.c:20 +msgid "Highest IP Address:" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:21 -msgid "DHCP Wizard" +#: ../dhcp_wizard/dhcp.wiz_.c:21 ../test/dhcp_wizard/dhcp.wiz_.c:21 +msgid "DHCP Configuration Wizard" msgstr "" -#: ../dhcp_wizard/dhcp.wiz_.c:22 +#: ../dhcp_wizard/dhcp.wiz_.c:22 ../test/dhcp_wizard/dhcp.wiz_.c:22 msgid "Configuring the DHCP Server" msgstr "" -#: ../dns_wizard/dns.wiz_.c:2 -msgid "DNS Wizard (configuration)" +#: ../dns_wizard/dns.wiz_.c:1 ../test/dns_wizard/dns.wiz_.c:1 +msgid "" +"Your setting could be accepted, but you will not be able to identify machine " +"names outside your local network." msgstr "" -#: ../dns_wizard/dns.wiz_.c:8 -msgid "" -"The wizard collected the following parameters needed to configure your DNS " -"service:" +#: ../dns_wizard/dns.wiz_.c:2 ../test/dns_wizard/dns.wiz_.c:2 +msgid "Press next to leave these values empty, or back to enter a value." msgstr "" -#: ../dns_wizard/dns.wiz_.c:9 -msgid "Configuring the DNS Server" +#: ../dns_wizard/dns.wiz_.c:7 ../test/dns_wizard/dns.wiz_.c:7 +msgid "Primary DNS Address:" msgstr "" -#: ../dns_wizard/dns.wiz_.c:10 -msgid "Secondary DNS Address:" +#: ../dns_wizard/dns.wiz_.c:8 ../test/dns_wizard/dns.wiz_.c:8 +msgid "" +"DNS (Domain Name Server) is the service that puts in correspondence a " +"machine with an internet host name." msgstr "" -#: ../dns_wizard/dns.wiz_.c:11 -msgid "DNS Server Addresses" +#: ../dns_wizard/dns.wiz_.c:10 ../test/dns_wizard/dns.wiz_.c:10 +msgid "Configuring the DNS Server" msgstr "" -#: ../dns_wizard/dns.wiz_.c:13 -msgid "" -"This wizard will help you configuring the DNS services of your server. This " -"configuration will provide a local DNS service for local computers names, " -"with non-local requests forwarded to an outside DNS." +#: ../dns_wizard/dns.wiz_.c:11 ../test/dns_wizard/dns.wiz_.c:11 +msgid "DNS Configuration Wizard" msgstr "" -#: ../dns_wizard/dns.wiz_.c:14 +#: ../dns_wizard/dns.wiz_.c:12 ../test/dns_wizard/dns.wiz_.c:12 msgid "" "DNS will allow your network to communicate with the Internet using standard " "internet host names. In order to configure DNS, you must provide the IP " @@ -406,36 +461,37 @@ msgid "" "by your Internet provider." msgstr "" -#: ../dns_wizard/dns.wiz_.c:15 -msgid "You have entered an empty address for the DNS server." +#: ../dns_wizard/dns.wiz_.c:13 ../test/dns_wizard/dns.wiz_.c:13 +msgid "The wizard successfully configured the DNS services of your server." msgstr "" -#: ../dns_wizard/dns.wiz_.c:16 -msgid "Press next to leave these values empty, or back to enter a value." +#: ../dns_wizard/dns.wiz_.c:14 ../test/dns_wizard/dns.wiz_.c:14 +msgid "You have entered an empty address for the DNS server." msgstr "" -#: ../dns_wizard/dns.wiz_.c:17 -msgid "DNS Configuration Wizard" +#: ../dns_wizard/dns.wiz_.c:15 ../test/dns_wizard/dns.wiz_.c:15 +msgid "" +"The wizard collected the following parameters needed to configure your DNS " +"service:" msgstr "" -#: ../dns_wizard/dns.wiz_.c:18 -msgid "Primary DNS Address:" +#: ../dns_wizard/dns.wiz_.c:17 ../test/dns_wizard/dns.wiz_.c:17 +msgid "DNS Server Addresses" msgstr "" -#: ../dns_wizard/dns.wiz_.c:20 -msgid "" -"Your setting could be accepted, but you will not be able to identify machine " -"names outside your local network." +#: ../dns_wizard/dns.wiz_.c:20 ../test/dns_wizard/dns.wiz_.c:20 +msgid "Secondary DNS Address:" msgstr "" -#: ../dns_wizard/dns.wiz_.c:22 +#: ../dns_wizard/dns.wiz_.c:22 ../test/dns_wizard/dns.wiz_.c:22 msgid "" -"DNS (Domain Name Server) is the service that puts in correspondence a " -"machine with an internet host name." +"This wizard will help you configuring the DNS services of your server. This " +"configuration will provide a local DNS service for local computers names, " +"with non-local requests forwarded to an outside DNS." msgstr "" -#: ../dns_wizard/dns.wiz_.c:23 -msgid "The wizard successfully configured the DNS services of your server." +#: ../dns_wizard/dns.wiz_.c:23 ../test/dns_wizard/dns.wiz_.c:23 +msgid "DNS Wizard (configuration)" msgstr "" #: ../drakwizard.pl_.c:61 @@ -447,1352 +503,1454 @@ msgid "Please select a wizard" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:1 -msgid "Device" +#: ../test/firewall_wizard/firewall.wiz_.c:1 +msgid "Medium - web, ftp and ssh shown to outside" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:2 +#: ../firewall_wizard/firewall.wiz_.c:3 +#: ../test/firewall_wizard/firewall.wiz_.c:3 msgid "Strong - no outside visibility, users limited to web" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:3 ../news_wizard/news.wiz_.c:2 -#: ../proxy_wizard/proxy.wiz_.c:7 ../samba_wizard/samba.wiz_.c:4 -msgid "Something terrible happened" +#: ../firewall_wizard/firewall.wiz_.c:5 +#: ../test/firewall_wizard/firewall.wiz_.c:5 +msgid "" +"The wizard collected the following parameters needed to configure your " +"firewall:" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:5 -msgid "Firewall Configuration Wizard" +#: ../firewall_wizard/firewall.wiz_.c:6 +#: ../test/firewall_wizard/firewall.wiz_.c:6 +msgid "" +"The firewall protects your internal network from unauthorized accesses from " +"the Internet." msgstr "" #: ../firewall_wizard/firewall.wiz_.c:7 -msgid "Internet Network Device:" +#: ../test/firewall_wizard/firewall.wiz_.c:7 +msgid "Device" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:9 ../samba_wizard/samba.wiz_.c:37 -#: ../server_wizard/server.wiz_.c:35 -msgid "Fix It" +#: ../firewall_wizard/firewall.wiz_.c:8 +#: ../test/firewall_wizard/firewall.wiz_.c:8 +msgid "Firewall wizard" +msgstr "" + +#: ../firewall_wizard/firewall.wiz_.c:9 +#: ../test/firewall_wizard/firewall.wiz_.c:9 +msgid "None - No protection" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:10 -msgid "Protection Level:" +#: ../test/firewall_wizard/firewall.wiz_.c:10 +msgid "Internet Network Device:" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:11 -msgid "Firewall wizard" +#: ../test/firewall_wizard/firewall.wiz_.c:11 +msgid "" +"The firewall can be configured to offer different levels of protection; " +"choose the level that corresponds to your needs. If you don't know, the " +"Medium level is usually the most appropriate." msgstr "" #: ../firewall_wizard/firewall.wiz_.c:12 -msgid "The wizard successfully configured your server firewall." -msgstr "" - -#: ../firewall_wizard/firewall.wiz_.c:13 -msgid "Medium - web, ftp and ssh shown to outside" -msgstr "" - -#: ../firewall_wizard/firewall.wiz_.c:14 -msgid "Protection Level" +#: ../test/firewall_wizard/firewall.wiz_.c:12 +msgid "The device name is not correct" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:15 ../news_wizard/news.wiz_.c:14 -#: ../proxy_wizard/proxy.wiz_.c:41 ../samba_wizard/samba.wiz_.c:42 -#: ../server_wizard/server.wiz_.c:43 -msgid "Exit" +#: ../firewall_wizard/firewall.wiz_.c:13 ../samba_wizard-old/samba.wiz_.c:40 +#: ../samba_wizard/samba.wiz_.c:40 ../server_wizard/server.wiz_.c:41 +#: ../test/firewall_wizard/firewall.wiz_.c:13 +#: ../test/samba_wizard/samba.wiz_.c:40 ../test/server_wizard/server.wiz_.c:41 +msgid "Fix It" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:16 -msgid "The device name is not correct" +#: ../firewall_wizard/firewall.wiz_.c:15 +#: ../test/firewall_wizard/firewall.wiz_.c:15 +msgid "Firewall Configuration Wizard" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:17 +#: ../firewall_wizard/firewall.wiz_.c:16 +#: ../test/firewall_wizard/firewall.wiz_.c:16 msgid "" "The firewall needs to know how your server is connected to Internet; choose " "the device you are using for the external connection." msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:18 -msgid "" -"The firewall protects your internal network from unauthorized accesses from " -"the Internet." +#: ../firewall_wizard/firewall.wiz_.c:17 +#: ../test/firewall_wizard/firewall.wiz_.c:17 +msgid "Protection Level" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:20 -msgid "Configuring the Firewall" +#: ../firewall_wizard/firewall.wiz_.c:18 ../news_wizard/news.wiz_.c:18 +#: ../proxy_wizard/proxy.wiz_.c:23 ../samba_wizard-old/samba.wiz_.c:19 +#: ../samba_wizard/samba.wiz_.c:19 ../test/firewall_wizard/firewall.wiz_.c:18 +#: ../test/news_wizard/news.wiz_.c:18 ../test/proxy_wizard/proxy.wiz_.c:23 +#: ../test/samba_wizard/samba.wiz_.c:19 +msgid "Something terrible happened" +msgstr "" + +#: ../firewall_wizard/firewall.wiz_.c:19 +#: ../test/firewall_wizard/firewall.wiz_.c:19 +msgid "Firewall Network Device" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:21 -msgid "None - No protection" +#: ../test/firewall_wizard/firewall.wiz_.c:21 +msgid "The wizard successfully configured your server firewall." msgstr "" #: ../firewall_wizard/firewall.wiz_.c:22 -msgid "This wizard will help you configuring your server firewall." +#: ../test/firewall_wizard/firewall.wiz_.c:22 +msgid "Configuring the Firewall" msgstr "" -#: ../firewall_wizard/firewall.wiz_.c:23 -msgid "Low - Light filtering, standard services available" +#: ../firewall_wizard/firewall.wiz_.c:23 ../news_wizard/news.wiz_.c:23 +#: ../proxy_wizard/proxy.wiz_.c:50 ../samba_wizard-old/samba.wiz_.c:55 +#: ../samba_wizard/samba.wiz_.c:55 ../server_wizard/server.wiz_.c:51 +#: ../test/firewall_wizard/firewall.wiz_.c:23 +#: ../test/news_wizard/news.wiz_.c:23 ../test/proxy_wizard/proxy.wiz_.c:50 +#: ../test/samba_wizard/samba.wiz_.c:55 ../test/server_wizard/server.wiz_.c:51 +msgid "Exit" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:24 -msgid "Firewall Network Device" +#: ../test/firewall_wizard/firewall.wiz_.c:24 +msgid "This wizard will help you configuring your server firewall." msgstr "" #: ../firewall_wizard/firewall.wiz_.c:25 -msgid "" -"The wizard collected the following parameters needed to configure your " -"firewall:" +#: ../test/firewall_wizard/firewall.wiz_.c:25 +msgid "Low - Light filtering, standard services available" msgstr "" #: ../firewall_wizard/firewall.wiz_.c:26 -msgid "" -"The firewall can be configured to offer different levels of protection; " -"choose the level that corresponds to your needs. If you don't know, the " -"Medium level is usually the most appropriate." +#: ../test/firewall_wizard/firewall.wiz_.c:26 +msgid "Protection Level:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:1 -msgid "Select the kind of FTP service you want to activate:" +#: ../ftp_wizard/ftp.wiz_.c:2 ../test/ftp_wizard/ftp.wiz_.c:2 +msgid "This wizard will help you configuring the FTP Server for your network." msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:2 ../samba_wizard/samba.wiz_.c:30 -#: ../web_wizard/web.wiz_.c:18 -msgid "The path you entered does not exist." +#: ../ftp_wizard/ftp.wiz_.c:3 ../test/ftp_wizard/ftp.wiz_.c:3 +msgid "Public directory:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:7 +#: ../ftp_wizard/ftp.wiz_.c:4 ../test/ftp_wizard/ftp.wiz_.c:4 msgid "Internet FTP Server:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:8 -msgid "" -"Your server can act as an FTP Server toward your internal network (intranet) " -"and as an FTP Server for the Internet." -msgstr "" - -#: ../ftp_wizard/ftp.wiz_.c:11 -msgid "The wizard successfully configured your Intranet/Internet FTP Server" -msgstr "" - -#: ../ftp_wizard/ftp.wiz_.c:12 -msgid "Public directory:" +#: ../ftp_wizard/ftp.wiz_.c:6 ../samba_wizard-old/samba.wiz_.c:29 +#: ../samba_wizard/samba.wiz_.c:29 ../test/ftp_wizard/ftp.wiz_.c:6 +#: ../test/samba_wizard/samba.wiz_.c:29 +msgid "Shared dir:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:14 ../samba_wizard/samba.wiz_.c:16 -msgid "Type the path of the directory you want being shared." +#: ../ftp_wizard/ftp.wiz_.c:7 ../test/ftp_wizard/ftp.wiz_.c:7 +msgid "Enable the FTP Server for the Intranet" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:15 -msgid "Enable the FTP Server for the Intranet" +#: ../ftp_wizard/ftp.wiz_.c:8 ../test/ftp_wizard/ftp.wiz_.c:8 +msgid "FTP wizard" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:17 -msgid "" -"The wizard collected the following parameters needed to configure your FTP " -"Server" +#: ../ftp_wizard/ftp.wiz_.c:11 ../test/ftp_wizard/ftp.wiz_.c:11 +msgid "FTP Server" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:18 -msgid "FTP wizard" +#: ../ftp_wizard/ftp.wiz_.c:12 ../test/ftp_wizard/ftp.wiz_.c:12 +msgid "Don't check any box if you don't want to activate your FTP Server." msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:19 -msgid "This wizard will help you configuring the FTP Server for your network." +#: ../ftp_wizard/ftp.wiz_.c:13 ../test/ftp_wizard/ftp.wiz_.c:13 +msgid "Configuring the FTP Server" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:20 +#: ../ftp_wizard/ftp.wiz_.c:14 ../test/ftp_wizard/ftp.wiz_.c:14 msgid "Enable the FTP Server for the Internet" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:21 +#: ../ftp_wizard/ftp.wiz_.c:15 ../test/ftp_wizard/ftp.wiz_.c:15 msgid "Intranet FTP Server:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:22 -msgid "FTP Server Configuration Wizard" +#: ../ftp_wizard/ftp.wiz_.c:16 ../test/ftp_wizard/ftp.wiz_.c:16 +msgid "The wizard successfully configured your Intranet/Internet FTP Server" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:23 -msgid "Configuring the FTP Server" +#: ../ftp_wizard/ftp.wiz_.c:17 ../test/ftp_wizard/ftp.wiz_.c:17 +msgid "Select the kind of FTP service you want to activate:" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:24 -msgid "Don't check any box if you don't want to activate your FTP Server." +#: ../ftp_wizard/ftp.wiz_.c:21 ../test/ftp_wizard/ftp.wiz_.c:21 +msgid "" +"The wizard collected the following parameters needed to configure your FTP " +"Server" msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:25 -msgid "FTP Server" +#: ../ftp_wizard/ftp.wiz_.c:22 ../samba_wizard-old/samba.wiz_.c:17 +#: ../samba_wizard/samba.wiz_.c:17 ../test/ftp_wizard/ftp.wiz_.c:22 +#: ../test/samba_wizard/samba.wiz_.c:17 ../test/web_wizard/web.wiz_.c:20 +#: ../web_wizard/web.wiz_.c:20 +msgid "The path you entered does not exist." msgstr "" -#: ../ftp_wizard/ftp.wiz_.c:26 ../samba_wizard/samba.wiz_.c:59 -msgid "Shared dir:" +#: ../ftp_wizard/ftp.wiz_.c:24 ../test/ftp_wizard/ftp.wiz_.c:24 +msgid "FTP Server Configuration Wizard" msgstr "" -#: ../news_wizard/news.wiz_.c:1 -msgid "News Server Name:" +#: ../ftp_wizard/ftp.wiz_.c:25 ../samba_wizard-old/samba.wiz_.c:60 +#: ../samba_wizard/samba.wiz_.c:60 ../test/ftp_wizard/ftp.wiz_.c:25 +#: ../test/samba_wizard/samba.wiz_.c:60 +msgid "Type the path of the directory you want being shared." msgstr "" -#: ../news_wizard/news.wiz_.c:3 -msgid "Welcome to the News Wizard" +#: ../ftp_wizard/ftp.wiz_.c:26 ../test/ftp_wizard/ftp.wiz_.c:26 +msgid "" +"Your server can act as an FTP Server toward your internal network (intranet) " +"and as an FTP Server for the Internet." msgstr "" -#: ../news_wizard/news.wiz_.c:5 -msgid "Polling Period (Hours):" +#: ../news_wizard/news.wiz_.c:1 ../test/news_wizard/news.wiz_.c:1 +msgid "Polling Interval:" msgstr "" -#: ../news_wizard/news.wiz_.c:6 -msgid "News Server" +#: ../news_wizard/news.wiz_.c:3 ../test/news_wizard/news.wiz_.c:3 +msgid "Polling Period" msgstr "" -#: ../news_wizard/news.wiz_.c:9 +#: ../news_wizard/news.wiz_.c:4 ../test/news_wizard/news.wiz_.c:4 msgid "" "Your server will regularly poll the News Server for obtaning the latest " "Internet News; the polling period set the interval between two consecutive " "polling." msgstr "" -#: ../news_wizard/news.wiz_.c:10 -msgid "The news server name is not correct" +#: ../news_wizard/news.wiz_.c:5 ../test/news_wizard/news.wiz_.c:5 +msgid "" +"This wizard will help you configuring the Internet News services for your " +"network." msgstr "" -#: ../news_wizard/news.wiz_.c:12 -msgid "Polling Interval:" +#: ../news_wizard/news.wiz_.c:7 ../test/news_wizard/news.wiz_.c:7 +msgid "News Wizard" msgstr "" -#: ../news_wizard/news.wiz_.c:13 -msgid "" -"Internet host names must be in the form \\qhost.domain.domaintype\\q; for " -"example, if your provider is \\qprovider.com\\q, the internet news server is " -"usually \\qnews.provider.com\\q." +#: ../news_wizard/news.wiz_.c:9 ../test/news_wizard/news.wiz_.c:9 +msgid "The polling period is not correct" msgstr "" -#: ../news_wizard/news.wiz_.c:15 -msgid "Polling Period" +#: ../news_wizard/news.wiz_.c:10 ../test/news_wizard/news.wiz_.c:10 +msgid "The news server name is not correct" +msgstr "" + +#: ../news_wizard/news.wiz_.c:11 ../test/news_wizard/news.wiz_.c:11 +msgid "Configuring the Internet News" msgstr "" -#: ../news_wizard/news.wiz_.c:16 +#: ../news_wizard/news.wiz_.c:12 ../test/news_wizard/news.wiz_.c:12 msgid "" "Depending on the kind of internet connection you have, an appropriate " "polling period can change between 6 and 24 hours." msgstr "" -#: ../news_wizard/news.wiz_.c:17 -msgid "The polling period is not correct" -msgstr "" - -#: ../news_wizard/news.wiz_.c:18 -msgid "News Server:" -msgstr "" - -#: ../news_wizard/news.wiz_.c:19 +#: ../news_wizard/news.wiz_.c:13 ../test/news_wizard/news.wiz_.c:13 msgid "" "The news server name is the name of the host providing the Internet news to " "your network; the name is usually provided by your provider." msgstr "" -#: ../news_wizard/news.wiz_.c:21 +#: ../news_wizard/news.wiz_.c:15 ../test/news_wizard/news.wiz_.c:15 msgid "" -"The wizard collected the following parameters needed to configure your " -"Internet News Service:" +"The wizard successfully configured your Internet News service of your server." msgstr "" -#: ../news_wizard/news.wiz_.c:22 +#: ../news_wizard/news.wiz_.c:16 ../test/news_wizard/news.wiz_.c:16 msgid "" -"This wizard will help you configuring the Internet News services for your " -"network." -msgstr "" - -#: ../news_wizard/news.wiz_.c:23 -msgid "Configuring the Internet News" +"The wizard collected the following parameters needed to configure your " +"Internet News Service:" msgstr "" -#: ../news_wizard/news.wiz_.c:24 -msgid "" -"The wizard successfully configured your Internet News service of your server." +#: ../news_wizard/news.wiz_.c:17 ../test/news_wizard/news.wiz_.c:17 +msgid "Polling Period (Hours):" msgstr "" -#: ../news_wizard/news.wiz_.c:25 -msgid "News Wizard" +#: ../news_wizard/news.wiz_.c:19 ../test/news_wizard/news.wiz_.c:19 +msgid "News Server Name:" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:1 ../proxy_wizard/proxy.wiz_.c:6 +#: ../news_wizard/news.wiz_.c:20 ../test/news_wizard/news.wiz_.c:20 msgid "" -"Choose the level that suits your needs. If you don't know,the Local Network " -"level is usually the most appropriate. Beware that the All level may be not " -"secure." -msgstr "" - -#: ../nfs_wizard/nfs.wiz_.c:3 -msgid "NFS Server Configuration Wizard" +"Internet host names must be in the form \\qhost.domain.domaintype\\q; for " +"example, if your provider is \\qprovider.com\\q, the internet news server is " +"usually \\qnews.provider.com\\q." msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:4 -msgid "Netmask :" +#: ../news_wizard/news.wiz_.c:22 ../test/news_wizard/news.wiz_.c:22 +msgid "Welcome to the News Wizard" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:5 -msgid "NFS Server" +#: ../news_wizard/news.wiz_.c:24 ../test/news_wizard/news.wiz_.c:24 +msgid "News Server" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:6 -msgid "The wizard successfully configured your NFS Server" +#: ../news_wizard/news.wiz_.c:25 ../test/news_wizard/news.wiz_.c:25 +msgid "News Server:" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:8 ../proxy_wizard/proxy.wiz_.c:12 -#: ../samba_wizard/samba.wiz_.c:10 -msgid "All - No access restriction" +#: ../nfs_wizard/nfs.wiz_.c:1 ../proxy_wizard/proxy.wiz_.c:30 +#: ../test/nfs_wizard/nfs.wiz_.c:1 ../test/proxy_wizard/proxy.wiz_.c:30 +msgid "Access Control" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:9 ../proxy_wizard/proxy.wiz_.c:13 +#: ../nfs_wizard/nfs.wiz_.c:2 ../proxy_wizard/proxy.wiz_.c:2 +#: ../test/nfs_wizard/nfs.wiz_.c:2 ../test/proxy_wizard/proxy.wiz_.c:2 msgid "" "Access will be allowed for hosts on the network. Here is the information " "found about your current local network, you can modify it if needed." msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:10 ../proxy_wizard/proxy.wiz_.c:14 -msgid "Access Control" +#: ../nfs_wizard/nfs.wiz_.c:3 ../test/nfs_wizard/nfs.wiz_.c:3 +msgid "Access :" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:11 -msgid "This wizard will help you configuring the NFS Server for your network." +#: ../nfs_wizard/nfs.wiz_.c:5 ../proxy_wizard/proxy.wiz_.c:7 +#: ../test/nfs_wizard/nfs.wiz_.c:5 ../test/proxy_wizard/proxy.wiz_.c:7 +msgid "Local Network - access for local network (recommended)" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:12 ../proxy_wizard/proxy.wiz_.c:19 -msgid "Local Network - access for local network (recommended)" +#: ../nfs_wizard/nfs.wiz_.c:6 ../test/nfs_wizard/nfs.wiz_.c:6 +msgid "Exported dir:" +msgstr "" + +#: ../nfs_wizard/nfs.wiz_.c:7 ../test/nfs_wizard/nfs.wiz_.c:7 +msgid "The wizard collected the following parameters." msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:13 +#: ../nfs_wizard/nfs.wiz_.c:8 ../test/nfs_wizard/nfs.wiz_.c:8 +msgid "NFS Server Configuration Wizard" +msgstr "" + +#: ../nfs_wizard/nfs.wiz_.c:9 ../test/nfs_wizard/nfs.wiz_.c:9 msgid "NFS can be restricted to a certain ip class" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:14 ../proxy_wizard/proxy.wiz_.c:44 -msgid "Authorised network:" +#: ../nfs_wizard/nfs.wiz_.c:10 ../proxy_wizard/proxy.wiz_.c:19 +#: ../test/nfs_wizard/nfs.wiz_.c:10 ../test/proxy_wizard/proxy.wiz_.c:19 +msgid "" +"Choose the level that suits your needs. If you don't know,the Local Network " +"level is usually the most appropriate. Beware that the All level may be not " +"secure." msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:15 -msgid "Exported dir:" +#: ../nfs_wizard/nfs.wiz_.c:12 ../test/nfs_wizard/nfs.wiz_.c:12 +msgid "NFS Wizard" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:16 ../proxy_wizard/proxy.wiz_.c:45 +#: ../nfs_wizard/nfs.wiz_.c:13 ../proxy_wizard/proxy.wiz_.c:20 +#: ../test/nfs_wizard/nfs.wiz_.c:13 ../test/proxy_wizard/proxy.wiz_.c:20 msgid "Grant access on local network" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:18 -msgid "The wizard collected the following parameters." +#: ../nfs_wizard/nfs.wiz_.c:14 ../test/nfs_wizard/nfs.wiz_.c:14 +msgid "NFS Server" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:19 -msgid "Access :" +#: ../nfs_wizard/nfs.wiz_.c:15 ../proxy_wizard/proxy.wiz_.c:46 +#: ../samba_wizard-old/samba.wiz_.c:50 ../samba_wizard/samba.wiz_.c:50 +#: ../test/nfs_wizard/nfs.wiz_.c:15 ../test/proxy_wizard/proxy.wiz_.c:46 +#: ../test/samba_wizard/samba.wiz_.c:50 +msgid "All - No access restriction" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:20 -msgid "Directory:" +#: ../nfs_wizard/nfs.wiz_.c:17 ../test/nfs_wizard/nfs.wiz_.c:17 +msgid "Netmask :" msgstr "" -#: ../nfs_wizard/nfs.wiz_.c:21 -msgid "NFS Wizard" +#: ../nfs_wizard/nfs.wiz_.c:18 ../test/nfs_wizard/nfs.wiz_.c:18 +msgid "Directory:" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:1 -msgid "Do It" +#: ../nfs_wizard/nfs.wiz_.c:19 ../test/nfs_wizard/nfs.wiz_.c:19 +msgid "This wizard will help you configuring the NFS Server for your network." msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:3 -msgid "" -"You can select the kind of address that outgoing mail will show in the " -"\\qFrom:\\q and \\qReply-to\\q field." +#: ../nfs_wizard/nfs.wiz_.c:20 ../test/nfs_wizard/nfs.wiz_.c:20 +msgid "The wizard successfully configured your NFS Server" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:5 -msgid "Configuring the Internet Mail" +#: ../nfs_wizard/nfs.wiz_.c:21 ../proxy_wizard/proxy.wiz_.c:55 +#: ../test/nfs_wizard/nfs.wiz_.c:21 ../test/proxy_wizard/proxy.wiz_.c:55 +msgid "Authorised network:" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:6 -msgid "Postfix wizard" +#: ../postfix_wizard/postfix.wiz_.c:2 ../test/postfix_wizard/postfix.wiz_.c:2 +msgid "Internet Mail Gateway" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:7 -msgid "" -"Your server will send the outgoing through a mail gateway, that will take " -"care of the final delivery." +#: ../postfix_wizard/postfix.wiz_.c:4 ../test/postfix_wizard/postfix.wiz_.c:4 +msgid "Outgoing Mail Address" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:8 +#: ../postfix_wizard/postfix.wiz_.c:5 ../test/postfix_wizard/postfix.wiz_.c:5 msgid "" -"This wizard will help you configuring the Internet Mail services for your " -"network." +"The wizard successfully configured your Internet Mail service of your server." msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:9 -msgid "Outgoing Mail Address" +#: ../postfix_wizard/postfix.wiz_.c:6 ../test/postfix_wizard/postfix.wiz_.c:6 +msgid "Do It" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:10 +#: ../postfix_wizard/postfix.wiz_.c:7 ../test/postfix_wizard/postfix.wiz_.c:7 msgid "" "This should be chosen consistently with the address you use for incoming " "mail." msgstr "" +#: ../postfix_wizard/postfix.wiz_.c:9 ../test/postfix_wizard/postfix.wiz_.c:9 +msgid "Hmmm" +msgstr "" + +#: ../postfix_wizard/postfix.wiz_.c:10 +#: ../test/postfix_wizard/postfix.wiz_.c:10 +msgid "You entered an empty address for the mail gateway." +msgstr "" + #: ../postfix_wizard/postfix.wiz_.c:11 -msgid "There seems to be a problem... go ask to the big black man downstairs" +#: ../test/postfix_wizard/postfix.wiz_.c:11 +msgid "Internet Mail Configuration Wizard" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:12 -msgid "Masquerade not good!" +#: ../test/postfix_wizard/postfix.wiz_.c:12 +msgid "Postfix wizard" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:13 -msgid "" -"If you choose to configure now, you will automatically continue with the " -"POSTFIX configuration" +#: ../test/postfix_wizard/postfix.wiz_.c:13 +msgid "Mail Server Name:" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:14 -msgid "Form of the Address" +#: ../test/postfix_wizard/postfix.wiz_.c:14 +msgid "" +"Your choice can be accepted, but this will not allow you to send mail " +"outside your local network. Press next to continue, or back to enter a value." msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:15 +#: ../postfix_wizard/postfix.wiz_.c:16 +#: ../test/postfix_wizard/postfix.wiz_.c:16 msgid "" -"Internet host names must be in the form \\qhost.domain.domaintype\\q; for " -"example, if your provider is \\qprovider.com\\q, the internet mail server is " -"usually \\qsmtp.provider.com\\q." +"This wizard will help you configuring the Internet Mail services for your " +"network." +msgstr "" + +#: ../postfix_wizard/postfix.wiz_.c:17 +#: ../test/postfix_wizard/postfix.wiz_.c:17 +msgid "" +"Your server will send the outgoing through a mail gateway, that will take " +"care of the final delivery." msgstr "" #: ../postfix_wizard/postfix.wiz_.c:18 -msgid "Internet Mail Configuration Wizard" +#: ../test/postfix_wizard/postfix.wiz_.c:18 +msgid "" +"If you choose to configure now, you will automatically continue with the " +"POSTFIX configuration" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:19 +#: ../test/postfix_wizard/postfix.wiz_.c:19 msgid "" -"The wizard collected the following parameters needed to configure your " -"Internet Mail Service:" +"Internet host names must be in the form \\qhost.domain.domaintype\\q; for " +"example, if your provider is \\qprovider.com\\q, the internet mail server is " +"usually \\qsmtp.provider.com\\q." msgstr "" #: ../postfix_wizard/postfix.wiz_.c:20 -msgid "Mail Address:" -msgstr "" - -#: ../postfix_wizard/postfix.wiz_.c:21 -msgid "You entered an empty address for the mail gateway." +#: ../test/postfix_wizard/postfix.wiz_.c:20 +msgid "" +"You can select the kind of address that outgoing mail will show in the " +"\\qFrom:\\q and \\qReply-to\\q field." msgstr "" #: ../postfix_wizard/postfix.wiz_.c:22 -msgid "" -"The wizard successfully configured your Internet Mail service of your server." +#: ../test/postfix_wizard/postfix.wiz_.c:22 +msgid "There seems to be a problem... go ask to the big black man downstairs" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:23 -msgid "Hmmm" +#: ../test/postfix_wizard/postfix.wiz_.c:23 +msgid "Configuring the Internet Mail" msgstr "" -#: ../postfix_wizard/postfix.wiz_.c:24 -msgid "Internet Mail Gateway" +#: ../postfix_wizard/postfix.wiz_.c:25 +#: ../test/postfix_wizard/postfix.wiz_.c:25 +msgid "" +"The wizard collected the following parameters needed to configure your " +"Internet Mail Service:" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:26 -msgid "Mail Server Name:" +#: ../test/postfix_wizard/postfix.wiz_.c:26 +msgid "Masquerade not good!" msgstr "" #: ../postfix_wizard/postfix.wiz_.c:28 -msgid "" -"Your choice can be accepted, but this will not allow you to send mail " -"outside your local network. Press next to continue, or back to enter a value." +#: ../test/postfix_wizard/postfix.wiz_.c:28 +msgid "Form of the Address" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:1 -msgid "/etc/services:" +#: ../postfix_wizard/postfix.wiz_.c:29 +#: ../test/postfix_wizard/postfix.wiz_.c:29 +msgid "Mail Address:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:2 +#: ../proxy_wizard/proxy.wiz_.c:3 ../test/proxy_wizard/proxy.wiz_.c:3 msgid "" -"Memory Cache is the amount of RAM dedicated to cache memory operations (note " -"that actual memory usage of the whole squid process is bigger)." +"If you choose to configure now, you will automatically continue with the " +"Proxy configuration." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:3 -msgid "Proxy port:" +#: ../proxy_wizard/proxy.wiz_.c:4 ../test/proxy_wizard/proxy.wiz_.c:4 +msgid "Proxy Configuration Wizard" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:4 -msgid "The wizard successfully configured your proxy server." +#: ../proxy_wizard/proxy.wiz_.c:8 ../test/proxy_wizard/proxy.wiz_.c:8 +msgid "You must choose a port greater than 1024 and lower than 65535" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:5 -msgid "You have entered a port that may be useful for this service:" +#: ../proxy_wizard/proxy.wiz_.c:9 ../test/proxy_wizard/proxy.wiz_.c:9 +msgid "Access Control:" +msgstr "" + +#: ../proxy_wizard/proxy.wiz_.c:10 ../test/proxy_wizard/proxy.wiz_.c:10 +msgid "Configuring the Proxy" +msgstr "" + +#: ../proxy_wizard/proxy.wiz_.c:11 ../test/proxy_wizard/proxy.wiz_.c:11 +msgid "Define an upper level proxy" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:8 -msgid "Cache hierarchy" +#: ../proxy_wizard/proxy.wiz_.c:12 ../test/proxy_wizard/proxy.wiz_.c:12 +msgid "Filesystem Size Used Avail Use% Mounted on" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:9 +#: ../proxy_wizard/proxy.wiz_.c:13 ../test/proxy_wizard/proxy.wiz_.c:13 msgid "" "Squid is a web caching proxy server, it allows faster web access for your " "local network." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:10 -msgid "Define an upper level proxy" +#: ../proxy_wizard/proxy.wiz_.c:14 ../test/proxy_wizard/proxy.wiz_.c:14 +msgid "Upper level proxy port:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:15 -msgid "Disk space (MB):" +#: ../proxy_wizard/proxy.wiz_.c:15 ../test/proxy_wizard/proxy.wiz_.c:15 +msgid "" +"Disk Cache is the amount of disk space that can be used for caching on disk." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:16 -msgid "Upper level proxy hostname:" +#: ../proxy_wizard/proxy.wiz_.c:16 ../test/proxy_wizard/proxy.wiz_.c:16 +msgid "Proxy Port" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:18 +#: ../proxy_wizard/proxy.wiz_.c:17 ../test/proxy_wizard/proxy.wiz_.c:17 msgid "" -"Disk Cache is the amount of disk space that can be used for caching on disk." -msgstr "" - -#: ../proxy_wizard/proxy.wiz_.c:20 -msgid "Configuring the Proxy" +"You can use either a numeric format like \\q192.168.1.0/255.255.255.0\\q or " +"a text format like \\q.domain.net\\q" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:21 +#: ../proxy_wizard/proxy.wiz_.c:18 ../test/proxy_wizard/proxy.wiz_.c:18 msgid "" -"Proxy port value sets what port the proxy server will listen on for http " -"requests. Default is 3128, other common value can be 8080, the port value " -"need to be greater than 1024." +"Press Next if you want to keep this value, or Back to correct your choice." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:22 -msgid "Squid wizard" +#: ../proxy_wizard/proxy.wiz_.c:21 ../test/proxy_wizard/proxy.wiz_.c:21 +msgid "You have entered a port that may be useful for this service:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:23 -msgid "Port:" +#: ../proxy_wizard/proxy.wiz_.c:24 ../test/proxy_wizard/proxy.wiz_.c:24 +msgid "/etc/services:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:24 -msgid "Filesystem Size Used Avail Use% Mounted on" +#: ../proxy_wizard/proxy.wiz_.c:25 ../test/proxy_wizard/proxy.wiz_.c:25 +msgid "Cache hierarchy" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:25 ../samba_wizard/samba.wiz_.c:18 -#: ../server_wizard/server.wiz_.c:22 +#: ../proxy_wizard/proxy.wiz_.c:26 ../samba_wizard-old/samba.wiz_.c:22 +#: ../samba_wizard/samba.wiz_.c:22 ../server_wizard/server.wiz_.c:22 +#: ../test/proxy_wizard/proxy.wiz_.c:26 ../test/samba_wizard/samba.wiz_.c:22 +#: ../test/server_wizard/server.wiz_.c:22 msgid "This Wizard need to run as root" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:26 +#: ../proxy_wizard/proxy.wiz_.c:27 ../test/proxy_wizard/proxy.wiz_.c:27 msgid "" "You can safely select \\qNo upper level proxy\\q if you don't need this " "feature." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:27 -msgid "Memory cache (MB):" -msgstr "" - -#: ../proxy_wizard/proxy.wiz_.c:28 -msgid "Access Control:" +#: ../proxy_wizard/proxy.wiz_.c:28 ../test/proxy_wizard/proxy.wiz_.c:28 +msgid "Port:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:29 +#: ../proxy_wizard/proxy.wiz_.c:29 ../test/proxy_wizard/proxy.wiz_.c:29 msgid "" -"If you choose to configure now, you will automatically continue with the " -"Proxy configuration." +"As an option, Squid can be configured in proxy cascading. You can add a new " +"upper level proxy by specifying its hostname and port." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:30 -msgid "Proxy Port" +#: ../proxy_wizard/proxy.wiz_.c:31 ../test/proxy_wizard/proxy.wiz_.c:31 +msgid "For information, here is /var/spool/squid space on disk:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:32 -msgid "Press back to change the value." +#: ../proxy_wizard/proxy.wiz_.c:32 ../test/proxy_wizard/proxy.wiz_.c:32 +msgid "" +"The wizard collected the following parameters needed to configure your proxy:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:33 -msgid "" -"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of " -"the proxy to use." +#: ../proxy_wizard/proxy.wiz_.c:34 ../test/proxy_wizard/proxy.wiz_.c:34 +msgid "Memory cache (MB):" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:34 +#: ../proxy_wizard/proxy.wiz_.c:35 ../test/proxy_wizard/proxy.wiz_.c:35 msgid "No upper level proxy (recommended)" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:35 -msgid "You must choose a port greater than 1024 and lower than 65535" +#: ../proxy_wizard/proxy.wiz_.c:36 ../test/proxy_wizard/proxy.wiz_.c:36 +msgid "This wizard will help you configuring your proxy server." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:38 +#: ../proxy_wizard/proxy.wiz_.c:37 ../test/proxy_wizard/proxy.wiz_.c:37 msgid "Proxy Cache Size" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:39 +#: ../proxy_wizard/proxy.wiz_.c:38 ../test/proxy_wizard/proxy.wiz_.c:38 msgid "" -"Press Next if you want to keep this value, or Back to correct your choice." +"Proxy port value sets what port the proxy server will listen on for http " +"requests. Default is 3128, other common value can be 8080, the port value " +"need to be greater than 1024." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:40 -msgid "Localhost - access restricted to this server only" +#: ../proxy_wizard/proxy.wiz_.c:39 ../test/proxy_wizard/proxy.wiz_.c:39 +msgid "Press back to change the value." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:42 -msgid "" -"You can use either a numeric format like \\q192.168.1.0/255.255.255.0\\q or " -"a text format like \\q.domain.net\\q" +#: ../proxy_wizard/proxy.wiz_.c:41 ../test/proxy_wizard/proxy.wiz_.c:41 +msgid "Squid wizard" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:43 -msgid "Proxy Configuration Wizard" +#: ../proxy_wizard/proxy.wiz_.c:42 ../test/proxy_wizard/proxy.wiz_.c:42 +msgid "Proxy port:" +msgstr "" + +#: ../proxy_wizard/proxy.wiz_.c:44 ../test/proxy_wizard/proxy.wiz_.c:44 +msgid "Disk space (MB):" +msgstr "" + +#: ../proxy_wizard/proxy.wiz_.c:45 ../test/proxy_wizard/proxy.wiz_.c:45 +msgid "Upper level proxy hostname:" +msgstr "" + +#: ../proxy_wizard/proxy.wiz_.c:47 ../test/proxy_wizard/proxy.wiz_.c:47 +msgid "Localhost - access restricted to this server only" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:46 +#: ../proxy_wizard/proxy.wiz_.c:49 ../test/proxy_wizard/proxy.wiz_.c:49 msgid "" -"As an option, Squid can be configured in proxy cascading. You can add a new " -"upper level proxy by specifying its hostname and port." +"Memory Cache is the amount of RAM dedicated to cache memory operations (note " +"that actual memory usage of the whole squid process is bigger)." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:49 +#: ../proxy_wizard/proxy.wiz_.c:51 ../test/proxy_wizard/proxy.wiz_.c:51 msgid "" -"The wizard collected the following parameters needed to configure your proxy:" +"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of " +"the proxy to use." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:50 +#: ../proxy_wizard/proxy.wiz_.c:53 ../test/proxy_wizard/proxy.wiz_.c:53 msgid "The proxy can be configured to use different access control levels." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:51 -msgid "Upper level proxy port:" +#: ../proxy_wizard/proxy.wiz_.c:54 ../test/proxy_wizard/proxy.wiz_.c:54 +msgid "The wizard successfully configured your proxy server." msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:53 -msgid "This wizard will help you configuring your proxy server." +#: ../samba_wizard-old/samba.wiz_.c:3 ../samba_wizard/samba.wiz_.c:3 +#: ../test/samba_wizard/samba.wiz_.c:3 +msgid "Home:" msgstr "" -#: ../proxy_wizard/proxy.wiz_.c:54 -msgid "For information, here is /var/spool/squid space on disk:" +#: ../samba_wizard-old/samba.wiz_.c:4 ../samba_wizard/samba.wiz_.c:4 +#: ../test/samba_wizard/samba.wiz_.c:4 +msgid "Enable all printer" msgstr "" -#: ../samba_wizard/samba.wiz_.c:1 -msgid "Enable file sharing area" +#: ../samba_wizard-old/samba.wiz_.c:5 ../samba_wizard/samba.wiz_.c:5 +#: ../test/samba_wizard/samba.wiz_.c:5 +msgid "Make home directories available for their owners" msgstr "" -#: ../samba_wizard/samba.wiz_.c:2 -msgid "" -"* Example 2: allow hosts that match the given network/netmask\\nhosts allow " -"= 150.203.15.0/255.255.255.0" +#: ../samba_wizard-old/samba.wiz_.c:6 ../samba_wizard/samba.wiz_.c:6 +#: ../test/samba_wizard/samba.wiz_.c:6 +msgid "Configuring Samba" msgstr "" -#: ../samba_wizard/samba.wiz_.c:3 +#: ../samba_wizard-old/samba.wiz_.c:9 ../samba_wizard/samba.wiz_.c:9 +#: ../test/samba_wizard/samba.wiz_.c:9 msgid "My rules - Ask me allowed and denied hosts" msgstr "" -#: ../samba_wizard/samba.wiz_.c:5 -msgid "Workgroup:" +#: ../samba_wizard-old/samba.wiz_.c:10 ../samba_wizard/samba.wiz_.c:10 +#: ../test/samba_wizard/samba.wiz_.c:10 +msgid "Note that access still requires suitable user-level passwords." msgstr "" -#: ../samba_wizard/samba.wiz_.c:6 +#: ../samba_wizard-old/samba.wiz_.c:11 ../samba_wizard/samba.wiz_.c:11 +#: ../test/samba_wizard/samba.wiz_.c:11 msgid "" -"If you choose to configure now, you will automatically continue with the " -"SAMBA configuration" +"Samba can provide a common file sharing area to your Windows workstation, " +"and can also provide printer sharing for the printers connected to your " +"server." msgstr "" -#: ../samba_wizard/samba.wiz_.c:7 -msgid "Select which printers you want to be accessible from known users" +#: ../samba_wizard-old/samba.wiz_.c:12 ../samba_wizard/samba.wiz_.c:12 +#: ../test/samba_wizard/samba.wiz_.c:12 +msgid "The wizard successfully configured your Samba server." msgstr "" -#: ../samba_wizard/samba.wiz_.c:8 -msgid "The Server Banner is incorrect" +#: ../samba_wizard-old/samba.wiz_.c:13 ../samba_wizard/samba.wiz_.c:13 +#: ../test/samba_wizard/samba.wiz_.c:13 +msgid "Server Banner." msgstr "" -#: ../samba_wizard/samba.wiz_.c:11 -msgid "" -"This wizard will help you configuring the Samba services of your server." +#: ../samba_wizard-old/samba.wiz_.c:14 ../samba_wizard/samba.wiz_.c:14 +#: ../test/samba_wizard/samba.wiz_.c:14 +msgid "Print Server:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:13 -msgid "Enabled Samba Services" +#: ../samba_wizard-old/samba.wiz_.c:15 ../samba_wizard/samba.wiz_.c:15 +#: ../test/samba_wizard/samba.wiz_.c:15 +msgid "Workgroup:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:14 -msgid "Allow hosts:" +#: ../samba_wizard-old/samba.wiz_.c:16 ../samba_wizard/samba.wiz_.c:16 +#: ../test/samba_wizard/samba.wiz_.c:16 +msgid "Samba need to know the Windows Workgroup it will serve." msgstr "" -#: ../samba_wizard/samba.wiz_.c:15 +#: ../samba_wizard-old/samba.wiz_.c:18 ../samba_wizard/samba.wiz_.c:18 +#: ../test/samba_wizard/samba.wiz_.c:18 msgid "" -"The wizard collected the following parameters needed to configure Samba." -msgstr "" - -#: ../samba_wizard/samba.wiz_.c:17 -msgid "Banner:" -msgstr "" - -#: ../samba_wizard/samba.wiz_.c:19 -msgid "Workgroup" +"* Example 3: allow a couple of hosts\\nhosts allow = lapland, arvidsjaur" msgstr "" -#: ../samba_wizard/samba.wiz_.c:20 +#: ../samba_wizard-old/samba.wiz_.c:20 ../samba_wizard/samba.wiz_.c:20 +#: ../test/samba_wizard/samba.wiz_.c:20 msgid "" -"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access " -"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate" +"You have selected to allow user access their home directories via samba but " +"you/they must use smbpasswd to set a password." msgstr "" -#: ../samba_wizard/samba.wiz_.c:21 +#: ../samba_wizard-old/samba.wiz_.c:21 ../samba_wizard/samba.wiz_.c:21 +#: ../test/samba_wizard/samba.wiz_.c:21 msgid "" -"The banner is the way this server will be described in the Windows " -"workstations." +"* Example 1: allow all IPs in 150.203.*.*; except one\\nhosts allow = " +"150.203. EXCEPT 150.203.6.66" msgstr "" -#: ../samba_wizard/samba.wiz_.c:22 -msgid "File Sharing:" +#: ../samba_wizard-old/samba.wiz_.c:23 ../samba_wizard/samba.wiz_.c:23 +#: ../test/samba_wizard/samba.wiz_.c:23 +msgid "Printers:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:23 -msgid "" -"You have selected to allow user access their home directories via samba but " -"you/they must use smbpasswd to set a password." +#: ../samba_wizard-old/samba.wiz_.c:24 ../samba_wizard/samba.wiz_.c:24 +#: ../test/samba_wizard/samba.wiz_.c:24 +msgid "The Server Banner is incorrect" msgstr "" -#: ../samba_wizard/samba.wiz_.c:25 -msgid "Enable all printer" +#: ../samba_wizard-old/samba.wiz_.c:25 ../samba_wizard/samba.wiz_.c:25 +#: ../test/samba_wizard/samba.wiz_.c:25 +msgid "Samba Configuration Wizard" msgstr "" -#: ../samba_wizard/samba.wiz_.c:26 +#: ../samba_wizard-old/samba.wiz_.c:26 ../samba_wizard/samba.wiz_.c:26 +#: ../test/samba_wizard/samba.wiz_.c:26 msgid "" "Samba allows your server to behave as a file and print server for " "workstations running non-Linux systems." msgstr "" -#: ../samba_wizard/samba.wiz_.c:27 -msgid "File permissions" +#: ../samba_wizard-old/samba.wiz_.c:27 ../samba_wizard/samba.wiz_.c:27 +#: ../test/samba_wizard/samba.wiz_.c:27 +msgid "Deny hosts:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:28 +#: ../samba_wizard-old/samba.wiz_.c:30 ../samba_wizard/samba.wiz_.c:30 +#: ../test/samba_wizard/samba.wiz_.c:30 msgid "" -"* Example 1: allow all IPs in 150.203.*.*; except one\\nhosts allow = " -"150.203. EXCEPT 150.203.6.66" +"This wizard will help you configuring the Samba services of your server." msgstr "" -#: ../samba_wizard/samba.wiz_.c:29 -msgid "Configuring Samba" +#: ../samba_wizard-old/samba.wiz_.c:31 ../samba_wizard/samba.wiz_.c:31 +#: ../test/samba_wizard/samba.wiz_.c:31 +msgid "write list:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:31 -msgid "write list:" +#: ../samba_wizard-old/samba.wiz_.c:32 ../samba_wizard/samba.wiz_.c:32 +#: ../test/samba_wizard/samba.wiz_.c:32 +msgid "Server Banner:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:33 -msgid "Server Banner." +#: ../samba_wizard-old/samba.wiz_.c:33 ../samba_wizard/samba.wiz_.c:33 +#: ../test/samba_wizard/samba.wiz_.c:33 +msgid "Enabled Samba Services" msgstr "" -#: ../samba_wizard/samba.wiz_.c:34 -msgid "Note that access still requires suitable user-level passwords." +#: ../samba_wizard-old/samba.wiz_.c:34 ../samba_wizard/samba.wiz_.c:34 +#: ../test/samba_wizard/samba.wiz_.c:34 +msgid "Enable Server Printer Sharing" msgstr "" -#: ../samba_wizard/samba.wiz_.c:36 -msgid "The Workgroup is wrong" +#: ../samba_wizard-old/samba.wiz_.c:35 ../samba_wizard/samba.wiz_.c:35 +#: ../test/samba_wizard/samba.wiz_.c:35 +msgid "Select which printers you want to be accessible from known users" msgstr "" -#: ../samba_wizard/samba.wiz_.c:38 -msgid "Deny hosts:" +#: ../samba_wizard-old/samba.wiz_.c:37 ../samba_wizard/samba.wiz_.c:37 +#: ../test/samba_wizard/samba.wiz_.c:37 +msgid "" +"If you choose to configure now, you will automatically continue with the " +"SAMBA configuration" msgstr "" -#: ../samba_wizard/samba.wiz_.c:40 -msgid "Access control" +#: ../samba_wizard-old/samba.wiz_.c:38 ../samba_wizard/samba.wiz_.c:38 +#: ../test/samba_wizard/samba.wiz_.c:38 +msgid "" +"The wizard collected the following parameters needed to configure Samba." msgstr "" -#: ../samba_wizard/samba.wiz_.c:41 +#: ../samba_wizard-old/samba.wiz_.c:39 ../samba_wizard/samba.wiz_.c:39 +#: ../test/samba_wizard/samba.wiz_.c:39 msgid "" -"Samba can provide a common file sharing area to your Windows workstation, " -"and can also provide printer sharing for the printers connected to your " -"server." +"The banner is the way this server will be described in the Windows " +"workstations." msgstr "" -#: ../samba_wizard/samba.wiz_.c:43 -msgid "The wizard successfully configured your Samba server." +#: ../samba_wizard-old/samba.wiz_.c:41 ../samba_wizard/samba.wiz_.c:41 +#: ../test/samba_wizard/samba.wiz_.c:41 +msgid "read list:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:44 -msgid "Samba need to know the Windows Workgroup it will serve." +#: ../samba_wizard-old/samba.wiz_.c:42 ../samba_wizard/samba.wiz_.c:42 +#: ../test/samba_wizard/samba.wiz_.c:42 +msgid "Banner:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:45 -msgid "Server Banner:" +#: ../samba_wizard-old/samba.wiz_.c:43 ../samba_wizard/samba.wiz_.c:43 +#: ../test/samba_wizard/samba.wiz_.c:43 +msgid "The Workgroup is wrong" msgstr "" -#: ../samba_wizard/samba.wiz_.c:46 +#: ../samba_wizard-old/samba.wiz_.c:44 ../samba_wizard/samba.wiz_.c:44 +#: ../test/samba_wizard/samba.wiz_.c:44 +msgid "Samba wizard" +msgstr "" + +#: ../samba_wizard-old/samba.wiz_.c:45 ../samba_wizard/samba.wiz_.c:45 +#: ../test/samba_wizard/samba.wiz_.c:45 msgid "Access level :" msgstr "" -#: ../samba_wizard/samba.wiz_.c:47 -msgid "Print Server:" +#: ../samba_wizard-old/samba.wiz_.c:47 ../samba_wizard/samba.wiz_.c:47 +#: ../test/samba_wizard/samba.wiz_.c:47 +msgid "Workgroup" msgstr "" -#: ../samba_wizard/samba.wiz_.c:50 -msgid "Samba wizard" +#: ../samba_wizard-old/samba.wiz_.c:48 ../samba_wizard/samba.wiz_.c:48 +#: ../test/samba_wizard/samba.wiz_.c:48 +msgid "Allow hosts:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:51 -msgid "Samba Configuration Wizard" +#: ../samba_wizard-old/samba.wiz_.c:49 ../samba_wizard/samba.wiz_.c:49 +#: ../test/samba_wizard/samba.wiz_.c:49 +msgid "Access control" msgstr "" -#: ../samba_wizard/samba.wiz_.c:52 -msgid "Make home directories available for their owners" +#: ../samba_wizard-old/samba.wiz_.c:51 ../samba_wizard/samba.wiz_.c:51 +#: ../test/samba_wizard/samba.wiz_.c:51 +msgid "" +"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access " +"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate" +msgstr "" + +#: ../samba_wizard-old/samba.wiz_.c:52 ../samba_wizard/samba.wiz_.c:52 +#: ../test/samba_wizard/samba.wiz_.c:52 +msgid "Enable file sharing area" msgstr "" -#: ../samba_wizard/samba.wiz_.c:54 +#: ../samba_wizard-old/samba.wiz_.c:54 ../samba_wizard/samba.wiz_.c:54 +#: ../test/samba_wizard/samba.wiz_.c:54 msgid "" "Type users or group separated by a coma (groups must be preceded by a \\'@" "\\') like this :\\nroot, fred, @users, @wheel for each kind of permission." msgstr "" -#: ../samba_wizard/samba.wiz_.c:55 -msgid "Enable Server Printer Sharing" +#: ../samba_wizard-old/samba.wiz_.c:56 ../samba_wizard/samba.wiz_.c:56 +#: ../test/samba_wizard/samba.wiz_.c:56 +msgid "" +"* Example 2: allow hosts that match the given network/netmask\\nhosts allow " +"= 150.203.15.0/255.255.255.0" msgstr "" -#: ../samba_wizard/samba.wiz_.c:56 -msgid "Printers:" +#: ../samba_wizard-old/samba.wiz_.c:58 ../samba_wizard/samba.wiz_.c:58 +#: ../test/samba_wizard/samba.wiz_.c:58 +msgid "File Sharing:" msgstr "" -#: ../samba_wizard/samba.wiz_.c:57 -msgid "Home:" +#: ../samba_wizard-old/samba.wiz_.c:59 ../samba_wizard/samba.wiz_.c:59 +#: ../test/samba_wizard/samba.wiz_.c:59 +msgid "File permissions" msgstr "" -#: ../samba_wizard/samba.wiz_.c:58 -msgid "read list:" +#: ../server_wizard/server.wiz_.c:3 ../test/server_wizard/server.wiz_.c:3 +msgid "Host Name:" +msgstr "" + +#: ../server_wizard/server.wiz_.c:6 ../test/server_wizard/server.wiz_.c:6 +msgid "Basic Network Configuration Wizard" +msgstr "" + +#: ../server_wizard/server.wiz_.c:7 ../test/server_wizard/server.wiz_.c:7 +msgid "The network address is wrong" msgstr "" -#: ../samba_wizard/samba.wiz_.c:60 +#: ../server_wizard/server.wiz_.c:8 ../test/server_wizard/server.wiz_.c:8 +msgid "Server IP address:" +msgstr "" + +#: ../server_wizard/server.wiz_.c:9 ../test/server_wizard/server.wiz_.c:9 +msgid "Network Address" +msgstr "" + +#: ../server_wizard/server.wiz_.c:10 ../test/server_wizard/server.wiz_.c:10 msgid "" -"* Example 3: allow a couple of hosts\\nhosts allow = lapland, arvidsjaur" +"The wizard successfully configured the basic networking services of your " +"server." msgstr "" -#: ../server_wizard/server.wiz_.c:2 +#: ../server_wizard/server.wiz_.c:11 ../test/server_wizard/server.wiz_.c:11 msgid "" -"Choose the network device (usually a card) the server should use to connect " -"to your network. It's the device for the local network, probably not the " -"same device used for internet access." +"(you can change here these values if you know exactly what you're doing)" msgstr "" -#: ../server_wizard/server.wiz_.c:3 -msgid "The Server IP address is incorrect" +#: ../server_wizard/server.wiz_.c:12 ../test/server_wizard/server.wiz_.c:12 +msgid "" +"The network address is a number identifying your network; the proposed value " +"is designed for a configuration not connected to Internet, or connected " +"using IP masquerading; unless you know what you are doing, accept the " +"default value." msgstr "" -#: ../server_wizard/server.wiz_.c:4 -msgid "Gateway device:" +#: ../server_wizard/server.wiz_.c:13 ../test/server_wizard/server.wiz_.c:13 +msgid "Note about networking" msgstr "" -#: ../server_wizard/server.wiz_.c:5 -msgid "Server Wizard" +#: ../server_wizard/server.wiz_.c:14 ../test/server_wizard/server.wiz_.c:14 +msgid "Server Address" msgstr "" -#: ../server_wizard/server.wiz_.c:6 +#: ../server_wizard/server.wiz_.c:15 ../test/server_wizard/server.wiz_.c:15 msgid "" "Network addresses are a list of four numbers smaller than 256, separated by " "dots; the last number of the list must be zero." msgstr "" -#: ../server_wizard/server.wiz_.c:7 -msgid "net device" -msgstr "" - -#: ../server_wizard/server.wiz_.c:9 +#: ../server_wizard/server.wiz_.c:16 ../test/server_wizard/server.wiz_.c:16 msgid "" -"So, it's very probable that domain name and IP adresses for this local " -"network are DIFFERENT from the server \\qexternal\\q connection." +"Note: the gateway IP address should be non empty if you want an access to " +"outside world." msgstr "" -#: ../server_wizard/server.wiz_.c:10 -msgid "" -"You should not run any other applications while running this wizard and at " -"the end of the wizard you should exit your session and redo the login." +#: ../server_wizard/server.wiz_.c:17 ../test/server_wizard/server.wiz_.c:17 +msgid "The Server IP address is incorrect" msgstr "" -#: ../server_wizard/server.wiz_.c:11 -msgid "" -"Here is your current value for the external gateway (value specified during " -"the initial installation). The device (network card or modem) should be " -"different from the one used for the internal network." +#: ../server_wizard/server.wiz_.c:18 ../test/server_wizard/server.wiz_.c:18 +msgid "Configuring your network" msgstr "" -#: ../server_wizard/server.wiz_.c:12 -msgid "" -"As regards these wizards, your computer is seen as a server managing his own " -"local network (C class network)." +#: ../server_wizard/server.wiz_.c:19 ../test/server_wizard/server.wiz_.c:19 +msgid "Gateway IP:" msgstr "" -#: ../server_wizard/server.wiz_.c:14 -msgid "Device:" +#: ../server_wizard/server.wiz_.c:20 ../test/server_wizard/server.wiz_.c:20 +msgid "" +"You should not run any other applications while running this wizard and at " +"the end of the wizard you should exit your session and redo the login." msgstr "" -#: ../server_wizard/server.wiz_.c:15 -msgid "Warning" +#: ../server_wizard/server.wiz_.c:21 ../test/server_wizard/server.wiz_.c:21 +msgid "IP net address:" msgstr "" -#: ../server_wizard/server.wiz_.c:16 -msgid "This page compute the domainname; it should be invisible" +#: ../server_wizard/server.wiz_.c:23 ../test/server_wizard/server.wiz_.c:23 +msgid "External gateway" msgstr "" -#: ../server_wizard/server.wiz_.c:17 -msgid "Server Address:" +#: ../server_wizard/server.wiz_.c:24 ../test/server_wizard/server.wiz_.c:24 +msgid "Server Wizard" msgstr "" -#: ../server_wizard/server.wiz_.c:18 -msgid "Computed domain Name" +#: ../server_wizard/server.wiz_.c:25 ../test/server_wizard/server.wiz_.c:25 +msgid "" +"So, it's very probable that domain name and IP adresses for this local " +"network are DIFFERENT from the server \\qexternal\\q connection." msgstr "" -#: ../server_wizard/server.wiz_.c:19 -msgid "Host Name" +#: ../server_wizard/server.wiz_.c:26 ../test/server_wizard/server.wiz_.c:26 +msgid "" +"Choose the network device (usually a card) the server should use to connect " +"to your network. It's the device for the local network, probably not the " +"same device used for internet access." msgstr "" -#: ../server_wizard/server.wiz_.c:20 -msgid "This page compute the default server address; should be invisible." +#: ../server_wizard/server.wiz_.c:27 ../test/server_wizard/server.wiz_.c:27 +msgid "" +"Devices are presented with the Linux name and, if known, with the card " +"description." msgstr "" -#: ../server_wizard/server.wiz_.c:21 -msgid "Basic Network Configuration Wizard" +#: ../server_wizard/server.wiz_.c:28 ../test/server_wizard/server.wiz_.c:28 +msgid "" +"Here is your current value for the external gateway (value specified during " +"the initial installation). The device (network card or modem) should be " +"different from the one used for the internal network." msgstr "" -#: ../server_wizard/server.wiz_.c:23 -msgid "The host name is not correct" +#: ../server_wizard/server.wiz_.c:29 ../test/server_wizard/server.wiz_.c:29 +msgid "" +"As regards these wizards, your computer is seen as a server managing his own " +"local network (C class network)." msgstr "" -#: ../server_wizard/server.wiz_.c:24 +#: ../server_wizard/server.wiz_.c:30 ../test/server_wizard/server.wiz_.c:30 msgid "" -"Host names must be in the form \\qhost.domain.domaintype\\q; if your server " -"will be an Internet server, the domain name should be the name registered " -"with your provider. If you will only have intranet any valid name is OK, " -"like \\qcompany.net\\q." +"The server IP address is a number identifing your server in your network; " +"the proposed value designed for a private network , with no internet " +"visibility, or connected using IP masquerading; unless you know what you are " +"doing, accept the default value." msgstr "" -#: ../server_wizard/server.wiz_.c:25 -msgid "External gateway" +#: ../server_wizard/server.wiz_.c:32 ../test/server_wizard/server.wiz_.c:32 +msgid "The host name is not correct" msgstr "" -#: ../server_wizard/server.wiz_.c:26 +#: ../server_wizard/server.wiz_.c:33 ../test/server_wizard/server.wiz_.c:33 msgid "" -"The network address is a number identifying your network; the proposed value " -"is designed for a configuration not connected to Internet, or connected " -"using IP masquerading; unless you know what you are doing, accept the " -"default value." +"The hostname is the name under which your server will be known from the " +"other workstations in your network and maybe on the Internet (depending of " +"your upstream configuration)." msgstr "" -#: ../server_wizard/server.wiz_.c:27 -msgid "" -"This wizard will help you configuring the basic networking services of your " -"server." +#: ../server_wizard/server.wiz_.c:34 ../test/server_wizard/server.wiz_.c:34 +msgid "Wizard Error." msgstr "" -#: ../server_wizard/server.wiz_.c:28 -msgid "This wizard will set the basic networking parameter of your server." +#: ../server_wizard/server.wiz_.c:35 ../test/server_wizard/server.wiz_.c:35 +msgid "net device" msgstr "" -#: ../server_wizard/server.wiz_.c:29 -msgid "Note about networking" +#: ../server_wizard/server.wiz_.c:36 ../test/server_wizard/server.wiz_.c:36 +msgid "This page compute the domainname; it should be invisible" msgstr "" -#: ../server_wizard/server.wiz_.c:31 -msgid "" -"Note: the gateway IP address should be non empty if you want an access to " -"outside world." +#: ../server_wizard/server.wiz_.c:37 ../test/server_wizard/server.wiz_.c:37 +msgid "Computed domain Name" msgstr "" -#: ../server_wizard/server.wiz_.c:32 -msgid "Wizard Error." +#: ../server_wizard/server.wiz_.c:38 ../test/server_wizard/server.wiz_.c:38 +msgid "Gateway device:" msgstr "" -#: ../server_wizard/server.wiz_.c:34 +#: ../server_wizard/server.wiz_.c:39 ../test/server_wizard/server.wiz_.c:39 msgid "" -"Devices are presented with the Linux name and, if known, with the card " -"description." +"The wizard collected the following parameters needed to configure your " +"network" msgstr "" -#: ../server_wizard/server.wiz_.c:37 -msgid "Network Address:" +#: ../server_wizard/server.wiz_.c:40 ../test/server_wizard/server.wiz_.c:40 +msgid "This page compute the default server address; should be invisible." msgstr "" -#: ../server_wizard/server.wiz_.c:38 -msgid "Configuring your network" +#: ../server_wizard/server.wiz_.c:42 ../test/server_wizard/server.wiz_.c:42 +msgid "This wizard will set the basic networking parameter of your server." msgstr "" -#: ../server_wizard/server.wiz_.c:39 -msgid "Gateway IP:" +#: ../server_wizard/server.wiz_.c:43 ../test/server_wizard/server.wiz_.c:43 +msgid "Warning" msgstr "" -#: ../server_wizard/server.wiz_.c:40 -msgid "" -"The hostname is the name under which your server will be known from the " -"other workstations in your network and maybe on the Internet (depending of " -"your upstream configuration)." +#: ../server_wizard/server.wiz_.c:45 ../test/server_wizard/server.wiz_.c:45 +msgid "Device:" msgstr "" -#: ../server_wizard/server.wiz_.c:41 -msgid "Host Name:" +#: ../server_wizard/server.wiz_.c:46 ../test/server_wizard/server.wiz_.c:46 +msgid "Server Address:" msgstr "" -#: ../server_wizard/server.wiz_.c:42 +#: ../server_wizard/server.wiz_.c:47 ../test/server_wizard/server.wiz_.c:47 msgid "" -"The wizard collected the following parameters needed to configure your " -"network" +"This wizard will help you configuring the basic networking services of your " +"server." msgstr "" -#: ../server_wizard/server.wiz_.c:44 +#: ../server_wizard/server.wiz_.c:49 ../test/server_wizard/server.wiz_.c:49 msgid "" "External connection is a network from which the computer is client (Internet " "or upstream network), connected using another network card or a modem." msgstr "" -#: ../server_wizard/server.wiz_.c:45 +#: ../server_wizard/server.wiz_.c:50 ../test/server_wizard/server.wiz_.c:50 msgid "" -"(you can change here these values if you know exactly what you're doing)" +"Host names must be in the form \\qhost.domain.domaintype\\q; if your server " +"will be an Internet server, the domain name should be the name registered " +"with your provider. If you will only have intranet any valid name is OK, " +"like \\qcompany.net\\q." msgstr "" -#: ../server_wizard/server.wiz_.c:46 -msgid "" -"The server IP address is a number identifing your server in your network; " -"the proposed value designed for a private network , with no internet " -"visibility, or connected using IP masquerading; unless you know what you are " -"doing, accept the default value." +#: ../server_wizard/server.wiz_.c:52 ../test/server_wizard/server.wiz_.c:52 +msgid "Host Name" msgstr "" -#: ../server_wizard/server.wiz_.c:47 -msgid "Server Name:" +#: ../server_wizard/server.wiz_.c:53 ../test/server_wizard/server.wiz_.c:53 +msgid "Network Address:" msgstr "" -#: ../server_wizard/server.wiz_.c:48 -msgid "The network address is wrong" +#: ../server_wizard/server.wiz_.c:54 ../test/server_wizard/server.wiz_.c:54 +msgid "Network Device" msgstr "" -#: ../server_wizard/server.wiz_.c:50 -msgid "Server Address" +#: ../server_wizard/server.wiz_.c:55 ../test/server_wizard/server.wiz_.c:55 +msgid "Server Name:" msgstr "" -#: ../server_wizard/server.wiz_.c:51 -msgid "" -"The wizard successfully configured the basic networking services of your " -"server." +#: ../test/time_wizard/time.wiz_.c:1 ../time_wizard/time.wiz_.c:1 +msgid "CRI, Campus d'Orsay, Universite Paris Sud, France" msgstr "" -#: ../server_wizard/server.wiz_.c:52 -msgid "Network Device" +#: ../test/time_wizard/time.wiz_.c:2 ../time_wizard/time.wiz_.c:2 +msgid "University of Manchester, Manchester, England" msgstr "" -#: ../server_wizard/server.wiz_.c:53 -msgid "IP net address:" +#: ../test/time_wizard/time.wiz_.c:3 ../time_wizard/time.wiz_.c:3 +msgid "SCI, Universite de Limoges, France" msgstr "" -#: ../server_wizard/server.wiz_.c:54 -msgid "Network Address" +#: ../test/time_wizard/time.wiz_.c:4 ../time_wizard/time.wiz_.c:4 +msgid "Canadian Meteorological Centre, Dorval, Quebec, Canada" msgstr "" -#: ../server_wizard/server.wiz_.c:55 -msgid "Server IP address:" +#: ../test/time_wizard/time.wiz_.c:5 ../time_wizard/time.wiz_.c:5 +msgid "Press next to start the time servers test." msgstr "" -#: ../time_wizard/time.wiz_.c:1 -msgid "University of Adelaide, South Australia" +#: ../test/time_wizard/time.wiz_.c:6 ../time_wizard/time.wiz_.c:6 +msgid "" +"You can try again to contact time servers, or save configuration without " +"actually setting time." msgstr "" -#: ../time_wizard/time.wiz_.c:2 -msgid "Press next to start the time servers test." +#: ../test/time_wizard/time.wiz_.c:7 ../time_wizard/time.wiz_.c:7 +msgid "(please, choose servers in your geographical area)" msgstr "" -#: ../time_wizard/time.wiz_.c:3 -msgid "Time Servers" +#: ../test/time_wizard/time.wiz_.c:8 ../time_wizard/time.wiz_.c:8 +msgid "University of Oklahoma, Norman, Oklahoma, USA" msgstr "" -#: ../time_wizard/time.wiz_.c:4 -msgid "Secondary Time Server:" +#: ../test/time_wizard/time.wiz_.c:9 ../time_wizard/time.wiz_.c:9 +msgid "University of Regina, Regina, Saskatchewan, Canada" msgstr "" -#: ../time_wizard/time.wiz_.c:5 -msgid "Thus your server will be the local time server for your network." +#: ../test/time_wizard/time.wiz_.c:10 ../time_wizard/time.wiz_.c:10 +msgid "" +"If the time server is not immediately available (network or other reason), " +"you will wait about 30 seconds." msgstr "" -#: ../time_wizard/time.wiz_.c:6 -msgid "Your server can now act as a time server for your local network." +#: ../test/time_wizard/time.wiz_.c:11 ../time_wizard/time.wiz_.c:11 +msgid "Trinity College, Dublin, Ireland" msgstr "" -#: ../time_wizard/time.wiz_.c:7 -msgid "Scientific Center in Chernogolovka, Moscow region, Russia" +#: ../test/time_wizard/time.wiz_.c:12 ../time_wizard/time.wiz_.c:12 +msgid "Singapore" msgstr "" -#: ../time_wizard/time.wiz_.c:8 -msgid "Baylor College of Medicine, Houston, Tx" +#: ../test/time_wizard/time.wiz_.c:13 ../time_wizard/time.wiz_.c:13 +msgid "Secondary Time Server:" msgstr "" -#: ../time_wizard/time.wiz_.c:9 -msgid "Choose a time zone:" +#: ../test/time_wizard/time.wiz_.c:14 ../time_wizard/time.wiz_.c:14 +msgid "Try again" msgstr "" -#: ../time_wizard/time.wiz_.c:10 -msgid "press next to begin, or cancel to leave this wizard" +#: ../test/time_wizard/time.wiz_.c:15 ../time_wizard/time.wiz_.c:15 +msgid "The Chinese University of Hong Kong" msgstr "" -#: ../time_wizard/time.wiz_.c:11 -msgid "LAAS/CNRS, Toulouse, France" +#: ../test/time_wizard/time.wiz_.c:16 ../time_wizard/time.wiz_.c:16 +msgid "UNLV College of Engineering, Las Vegas, NV" msgstr "" -#: ../time_wizard/time.wiz_.c:12 -msgid "SCI, Universite de Limoges, France" +#: ../test/time_wizard/time.wiz_.c:17 ../time_wizard/time.wiz_.c:17 +msgid "Altea (Alicante/SPAIN)" msgstr "" -#: ../time_wizard/time.wiz_.c:13 -msgid "MIT Information Systems, Cambridge, MA" +#: ../test/time_wizard/time.wiz_.c:18 ../time_wizard/time.wiz_.c:18 +msgid "National Research Council of Canada, Ottawa, Ontario, Canada" msgstr "" -#: ../time_wizard/time.wiz_.c:14 +#: ../test/time_wizard/time.wiz_.c:19 ../time_wizard/time.wiz_.c:19 msgid "Select a primary and secondary server from the list." msgstr "" -#: ../time_wizard/time.wiz_.c:15 -msgid "(please, choose servers in your geographical area)" -msgstr "" - -#: ../time_wizard/time.wiz_.c:16 -msgid "Loria, Nancy, France" +#: ../test/time_wizard/time.wiz_.c:20 ../time_wizard/time.wiz_.c:20 +msgid "CISM, Lyon, France" msgstr "" -#: ../time_wizard/time.wiz_.c:17 -msgid "Canadian Meteorological Centre, Dorval, Quebec, Canada" +#: ../test/time_wizard/time.wiz_.c:21 ../time_wizard/time.wiz_.c:21 +msgid "Inet, Inc., Seoul, Korea" msgstr "" -#: ../time_wizard/time.wiz_.c:18 -msgid "National Research Council of Canada, Ottawa, Ontario, Canada" +#: ../test/time_wizard/time.wiz_.c:22 ../time_wizard/time.wiz_.c:22 +msgid "Scientific Center in Chernogolovka, Moscow region, Russia" msgstr "" -#: ../time_wizard/time.wiz_.c:19 -msgid "University of Manchester, Manchester, England" +#: ../test/time_wizard/time.wiz_.c:23 ../time_wizard/time.wiz_.c:23 +msgid "Washington State University Tri-Cities, Richland, Wa" msgstr "" -#: ../time_wizard/time.wiz_.c:20 -msgid "- no outside network" +#: ../test/time_wizard/time.wiz_.c:24 ../time_wizard/time.wiz_.c:24 +msgid "University of Adelaide, South Australia" msgstr "" -#: ../time_wizard/time.wiz_.c:21 -msgid "" -"If the time server is not immediately available (network or other reason), " -"you will wait about 30 seconds." +#: ../test/time_wizard/time.wiz_.c:25 ../time_wizard/time.wiz_.c:25 +msgid "Time zone:" msgstr "" -#: ../time_wizard/time.wiz_.c:22 -msgid "Testing the time servers availability" +#: ../test/time_wizard/time.wiz_.c:26 ../time_wizard/time.wiz_.c:26 +msgid "The time servers are not responding. The causes could be:" msgstr "" -#: ../time_wizard/time.wiz_.c:23 -msgid "University of Oslo, Norway" +#: ../test/time_wizard/time.wiz_.c:27 ../time_wizard/time.wiz_.c:27 +msgid "CRIUC, Universite de Caen, France" msgstr "" -#: ../time_wizard/time.wiz_.c:24 -msgid "Computer Science Department, University of Wisconsin-Madison" +#: ../test/time_wizard/time.wiz_.c:28 ../time_wizard/time.wiz_.c:28 +msgid "- other reasons..." msgstr "" -#: ../time_wizard/time.wiz_.c:25 -msgid "Trinity College, Dublin, Ireland" +#: ../test/time_wizard/time.wiz_.c:29 ../time_wizard/time.wiz_.c:29 +msgid "WARNING" msgstr "" -#: ../time_wizard/time.wiz_.c:26 -msgid "University of Regina, Regina, Saskatchewan, Canada" +#: ../test/time_wizard/time.wiz_.c:30 ../time_wizard/time.wiz_.c:30 +msgid "Loria, Nancy, France" msgstr "" -#: ../time_wizard/time.wiz_.c:27 -msgid "The time servers are not responding. The causes could be:" +#: ../test/time_wizard/time.wiz_.c:31 ../time_wizard/time.wiz_.c:31 +msgid "Your server can now act as a time server for your local network." msgstr "" -#: ../time_wizard/time.wiz_.c:28 -msgid "Swiss Fed. Inst. of Technology" +#: ../test/time_wizard/time.wiz_.c:32 ../time_wizard/time.wiz_.c:32 +msgid "Fukuoka university, Fukuoka, Japan" msgstr "" -#: ../time_wizard/time.wiz_.c:29 -msgid "CRIUC, Universite de Caen, France" +#: ../test/time_wizard/time.wiz_.c:33 ../time_wizard/time.wiz_.c:33 +msgid "Time Servers" msgstr "" -#: ../time_wizard/time.wiz_.c:30 -msgid "CISM, Lyon, France" +#: ../test/time_wizard/time.wiz_.c:34 ../time_wizard/time.wiz_.c:34 +msgid "Swiss Fed. Inst. of Technology" msgstr "" -#: ../time_wizard/time.wiz_.c:31 +#: ../test/time_wizard/time.wiz_.c:35 ../time_wizard/time.wiz_.c:35 msgid "" "This wizard will help you to set the time of your server synchronized with " "an external time server." msgstr "" -#: ../time_wizard/time.wiz_.c:32 -msgid "WARNING" +#: ../test/time_wizard/time.wiz_.c:36 ../time_wizard/time.wiz_.c:36 +msgid "LAAS/CNRS, Toulouse, France" msgstr "" -#: ../time_wizard/time.wiz_.c:33 -msgid "Inet, Inc., Seoul, Korea" +#: ../test/time_wizard/time.wiz_.c:37 ../time_wizard/time.wiz_.c:37 +msgid "Testing the time servers availability" msgstr "" -#: ../time_wizard/time.wiz_.c:34 -msgid "University of Oklahoma, Norman, Oklahoma, USA" +#: ../test/time_wizard/time.wiz_.c:38 ../time_wizard/time.wiz_.c:38 +msgid "Save config without test" msgstr "" -#: ../time_wizard/time.wiz_.c:35 -msgid "The Chinese University of Hong Kong" +#: ../test/time_wizard/time.wiz_.c:40 ../time_wizard/time.wiz_.c:40 +msgid "Dept. Computer Science, Strathclyde University, Glasgow, Scotland" msgstr "" -#: ../time_wizard/time.wiz_.c:36 -msgid "- other reasons..." +#: ../test/time_wizard/time.wiz_.c:41 ../time_wizard/time.wiz_.c:41 +msgid "MIT Information Systems, Cambridge, MA" msgstr "" -#: ../time_wizard/time.wiz_.c:37 -msgid "- non existent time servers" +#: ../test/time_wizard/time.wiz_.c:42 ../time_wizard/time.wiz_.c:42 +msgid "Baylor College of Medicine, Houston, Tx" msgstr "" -#: ../time_wizard/time.wiz_.c:38 -msgid "Time zone:" +#: ../test/time_wizard/time.wiz_.c:43 ../time_wizard/time.wiz_.c:43 +msgid "Penn State University, University Park, PA" msgstr "" -#: ../time_wizard/time.wiz_.c:39 -msgid "Dept. Computer Science, Strathclyde University, Glasgow, Scotland" +#: ../test/time_wizard/time.wiz_.c:44 ../time_wizard/time.wiz_.c:44 +msgid "- non existent time servers" msgstr "" -#: ../time_wizard/time.wiz_.c:40 -msgid "" -"You can try again to contact time servers, or save configuration without " -"actually setting time." +#: ../test/time_wizard/time.wiz_.c:45 ../time_wizard/time.wiz_.c:45 +msgid "Time wizard" msgstr "" -#: ../time_wizard/time.wiz_.c:41 -msgid "Penn State University, University Park, PA" +#: ../test/time_wizard/time.wiz_.c:46 ../time_wizard/time.wiz_.c:46 +msgid "University of Oslo, Norway" msgstr "" -#: ../time_wizard/time.wiz_.c:42 -msgid "Primary Time Server:" +#: ../test/time_wizard/time.wiz_.c:47 ../time_wizard/time.wiz_.c:47 +msgid "Thus your server will be the local time server for your network." msgstr "" -#: ../time_wizard/time.wiz_.c:43 -msgid "Try again" +#: ../test/time_wizard/time.wiz_.c:48 ../time_wizard/time.wiz_.c:48 +msgid "- no outside network" msgstr "" -#: ../time_wizard/time.wiz_.c:44 -msgid "Washington State University Tri-Cities, Richland, Wa" +#: ../test/time_wizard/time.wiz_.c:49 ../time_wizard/time.wiz_.c:49 +msgid "Primary Time Server:" msgstr "" -#: ../time_wizard/time.wiz_.c:45 +#: ../test/time_wizard/time.wiz_.c:50 ../time_wizard/time.wiz_.c:50 msgid "Time server configuration saved" msgstr "" -#: ../time_wizard/time.wiz_.c:46 -msgid "CRI, Campus d'Orsay, Universite Paris Sud, France" -msgstr "" - -#: ../time_wizard/time.wiz_.c:48 -msgid "Save config without test" -msgstr "" - -#: ../time_wizard/time.wiz_.c:49 -msgid "Singapore" +#: ../test/time_wizard/time.wiz_.c:51 ../time_wizard/time.wiz_.c:51 +msgid "press next to begin, or cancel to leave this wizard" msgstr "" -#: ../time_wizard/time.wiz_.c:50 -msgid "Fukuoka university, Fukuoka, Japan" +#: ../test/time_wizard/time.wiz_.c:52 ../time_wizard/time.wiz_.c:52 +msgid "Choose a time zone:" msgstr "" -#: ../time_wizard/time.wiz_.c:51 -msgid "UNLV College of Engineering, Las Vegas, NV" +#: ../test/time_wizard/time.wiz_.c:53 ../time_wizard/time.wiz_.c:53 +msgid "Computer Science Department, University of Wisconsin-Madison" msgstr "" -#: ../time_wizard/time.wiz_.c:52 -msgid "Altea (Alicante/SPAIN)" +#: ../test/web_wizard/web.wiz_.c:2 ../web_wizard/web.wiz_.c:2 +msgid "" +"* User module : allows users to get a directory in theirs homes directories " +"available on your http server via http://www.yourserver.com/~user, you will " +"be asked for the name of this directory afterward." msgstr "" -#: ../time_wizard/time.wiz_.c:53 -msgid "Time wizard" +#: ../test/web_wizard/web.wiz_.c:3 ../web_wizard/web.wiz_.c:3 +msgid "" +"Your server can act as a Web Server toward your internal network (intranet) " +"and as a Web Server for the Internet." msgstr "" -#: ../web_wizard/web.wiz_.c:1 -msgid "user http sub-directory : ~/" +#: ../test/web_wizard/web.wiz_.c:4 ../web_wizard/web.wiz_.c:4 +msgid "Internet web server:" msgstr "" -#: ../web_wizard/web.wiz_.c:2 +#: ../test/web_wizard/web.wiz_.c:5 ../web_wizard/web.wiz_.c:5 msgid "Modules :" msgstr "" -#: ../web_wizard/web.wiz_.c:3 -msgid "Don't check any box if you don't want to activate your Web Server." +#: ../test/web_wizard/web.wiz_.c:6 ../web_wizard/web.wiz_.c:6 +msgid "user http sub-directory : ~/" msgstr "" -#: ../web_wizard/web.wiz_.c:4 -msgid "The wizard successfully configured your Intranet/Internet Web Server" +#: ../test/web_wizard/web.wiz_.c:8 ../web_wizard/web.wiz_.c:8 +msgid "Enable the Web Server for the Intranet" msgstr "" -#: ../web_wizard/web.wiz_.c:5 -msgid "user dir:" +#: ../test/web_wizard/web.wiz_.c:11 ../web_wizard/web.wiz_.c:11 +msgid "Configuring the Web Server" msgstr "" -#: ../web_wizard/web.wiz_.c:7 -msgid "" -"The wizard collected the following parameters needed to configure your Web " -"Server" +#: ../test/web_wizard/web.wiz_.c:12 ../web_wizard/web.wiz_.c:12 +msgid "Web Server" msgstr "" -#: ../web_wizard/web.wiz_.c:8 -msgid "Web wizard" +#: ../test/web_wizard/web.wiz_.c:13 ../web_wizard/web.wiz_.c:13 +msgid "Enable the Web Server for the Internet" msgstr "" -#: ../web_wizard/web.wiz_.c:11 +#: ../test/web_wizard/web.wiz_.c:14 ../web_wizard/web.wiz_.c:14 msgid "This wizard will help you configuring the Web Server for your network." msgstr "" -#: ../web_wizard/web.wiz_.c:12 -msgid "Internet web server:" +#: ../test/web_wizard/web.wiz_.c:15 ../web_wizard/web.wiz_.c:15 +msgid "Web wizard" msgstr "" -#: ../web_wizard/web.wiz_.c:13 -msgid "Enable the Web Server for the Intranet" +#: ../test/web_wizard/web.wiz_.c:16 ../web_wizard/web.wiz_.c:16 +msgid "Intranet web server:" msgstr "" -#: ../web_wizard/web.wiz_.c:14 -msgid "" -"Your server can act as a Web Server toward your internal network (intranet) " -"and as a Web Server for the Internet." +#: ../test/web_wizard/web.wiz_.c:22 ../web_wizard/web.wiz_.c:22 +msgid "activate user module" msgstr "" -#: ../web_wizard/web.wiz_.c:15 -msgid "Enable the Web Server for the Internet" +#: ../test/web_wizard/web.wiz_.c:23 ../web_wizard/web.wiz_.c:23 +msgid "Don't check any box if you don't want to activate your Web Server." msgstr "" -#: ../web_wizard/web.wiz_.c:16 +#: ../test/web_wizard/web.wiz_.c:24 ../web_wizard/web.wiz_.c:24 msgid "Select the kind of Web service you want to activate:" msgstr "" -#: ../web_wizard/web.wiz_.c:17 -msgid "document root:" -msgstr "" - -#: ../web_wizard/web.wiz_.c:19 -msgid "Intranet web server:" +#: ../test/web_wizard/web.wiz_.c:25 ../web_wizard/web.wiz_.c:25 +msgid "" +"The wizard collected the following parameters needed to configure your Web " +"Server" msgstr "" -#: ../web_wizard/web.wiz_.c:22 +#: ../test/web_wizard/web.wiz_.c:26 ../web_wizard/web.wiz_.c:26 msgid "" "Type the name of the directory users should create in theirs homes (whitout " "~/) to get it available via http://www.yourserver.com/~user" msgstr "" -#: ../web_wizard/web.wiz_.c:24 -msgid "Configuring the Web Server" -msgstr "" - -#: ../web_wizard/web.wiz_.c:25 -msgid "" -"* User module : allows users to get a directory in theirs homes directories " -"available on your http server via http://www.yourserver.com/~user, you will " -"be asked for the name of this directory afterward." +#: ../test/web_wizard/web.wiz_.c:27 ../web_wizard/web.wiz_.c:27 +msgid "The wizard successfully configured your Intranet/Internet Web Server" msgstr "" -#: ../web_wizard/web.wiz_.c:26 -msgid "Web Server" +#: ../test/web_wizard/web.wiz_.c:28 ../web_wizard/web.wiz_.c:28 +msgid "user dir:" msgstr "" -#: ../web_wizard/web.wiz_.c:27 -msgid "Web Server Configuration Wizard" +#: ../test/web_wizard/web.wiz_.c:29 ../web_wizard/web.wiz_.c:29 +msgid "Document Root:" msgstr "" -#: ../web_wizard/web.wiz_.c:29 +#: ../test/web_wizard/web.wiz_.c:30 ../web_wizard/web.wiz_.c:30 msgid "Type the path of the directory you want being the document root." msgstr "" -#: ../web_wizard/web.wiz_.c:31 -msgid "activate user module" +#: ../test/web_wizard/web.wiz_.c:31 ../web_wizard/web.wiz_.c:31 +msgid "Web Server Configuration Wizard" msgstr "" -#: ../web_wizard/web.wiz_.c:32 -msgid "Document Root:" +#: ../test/web_wizard/web.wiz_.c:32 ../web_wizard/web.wiz_.c:32 +msgid "document root:" msgstr "" msgid "Cancel" diff --git a/postfix_wizard/postfix.wiz b/postfix_wizard/postfix.wiz index 439e9b8f..22ec5918 100644 --- a/postfix_wizard/postfix.wiz +++ b/postfix_wizard/postfix.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Postfix wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/postfix_wizard/images/courrier" + defaultImage="__WIZ_HOME__/postfix_wizard/images/courrier.png" perlModule="__WIZ_HOME__/postfix_wizard/scripts/Postfixconf.pm" rpm="postfix" summaryFunc="do_it" diff --git a/proxy_wizard/proxy.wiz b/proxy_wizard/proxy.wiz index 37d7006c..09f98c4f 100644 --- a/proxy_wizard/proxy.wiz +++ b/proxy_wizard/proxy.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Squid wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/proxy_wizard/images/proxy" + defaultImage="__WIZ_HOME__/proxy_wizard/images/proxy.png" perlModule="__WIZ_HOME__/proxy_wizard/scripts/Squidconf.pm" rpm="squid" summaryFunc="do_it_squid" diff --git a/samba_wizard/samba.wiz b/samba_wizard/samba.wiz index c9432332..12b232cb 100644 --- a/samba_wizard/samba.wiz +++ b/samba_wizard/samba.wiz @@ -5,7 +5,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Samba wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/samba_wizard/images/samba" + defaultImage="__WIZ_HOME__/samba_wizard/images/samba.png" perlModule="__WIZ_HOME__/samba_wizard/scripts/Smbconf.pm" rpm="samba-server" summaryFunc="do_it" diff --git a/server_wizard/server.wiz b/server_wizard/server.wiz index 3bb8f991..33246654 100644 --- a/server_wizard/server.wiz +++ b/server_wizard/server.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Server Wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/server_wizard/images/intranet" + defaultImage="__WIZ_HOME__/server_wizard/images/intranet.png" perlModule="__WIZ_HOME__/server_wizard/scripts/Serverconf.pm" > diff --git a/time_wizard/time.wiz b/time_wizard/time.wiz index 65a3e05a..056d85a4 100644 --- a/time_wizard/time.wiz +++ b/time_wizard/time.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Time wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/time_wizard/images/Time" + defaultImage="__WIZ_HOME__/time_wizard/images/Time.png" perlModule="__WIZ_HOME__/time_wizard/scripts/NTPConf.pm" rpm="ntp" summaryFunc="do_it" diff --git a/web_wizard/web.wiz b/web_wizard/web.wiz index 1ac60e6a..0a9457db 100644 --- a/web_wizard/web.wiz +++ b/web_wizard/web.wiz @@ -6,7 +6,7 @@ libScript="__WIZ_HOME__/common/scripts/functions.sh" wizardTitle="Web wizard" imagePosition="top" - defaultImage="__WIZ_HOME__/web_wizard/images/apache" + defaultImage="__WIZ_HOME__/web_wizard/images/apache.png" perlModule="__WIZ_HOME__/web_wizard/scripts/Webconf.pm" rpm="apache" summaryFunc="do_it" -- cgit v1.2.1