summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2003-09-17 17:41:09 +0000
committerFlorent Villard <warly@mandriva.com>2003-09-17 17:41:09 +0000
commit986a271663c7f37797bec011b2ee9379e82ac4fe (patch)
treeadd300da8273c0c5dc56f0e13ac72066a80399d1
parentb5974747d1a6f7669052ddd42d4a45e4eb7072c1 (diff)
downloaddrakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar
drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.gz
drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.bz2
drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.xz
drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.zip
better check of ip addresses in dhcp
check that server has been run in client dns check that the program is run as root in drakwizard remove bad quotes in po
-rwxr-xr-xclient_wizard/Bind_client.pm25
-rwxr-xr-xdhcp_wizard/Dhcp.pm22
-rwxr-xr-xdrakwizard.pl17
-rw-r--r--drakwizard.spec6
-rwxr-xr-xftp_wizard/Proftpd.pm11
-rwxr-xr-xnews_wizard/Inn.pm13
-rw-r--r--po/ar.po34
-rw-r--r--po/az.po32
-rw-r--r--po/bg.po32
-rw-r--r--po/bs.po32
-rw-r--r--po/ca.po32
-rw-r--r--po/cs.po32
-rw-r--r--po/cy.po32
-rw-r--r--po/da.po32
-rw-r--r--po/de.po32
-rw-r--r--po/el.po32
-rw-r--r--po/eo.po34
-rw-r--r--po/es.po32
-rw-r--r--po/et.po32
-rw-r--r--po/eu.po32
-rw-r--r--po/fa.po32
-rw-r--r--po/fi.po32
-rw-r--r--po/fr.po32
-rw-r--r--po/he.po32
-rw-r--r--po/hi.po32
-rw-r--r--po/hu.po32
-rw-r--r--po/id.po32
-rw-r--r--po/is.po32
-rw-r--r--po/it.po38
-rw-r--r--po/ko.po32
-rw-r--r--po/lv.po32
-rw-r--r--po/mk.po32
-rw-r--r--po/ms.po32
-rw-r--r--po/mt.po32
-rw-r--r--po/nb.po32
-rw-r--r--po/nl.po32
-rw-r--r--po/pl.po32
-rw-r--r--po/pt.po32
-rw-r--r--po/pt_BR.po32
-rw-r--r--po/ro.po32
-rw-r--r--po/ru.po32
-rw-r--r--po/sk.po32
-rw-r--r--po/sq.po32
-rw-r--r--po/sr.po32
-rw-r--r--po/sr@Latn.po32
-rw-r--r--po/sv.po32
-rw-r--r--po/ta.po34
-rw-r--r--po/tg.po32
-rw-r--r--po/tr.po32
-rw-r--r--po/uk.po32
-rw-r--r--po/uz.po32
-rw-r--r--po/uz@Cyrl.po32
-rw-r--r--po/vi.po32
-rw-r--r--po/wa.po32
-rw-r--r--po/zh_CN.po32
-rw-r--r--po/zh_TW.po32
-rwxr-xr-xpostfix_wizard/Postfix.pm15
-rwxr-xr-xproxy_wizard/Squid.pm9
-rwxr-xr-xsamba_wizard/Samba.pm59
-rwxr-xr-xweb_wizard/Apache.pm7
60 files changed, 898 insertions, 898 deletions
diff --git a/client_wizard/Bind_client.pm b/client_wizard/Bind_client.pm
index 799d38f7..932155ca 100755
--- a/client_wizard/Bind_client.pm
+++ b/client_wizard/Bind_client.pm
@@ -38,8 +38,14 @@ my $o = {
client_ip => '',
client_name => ''
},
- needed_rpm => [ ],
- defaultimage => "$ENV{__WIZ_HOME__}client_wizard/images/DNS.png"
+ needed_rpm => [ ],
+ defaultimage => "$ENV{__WIZ_HOME__}client_wizard/images/DNS.png",
+ init => sub {
+ if (! -f "/var/named/$wiz_domain_name.db") {
+ return (0, N('You must first run the DNS server wizard'))
+ }
+ 1
+ }
};
$o->{pages} = {
@@ -62,18 +68,18 @@ $o->{pages} = {
next => 'summary'
},
dhcp_warning => {
- name => N('Warning'),
- data => [ { label => N('You are in dhcp, server may not work with your configuration.') } ],
+ name => N('Warning') . "\n\n" . N('You are in dhcp, server may not work with your configuration.'),
+ ignore => 1,
next => 'client_id'
},
system_error => {
- name => N('Error'),
- data => [ { label => N('System error, no configuration done') } ],
+ name => N('Error') . "\n\n" . N('System error, no configuration done'),
+ ignore => 1,
next => 'client_id'
},
error => {
- name => N('Error'),
- data => [ { label => N('This is not a valid address... press next to continue') } ],
+ name => N('Error') . "\n\n" . N('This is not a valid address... press next to continue'),
+ ignore => 1,
next => 'client_id'
},
summary => {
@@ -86,8 +92,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N('Congratulations'),
- data => [ { label => N('The wizard successfully added the client.') } ],
+ name => N('Congratulations') . "\n\n" . N('The wizard successfully added the client.'),
end => 1,
next => 0
},
diff --git a/dhcp_wizard/Dhcp.pm b/dhcp_wizard/Dhcp.pm
index 6aa67a38..7bf306c6 100755
--- a/dhcp_wizard/Dhcp.pm
+++ b/dhcp_wizard/Dhcp.pm
@@ -74,23 +74,23 @@ $o->{pages} = {
next => 'summary'
},
dhcp_warning => {
- name => N('Warning'),
- data => [ { label => N('You are in dhcp, server may not work with your configuration.') } ],
+ name => N('Warning') . "\n\n" . N('You are in dhcp, server may not work with your configuration.'),
+ ignore => 1,
next => 'ip_range'
},
ip_range_error => {
- name => N('Error'),
- data => [ { label => N('The IP range specified is not correct.') } ],
+ name => N('Error') . "\n\n" . N('The IP range specified is not correct.'),
+ ignore => 1,
next => 'ip_range'
},
ip_range_warning => {
- name => N('Warning'),
- data => [ { label => N('The IP range specified is not in server address range.') } ],
+ name => N('Warning') . "\n\n" . N('The IP range specified is not in server address range.'),
+ ignore => 1,
next => 'summary'
},
server_in_range => {
- name => N('Error'),
- data => [ { label => N('The IP of the server must not be in range.') } ],
+ name => N('Error') . "\n\n" . N('The IP of the server must not be in range.'),
+ ignore => 1,
next => 'ip_range'
},
summary => {
@@ -104,8 +104,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N('Congratulations'),
- data => [ { label => N('The wizard successfully configured the DHCP services of your server.') } ],
+ name => N('Congratulations') . "\n\n" . N('The wizard successfully configured the DHCP services of your server.'),
end => 1,
next => 0
},
@@ -128,8 +127,11 @@ sub compute_range2 {
}
sub check {
+ my $check_ip = sub { return 0 if ($_[0] < 0 || $_[0] > 255); 1 };
my $r1_trunc = "$1.$2.$3" if $o->{var}{ip1} =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/;
+ foreach ($1, $2, $3, $4) { $check_ip->($_) or return 'ip_range_error' }
my $r2_trunc = "$1.$2.$3" if $o->{var}{ip2} =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/;
+ foreach ($1, $2, $3, $4) { $check_ip->($_) or return 'ip_range_error' }
my $d1 = "$4" if $o->{var}{ip1} =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/;
my $d2 = "$4" if $o->{var}{ip2} =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/;
my $s_trunc = "$1.$2.$3" if $wiz_ip_server =~ /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/;
diff --git a/drakwizard.pl b/drakwizard.pl
index 05c2e9c4..72740c0a 100755
--- a/drakwizard.pl
+++ b/drakwizard.pl
@@ -76,10 +76,21 @@ sub wizard {
my $page = $o->{pages}{welcome};
$::Wizard_title = $o->{name};
$::Wizard_pix_up = $o->{defaultimage};
+ check_rpm($o->{needed_rpm}) if $o->{needed_rpm};
+ if (defined $o->{init}) {
+ my ($res, $msg) = &{$o->{init}};
+ if (!$res) {
+ $in->ask_okcancel("error", $msg);
+ exit if ! $::testing
+ }
+ }
+ print "root $> allow_user $o->{allow_user} testing $::testing\n";
+ if ($> && !$o->{allow_user} && !$::testing) {
+ $in->ask_okcancel("error", N('You need to be root to run this wizard'));
+ exit;
+ }
my $next = 'welcome';
my @steps;
- check_rpm($o->{needed_rpm}) if $o->{needed_rpm};
- defined $o->{init} and &{$o->{init}};
while (1) {
undef $::Wizard_no_previous;
undef $::Wizard_no_cancel;
@@ -107,7 +118,7 @@ sub wizard {
}
my $a = $in->ask_from($o->{name}, $page->{name}, $data2);
if ($a) {
- push @steps, $next;
+ push @steps, $next if !$page->{ignore} && $steps[$#steps] ne $next;
$next = defined $page->{post} ? $page->{post}() : 0;
defined $o->{pages}{$next} or $next = $page->{next};
} else {
diff --git a/drakwizard.spec b/drakwizard.spec
index fae2c9c4..9c08501b 100644
--- a/drakwizard.spec
+++ b/drakwizard.spec
@@ -1,5 +1,5 @@
%define name drakwizard
-%define version 2.2
+%define version 2.3
%define release 1mdk
Name: %{name}
@@ -51,6 +51,10 @@ rm -rf $RPM_BUILD_ROOT
%{perl_vendorlib}/MDK/
%changelog
+* Mon Sep 15 2003 Warly <warly@mandrakesoft.com> 2.3-1mdk
+- fix postfix bad strings
+- fix samba printer exporting
+
* Sat Sep 13 2003 Warly <warly@mandrakesoft.com> 2.2-1mdk
- fix apache config
- fix squid config
diff --git a/ftp_wizard/Proftpd.pm b/ftp_wizard/Proftpd.pm
index 70cb2f8d..0399966e 100755
--- a/ftp_wizard/Proftpd.pm
+++ b/ftp_wizard/Proftpd.pm
@@ -58,13 +58,13 @@ $o->{pages} = {
next => 'summary'
},
warning_dhcp => {
- name => N('Warning.'),
- data => [ { label => N('Warning\nYou are in dhcp, server may not work with your configuration.') } ],
+ name => N('Warning.') . "\n\n" . N('Warning\nYou are in dhcp, server may not work with your configuration.'),
+ ignore => 1,
next => 'config'
},
must_be_root => {
- name => N('Error.'),
- data => [ { label => N('Sorry, you must be root to do this...') } ],
+ name => N('Error.') . "\n\n" . N('Sorry, you must be root to do this...'),
+ ignore => 1,
next => 'config'
},
summary => {
@@ -82,8 +82,7 @@ needed to configure your FTP Server') . "\n\n" . N('To accept these values, and
next => 'end'
},
end => {
- name => N('Congratulation'),
- data => [ { label => N('The wizard successfully configured your Intranet/Internet FTP Server') } ],
+ name => N('Congratulation') . "\n\n" . N('The wizard successfully configured your Intranet/Internet FTP Server'),
end => 1,
next => 0
},
diff --git a/news_wizard/Inn.pm b/news_wizard/Inn.pm
index 5c435e5f..6f585a48 100755
--- a/news_wizard/Inn.pm
+++ b/news_wizard/Inn.pm
@@ -67,17 +67,17 @@ $o->{pages} = {
},
warning => {
name => N('Warning.'),
- data => [ { label => N('') } ],
+ ignore => 1,
next => 'summary'
},
error_in_news_server => {
- name => N('Error.'),
- data => [ { label => N('The news server name is not correct') } ],
+ name => N('Error.') . "\n\n" . N('The news server name is not correct'),
+ ignore => 1,
next => 'ask_news_server'
},
error_in_polling_time => {
- name => N('Error.'),
- data => [ { label => N('The polling period is not correct') } ],
+ name => N('Error.') . "\n\n" . N('The polling period is not correct'),
+ ignore => 1,
next => 'ask_news_freq'
},
summary => {
@@ -91,8 +91,7 @@ needed to configure your Internet News Service:') . "\n\n" . N('To accept these
next => 'end'
},
end => {
- name => N('Congratulation'),
- data => [ { label => N('The wizard successfully configured your Internet News service of your server.') } ],
+ name => N('Congratulation') . "\n\n" . N('The wizard successfully configured your Internet News service of your server.'),
end => 1,
next => 0
},
diff --git a/po/ar.po b/po/ar.po
index 18466085..12d0ee1b 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -219,7 +219,7 @@ msgstr "اضافة المستخدمين"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"لقبول هذه القيمة, و تهيئة الخادم, انقر \"تأكيد\" أو استخدم زر رجوع لتصحيح "
@@ -762,9 +762,9 @@ msgstr "اسم خادم الأخبار:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"اسم مستضيفات الإنترنت يجب أن تكون على شكل \"host.domain.domaintype\"; مثلا "
"اذا كان عنوان موفر خدمات الإنترنت هو \"provider.com\", فإسم خادم الأخبار "
@@ -907,7 +907,7 @@ msgstr "يجب أن يتم اختيار هذا مع العنوان الذي تس
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"يمكنك اختيار العنوان الذي سيظهره خادم البريد الصادر في حقول \"From:\" و "
"\"Repy-to\"."
@@ -945,9 +945,9 @@ msgstr "بوابة بريد الإنترنت"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"أسماء مستضيفات الإنترنت يجب أن تكون على شكل \"host.domain.domaintype\"; مثلاً "
"اذا كان عنوان موفر خدمة الإنترنت لديك \"provider.com\" فخادم بريد الإنترنت "
@@ -1072,8 +1072,8 @@ msgstr "منفذ البروكسي"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"يمكنك استخدام نسق رقمي مثل \"192.168.1.0/255.255.255.0\" أو نسق نصي مثل "
"\"domain.net\""
@@ -1098,7 +1098,7 @@ msgstr "تسلسل الذاكرة المخبئية"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr "يمكنك اختيار \"لا منفذ أعلى للبروكسي\" اذا لم تحتج الى هذه الميزة."
@@ -1176,10 +1176,10 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
#: ../proxy_wizard/proxy.wiz_.c:54
@@ -1377,7 +1377,7 @@ msgstr "التحكم بالدخول"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* المثال 4: اسمح فقط للمستضيفات في NIS netgroup \"foonet\", لكن امنع الدخول "
@@ -1520,7 +1520,7 @@ msgstr "معالج الخادم"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"لذا من الممكن أن يكون اسم النطاق و عنوان IP للشبكة المحلية مختلفين عن "
"الإتصال \"الخارجي\" للخادم."
@@ -1637,10 +1637,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"أسماء المستضيفات يجب أن تكون على شكل \"host.domain.domaintype\"; اذا كان "
"الخادم سيستخدم كخادم إنترنت, يجب أن يكون اسم النطاق مسجلاً مع موفر خدمة "
diff --git a/po/az.po b/po/az.po
index 742d99ef..c2123983 100644
--- a/po/az.po
+++ b/po/az.po
@@ -229,7 +229,7 @@ msgstr "İstifadəçi əlavəsi"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Bu qiyməti qəbul edip, vericinizi quraşdırmaq üçün \"Təsdiqlə\" düyməsinə ya "
@@ -803,9 +803,9 @@ msgstr "Xəbərlər Vericisi Adı:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"İnternet qovşaq dları \"qovşaq.domen.domennövü\" formasında olmalıdır. Misal "
"üçün, əgər provayderiniz \"provider.com\" isə, internet xəbər vericisi "
@@ -952,7 +952,7 @@ msgstr "Bu, gələn poçt üçün işlətdiyiniz ünvan ilə ardıcıl seçilmə
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Gedən poçtun \"Göndərən:\" və \"Cavabla\" sahələrində göstəriləcək ünvan "
"növünü seçə bilərsiniz."
@@ -989,9 +989,9 @@ msgstr "İnternet Poçt Şəbəkə Keçidi"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"İnternet qovşaq dları \"qovşaq.domen.domennövü\" formasında olmalıdır. Misal "
"üçün, əgər provayderiniz \"provider.com\" isə, internet poçt vericisi \"smtp."
@@ -1125,8 +1125,8 @@ msgstr "Vəkil Qapısı"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Həm \"192.168.1.0/255.255.255.0\" kimi ədədi format həm də \".domen.net\" "
"kimi mətn formatını işlədə bilərsiniz"
@@ -1152,7 +1152,7 @@ msgstr "Ara yaddaş iyerarxiyası"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Bu xassəyə ehtiyacınız yoxdursa \"Üst səviyə vəkil olmasın\" seçimini "
@@ -1229,7 +1229,7 @@ msgstr "Ön Yaddaş yaddaş əməliyyatları üçün ayrılan RAM miqdarıdır"
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"\"cache.domen.net\" bənzəri düzgün bir qovşaq adı və işlədiləcək vəkil "
@@ -1439,7 +1439,7 @@ msgstr "İcazə idarəsi"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Nümunə 4: yalnız \"neptun\" NIS netqrupundakı qovşaqlara icazə ver, və bir "
@@ -1586,7 +1586,7 @@ msgstr "Verici Sehirbazı"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Görünən odur ki, bu yerli şəbəkə üçün IP ünvanı və domen adı vericinin "
"\"xarici\" bağlantısından FƏRQLİDİR."
@@ -1708,10 +1708,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Qovşaq adları \"qovşaq.domen.domennövü\" formatında olmalıdır, əgər "
"vericiniz İnternet vericisi olacaqsa, domen adı provayderiniz ilə geydli "
diff --git a/po/bg.po b/po/bg.po
index 3c4bc27e..66fe00f9 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -227,7 +227,7 @@ msgstr " "
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
" \"\\, "
@@ -791,9 +791,9 @@ msgstr " :"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
" : \"host.domain.domaintype\" , "
", \"provider.com\", \"news."
@@ -938,7 +938,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -970,9 +970,9 @@ msgstr "Internet Mail Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1091,8 +1091,8 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:22
@@ -1114,7 +1114,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
@@ -1184,7 +1184,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1374,7 +1374,7 @@ msgstr ""
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1504,7 +1504,7 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1604,10 +1604,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/bs.po b/po/bs.po
index cabaffe7..4c09f42b 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -231,7 +231,7 @@ msgstr "Dodavanje korisnika"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Da prihvatite ove vrijednosti i podesite server, kliknite na \"Potvrdi\" ili "
@@ -796,9 +796,9 @@ msgstr "Ime news servera:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet imena računara moraju biti oblika \"računar.domen.tipdomene\"; na "
"primjer, ako je vaš provajder \"provajder.ba\", internet news server je "
@@ -944,7 +944,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Možete izabrati tip adrese koju će izlazna pošta prikazivati u \"From:\" i "
"\"Reply-to\" poljima."
@@ -981,9 +981,9 @@ msgstr "Internet mail gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet imena računara moraju biti oblika \"računar.domen.tipdomene\"; na "
"primjer, ako je vaš provajder \"provajder.ba\", internet mail server je "
@@ -1117,8 +1117,8 @@ msgstr "Proxy port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Možete koristiti numerički format kao što je \"192.168.1.0/255.255.255.0\" "
"ili tekstualni format kao \".domen.ba\""
@@ -1144,7 +1144,7 @@ msgstr "Hijerarhija keša"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Slobodno možete izabrati \"Nema proxija višeg nivoa\" ako vam nije potrebna "
@@ -1226,7 +1226,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Unesite kvalificirano ime računara (kao što je \"cache.domen.ba\") i port "
@@ -1435,7 +1435,7 @@ msgstr "Kontrola pristupa"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Primjer 4: dozvoli samo računare u NIS netgrupi \"foonet\", ali zabrani "
@@ -1581,7 +1581,7 @@ msgstr "Server čarobnjak"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Dakle, veoma je moguće da su ime domene i IP adresa za ovu lokalnu mrežu "
"RAZLIČITI od serverske \"vanjske\" konekcije."
@@ -1706,10 +1706,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Internet imena računara moraju biti oblika \"računar.domen.tipdomene\"; ako "
"će vaš računar biti Internet server, ime domena treba biti ono ime koje ste "
diff --git a/po/ca.po b/po/ca.po
index 30592bcb..f00ac46b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -230,7 +230,7 @@ msgstr "Afegiment d'un usuari"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Per acceptar aquest valor i configurar el servidor feu clic a \"Confirma\", "
@@ -813,9 +813,9 @@ msgstr "Nom del servidor de notcies:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Els noms de mquina d'Internet han de tenir la forma \"mquina.domini."
"tipusdedomini; per exemple, si el vostre provedor s \"provedor.com\", el "
@@ -971,7 +971,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Podeu triar el tipus d'adrea que el correu de sortida mostrar en els camps "
"\"De:\" i \"Respon a:\"."
@@ -1010,9 +1010,9 @@ msgstr "Passarella del correu d'Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Els noms de mquina d'Internet han de tenir la forma \"mquina.domini."
"tipusdedomini\";per exemple, si el vostre provedor s \"provedor.com\", el "
@@ -1151,8 +1151,8 @@ msgstr "Port del servidor intermediari"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Podeu emprar o b un format numric com \"192.168.1.0/255.255.255.0\" o b "
"un format de text com \".domini.net\""
@@ -1178,7 +1178,7 @@ msgstr "Jerarquia de la memria cau"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Podeu seleccionar \"No usar un servidor intermediari de nivell superior\" "
@@ -1262,7 +1262,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Introduu un nom de mquina vlid (com ara \"cache.domini.net\") i el port "
@@ -1474,7 +1474,7 @@ msgstr "Control d'accs"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1620,7 +1620,7 @@ msgstr "Auxiliar del servidor"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Per tant, s molt probable que el nom de domini i les adreces IP de la xarxa "
"local siguin DIFERENTS de les de la connexi \"externa\" del servidor."
@@ -1747,10 +1747,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Els noms de mquina han de tenir la forma \"nomdemquina.domini.tipusdedomini"
"\"; si el servidor ser un servidor d'Internet, el nom de domini ha d'estar "
diff --git a/po/cs.po b/po/cs.po
index b421d08e..dd215866 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -238,7 +238,7 @@ msgstr "Přidání uživatele"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Stiskem tlačítka \"Potvrdit\" přijmete tyto údaje a nastavíte váš server, "
@@ -807,9 +807,9 @@ msgstr "Server diskusních skupin:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Názvy počítačů pro Internet musí být ve tvaru \"pocitac.domena.typdomeny\"; "
"pokud se například váš poskytovatel jmenuje \"poskytovatel.cz\", pak je "
@@ -956,7 +956,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Můžete vybrat adresu, která se bude objevovat v odchozích dopisech v "
"položkách\"From:\" (odesílatel) a \"Reply-To:\" (komu poslat odpověď)."
@@ -993,9 +993,9 @@ msgstr "Brána pro poštu na Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Názvy počítačů pro Internet musí být ve tvaru \"pocitac.domena.typdomeny\"; "
"pokud se například váš poskytovatel jmenuje \"poskytovatel.cz\", pak je "
@@ -1130,8 +1130,8 @@ msgstr "Port proxy serveru"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Můžete použít buď numerický formát jako \"192.168.1.0/255.255.255.0\" nebo "
"textový formát typu \".domena.net\""
@@ -1157,7 +1157,7 @@ msgstr "Hierarchie vyrovnávací paměti"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Můžete bez starostí zvolit \"Žádný proxy server vyšší úrovně\", pokud tuto "
@@ -1240,7 +1240,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Zadejte plný název počítače (např. \"cache.domena.net\") a číslo portu proxy "
@@ -1454,7 +1454,7 @@ msgstr "Kontrola přístupu"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Příklad 4: povolení pouze počítačů v síťové skupině NIS \"foonet\", ale "
@@ -1600,7 +1600,7 @@ msgstr "Průvodce pro server"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Takže je velmi pravděpodobné, že název domény a IP adresa pro tuto lokální "
"síť jsou ODLIŠNÉ od \"externího\" připojení serveru."
@@ -1723,10 +1723,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Názvy počítačů musí být ve formátu \"pocitac.domena.typdomeny\"; pokud je "
"váš server určený pro Internet, jméno domény by mělo být jméno registrované "
diff --git a/po/cy.po b/po/cy.po
index 35eefcb8..34da10e7 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -229,7 +229,7 @@ msgstr "Ychwanegiad defnyddiwr"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"I dderbyn y gwerth hwn ac i ffurfweddu eich gwasanaethwr, cliciwch \"Iawn\" "
@@ -808,9 +808,9 @@ msgstr "Enw Gwasanaethwr Newyddion:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Rhaid i enw'r gwesteiwyr rhyngrwyd fod ar ffurf \"gwestai.parth.mathparth"
"\"; e.e. os eich darparwr yw \"darparwr.com\", fel rheol y gwasanaethwr "
@@ -961,7 +961,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Mae modd dewis y math o gyfeiriad fydd e-bost allfynd yn ei ddangos ym maes "
"\"Oddi wrth:\" a \"Ateb i\"."
@@ -998,9 +998,9 @@ msgstr "Port E-bost Rhyngrwyd"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Rhaid i enw'r gwesteiwyr rhyngrwyd fod ar ffurf \"gwesteiwr.parth.mathparth"
"\"; e.e. os eich darparwr yw \"darparwr.com\", fel rheol y gwasanaethwr e-"
@@ -1134,8 +1134,8 @@ msgstr "Porth Dirprwyol:"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Mae modd defnyddio ffurf rifol fel \"192.168.1.0/255.255.255.0\" neu un "
"testun fel \".parth.net\""
@@ -1160,7 +1160,7 @@ msgstr "Hierarchaeth storfa"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Mae modd dewis \"Dim lefel dirprwy uchel\" os nad oes angen y nodwedd hwn."
@@ -1240,7 +1240,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Rhowch enw gwesteiwr cywir (fel\"storfa.parth.net\") a porth y dirprwy i'w "
@@ -1451,7 +1451,7 @@ msgstr "Rheoli mynediad"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Esiampl 4: caniatáu dim ond gwesteiwr mewn grwp gwe NiS \"foonet\", ond "
@@ -1603,7 +1603,7 @@ msgstr "Dewin Gwasanaethwr"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Felly, mae'n bosibl fod yr enw parth a'r cyfeiriad IP ar gyfer y rhwydwaith "
"lleol yn WAHANOL i gysylltiad \"allanol\\ y gwasanaethwr."
@@ -1730,10 +1730,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Rhaid i enwau gwesteiwyr fod ar ffurf \"gwestai.parth.mathparth\"; os mai "
"gwasanaethwr Rhyngrwyd fydd eich gwasanaethwr, a dylai'r enw parth fod yr "
diff --git a/po/da.po b/po/da.po
index d00f7fbf..583b832b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -235,7 +235,7 @@ msgstr "Tilfj brugere"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"For at godtage denne vrdi og konfigurere din server skal du klikke p "
@@ -809,9 +809,9 @@ msgstr "Navn p nyhedsserver:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet-vrtsnavne skal vre p formen \"vrt.domne.domnetype\"; fx hvis "
"din udbyder er \"udbyder.dk\", er internet nyheds-serveren normalt \"news."
@@ -960,7 +960,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Du kan vlge den slags adresser som udgende epost vil vise i \"From:\" og "
"\"Reply-to\"-felterne."
@@ -997,9 +997,9 @@ msgstr "Internet epost gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet-vrtsnavne skal vre p formen \"vrt.domne.domnetype\"; fx hvis "
"din udbyder er \"udbyder.dk\", er internet epost-serveren normalt \"smtp."
@@ -1132,8 +1132,8 @@ msgstr "Proxy-port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Du kan bruge enten et numerisk format som \"192.168.1.0/255.255.255.0\" "
"eller et tekstformat som \".domain.net\""
@@ -1159,7 +1159,7 @@ msgstr "Cachehierarki"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Du kan trygt vlge \"Ingen vre niveau-proxy\" hvis du ikke behver denne "
@@ -1240,7 +1240,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Indtast kvalificeret vrtsnavn (som \"cache.domne.net\") og porten som "
@@ -1450,7 +1450,7 @@ msgstr "Adgangskontrol"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Eksempel 4: tillad kun vrter i NIS netgruppe \"foonet\", men afvis "
@@ -1596,7 +1596,7 @@ msgstr "Serverhjlper"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Det er meget sandsynligt at domnenavnet og IP-adresserne for dette lokale "
"netvrk er FORSKELLIGT fra serverens \"eksterne\" opkobling."
@@ -1722,10 +1722,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Vrtsnavn skal vre p formen \"vrt.domne.domnetype\"; hvis din server "
"skal vre en Internet-server, br domnenavnet vre navnet registreret hos "
diff --git a/po/de.po b/po/de.po
index c555fe39..7126a9e1 100644
--- a/po/de.po
+++ b/po/de.po
@@ -249,7 +249,7 @@ msgstr "Neuer Nutzer"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Wählen Sie „Bestätigen“, um die Angaben zu übernehnen oder „Zurück“, um sie "
@@ -829,9 +829,9 @@ msgstr "Name des News-Servers:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet-Hostnamen müssen in der Form \"host.domain.domaintyp\" angegeben "
"werden, ist Ihr Provider zum Beispiel \"provider.com\", heißt der Internet-"
@@ -979,7 +979,7 @@ msgstr "Dies sollte immer mit der Empfangsadresse Ihrer Mails gewählt werden."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Sie können die Art der Adresse wählen, die die ausgehende Mail im \"Von:\"- "
"und \"Antwort an\"-Feld anzeigen wird."
@@ -1018,9 +1018,9 @@ msgstr "Internet Mail Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet-Hostnamen müssen in der Form \"host.domain.domaintyp\" angegeben "
"werden, wenn Ihr Provider zum Beispiel \"provider.com\" ist, heißt der "
@@ -1155,8 +1155,8 @@ msgstr "Proxy Port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Sie können ein numerisches Format benutzen, wie \"192.168.1.0/255.255.255.0"
"\" oder ein Textformat wie \".domain.net\"."
@@ -1184,7 +1184,7 @@ msgstr "Cache-Hierarchie"
#: ../proxy_wizard/proxy.wiz_.c:29
#, fuzzy
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Sie können \"Kein Hoher-Level-Proxy\" auswählen, wenn sie dieses Feature "
@@ -1268,7 +1268,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Geben Sie den passenden Hostnamen ein ( z.B. \"cache.domain.net\") und den "
@@ -1484,7 +1484,7 @@ msgstr "Zugangskontrolle"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1625,7 +1625,7 @@ msgstr "Server Assistent"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1732,10 +1732,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Host Namen müssen in der Form \"host.domain.domaintype\" sein, wenn Ihr "
"Server ein Internet Server sein wird, dann sollte der Domain Name, der vom "
diff --git a/po/el.po b/po/el.po
index 44ca5792..a4b1c8de 100644
--- a/po/el.po
+++ b/po/el.po
@@ -233,7 +233,7 @@ msgstr "Προσθήκη χρήστη"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Για να γίνει αποδεκτή η ρύθμιση, και να ρυθμιστεί ο διακομιστής, επιλέξτε "
@@ -812,9 +812,9 @@ msgstr "Όνομα Διακομιστή Ειδήσεων:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Το όνομα κεντρικού υπολογιστή διαδικτύου πρέπει να είναι της μορφής \"host."
"domain.domaintype\" π.χ. αν ο παροχέας σας είναι ο \"provider.com\" ο "
@@ -964,7 +964,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Μπορείτε να επιλέξετε τη διεύθυνση θα εμφανίζεται στα πεδία \"Από:\" και "
"\"Απάντηση σε\"."
@@ -1003,9 +1003,9 @@ msgstr "Πύλη Αλληλογραφίας Διαδικτύου"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Τα ονόματα υπολογιστών διαδικτύου πρέπει να είναι της μορφής \"host.domain."
"domaintype\" π.χ. αν ο παροχέας σας είναι ο \"provider.com\", τότε ο "
@@ -1140,8 +1140,8 @@ msgstr "Θύρα Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Μπορείτε να κάνετε χρήση αριθμών όπως \"192.168.1.0/255.255.255.0\" ή "
"κειμένου όπως \".domain.net\""
@@ -1168,7 +1168,7 @@ msgstr "Ιεραρχία Cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Μπορείτε να επιλέξετε με ασφάλεια \"Χωρίς proxy ανωτέρου επιπέδου\" αν "
@@ -1249,7 +1249,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Εισάγετε το πλήρες όνομα (π.χ. \"cache.domain.net\") και τη θύρα του proxy "
@@ -1468,7 +1468,7 @@ msgstr "Έλεγχος Πρόσβασης"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Παράδειγμα 4: επέτρεψε μόνο τους υπόλογιστές στο NIS netgroup \"foonet"
@@ -1615,7 +1615,7 @@ msgstr "Οδηγός Διακομιστή"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Είναι πολύ πιθανό το όνομα τομέα και η ΙΡ διεύθυνση για αυτό τοπικό δίκτυο "
"να είναι ΔΙΑΦΟΡΕΤΙΚΟ από τον διακομιστή \"εξωτερικής\" σύνδεσης."
@@ -1737,10 +1737,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Τα ονόματα κεντρικών υπολογιστών πρέπει να είναι της μορφής \"host.domain."
"domaintype\", αν ο διακομιστής σας θα είναι διακομιστής του Διαδικτύου, το "
diff --git a/po/eo.po b/po/eo.po
index 6772a84a..ab2721d7 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -226,7 +226,7 @@ msgstr "Uzul-aldono"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Por akcepti tiun ĉi valoron, kaj konfiguri vian servilon, alklaku \"Confirm"
@@ -791,9 +791,9 @@ msgstr "Nomo de novaĵ-servilo:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Interretaj gastiganto-nomoj devas esti en la formo \"host.domain.domaintype"
"\"; ekz-e, se via provizisto estas \"provider.com\", la interreta novaĵ-"
@@ -938,10 +938,10 @@ msgstr "Tio ĉi estu elektita kune kun la adreso kiun vi uzas por enira poŝto."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Vi povas elekti la specon de adreso kiun eliranta poŝto montras en la kampo "
-"\\qFrom:\\q and \\qReply-to\\q (\"De:\" kaj \"Respondo-al\")."
+"\"From:\" and \"Reply-to\" (\"De:\" kaj \"Respondo-al\")."
#: ../postfix_wizard/Postfix.pm_.c:56
#, fuzzy
@@ -976,9 +976,9 @@ msgstr "Interreta poŝt-kluzo"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Interretaj gastigant-nomoj devas esti en la formo \"host.domain.domaintype"
"\"; ekz-e, se via provizanto estas \"provider.com\", la interreta poŝt-"
@@ -1112,8 +1112,8 @@ msgstr "Prokura pordo"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Vi povas uzi aŭ numeran formaton kiel \"192.168.1.0/255.255.0\" aŭ tekst-"
"formaton kiel \".domain.net\""
@@ -1139,7 +1139,7 @@ msgstr "Kaŝa hierarkio"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Vi povas sekure elekti \"No upper level proxy\" (\"Neniu superanivela prokuro"
@@ -1218,7 +1218,7 @@ msgstr "Memor-kaŝejo estas la grandeco de RAM dediĉita al la"
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Enigu la kvalifikitan gastiganto-nomon (kiel \"cache.domain.net\") kaj la "
@@ -1427,7 +1427,7 @@ msgstr "Alir-kontrolo"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Ekzemplo 4: permesu nur gastigantojn en NIS retgrupo \"foonet\", sed "
@@ -1573,7 +1573,7 @@ msgstr "Servil-sorĉilo"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Tile, estas tre verŝajne ke la domajna nomo kaj la IP-adresoj por tiu ĉi "
"loka reto estas MALSAMAJ ol la servila \"external\" konekto."
@@ -1696,10 +1696,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Gastiganto-nomoj devas esti en la formo \"host.domain.domaintype"
"\" (\"gastiganto.domajno. domajnspeco\"); se via servilo estos interret-"
diff --git a/po/es.po b/po/es.po
index 510ef2ff..f34a1160 100644
--- a/po/es.po
+++ b/po/es.po
@@ -229,7 +229,7 @@ msgstr "Aadir un usuario"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Para aceptar este valor, y configurar su servidor, haga clic sobre "
@@ -805,9 +805,9 @@ msgstr "Nombre del servidor de noticias:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Los nombres de host de Internet deben ser de la forma \"host.dominio."
"tipodedominio\"; por ejemplo, si su proveedor es \"proveedor.com\", el "
@@ -956,7 +956,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Puede seleccionar el tipo de direccin que mostar el correo saliente en los "
"campos \"De:\" y \"Responder-a\"."
@@ -993,9 +993,9 @@ msgstr "Pasarela de Correo de Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Los nombres de host de Internet deben ser de la forma \"host.dominio."
"tipodedominio\"; por ejemplo, si su proveedor es \"proveedor.com\", el "
@@ -1131,8 +1131,8 @@ msgstr "Puerto del proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Puede usar un formato numrico como \"192.168.1.0/255.255.255.0\" o un "
"formato de texto como \".dominio.net\""
@@ -1158,7 +1158,7 @@ msgstr "Jerarqua del cach"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Puede seleccionar sin problemas \"Sin proxy de nivel superior\" si no "
@@ -1240,7 +1240,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Ingrese el nombre de host calificado (como \"cache.dominio.net\") y el "
@@ -1456,7 +1456,7 @@ msgstr "Control de acceso"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Ejemplo 4: permitir slo a los hosts en el grupo NIS \"foonet\", pero "
@@ -1606,7 +1606,7 @@ msgstr "Asistente del servidor"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Entonces, es muy probable que el nombre de dominio y la direccin IP para "
"esta red local sea DIFERENTE que la de la conexin \"externa\" del servidor."
@@ -1733,10 +1733,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Los nombres de host deben ser de la forma \"host.dominio.tipodedominio\"; si "
"su servidor ser un servidor de Internet, el nombre de dominio debera ser "
diff --git a/po/et.po b/po/et.po
index 1cea1a76..3ac0684b 100644
--- a/po/et.po
+++ b/po/et.po
@@ -226,7 +226,7 @@ msgstr "Kasutaja lisamine"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Selle väärtusega nõustmiseks ja serveri seadistamiseks vajutage nupule "
@@ -787,9 +787,9 @@ msgstr "Uudisteserveri nimi:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Interneti masinanimed peavad olema kujul \"masin.domeen.domeenitüüp\". Kui "
"selleks on näiteks \"pakkuja.ee\", siis on uudisegruppide server tavaliselt "
@@ -934,7 +934,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Võite valida aadressi, mida väljuv kiri näitab väljadel \"Kellelt:\" ja "
"\"Vastus:\"."
@@ -971,9 +971,9 @@ msgstr "Meililüüs"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Interneti masinanimi peab olema kujul \"masin.domeen.domeenitüüp\". Kui "
"näiteks teenusepakkuja on \"pakkuja.ee\", siis on meiliserver tavaliselt "
@@ -1103,8 +1103,8 @@ msgstr "Vahendaja port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Kasutada võib nii numbrilist vormingut (nt \"192.168.1.0/255.255.255.0\") "
"või tekstivormingut (nt \"domeen.ee\")."
@@ -1130,7 +1130,7 @@ msgstr "Vahendaja serverite hierarhia"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Võite julgelt valida \"Ülemise taseme vahendaja puudub\", kui Te seda ei "
@@ -1212,7 +1212,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Sisestage sobilik nimi (nt \"cache.domeen.ee\") ja kasutatav vahendaja port."
@@ -1417,7 +1417,7 @@ msgstr "Ligipääsu kontroll"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Näide 4: ainult masinate lubamine, mis on NIS grupis \"foonet\", kuid ühe "
@@ -1563,7 +1563,7 @@ msgstr "Serveri nõustaja"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Nonii, on kohe päris usutav, et selle kohtvõrgu domeeninimi ja IP aadressid "
"ERINEVAD serveri \"välise\" ühenduse vastavatest parameetritest."
@@ -1683,10 +1683,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Interneti nimed peavad olema kujul \"masin.domeen.domeenitüüp\". Kui Teie "
"server on Interneti server, siis peab domeeni nimi olema Teie teenusepakkuja "
diff --git a/po/eu.po b/po/eu.po
index 0c5487b6..6e24181a 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -231,7 +231,7 @@ msgstr "Erabiltzailea gehitzeko"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Balio hauek onartu, eta zure bezeroa gehitzeko, klikatu \"Onartu\" gainean "
@@ -805,9 +805,9 @@ msgstr "Berrien Zerbitzari Izena:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet ostalari izenak \"ostalaria.domeinua.domeinumota\" erakoak izan "
"behar dira; adibidez, zure hornitzailea \"hornitzailea.com\" bada, bere "
@@ -956,7 +956,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Aukeratu dezakezu kanporantz zuzendutako postak \"Nork:\" eta \"Erantzun-honi"
"\" eremuetan erakutsiko duen helbide mota."
@@ -993,9 +993,9 @@ msgstr "Internet Posta Ataria"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet ostalari izenak \"ostalaria.domeinua.domeinumota\" erakoak izan "
"behar dira; adibidez, zure hornitzailea \"hornitzailea.com\" bada, bere "
@@ -1127,8 +1127,8 @@ msgstr "Proxy Portua"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Zenbakizko formatua, \"192.168.1.0/255.255.255.0\", edo testu formatua, \"."
"domeinua.net\", erabil dezakezu"
@@ -1154,7 +1154,7 @@ msgstr "Katxe hierarkia"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Arazorik gabe hautatu dezakezu \"Gaineko mailako proxy-rik ez\" ezaugarri "
@@ -1235,7 +1235,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Sartu erabili beharreko proxyaren ostalari-izen kualifikatua (\"cache."
@@ -1450,7 +1450,7 @@ msgstr "Sarrera Kontrola"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* 4. adibidea: baimendu bakarrik NIS saretaldeko ostalariak\"foonet\", "
@@ -1601,7 +1601,7 @@ msgstr "Zerbitzari Morroia"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Beraz, litekeena da bertako sare honentzako domeinu izena eta IP helbidea "
"zerbitzariaren \"kanpoko\" loturarekiko DESBERDINAK izatea."
@@ -1727,10 +1727,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Internet ostalari izenak \"ostalaria.domeinua.domeinumota\" erakoak izan "
"behar dira; zure zerbitzaria Interneteko zerbitzaria izango bada, domeinu "
diff --git a/po/fa.po b/po/fa.po
index 034c926f..f671f146 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -227,7 +227,7 @@ msgstr "افزایش کاربر"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"برای پذیرش این ارزش و تنظیم کارگزار بر \"تایید\" کلیک کنید، یا از تکمه برگشت "
@@ -794,9 +794,9 @@ msgstr "نام کارگزار اخبار:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"نام‌های میزبان اینترنت باید به شکل \"host.domain.domaintype\" باشد; برای "
"مثال، اگر شرکت عرضه کننده‌ی اینترنت شما \"provider.com\" باشد, کارگزار اخبار "
@@ -939,7 +939,7 @@ msgstr "این باید دائماً با نشانی که برای پست آمد
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"شما می‌توانید نوع نشانی که پست خروجی در منطقه‌های \"از:\" و \"جواب-به\" نشان "
"خواهد داد را انتخاب نمایید."
@@ -976,9 +976,9 @@ msgstr "دروازه پست اینترنت"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"نام‌های میزبان اینترنت باید به شکل \"host.domain.domaintype\" باشد; برای "
"مثال، اگر شرکت عرضه کننده‌ی اینترنت شما \"provider.com\" باشد, کارگزار پست "
@@ -1111,8 +1111,8 @@ msgstr "درگاه پراکسی"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"شما می‌توانید یا از قالب عددی مانند \"192.168.1.0/255.255.255.0\" یا یک قالب "
"متنی مانند \".domain.net\" استفاده نمایید"
@@ -1138,7 +1138,7 @@ msgstr "سلسله حافظه پنهان"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"شما می‌توانید با خیال راحت \"هیچ سطح بالاتر پراکسی\" را اگر این قابلیت را "
@@ -1218,7 +1218,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"نام میزبان معتبری (مانند \"cache.domain.net\") و درگاه پراکسی برای استفاده "
@@ -1424,7 +1424,7 @@ msgstr "کنترل دسترسی"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"مثال ۴: فقط میزبان‌های گروه شبکه NIS اجازه داده شوند \"foonet\"، ولی دسترسی "
@@ -1569,7 +1569,7 @@ msgstr "جادوگر کارگزار"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"احتمال دارد که نام دامنه و نشانی آی پی برای این شبکه محلی متفاوت از کارگزار "
"ارتباط \"خارجی\" باشد"
@@ -1687,10 +1687,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"نام‌های میزبان باید به شکل \"میزبان.دامنه.نوع‌دامنه\" باشد؛ اگر کارگزار شما یک "
"کارگزار اینترنت خواهد شد، نام دامنه بایدثبت شده‌ی با شرکت عرضه کننده‌ی اینترنت "
diff --git a/po/fi.po b/po/fi.po
index 5954e8bf..ec05d52a 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -232,7 +232,7 @@ msgstr "Käyttäjä lisäys"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Hyväksy tämä arvo, ja aseta palvelimesi painamalla \"Vahvista\" tai paina "
@@ -796,9 +796,9 @@ msgstr "Uutispalvelimen Nimi:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet Palvelin Nimet pitää olla muodossa \"palvelin.verkkoalue.aluetyyppi"
"\"; eli jos esimerkiksi palveluntarjoajasi on \"tarjoaja.fi\", niin "
@@ -943,7 +943,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Voit valita osoitemuoto joka lähtevä sähköposti näyttää kentissä: \"Keneltä "
"(From)\" ja \"Vastausosoite (Reply-to)\"."
@@ -980,9 +980,9 @@ msgstr "Internet Sähköposti Yhdyskäytävä"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet Palvelin Nimet pitää olla muodossa \"palvelin.verkkoalue.aluetyyppi"
"\"; eli jos esimerkiksi palveluntarjoajasi on \"tarjoaja.fi\", niin "
@@ -1114,8 +1114,8 @@ msgstr "Välityspalvelin portti:"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Voit määrittää joko numeerinen osoite muodossa \"192.168.1.0/255.255.255.0\" "
"tai tekstimuodossa \"verkkoalue.aluetyyppi\""
@@ -1141,7 +1141,7 @@ msgstr "Välimuisti hierarkia"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Voit turvallisesti määrittää \"Ei ylemmän tason välityspalvelinta\" jos et "
@@ -1223,7 +1223,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Syötä virallinen palvelin-nimi (muodossa \"cache.verkkoalue.aluetyyppi\") ja "
@@ -1432,7 +1432,7 @@ msgstr "Yhteyshallinta"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Esimerkki 4: hyväksy vain osoitteet ryhmässä \"foonet\" mutta kiellä "
@@ -1581,7 +1581,7 @@ msgstr "Palvelin Velho"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Joten todennäköisesti verkkoalue nimi ja IP-osoite paikallisverkolle on ERI "
"kun palvelimen \"ulkoinen\" yhteys."
@@ -1702,10 +1702,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Koneiden nimet pitää olla muodossa \"kone.verkkoalue.aluetyyppi\"; eli jos "
"palvelimesi käytetään Internet-palvelimena, niin verkkoalue-nimi pitäisi "
diff --git a/po/fr.po b/po/fr.po
index aa93bb27..2b2d3d9f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -235,7 +235,7 @@ msgstr "Ajout d'utilisateur"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Pour accepter ces valeurs et configurer le serveur, cliquez sur "
@@ -814,9 +814,9 @@ msgstr "Nom du serveur de forums:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Les noms d'htes Internet doivent tre de la forme \"hte.domaine.typedomaine"
"\"; par exemple, si votre fournisseur est \"fournisseur.fr\", le serveur de "
@@ -966,7 +966,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Vous pouvez slectionner le format d'adresse que les messages sortants vont "
"avoir dans les champs From: et Reply-to."
@@ -1003,9 +1003,9 @@ msgstr "Passerelle Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Les noms d'htes Internet doivent tre de la forme \"hte.domaine.typedomaine"
"\"; par exemple, si votre fournisseur est \"fournisseur.fr\", le serveur de "
@@ -1139,8 +1139,8 @@ msgstr "Port du proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Vous pouvez utiliser soit un format numrique comme "
"192.168.1.0/255.255.255.0 ou un format texte comme .domaine.net"
@@ -1167,7 +1167,7 @@ msgstr "Hirarchie des caches"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Vous pouvez choisir l'option Pas de cache de niveau suprieur si vous "
@@ -1250,7 +1250,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Entrez le nom complet (format: cache.domaine.net) et le port du serveur "
@@ -1468,7 +1468,7 @@ msgstr "Contrle d'accs"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Exemple 4 : autoriser seulement les htes dans un groupe NIS \"foonet\", "
@@ -1618,7 +1618,7 @@ msgstr "Assistant Serveur"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Il est trs probable que les noms de domaine et adresses IP pour ce rseau "
"soient DIFFERENTS de ceux de la connexion externe du serveur."
@@ -1745,10 +1745,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Le host name doit tre de la forme host.domaine.domaintype; Si votre "
"serveur doit tre visible depuis Internet, le domaine doit tre le nom de "
diff --git a/po/he.po b/po/he.po
index f2e2810a..4760ef27 100644
--- a/po/he.po
+++ b/po/he.po
@@ -218,7 +218,7 @@ msgstr "הוספת משתמש"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"לאישור ערך זה, ולהגדרת השרת, נא לבחור 'אישור' או לבחור 'חזור' על-מנת לשנותם."
@@ -761,9 +761,9 @@ msgstr "שם שרת קבוצות הדיון:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"כתובות אינטרנט צריכות להיות בצורה \"host.domain.domaintype\"; לדוגמה, אם "
"הספק שלך הוא \"provider.com\", אזי שם שרת קבוצות הדיון יהיה בדרך-כלל \"news."
@@ -906,7 +906,7 @@ msgstr "יש לבחור זאת באופן עקבי עם הכתובת המשמש
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"יש באפשרותך לבחור את סוג הכתובות שייראו בדואר יוצא בשדה ה\"מאת:\" ובשדה ה"
"\"כתובת לתשובה\"."
@@ -942,9 +942,9 @@ msgstr "שרת דואר אינטרנט"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"כתובות אינטרנט צריכות להיות בצורה \"host.domain.domaintype\"; לדוגמה, אם "
"הספק שלך הוא \"provider.com\", אזי שם שרת הדואר האינטרנטי יהיה בדרך-כלל "
@@ -1068,8 +1068,8 @@ msgstr "ממשק המתווך (Proxy Port)"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"יש באפשרותך להשתמש במבנה מספרי כגון \"192.168.1.0/255.255.255.0\" או במבנה "
"טקסטואלי כגון \".domain.net\""
@@ -1093,7 +1093,7 @@ msgstr "הירארכיית המטמון"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"יש באפשרותך לבחור בבטחה \"ללא מתווך ברמה עליונה\" אם אין לך צורך בתכונה זו."
@@ -1170,7 +1170,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"נא להגדיר את שם השרת המארח (כגון \"cache.domain.net\") והממשק בהם המתווך "
@@ -1371,7 +1371,7 @@ msgstr "בקרת גישה"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"דוגמה 4: אפשור תחנות בקבוצת רשת ה-NIS \"foonet\", אולם מניעת גישה מתחנה "
@@ -1514,7 +1514,7 @@ msgstr "אשף שרת"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"כך שייתכן ושם מרחב הכתובות (domain) וכתובות ה-IP עבור רשת מקומית זו שונים "
"מחיבור השרת ה\"חיצוני\"."
@@ -1629,10 +1629,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"כתובת האינטרנט של השרת צריכה להיות בתבנית \"host.domain.domaintype\"; אם "
"השרת יתפקד כשרת אינטרנט, כתובת האינטרנט צריכה להיות זו הרשומה אצל הספק שלך. "
diff --git a/po/hi.po b/po/hi.po
index 6a7759c6..2470270b 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -228,7 +228,7 @@ msgstr "उपयोगकर्ता जुड़ाव"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"इस मूल्य को स्वीकार करने के लिए, और अपने सर्वर को संरचित करने के लिए, \"सुनिश्चित\" पर "
@@ -790,9 +790,9 @@ msgstr "समाचार सर्वर का नाम:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"इन्टर होस्टों के नाम \"होस्ट.डोमेन.डोमेनकाप्रकार\" की भांति होना चाहिए;उदाहरण के बतौर, "
"यदि आपका प्रदानकर्ता \"प्रदानकर्ता.कॉम\" है, तो इन्टरनेट समाचार सर्वर सामान्यता "
@@ -938,7 +938,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"आप पते का प्रकार का चयन कर सकते है जिसे बर्हिगमन विपत्र \"द्वारा:\" और \"को-उत्तर\" "
"प्रविष्टियों में दिखायेगी।"
@@ -977,9 +977,9 @@ msgstr "इन्टरनेट विपत्र द्वार"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"इन्टर होस्टों के नाम \"होस्ट.डोमेन.डोमेनकाप्रकार\" की भांति होना चाहिए;उदाहरण के बतौर, "
"यदि आपका प्रदानकर्ता \"प्रदानकर्ता.कॉम\" है, तो इन्टरनेट विपत्र सर्वर सामान्यता "
@@ -1111,8 +1111,8 @@ msgstr "प्रोक्सी पोर्ट"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"आप, या तो \"१९२.१६८.१.०/२५५.२५५.२५५.०\" जैसा एक अंकीय संरूप या \".डोमेन.नेट\" जैसे "
"एक पाठ्य संरूप का उपयोग कर सकते है"
@@ -1138,7 +1138,7 @@ msgstr "कैश पदानुक्रम"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"आप सुरक्षा-पूर्वक \"कोई उच्च स्तर प्रोक्सी नहीं\" का चयन कर सकते है यदि आपको इसलक्षण की "
@@ -1219,7 +1219,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"योग्य होस्ट का नाम (उदाहरण के लिए \"कैश.डोमेन.नेट\") और प्रोक्सी के जिस पोर्ट का उपयोग "
@@ -1423,7 +1423,7 @@ msgstr "पहूँच नियंत्रण"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* उदाहरण ४: एनआईएस नेटसमूह में सिर्फ़ होस्टों को अनुमति \"फ़ूनेट\", परन्तु एक विशेष होस्ट "
@@ -1569,7 +1569,7 @@ msgstr "सर्वर जादूगरी"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"ऐसा है, इसकी अति सम्भाव्य है कि डोमेन का नाम और आईपी पते इस स्थानीय नेटवर्क के लिए"
"\"बाह्य\" सर्वर संबध से भिन्न है।"
@@ -1688,10 +1688,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"होस्ट नामों को \"होस्ट.डोमेन.डोमेनकाप्रकार\" के प्रारूप में होना चाहिए;यदि आपका सर्वर एक "
"इन्टरनेट सर्वर होगा, तो डोमेन का नाम, आपके प्रदानदाता के साथपजींकृत नाम होना चाहिए। "
diff --git a/po/hu.po b/po/hu.po
index 1aeca0ef..babd0c47 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -238,7 +238,7 @@ msgstr "Felhasznl felvtele"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Az rtk elfogadshoz s a kiszolgl belltshoz nyomja le a "
@@ -822,9 +822,9 @@ msgstr "Hrkiszolgl-nv:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Az internetes gpneveknek a kvetkez formjnak kell lenni: \"gpnv."
"tartomny.tartomnytpus\"; pldul, ha a szolgltat cme \"szolgltat.com"
@@ -973,7 +973,7 @@ msgstr "Ez a bejv levelekhez hasznlt cmnek megfelelen vlasztand ki."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Kivlaszthatja, milyen fajta cm jelenjen meg a kimen levelek \"Felad"
"\" (\"From\") s \"Vlaszcm\" (\"Reply-to\") meziben."
@@ -1011,9 +1011,9 @@ msgstr "Internetes leveleztjr"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Az internetes gpneveknek a kvetkez formjnak kell lenni: \"gpnv."
"tartomny.tartomnytpus\"; pldul, ha a szolgltat cme \"szolgltat.com"
@@ -1149,8 +1149,8 @@ msgstr "Proxy-port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Hasznlhat numerikus formtumot (plda: \"192.168.1.0/255.255.255.0\") vagy "
"szvegest (plda: \".tartomny.net\")"
@@ -1177,7 +1177,7 @@ msgstr "Gyorstr-hierarchia"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Ha nincs szksge erre a funkcira, vlassza a \"Nincs felsbb szint proxy"
@@ -1258,7 +1258,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Adja meg a felhasznland gpnevet (plda: \"cache.tartomny.net\") s proxy-"
@@ -1476,7 +1476,7 @@ msgstr "Hozzfrskezels"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* 4. plda: csak a \"foonet\" nev NIS csoportban lev gpek engedlyezse "
@@ -1623,7 +1623,7 @@ msgstr "Kiszolglvarzsl"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Valszn, hogy a helyi hlzat tartomnyneve s IP-cmei klnbznek a "
"kiszolgl \"kls\" kapcsolatnak megfelel adataitl."
@@ -1750,10 +1750,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"A gpneveknek a kvetkez formtumnak kell lennik: \"gp.tartomny."
"tartomnytpus\". Ha a szerver egy internetes kiszolgl lesz, akkor a "
diff --git a/po/id.po b/po/id.po
index 4aa89cfb..1967d1bf 100644
--- a/po/id.po
+++ b/po/id.po
@@ -219,7 +219,7 @@ msgstr "Penambahan pengguna"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Klik \"Konfirmasi\" utk menerima nilai ini dan mengkonfigurasikan server, "
@@ -764,9 +764,9 @@ msgstr "Nama Server Berita:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Nama host Internet harus dalam bentuk \"host.domain.tipedomain\"; misalnya "
"jika provider Anda \"provider.com\", server berita internet biasanya \"news."
@@ -909,7 +909,7 @@ msgstr "Ini harus dipilih konsisten dg alamat yg Anda pakai utk mail masuk."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Anda dapat memilih jenis alamat yg tampak di kolom \"From:\" dan \"Reply-to"
"\" mail keluar."
@@ -947,9 +947,9 @@ msgstr "Gateway Mail Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Nama host internet harus dalam bentuk \"host.domain.tipedomain\"; misalnya "
"jika provider Anda \"provider.com\", server mail internet biasanya \"smtp."
@@ -1075,8 +1075,8 @@ msgstr "Port Proksi"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Anda dapat memakai format numerik seperti \"192.168.1.0/255.255.255.0\" atau "
"teks seperti \".domain.net\""
@@ -1101,7 +1101,7 @@ msgstr "Hirarki cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Anda dapat memilih \"Tanpa proksi tingkat atas\" jika tak perlu fitur ini."
@@ -1180,7 +1180,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Masukkan nama host resmi (misalnya \"cache.domain.net\") dan port proksi."
@@ -1383,7 +1383,7 @@ msgstr "Kontrol akses"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Contoh 4: izinkan hanya host di grupnet NIS \"foonet\", tapi tolak akses "
@@ -1527,7 +1527,7 @@ msgstr "Dukun Server"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Jadi amat mungkin nama domain dan alamat IP jaringan lokal ini BERBEDA dg "
"koneksi \"eksternal\" server."
@@ -1644,10 +1644,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Nama host harus berbentuk \"host.domain.tipedomain\"; jika server Anda jadi "
"server Internet, nama domain harus tercatat di provider Anda. Jika Anda "
diff --git a/po/is.po b/po/is.po
index 634ccc86..3ae44bcb 100644
--- a/po/is.po
+++ b/po/is.po
@@ -208,7 +208,7 @@ msgstr ""
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
@@ -717,9 +717,9 @@ msgstr ""
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
#: ../news_wizard/news.wiz_.c:22
@@ -855,7 +855,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -887,9 +887,9 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1007,8 +1007,8 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:22
@@ -1030,7 +1030,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
@@ -1100,7 +1100,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1289,7 +1289,7 @@ msgstr ""
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1419,7 +1419,7 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1519,10 +1519,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/it.po b/po/it.po
index 625fe2ea..4860505e 100644
--- a/po/it.po
+++ b/po/it.po
@@ -236,7 +236,7 @@ msgstr "Aggiungi un utente"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Fai clic su \"Conferma\" per accettare il valore e configurare cos "
@@ -811,9 +811,9 @@ msgstr "Nome del server di news:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"I nomi di host di Internet possono essere nella forma \"host.domino."
"tipodominio\"; ad esempio, se il tuo provider \"provider.com\", il server "
@@ -959,7 +959,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Indica il tipo di indirizzo che mostrer la posta in uscita nei campi \"From:"
"\" e \"Reply\"."
@@ -998,9 +998,9 @@ msgstr "Gateway di posta per Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"\"I nomi di host di Internet devono essere nella forma \"host.domino."
"tipodominio\"; per esempio, se il tuo provider \"provider.com\", il server "
@@ -1135,8 +1135,8 @@ msgstr "Porta proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"E' possibile usare un formato numerico come \"192.168.1.0/255.255.255.0\" o "
"un formato testuale come \".dominio.net\""
@@ -1162,7 +1162,7 @@ msgstr "Gerarchia di cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Puoi selezionare tranquillamente \"Nessun proxy di livello superiore\" se "
@@ -1244,7 +1244,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Inserisci il nome host qualificato (come \"cache.dominio.net\") e la porta "
@@ -1457,7 +1457,7 @@ msgstr "Cointrollo di accesso"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Esempio 4: permetti l'accesso solo agli host del gruppo NIS \"foonet\", ma "
@@ -1606,7 +1606,7 @@ msgstr "Configurazione di base del server"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"E' molto probabile che il nome di dominio e l'indirizzo IP della rete locale "
"siano DIVERSI da quelli per la connessione \"esterna\" del server."
@@ -1730,10 +1730,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"I nomi host devono essere espressi nel formato \"host.dominio.tipodominio\"; "
"se si tratta di un server per Internet, il nome del dominio deve essere "
@@ -2535,15 +2535,15 @@ msgstr "Wizard di configurazione del server web"
#~ msgstr "con la configurazione WEB"
#~ msgid ""
-#~ "example, if your provider is \\qprovider.com\\q, the internet news server"
+#~ "example, if your provider is \"provider.com\", the internet news server"
#~ msgstr "esempio, se il provider e' \"provider.com\", il server di news"
#~ msgid ""
-#~ "example, if your provider is \\qprovider.com\\q, the internet mail server"
+#~ "example, if your provider is \"provider.com\", the internet mail server"
#~ msgstr "esempio, se il provider \"provider.com\", il nome del mail server"
#~ msgid ""
-#~ "Host names must be in the form \\qhost.domain.domaintype\\q; if your "
+#~ "Host names must be in the form \"host.domain.domaintype\"; if your "
#~ "server"
#~ msgstr ""
#~ "Gli host names sono nella forma \"host.domain.domaintype\"; se il server"
diff --git a/po/ko.po b/po/ko.po
index f77914f3..56684e9a 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -225,7 +225,7 @@ msgstr " ߰"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
" ϰ Ϸ, [Ȯ] , ٽ Ϸ, [ڷ]"
@@ -775,9 +775,9 @@ msgstr " ̸:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"ͳ ȣƮ \"ȣƮ..\" ¿ մϴ; "
" ڰ \"korea.com\"̶, ͳ Ϲ \"news.korea."
@@ -924,7 +924,7 @@ msgstr "̰ ޴ Ͽ ּҿ ϰ ְ õǾ մϴ."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -958,9 +958,9 @@ msgstr "ͳ Ʈ"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"ͳ ȣƮ \"ȣƮ..\" ¿ մϴ; "
" ڰ \"korea.com\"̶, ͳ Ϲ \"smtp.korea."
@@ -1086,8 +1086,8 @@ msgstr " Ʈ"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"\"192.168.1.0/255.255.255.0\" ǥ̳, \".domain.ne\" "
" ǥ ֽϴ."
@@ -1111,7 +1111,7 @@ msgstr "ij "
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
" Ư ʿġ ʴٸ, ϰ \" \" ֽ"
@@ -1189,7 +1189,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"(\"ij..net\" ) ȣƮ Ʈ Էϼ"
@@ -1387,7 +1387,7 @@ msgstr "׼ "
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1523,7 +1523,7 @@ msgstr " "
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1623,10 +1623,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"ͳ ȣƮ \"ȣƮ..\" ¿ մϴ; "
"ͳ Ƿ, ü ϵ ̸ ־ մϴ. "
diff --git a/po/lv.po b/po/lv.po
index f3fd6e41..cdc089df 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -224,7 +224,7 @@ msgstr "Lietotja pievienoana"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
@@ -762,9 +762,9 @@ msgstr "News servera nosaukums:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
#: ../news_wizard/news.wiz_.c:22
@@ -906,7 +906,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -939,9 +939,9 @@ msgstr "Interneta pasta vrteja"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1071,8 +1071,8 @@ msgstr "Proxy ports"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Js varat lietot vai nu ciparu formtu, k \"192.168.1.0/255.255.255.0\", "
"vai teksta formtu, k \".domain.net\""
@@ -1096,7 +1096,7 @@ msgstr "Kea hierarhija"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Js varat droi izvlties \"Nav augj lmea proxy\", ja jums nav "
@@ -1175,7 +1175,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1369,7 +1369,7 @@ msgstr "Pieejas kontrole"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1504,7 +1504,7 @@ msgstr "Servera meistars"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1610,10 +1610,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/mk.po b/po/mk.po
index 8ab01aeb..4afd33ae 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -234,7 +234,7 @@ msgstr "Додавање корисник"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"За да ја прифатите овие вредности, и да го конфигурирате Вашиот сервер, "
@@ -808,9 +808,9 @@ msgstr "Име на News сервер:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Имињата мора да бидат од облик \"host.domain.domaintype\"; на пример, ако "
"Вашиот провајдер е \"provider.com\", News серверот обично е \"news.provider."
@@ -959,7 +959,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Можете да го изберете видот на адреса што ќе биде прикажана во заминувачката "
"пошта, во \"From:\" и \"Reply-to\" полињата."
@@ -998,9 +998,9 @@ msgstr "Интернет мејл gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Интернет хост-имињата мора да бидат од форма \"host.domain.domaintype\"; на "
"пример, ако Вашиот провајдер е \"provider.com\", интернет мејл серверот "
@@ -1135,8 +1135,8 @@ msgstr "Proxy порта"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Можете да користите и нумерички формат (како \"192.168.1.0/255.255.255.0\") "
"и текстуален формат (\".domain.net\")"
@@ -1162,7 +1162,7 @@ msgstr "Кеш хиерархија"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Слободно можете да изберете \"Без прокси од повисоко ниво\" ако не Ви треба "
@@ -1244,7 +1244,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Внесете го постоечкото име (на пример \"cache.domain.net\") и портата на "
@@ -1454,7 +1454,7 @@ msgstr "Контрола на пристап"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Пример 4: пушти ги само компјутерите во NIS netgroup \"foonet\", а не "
@@ -1605,7 +1605,7 @@ msgstr "Серверска самовила"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Значи, најверојатно, името на домен и IP адресите за оваа локална мрежа се "
"РАЗЛИЧНИ од серверската \"надворешната\" конекција."
@@ -1731,10 +1731,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Имињата на хостови мора да се од облик \"host.domain.domaintype\"; ако "
"Вашиот сервер треба да биде Интернет сервер, името на домен треба да е име "
diff --git a/po/ms.po b/po/ms.po
index 2345273a..d169509f 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -224,7 +224,7 @@ msgstr "Pengguna"
#: ../db_wizard/db.wiz_.c:2
#, fuzzy
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr "Kepada terima dan on Undur."
@@ -798,9 +798,9 @@ msgstr "Berita Pelayan Nama:"
#: ../news_wizard/news.wiz_.c:20
#, fuzzy
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr "Internet dalam."
#: ../news_wizard/news.wiz_.c:22
@@ -951,7 +951,7 @@ msgstr "masukan."
#, fuzzy
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr "keluaran dalam dan."
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -988,9 +988,9 @@ msgstr "Internet Mel"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
#, fuzzy
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr "Internet dalam."
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1122,8 +1122,8 @@ msgstr "Proksi"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:22
@@ -1146,7 +1146,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
@@ -1224,7 +1224,7 @@ msgstr "Memori."
#: ../proxy_wizard/proxy.wiz_.c:52
#, fuzzy
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr "Enter dan."
@@ -1435,7 +1435,7 @@ msgstr ""
#: ../samba_wizard/samba.wiz_.c:51
#, fuzzy
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr "hos dalam NIS"
@@ -1587,7 +1587,7 @@ msgstr "Pelayan"
#, fuzzy
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr "dan IP lokal."
#: ../server_wizard/server.wiz_.c:28
@@ -1698,10 +1698,10 @@ msgstr "Luaran Internet."
#: ../server_wizard/server.wiz_.c:50
#, fuzzy
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr "Hos dalam Internet OK."
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/mt.po b/po/mt.po
index 34cf2724..15b3c7a3 100644
--- a/po/mt.po
+++ b/po/mt.po
@@ -234,7 +234,7 @@ msgstr "Żieda ta' user"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Biex taċċetta dan il-valur u tikkonfigura s-server, klikkja \"Ikkonferma\" "
@@ -803,9 +803,9 @@ msgstr "Isem is-server \"news\":"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Ismijiet tal-kompjuters fuq l-internet iridu jkollhom il-forma \"kompjuter."
"dominju.tld\"; per eżempju jekk l-ISP huwa \"ditta.net.mt\", is-server tal-"
@@ -952,7 +952,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Tista' tagħżel it-tip ta' indirizz li jidher fil-messaġġi ħerġin taħt "
"\"Mingħand\" u \"Risposti lil\""
@@ -989,9 +989,9 @@ msgstr "Gateway tal-imejl tal-internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Ismijiet tal-kompjuters fuq l-internet iridu jkollhom il-forma \"kompjuter."
"dominju.tld\"; per eżempju jekk l-ISP huwa \"ditta.net.mt\", is-server tal-"
@@ -1126,8 +1126,8 @@ msgstr "Port tal-proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Tista' tuża format numeriku bħal \"192.168.1.0/255.255.255.0\" inkella "
"format testwali bħal \".dominju.net\""
@@ -1153,7 +1153,7 @@ msgstr "Ġerarkija tal-cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Tista' tagħżel \"Ebda livell ewlieni proxy\" jekk m'għandekx bżonn din il-"
@@ -1234,7 +1234,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Daħħal isem sħiħ (eż. \"cache.dominju.net\") u l-port tal-proxy li trid tuża."
@@ -1443,7 +1443,7 @@ msgstr "Kontroll tal-aċċess"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Eżempju 4: ippermetti biss kompjuters fil-grupp NIS \"foonet\", imma iċħad "
@@ -1588,7 +1588,7 @@ msgstr "Saħħar tas-server"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Għalhekk, huwa probabbli li l-isem tad-dominju u l-indirizz IP għan-network "
"lokali huma DIFFERENTI mill-konnessjoni \"esterna\" tas-server."
@@ -1713,10 +1713,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Ismijiet ta' kompjuters iridu jkollhom il-forma \"kompjuter.dominju.tld\"; "
"Jekk is-server se jkun server għall-internet, l-isem tad-dominju irid ikun "
diff --git a/po/nb.po b/po/nb.po
index 5d300f76..b9693f5f 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -235,7 +235,7 @@ msgstr "Tilfye bruker"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"For godta denne verdien og konfigurere tjeneren din klikk p on \"Bekreft"
@@ -806,9 +806,9 @@ msgstr "News tjener navn:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internett vertsnavn m vre i formen \"host.domain.domaintype\"; f.eks., "
"hvis tilbyderen din er \"provider.com\", er internett news tjeneren "
@@ -957,7 +957,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Du kan velge adressene som utgende epost vil vise i \"From:\" og \"Reply-to"
"\" feltene."
@@ -994,9 +994,9 @@ msgstr "Internett epost gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internett vertsnavn m vre i formen \"host.domain.domaintype\"; f.eks., "
"hvis din tilbyder er \"provider.com\", er internett epost tjeneren vanligvis "
@@ -1130,8 +1130,8 @@ msgstr "Proxy port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Du kan bruke enten et nummerisk format som \"192.168.1.0/255.255.255.0\" "
"eller et tekstformat som \".domain.net\""
@@ -1157,7 +1157,7 @@ msgstr "Cache hiarki"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Du kan trygt velge \"Intet vre niv proxy\" hvis du ikke behver denne "
@@ -1237,7 +1237,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Fyll inn kvalifisert vertsnavn (som \"cache.domain.net\") og porten som "
@@ -1448,7 +1448,7 @@ msgstr "Tilgangskontroll"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Eksempel 4: tillat kun verter i NIS nettgruppe \"foonet\", men nekt "
@@ -1593,7 +1593,7 @@ msgstr "Tjenerhjelper"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Det er veldig sannsynlig at domenenavnet og IP-adressene for dette lokale "
"nettverket er FORSKJELLIG fra tjenerens \"eksterne\" tilkobling."
@@ -1719,10 +1719,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Vertsnavn m vre i formen \"host.domain.domaintype\"; hvis tjeneren din "
"skal vre en Internett tjener, domenenavnet br vre navnet registrert hos "
diff --git a/po/nl.po b/po/nl.po
index b14a742f..46831330 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -234,7 +234,7 @@ msgstr "Gebruikerstoevoeging"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Om deze gegevens over te nemen en de server in te stellen, klikt u op "
@@ -812,9 +812,9 @@ msgstr "Newsservernaam:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet computernamen moeten de vorm van bijvoorbeeld \"server.domein."
"domeintype\" hebben; als uw provider bijvoorbeeld \"provider.nl\" heet, dan "
@@ -964,7 +964,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"U kunt kiezen welk adres de uitgaande mail zal aangeven in het \"From:\" en "
"\"Reply-to\" veld."
@@ -1001,9 +1001,9 @@ msgstr "Internet mail gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet computernamen moeten in de vorm \"server.domein.domeintype\" worden "
"opgegeven; als uw provider bijvoorbeeld \"provider.nl\" is, is de internet "
@@ -1138,8 +1138,8 @@ msgstr "Proxy poort"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"U kunt een numeriek format kiezen, als \"192.168.1.0/255.255.255.0\" of een "
"tekst format zoals \"domein.net\""
@@ -1165,7 +1165,7 @@ msgstr "Cache hiërarchie"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"U kunt gerust \"Geen hoger niveau proxy instellen\" kiezen, wanneer u dit "
@@ -1246,7 +1246,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Geef de servernaam op (in de vorm \"cache.domein.net\") en de poort die de "
@@ -1460,7 +1460,7 @@ msgstr "Toegangscontrole"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Voorbeeld 4: alleen computers in de NIS werkgroep \"nepnet\" toestaan, "
@@ -1609,7 +1609,7 @@ msgstr "Server wizard"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Het is zeer waarschijnlijk dat de domeinnaam en het IP adres voor dit lokale "
"netwerk ANDERS zijn dan die voor de \"externe\" server verbinding."
@@ -1735,10 +1735,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Computernamen moeten de vorm \"computernaam.domein.domeintype\" hebben; als "
"uw server een internet server is, moet de domeinnaam geregistreerd zijn bij "
diff --git a/po/pl.po b/po/pl.po
index 5188a047..331da8e0 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -226,7 +226,7 @@ msgstr "Dodawanie użytkownika"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Aby zaakceptować tą wartość i skonfigurować serwer, kliknij \"Zatwierdź\" "
@@ -789,9 +789,9 @@ msgstr "Nazwa serwera grup dysk.:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internetowe nazwy komputerów muszą mieć postać \"komputer.domena.typdomeny"
"\"; na przykład, jeśli twój dostawca to \"dostawca.com\", serwer grup "
@@ -940,7 +940,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Można wybrać rodzaj adresu wyświetlanego do poczty przychodzącej w polu \"Od:"
"\" i \"Odpowiedz do:\"."
@@ -977,9 +977,9 @@ msgstr "Bramka poczty internetowej"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internetowe nazwy komputera muszą mieć postać \"komputer.domena.typdomeny\"; "
"dla przykładu, jeśli twój dostawca to \"dostawca.com\", serwer poczty "
@@ -1112,8 +1112,8 @@ msgstr "Port pośrednika"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Można użyć zarówno formatu numerycznego jak \"192.168.1.0/255.255.255.0\" "
"lub formatu tekstowego jak \"domena.net\""
@@ -1139,7 +1139,7 @@ msgstr "Hierarchia Cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Można bezpiecznie wybrać \"Brak pośrednika górnego poziomu\" jeśli nie "
@@ -1222,7 +1222,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Podaj poprawną nazwę komputera (jak \\cache.domena.net\") oraz port "
@@ -1433,7 +1433,7 @@ msgstr "Kontrola dostępu"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Przykład 4: zezwolenie tylko komputerom w grupie sieiowej NIS \"foonet\" "
@@ -1578,7 +1578,7 @@ msgstr "Druid serwera"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Jest bardzo prawdopodobne, że nazwa domeny i adres IP dla tej sieci lokalnej "
"są INNE niż \"zewnętrzne\" połączenie serwera."
@@ -1700,10 +1700,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Nazwy komputerów muszą mieć postać \"komputer.domena.typdomeny\"; jeśli twój "
"serwer będzie serwerem internetowym, nazwa domeny powinna być nazwą "
diff --git a/po/pt.po b/po/pt.po
index 1db7e6a4..82dbd857 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -233,7 +233,7 @@ msgstr "Adicionar utilizador"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Para aceitar estes valores, e configurar o seu servidor, carregue em "
@@ -811,9 +811,9 @@ msgstr "Nome do Servidor de Forums :"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Os nomes de anfitrião Internet devem ser na forma \"anfitriao.dominio."
"tipodedominio\"; por exemplo, se o seu fornecedor é \"fornecedor.com\", o "
@@ -962,7 +962,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Pode escolher o tipo de endereço que o correio expedido vai indicar nas "
"zonas \"From:\" e \"Reply-to:\"."
@@ -999,9 +999,9 @@ msgstr "Ponte do Correio Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Os nomes de anfitrião Internet devem ser na forma \"anfitriao.dominio."
"tipodedominio\"; por exemplo, se o seu fornecedor é \"fornecedor.com\", o "
@@ -1136,8 +1136,8 @@ msgstr "Porta Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Pode utilizar um formato numérico como \"192.168.1.0/255.255.255.0\" ou um "
"formato texto como \".domain.net\""
@@ -1163,7 +1163,7 @@ msgstr "Hierarquia de cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Pode escolher sem perigo \"Nenhum proxy de nível mais alto\" se não precisa "
@@ -1244,7 +1244,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Escreva o nome completo de anfitrião (como \"cache.dominio.net\") e a porta "
@@ -1456,7 +1456,7 @@ msgstr "Controlo de acesso"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Exemplo 4: autoriza só os anfitriões do grupo rede NIS \"foonet\", mas "
@@ -1605,7 +1605,7 @@ msgstr "Assistente de Servidor"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Portanto, é muito provável que o nome do dominio e o endereço IP para esta "
"rede local sejam DIFERENTES da ligação \"externa\" do servidor."
@@ -1730,10 +1730,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"O nomes de anfitrião devem ser na forma \"anfitriao.dominio.tipodedominio"
"\" ; se o seu servidor vai ser um servidor Internet, o nome de dominio "
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 88955a2a..1326510b 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -233,7 +233,7 @@ msgstr "Adicionar usuário"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Para aceitar este valor e configurar seu servidor, clique em \"Confirmar\" "
@@ -814,9 +814,9 @@ msgstr "Nome do Servidor de Notícias:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Os nomes dos hosts da Internet devem ficar no formato \"host.tipodedomínio"
"\"; por exemplo, se seu provedor for \"provedor.com\", o leitor de notícias "
@@ -963,7 +963,7 @@ msgstr "Escolha um endereço consistente que você usa para receber mensagens."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Você pode selecionar o tipo de endereço que os emails enviados mostrarão nos "
"campos \"From:\" and \"Reply-to\"."
@@ -1000,9 +1000,9 @@ msgstr "Gateway para Correio na Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Nomes de hosts da internet devem estar no formato \"host.domínio."
"tipodedomínio\"; por exemplo, se ser o seu provedor é \"provedor.com\", o "
@@ -1137,8 +1137,8 @@ msgstr "Porta do Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Você pode usar um formato numérico como \"192.168.1.0/255.255.255.0\" ou um "
"formato texto como \"dominio.net\""
@@ -1164,7 +1164,7 @@ msgstr "Hierarquia do cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Você pode seguramente selecionar \"Sem proxy de nível superior\" se você "
@@ -1245,7 +1245,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Digite um hostname qualificado (como \"cache.domain.net\") e a porta de uso "
@@ -1461,7 +1461,7 @@ msgstr "Controle de acesso"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Exemplo 4: permitir somente hosts no grupo NIS \"foonet\", mas negar "
@@ -1611,7 +1611,7 @@ msgstr "Assistente do Servidor"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Assim, é muito provável que o Nome do Domínio e os Endereços de IP para a "
"rede local são DIFERENTES do servidor de conexões \"externo\" "
@@ -1736,10 +1736,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Os nomes dos domínios precisam estar no formato \"máquina.domínio.tipodedo "
"mínio\"; se seu servidor estar conectado a um servidor de Internet, o nome "
diff --git a/po/ro.po b/po/ro.po
index b95201eb..f86bd548 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -231,7 +231,7 @@ msgstr "Adăugare utilizatori"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Pentru a accepta această valoare şi a configura serverul, faceţi click pe "
@@ -814,9 +814,9 @@ msgstr "Nume server de ştiri:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Numele de gazdă Internet trebuie să fie de forma \"gazdă.domeniu.tipdomeniu"
"\"; de exemplu, dacă furnizorul ese \"provider.com\", serverul de ştiri este "
@@ -966,7 +966,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Puteţi selecta ce fel de adresă va fi afişată în câmpurile \"De la:\" şi "
"\"Răspuns la\" pentru poşta de plecare."
@@ -1003,9 +1003,9 @@ msgstr "Poartă mail Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Numele de gazdă Internet trebuie să fie de forma \" gazdă.domeniu.tipdomeniu"
"\"; de exemplu, dacă furnizorul dvs. este \"provider.com\", adresa "
@@ -1140,8 +1140,8 @@ msgstr "Port Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Puteţi folosi formatul numeric ca \"192.168.1.0/255.255.255.0\" sau formatul "
"text \".domain.net\""
@@ -1167,7 +1167,7 @@ msgstr "Ierarhia cache-ului"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Dacă nu aveţi nevoie de această facilitate, puteţi selecta în siguranţă "
@@ -1248,7 +1248,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Introduceţi numele gazdei (ex. \"cache.domeniu.ro\") şi portul ce vor fi "
@@ -1466,7 +1466,7 @@ msgstr "Control acces"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Exemplul 4: Permite numai accesul gazdelor din grupul de reţea NIS \"foonet"
@@ -1618,7 +1618,7 @@ msgstr "Asistent server"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Deci, este foarte probabil că numele de domeniu şi adresele IP ale acestei "
"reţele locale sunt DIFERITE de cele ale conexiunii serverului \"extern\"."
@@ -1745,10 +1745,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Numele de gazdă Internet trebuie să fie de forma \"gazdă.domeniu.tipdomeniu"
"\"; dacă serverul dvs. va fi un server în Internet, numele său trebuie să "
diff --git a/po/ru.po b/po/ru.po
index 94260a16..1eb338bc 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -228,7 +228,7 @@ msgstr " "
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
" , \""
@@ -798,9 +798,9 @@ msgstr " "
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
" \".._\"; "
", \".com\", "
@@ -947,7 +947,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
" , "
" \"From:\" \"Reply-to\"."
@@ -984,9 +984,9 @@ msgstr " "
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
" \".._\"; "
", \".com\", "
@@ -1119,8 +1119,8 @@ msgstr " "
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
" \"192.168.1.0/255.255.255.0"
"\" \".domain.net\""
@@ -1146,7 +1146,7 @@ msgstr " Cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
" \" \", "
@@ -1227,7 +1227,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
" ( \"cache.domain.net\") "
@@ -1442,7 +1442,7 @@ msgstr " "
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* 4: NIS \"foonet\", "
@@ -1590,7 +1590,7 @@ msgstr " "
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
", , IP- "
" \"\" ."
@@ -1714,10 +1714,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
" \".._\"; "
" , , "
diff --git a/po/sk.po b/po/sk.po
index f455a66a..006dd4de 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -225,7 +225,7 @@ msgstr "Pridanie používateľa"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Pre akceptovanie týchto hodnôt a nakonfigurovanie vášho servera, kliknite na "
@@ -787,9 +787,9 @@ msgstr "Meno News servera:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Názvy počítačov musia byť vo formáte \"pocitac.domena.typdomeny\"; "
"napríklad, ak váš provider má adresu \"provider.sk\", news server bude "
@@ -937,7 +937,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Môžete si nastaviť adresy, ktoré budú mať odchodzie emaily v hlavičkách "
"\"From:\" a \"Reply-to\"."
@@ -974,9 +974,9 @@ msgstr "Internetová poštová brána"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internetové názvy počítačov musia byť vo formáte \"pocitac.domena.typdomeny"
"\"; napríklad ak váš provider je \"provider.sk\" internetový mail server "
@@ -1111,8 +1111,8 @@ msgstr "Proxy Port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Môžete použiť číselný formát \"192.168.1.0/255.255.255.0\" alebo textový \"."
"domena.sk\""
@@ -1138,7 +1138,7 @@ msgstr "Hierarchia dočasnej pamäte"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Môžete bez obáv zvoliť \"Bez nadradenej proxy\" ak nepotrebujete túto "
@@ -1220,7 +1220,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Vložte celé doménové meno (napríklad: \"proxy.domena.net\") a číslo portu "
@@ -1429,7 +1429,7 @@ msgstr "Kontrola prístupu"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Ukážka 4: povoliť len hostiteľov len z NIS skupiny \"foonet\", ale zakáž "
@@ -1578,7 +1578,7 @@ msgstr "Sprievodca serverom"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Takže je veľmi pravdepodobné, že doménové meno a IP adresa pre túto lokálnu "
"sieť je ODLIŠNÉ od \"externího\" pripojenia servera."
@@ -1702,10 +1702,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Názvy počítačov musia byť vo formáte \"počítač.doména.typdomény\"; ak váš "
"server bude Internetovým serverom, doménové meno by malo byť meno "
diff --git a/po/sq.po b/po/sq.po
index cd04c0ee..60e5434d 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -235,7 +235,7 @@ msgstr "Shtimi i prdoruesit"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Pr ta pranuar kt vler, dhe pr ta konfiguruar serverin tuaj, klikoni mbi "
@@ -823,9 +823,9 @@ msgstr "Emri i Serverit t Lajmeve:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Emrat e Ftuesve t Internetit duhen t jen n formn \"host.domain."
"domaintype\"; pr shembull, nse furnizuesi i juaj sht \"provider.com\", "
@@ -975,7 +975,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Ju mund ta zgjedhni formn e adress t mesazheve dalse q posedojn zonat "
"\"From:\" dhe \"Reply-to\"."
@@ -1013,9 +1013,9 @@ msgstr "Internet Mail Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Emrat ftues t internetit duhet t ken nj form sikur \"host.domain."
"domaintype\"; pr shembull, nse furnizuesi i juaj sht \"provider.com\", "
@@ -1150,8 +1150,8 @@ msgstr "Porta Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Ju mund t prdorni n form numerike sikur \"192.168.1.0/255.255.255.0\" "
"ose sikur tekst p.sh. \".domain.net\""
@@ -1178,7 +1178,7 @@ msgstr "Hierarshia e fshehjeve"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Ju mund ta zgjedhni mundsin \"Asnj nivel i lart proxy\" nse ju nuk keni "
@@ -1260,7 +1260,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Futni emrin e ftuesit (sikur \"cache.domain.net\") dhe portn e proxy q "
@@ -1475,7 +1475,7 @@ msgstr "Kontrolues i Hyrjeve"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Shembull 4: autorizon vetm ftuesit n nj grup NIS \"foonet\", mirpo "
@@ -1626,7 +1626,7 @@ msgstr "Asistent Serveri"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"sht shum e mundur q emri i prons dhe i adress IP pr kt rrjet lokal "
"t jen i NDRYSHM nga lidhjet e serverit \"external\"."
@@ -1752,10 +1752,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Emrar ftues duhen t jen n form \"host.domain.domaintype\"; nse serveri "
"juaj duhet t jet i tejdukshm nga Interneti, emri i prons duhet t jet "
diff --git a/po/sr.po b/po/sr.po
index 310d7784..443b4d5b 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -228,7 +228,7 @@ msgstr "Додавање корисника"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Да би сте прихватили ове вредности, и подесили сервер, притисните \"Потврди"
@@ -790,9 +790,9 @@ msgstr "Име News сервера:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Имена интернет домаћина мора да буде у облику \"domacin.domen.tipdomena\"; "
"на пример, ако је Ваш пружалац \"pruzalac.com\", онда је адреса интернет "
@@ -939,7 +939,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Можете да изаберете шта ће се појављивати у следећим пољима излазних порука: "
"\"From\" и \"Reply-to\"."
@@ -978,9 +978,9 @@ msgstr "Интернет Mail Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Имена интернет домаћина морају да буду облика \"domacin.domen.tipdomena\"; "
"на пример, ако је ваш пружалац \"pruzalac.com\", адреса поштанског сервера "
@@ -1113,8 +1113,8 @@ msgstr "Прикључак проксија"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Можете да користите или бројчани формат као \"192.168.1.0/255.255.255.0\" "
"или текстуални као \"domen.net\""
@@ -1140,7 +1140,7 @@ msgstr "Кеш хијерархија"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Можете једноставно изабрати \"No upper level proxy\" уколико не желите ову "
@@ -1221,7 +1221,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Унесите квалифиновано име хоста (нпр. \"cache.domain.net\") и порт за прокси."
@@ -1431,7 +1431,7 @@ msgstr "Контрола приступа"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Пример 4: дозволи само домаћинима у NIS мрежној групи \"footnet\", али "
@@ -1578,7 +1578,7 @@ msgstr "Сервер чаробњак"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Врло је вероватно да је име домена и да су IP адресе за ову локалну мрежу "
"РАЗЛИЧИТИ од сервера \"external\" конекције."
@@ -1700,10 +1700,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Имена домаћина (Host) морају бити у форми \"host.domain.domaintype\"; "
"уколико ће ваш сервер бити Интернет сервер, име домена би требало да буде "
diff --git a/po/sr@Latn.po b/po/sr@Latn.po
index a2c14ef6..fa0b1964 100644
--- a/po/sr@Latn.po
+++ b/po/sr@Latn.po
@@ -229,7 +229,7 @@ msgstr "Dodavanje korisnika"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Da bi ste prihvatili ove vrednosti, i podesili server, pritisnite \"Potvrdi"
@@ -792,9 +792,9 @@ msgstr "Ime News servera:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Imena internet domaćina mora da bude u obliku \"domacin.domen.tipdomena\"; "
"na primer, ako je Vaš pružalac \"pruzalac.com\", onda je adresa internet "
@@ -941,7 +941,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Možete da izaberete šta će se pojavljivati u sledećim poljima izlaznih "
"poruka: \"From\" i \"Reply-to\"."
@@ -980,9 +980,9 @@ msgstr "Internet Mail Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Imena internet domaćina moraju da budu oblika \"domacin.domen.tipdomena\"; "
"na primer, ako je vaš pružalac \"pruzalac.com\", adresa poštanskog servera "
@@ -1116,8 +1116,8 @@ msgstr "Priključak proksija"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Možete da koristite ili brojčani format kao \"192.168.1.0/255.255.255.0\" "
"ili tekstualni kao \"domen.net\""
@@ -1143,7 +1143,7 @@ msgstr "Keš hijerarhija"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Možete jednostavno izabrati \"No upper level proxy\" ukoliko ne želite ovu "
@@ -1224,7 +1224,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Unesite kvalifinovano ime hosta (npr. \"cache.domain.net\") i port za proksi."
@@ -1435,7 +1435,7 @@ msgstr "Kontrola pristupa"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Primer 4: dozvoli samo domaćinima u NIS mrežnoj grupi \"footnet\", ali "
@@ -1582,7 +1582,7 @@ msgstr "Server čarobnjak"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Vrlo je verovatno da je ime domena i da su IP adrese za ovu lokalnu mrežu "
"RAZLIČITI od servera \"external\" konekcije."
@@ -1705,10 +1705,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Imena domaćina (Host) moraju biti u formi \"host.domain.domaintype\"; "
"ukoliko će vaš server biti Internet server, ime domena bi trebalo da bude "
diff --git a/po/sv.po b/po/sv.po
index 58f23baf..4027695d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -234,7 +234,7 @@ msgstr "Lägg till användare"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"För att acceptera detta värde och för att konfigurera servern, klicka på "
@@ -802,9 +802,9 @@ msgstr "Namn på diskussionsgruppserver:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internetdatornamn måste vara i formen \"dator.domän.domäntyp\". Om din "
"leverantör är \"leverantör.se\", är diskussionsgruppsservern vanligtvis "
@@ -951,7 +951,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Du kan välja vilken typ av adress som utgående post ska visa i fälten \"Från:"
"\" och \"Svara till\"."
@@ -990,9 +990,9 @@ msgstr "Gateway för Internet-e-post"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internetdatornamn måste vara i formen \"dator.domän.domäntyp\". Om din "
"leverantör är \"leverantör.se\", är e-postservern för Internet vanligtvis "
@@ -1126,8 +1126,8 @@ msgstr "Proxy-port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Du kan antingen använda ett nummerformat som \"192.168.1.0/255.255.255.0\" "
"eller ett textformat som \".domän.se\""
@@ -1153,7 +1153,7 @@ msgstr "Cachehierarki"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Du kan säkert välja \"Ingen proxy för övre nivå\" om du inte behöver den "
@@ -1235,7 +1235,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Ange hela datornamnet (t ex \"cache.domän.se\") och porten för proxyn som "
@@ -1443,7 +1443,7 @@ msgstr "Åtkomstkontroll"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Exempel 4: tillåt endast värddatorer i NIS-nätgrupp \"exnät\", men neka "
@@ -1591,7 +1591,7 @@ msgstr "Serverguide"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Det är mycket möjligt att domännamnet och IP-adressen för det här lokala "
"nätverket SKILJER sig från serverns \"externa\" anslutning."
@@ -1715,10 +1715,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Datornamn måste vara i formen \"dator.domän.domäntyp\". Om din server ska "
"vara en Internetserver, ska domännamnet vara det namn som är registrerat hos "
diff --git a/po/ta.po b/po/ta.po
index 11aebefd..98da1b79 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -228,7 +228,7 @@ msgstr "பயனர் சேர்க்ைக"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"இங்கு கொடுக்கப்பட்டுள்ள மதிப்புகளை ஓப்புக்ெகன்டு உங்கள் சேவையகத்ைத வடிவமைக்க "
@@ -782,9 +782,9 @@ msgstr "செய்தியஞ்சல் சேவையகத்தின
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"இணையத்தில் உள்ள கணினியின் பெயர் என்றும் \"host.domain.domaintype\\ முழுதாகச் சொல்லப்பட "
"வேண்டும். உங்கள் சேவையளிப்பவர் \"provider.com\" என இருந்தால் பொதுவாக செய்தியஞ்சல் "
@@ -930,7 +930,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"நீங்கள் உங்களிடமிருந்து செல்லும் மின்னஞ்சல்களின் \"From:\" - அஞுப்புனர் மற்றும் \"Reply-to"
"\" பதிலளிக்க-வேண்டிய முகவரி ஆகிய மதிப்புகளை மாற்ற முடியும்"
@@ -969,9 +969,9 @@ msgstr "மின்னஞ்சல் நுழைவாயில் கணி
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"மின்னஞ்சல் சேவையகத்தின் பெயர் என்பது இணையத்திலிருந்து உங்கள் வலையமைப்பிற்கு மின்னஞ்சல்களை "
"அளிக்கும் கணினியின் பெயர், இது பொதுவாக உங்கள் சேவையளிப்பவர் இதனை உங்களுக்கு தருவார்"
@@ -1100,8 +1100,8 @@ msgstr "பினாமி துறை"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"நீங்கள் \\192.168.1.0/255.255.255.0\\ அல்லது \\.domain.net\\ என்ற முறையில் "
"பயன்படுத்தலாம்"
@@ -1127,7 +1127,7 @@ msgstr "விரைவு படிநிலைகள்"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr "நிங்கள் பாதுகாப்பாக \\உயர்நிலை பினாமி இல்ைல\\ எனத் தேர்வுச் செய்யலாம்"
@@ -1201,7 +1201,7 @@ msgstr "நினைவக விரைவு என்பது நிரல்
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr "முழு இணையப்ெபயரையும் பினாமி துறையையும் கொடுக்கவும்"
@@ -1402,10 +1402,10 @@ msgstr "அணுகல் கட்டுப்பாடு"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
#: ../samba_wizard/samba.wiz_.c:52
@@ -1549,7 +1549,7 @@ msgstr "சேவையக மாயாவி"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"உங்கள் உள்ளமை வலையமைப்பின் களப்ெபயரும், IP முகவரியும் நீங்கள் கொடுத்த \\வெளியமைப்பு \\ "
"இணைப்பிலிருந்து வேறுபட்டது"
@@ -1669,10 +1669,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"உங்கள் கணினி இணையத்தில் இணைந்து இருந்தால் நீங்கள் உங்கள் சேவையாளரிடம் பதிவுச் செய்த பெயரை "
"பயன்படுத்த வேண்டும். இது பொதுவாக \"host.domain.domaintype\"; என்ற முறையில் "
diff --git a/po/tg.po b/po/tg.po
index d74d41ed..132e038d 100644
--- a/po/tg.po
+++ b/po/tg.po
@@ -230,7 +230,7 @@ msgstr "корванд"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"барои қабулкадани қимматиҳо ва ба танзим даровардани хидматрасон, инро зер "
@@ -797,9 +797,9 @@ msgstr "номи хабарҳои хидматрасон:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Номи хидматгори Интернет бояд дар варақа бошад\"host.domain.domaintype\"; "
"барои намуна, агар таҳиягари шумо \"provider.com\", Хидматрасони хабарҳои "
@@ -943,7 +943,7 @@ msgstr "ин бояд интихобшудаи адресро ҳар дафа и
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Шумо метавонед намуди суроғаро дар пости рафтаистода дар майдони \"From:\" "
"and \"Reply-to\" интихоб кунед."
@@ -981,9 +981,9 @@ msgstr "пости интернети Gateway"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Номи соҳибони Internet бояд дар намуди \"host.domain.domaintype\" бошад; "
"масалан, агар таҳиягари Шумо \"provider.com\" бошад, одатан хидматрасони "
@@ -1115,8 +1115,8 @@ msgstr "Бандари Proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Шумо метавонед ё шакли рақамӣ ба монанди \"192.168.1.0/255.255.255.0\" ё "
"шакли матниро ба монанди \".domain.net\" истифода баред"
@@ -1143,7 +1143,7 @@ msgstr "Иерархияи захира"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Агар ба шумо ин хосият зарур набошад Шумо метавонед \"бе proxy дараҷаи болоӣ"
@@ -1224,7 +1224,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Номи соҳиби qualified дохил кунед (ба монанди \"cache.domain.net\") ва "
@@ -1439,7 +1439,7 @@ msgstr "Идораи пайвастшавӣ"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Намунаи 4: танҳо соҳибҳои дар NIS шабакагурўҳи \"foonet\", буда иҷозат "
@@ -1588,7 +1588,7 @@ msgstr "Устоди Хидматрасон"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Барои ҳамин ҳам мумкин аст, ки номи хидматрасони маҳаллӣ ва IP суроғаҳо "
"барои иншабака аз пайвастшавии хидматрасони \"external\" ДИГАР бошад."
@@ -1714,10 +1714,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Номи соҳиб бояд дар намуди зерин бошад \"host.domain.domaintype\"; агар "
"хидматрасони Шумо хидматрасони Internet бошад, номи хидматрасони маҳаллӣ "
diff --git a/po/tr.po b/po/tr.po
index 66b2915e..f005f472 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -231,7 +231,7 @@ msgstr "Kullanıcı eklenmesi"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Bu değeri kabul etmek ve sunucunuzu yapılandırmak için \"Onayla\"'ya veya "
@@ -813,9 +813,9 @@ msgstr "Haber Sunucusunun Adı:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Internet bilgisayar adları \"bilgisayar.alan.alanturu\" şeklinde olmalı. "
"Örneğin sağlayıcınız \"saglayici.com\" ise internet haber sunucusu "
@@ -963,7 +963,7 @@ msgstr "Bu gelen postalarda kullandığınız adresle uyumlu olarak seçilmeli."
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Giden postaların \"Kimden:\" ve \"Yanıtla\" alanlarında görünecek olan "
"adresleri seçebilirsiniz."
@@ -1000,9 +1000,9 @@ msgstr "Internet Posta Geçidi"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Internet bilgisayar adları \"bilgisayar.alan.turu\" şeklinde olmalı. Örneğin "
"sağlayıcınız \"saglayici.com\" ise internet posta sunucusu genellikle \"smtp."
@@ -1137,8 +1137,8 @@ msgstr "Vekil Sunucu Portu"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"\"192.168.1.0\" gibi numara biçimi veya \".alan.net\"'teki gibi metin biçimi "
"kullanabilirsiniz."
@@ -1162,7 +1162,7 @@ msgstr "Önbellek hiyerarşisi"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Eğer ihtiyacınız yoksa güvenli bir şekilde \"Üst seviye vekil yok\"'u "
@@ -1244,7 +1244,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Seçilen bilgisayar ismini (\"onbellek.alanı.net\" gibi) ve kullanılacak "
@@ -1457,7 +1457,7 @@ msgstr "Erişim denetimi"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Örnek 4: \"foonet\" NIS ağ grubu içerisindeki makinelere izin vermek, "
@@ -1604,7 +1604,7 @@ msgstr "Sunucu Sihirbazı"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Büyük bir olasılıkla bu yerel ağ için alan adı ve IP adresleri sunucunun "
"\"dış\" bağlantısından FARKLI."
@@ -1726,10 +1726,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Bilgisayar adları \"bilgisayar.alan.alanturu\" şeklinde olmalı. Eğer "
"sunucunuz bir internet sunucusu ise, alan adı servis sağlayıcınız tarafından "
diff --git a/po/uk.po b/po/uk.po
index 646b0d39..6d50c4b4 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -228,7 +228,7 @@ msgstr " "
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
" , Φ \"\" "
@@ -794,9 +794,9 @@ msgstr " :"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
" Ԧ Φ Ħ \\.._\"; "
", \"provider.com\", Ħ "
@@ -943,7 +943,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
" , Ȧ \":"
"\" \"צ\"."
@@ -980,9 +980,9 @@ msgstr " -"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
" Ԧ ˦ ͦ \\.._"
"\"; , \"provider.com\", "
@@ -1115,8 +1115,8 @@ msgstr " Ӧ"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
" , "
"\"192.168.1.0/255.255.255.0\", , : \"domain.net\""
@@ -1142,7 +1142,7 @@ msgstr "Ȧ "
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
" \" Ҧ Ӧ\", Ҧ "
@@ -1222,7 +1222,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Ħ ( \"cache.domain.net\") Ӧ."
@@ -1433,7 +1433,7 @@ msgstr " "
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* 4: Ԧ צ Ц NIS \"foonet\", "
@@ -1580,7 +1580,7 @@ msgstr "ͦ "
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
" , æ , ip- æ ϧ ֦ "
" צ ' \"external\"."
@@ -1704,10 +1704,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
" Ħ \"host.domain.domaintype\"; "
" -, Ť "
diff --git a/po/uz.po b/po/uz.po
index d2cd0c3b..4614ba1b 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -237,7 +237,7 @@ msgstr "Foldalanuvchini qo'shish"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Bu qiymatlarni qabul qilish va serveringizni moslash uchun \"Tasdiqlash\" "
@@ -785,9 +785,9 @@ msgstr "Yangiliklar serverining nomi:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
#: ../news_wizard/news.wiz_.c:22
@@ -929,7 +929,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -965,9 +965,9 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1091,8 +1091,8 @@ msgstr "Proksining porti"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Raqamli formatidan, masalan \"192.168.1.0/255.255.255.0\", yoki matn "
"formatidan, masalan \".domain.net\", foydalanishingiz mumkin."
@@ -1116,7 +1116,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
@@ -1187,7 +1187,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1380,7 +1380,7 @@ msgstr ""
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1513,7 +1513,7 @@ msgstr "Server yordamchisi"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1615,10 +1615,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/uz@Cyrl.po b/po/uz@Cyrl.po
index 6dd97498..1ca4d977 100644
--- a/po/uz@Cyrl.po
+++ b/po/uz@Cyrl.po
@@ -234,7 +234,7 @@ msgstr "Фолдаланувчини қўшиш"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Бу қийматларни қабул қилиш ва серверингизни мослаш учун \"Тасдиқлаш\" "
@@ -773,9 +773,9 @@ msgstr "Янгиликлар серверининг номи:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
#: ../news_wizard/news.wiz_.c:22
@@ -916,7 +916,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -952,9 +952,9 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1076,8 +1076,8 @@ msgstr "Проксининг порти"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Рақамли форматидан, масалан \"192.168.1.0/255.255.255.0\", ёки матн "
"форматидан, масалан \".domain.net\", фойдаланишингиз мумкин."
@@ -1101,7 +1101,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
@@ -1172,7 +1172,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1364,7 +1364,7 @@ msgstr ""
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1497,7 +1497,7 @@ msgstr "Сервер ёрдамчиси"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1599,10 +1599,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/vi.po b/po/vi.po
index 4870089f..3e7462a5 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -231,7 +231,7 @@ msgstr "Bổ sung người dùng"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Để chấp nhận giá trị này và cấu hình máy chủ của bạn, hãy nhấn lên \"Khẳng "
@@ -791,9 +791,9 @@ msgstr "Tên Máy Chủ Tin Tức:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"Tên chủ (hostname) Internet phải có khuôn dạng \"host.domain.domaintype\"; "
"ví dụ: nếu nhà cung cấp của bạn là \"provider.com\", thì máy chủ tin tức "
@@ -936,7 +936,7 @@ msgstr "Việc này nên chọn thích hợp với địa chỉ mà bạn dùng
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Bạn có thể chọn loại địa chỉ mà thư đi sẽ hiển thị trong trường \"Từ:\" và "
"\"Trả lời cho\" ."
@@ -973,9 +973,9 @@ msgstr "Gateway của Thư Internet"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"Các tên chủ (hostname) Internet phải có khuôn dạng \"host.domain.domaintype"
"\"; ví dụ: nếu nhà cung cấp là \"provider.com\", thì máy chủ thư internet sẽ "
@@ -1105,8 +1105,8 @@ msgstr "Proxy Port"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Có thể dùng dạng số kiểu như \"192.168.1.0/255.255.255.0\" hoặc là dạng văn "
"bản kiểu như \".domain.net\""
@@ -1132,7 +1132,7 @@ msgstr "Thứ bậc cache"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Có thể an toàn để chọn \"Không có proxy mức cao hơn\" nếu bạn không cần chức "
@@ -1213,7 +1213,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
"Nhập hostname tiêu chuẩn (kiểu như \"cache.domain.net\") và cổng của proxy "
@@ -1419,7 +1419,7 @@ msgstr "Điều khiển truy cập"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* Ví dụ 4: cho phép chỉ có các host trong nhóm mạng NIS \"foonet\", nhưng "
@@ -1567,7 +1567,7 @@ msgstr "Đồ Thuật Máy Chủ"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
"Do vậy, có lẽ là tên miền và địa chỉ IP cho mạng cục bộ này khác với kết nối "
"\"bên ngoài\" của máy chủ."
@@ -1690,10 +1690,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"Các tên chủ (hostname) phải có khuôn dạng \"host.domain.domaintype\"; Nếu "
"máy chủ của bạn là máy chủ Internet, tên miền sẽ là tên do nhà cung cấp của "
diff --git a/po/wa.po b/po/wa.po
index b6d758c3..48258024 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -237,7 +237,7 @@ msgstr "Radjouter n uzeu"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"Po-z accepter cisse valixhance la, ey aponty vosse sierveu, clitchz so "
@@ -813,9 +813,9 @@ msgstr "No do sierveu di copinreyes:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
#: ../news_wizard/news.wiz_.c:22
@@ -956,7 +956,7 @@ msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr ""
"Vos ploz tchoezi li sre d'adresse ki les emiles e rexhowe ront dins leus "
"tchamps From eyet Reply-To."
@@ -991,9 +991,9 @@ msgstr "Pasrele d'emilaedje sol daegntoele"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:18
@@ -1125,8 +1125,8 @@ msgstr "Prt pol proxy"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"Vos ploz eploy ene cogne limerike, metans 192.168.1.0/255.255.255.0, "
"oudonbn ene cogne tecse, metans .dominne.net"
@@ -1152,7 +1152,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr ""
"Vos ploz tchoezi sins risse pont d'procsi di livea dzeur si vos n'avoz "
@@ -1233,7 +1233,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr ""
@@ -1430,7 +1430,7 @@ msgstr "Contrle d'accs"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1567,7 +1567,7 @@ msgstr "Macrea di sierveus"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr ""
#: ../server_wizard/server.wiz_.c:28
@@ -1671,10 +1671,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
#: ../server_wizard/server.wiz_.c:52
diff --git a/po/zh_CN.po b/po/zh_CN.po
index d98e32a1..0f9ed0a0 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -218,7 +218,7 @@ msgstr "添加用户"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr ""
"要接受这个值,并配置您的服务器,请单击“确认”或使用“上一步”按钮进行修改。"
@@ -745,9 +745,9 @@ msgstr "新闻组服务器名:"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"互联网主机名的格式必须是“host.domain.domaintype”;例如,您的提供商是 "
"“provider.com”,互联网新闻组服务器通常就是“news.provider.com”。"
@@ -888,7 +888,7 @@ msgstr "这应该和您用来接收邮件的地址一致。"
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr "您可以选择发出邮件在“From:”和“Reply-to”字断显示的地址类型。"
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -922,9 +922,9 @@ msgstr "互联网邮件网关"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"互联网主机名必须采用下列格式“host.domain.domaintype”;例如,您的服务商"
"是“provider.com”,邮件服务器通常就是“smtp.provider.com”。"
@@ -1044,8 +1044,8 @@ msgstr "代理端口"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"可以使用数字格式,如“192.168.1.0/255.255.255.0”,或者文字格式,如“.domain."
"net”"
@@ -1069,7 +1069,7 @@ msgstr "缓存层次"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr "如果不需要,请选择“没有上级代理”。"
@@ -1143,7 +1143,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr "输入代理使用的完整的主机名(如“cache.domain.net”)和端口。"
@@ -1341,7 +1341,7 @@ msgstr "访问控制"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
"* 示例 4: 只允许 NIS 网络组中的主机“foonet”,但是禁止从特定的主机上访问\\n主"
@@ -1478,7 +1478,7 @@ msgstr "服务器向导"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr "局域网使用的域名和 IP 地址,可以与服务器“外部”连接不同。"
#: ../server_wizard/server.wiz_.c:28
@@ -1587,10 +1587,10 @@ msgstr ""
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"主机名必须是下列格式“host.domain.domaintype”;如果您的服务器要向互联网提供服"
"务,域名必须向您的服务商注册。如果您只在内部网上使用,任何有效的名字都可以,"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 7c0f03c9..ddc652fb 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -210,7 +210,7 @@ msgstr "W[ϥΪ"
#: ../db_wizard/db.wiz_.c:2
msgid ""
-"To accept this value, and configure your server, click on \\qConfirm\\q or "
+"To accept this value, and configure your server, click on \"Confirm\" or "
"use the Back button to correct them."
msgstr "\"T{\"oƭȩM]wzAAΤW@@XC"
@@ -742,9 +742,9 @@ msgstr "sDAW١G"
#: ../news_wizard/news.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet news server is "
+"usually \"news.provider.com\"."
msgstr ""
"pDW٥H\"host.domain.domaintype\"榡RWFҦpApGz"
"̬O\"provider.com\"ApsDAq`O\"news.provider.com\"C"
@@ -891,7 +891,7 @@ msgstr "zӿܤ@өMiӹqla}@PC"
#: ../postfix_wizard/Postfix.pm_.c:50 ../postfix_wizard/postfix.wiz_.c:21
msgid ""
"You can select the kind of address that outgoing mail will show in the "
-"\\qFrom:\\q and \\qReply-to\\q field."
+"\"From:\" and \"Reply-to\" field."
msgstr "ziHܥ~Xqlܦb \"From:\" \"Reply-to\" 쪺a}C"
#: ../postfix_wizard/Postfix.pm_.c:56
@@ -927,9 +927,9 @@ msgstr "pql"
#: ../postfix_wizard/Postfix.pm_.c:74 ../postfix_wizard/postfix.wiz_.c:20
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."
+"Internet host names must be in the form \"host.domain.domaintype\"; for "
+"example, if your provider is \"provider.com\", the internet mail server is "
+"usually \"smtp.provider.com\"."
msgstr ""
"pDW٥H\"host.domain.domaintype\"榡RWFҦpApGz"
"̬O\"provider.com\"ApqlAq`O\"smtp.provider.com\"C"
@@ -1050,8 +1050,8 @@ msgstr "NzqT"
#: ../proxy_wizard/proxy.wiz_.c:21
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"
+"You can use either a numeric format like \"192.168.1.0/255.255.255.0\" or "
+"a text format like \".domain.net\""
msgstr ""
"ziHܨϥμƦrΦp\"192.168.1.0/255.255.255.0\"ΤrΦp\".domain."
"net\""
@@ -1075,7 +1075,7 @@ msgstr "wRŲ´"
#: ../proxy_wizard/proxy.wiz_.c:29
msgid ""
-"You can safely select \\qNo upper level proxy\\q if you don't need this "
+"You can safely select \"No upper level proxy\" if you don't need this "
"feature."
msgstr "pGzݭnoӥNz\Aziwa \"SWhNz\"C"
@@ -1152,7 +1152,7 @@ msgstr ""
#: ../proxy_wizard/proxy.wiz_.c:52
msgid ""
-"Enter the qualified hostname (like \\qcache.domain.net\\q) and the port of "
+"Enter the qualified hostname (like \"cache.domain.net\") and the port of "
"the proxy to use."
msgstr "J{iDW (p \"cache.domain.net\") MNzҥΪqTC"
@@ -1352,7 +1352,7 @@ msgstr "ϥv"
#: ../samba_wizard/samba.wiz_.c:51
msgid ""
-"* Example 4: allow only hosts in NIS netgroup \\qfoonet\\q, but deny access "
+"* Example 4: allow only hosts in NIS netgroup \"foonet\", but deny access "
"from one particular host\\nhosts allow = @foonet\\nhosts deny = pirate"
msgstr ""
@@ -1488,7 +1488,7 @@ msgstr "AF"
#: ../server_wizard/server.wiz_.c:27
msgid ""
"So, it's very probable that domain name and IP adresses for this local "
-"network are DIFFERENT from the server \\qexternal\\q connection."
+"network are DIFFERENT from the server \"external\" connection."
msgstr "ҥHϰW٤IP}OܥiP\"~\"sPC"
#: ../server_wizard/server.wiz_.c:28
@@ -1595,10 +1595,10 @@ msgstr "~sOѤ@ȤݹqϥΥt~dνոѾsC"
#: ../server_wizard/server.wiz_.c:50
msgid ""
-"Host names must be in the form \\qhost.domain.domaintype\\q; if your server "
+"Host names must be in the form \"host.domain.domaintype\"; 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."
+"like \"company.net\"."
msgstr ""
"DW٥H\"host.domain.domaintype\"榡өRWFpGzAO@x"
"pAADWӬOzVz̵nOW١CpGzupAhi"
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index 5b74a00e..3a04077e 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -47,7 +47,7 @@ $o->{pages} = {
next => 'config'
},
config => {
- name => N("Outgoing Mail Address") . "\n\n" . N("You can select the kind of address that outgoing mail will show in the \"From:\" and \"Reply-to\" field.") . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail."),
+ name => N("Outgoing Mail Address") . "\n\n" . N('You can select the kind of address that outgoing mail will show in the "From:" and "Reply-to" field.') . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail."),
pre => sub {
$o->{var}{wiz_mail_masquerade} ||= get_mail_masquerade();
},
@@ -58,20 +58,16 @@ $o->{pages} = {
next => 'isp'
},
warning => {
- name => N("Warning:"),
- data => [
- { label => N("You entered an empty address for the mail gateway.") },
- { label => N("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.") }
+ name => N("Warning:") . "\n\n" . N("You entered an empty address for the mail gateway.") . "\n\n" . N("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.") }
],
next => 'summary'
},
masquerade_not_good => {
- name => N("Error."),
- data => [ { label => N("Masquerade not good!") } ],
+ name => N("Error.") . "\n\n" . N("Masquerade not good!"),
next => 'config'
},
isp => {
- name => N("Internet Mail Gateway") . "\n\n" . N("Your server will send the outgoing through a mail gateway, that will take care of the final delivery.") . "\n\n" . N("Internet host names must be in the form \"host.domain.domaintype\"; for example, if your provider is \"provider.com\", the internet mail server is usually \"smtp.provider.com\"."),
+ name => N("Internet Mail Gateway") . "\n\n" . N('Your server will send the outgoing through a mail gateway, that will take care of the final delivery.') . "\n\n" . N('Internet host names must be in the form "host.domain.domaintype"; for example, if your provider is "provider.com", the internet mail server is usually "smtp.provider.com".'),
pre => sub {
$o->{var}{wiz_ext_mail_relay} ||= get_mail_relay();
},
@@ -91,8 +87,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N("Congratulations"),
- data => [ { label => N("The wizard successfully configured your Internet Mail service of your server.") } ],
+ name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your Internet Mail service of your server."),
end => 1,
next => 0
},
diff --git a/proxy_wizard/Squid.pm b/proxy_wizard/Squid.pm
index cba09f44..24fc4ad0 100755
--- a/proxy_wizard/Squid.pm
+++ b/proxy_wizard/Squid.pm
@@ -83,11 +83,7 @@ $o->{pages} = {
next => 'memory'
},
error_low => {
- name => N('Warning.'),
- data => [
- { label => N('You must choose a port greater than 1024 and lower than 65535') },
- { label => N('Press back to change the value.') }
- ],
+ name => N('Warning.') . "\n\n" . N('You must choose a port greater than 1024 and lower than 65535') . "\n\n" . N('Press back to change the value.'),
next => 'memory'
},
memory => {
@@ -171,8 +167,7 @@ $o->{pages} = {
next => 'end'
},
end => {
- name => N('Congratulation'),
- data => [ { label => N('The wizard successfully configured your proxy server.') } ],
+ name => N('Congratulation') . N('The wizard successfully configured your proxy server.'),
end => 1,
next => 0
},
diff --git a/samba_wizard/Samba.pm b/samba_wizard/Samba.pm
index e192d0d2..160d2103 100755
--- a/samba_wizard/Samba.pm
+++ b/samba_wizard/Samba.pm
@@ -76,10 +76,7 @@ $o->{pages} = {
next => 'ask_banner'
},
error_in_workgroup => {
- name => N('Error.'),
- data => [
- { label => N('The Workgroup is wrong') },
- ],
+ name => N('Error.') . "\n\n" . N('The Workgroup is wrong'),
post => \&check_workgroup,
next => 'ask_workgroup'
},
@@ -95,10 +92,8 @@ $o->{pages} = {
next => 'ask_net'
},
error_in_banner => {
- name => N('Error.'),
- data => [
- { label => N('The Server Banner is incorrect') },
- ],
+ name => N('Error.') . "\n\n" . N('The Server Banner is incorrect'),
+ ignore => 1,
next => 'ask_banner'
},
ask_net => {
@@ -143,6 +138,7 @@ $o->{pages} = {
warn_smbpasswd => {
name => N('Warning.') . "\n\n" . N('You have selected to allow user access their home directories via samba but you/they must use smbpasswd to set a password.'),
post => \&ask_dir,
+ ignore => 1,
next => 'summary'
},
ask_dir => {
@@ -157,10 +153,8 @@ $o->{pages} = {
next => 'ask_access'
},
error_in_dir => {
- name => N('Error.'),
- data => [
- { label => N('The path you entered does not exist.') },
- ],
+ name => N('Error.') . "\n\n" . N('The path you entered does not exist.'),
+ ignore => 1,
next => 'ask_dir'
},
ask_access => {
@@ -192,11 +186,13 @@ $o->{pages} = {
warning => {
name => N('Warning.'),
data => [ { label => N('') } ],
+ ignore => 1,
next => 'summary'
},
error => {
name => N('Error.'),
data => [ { label => N('') } ],
+ ignore => 1,
next => 'config'
},
summary => {
@@ -221,8 +217,7 @@ configure Samba.') . "\n\n" . N('To accept these values, and configure your serv
next => 'end'
},
end => {
- name => N('Congratulation'),
- data => [ { label => N('The wizard successfully configured your Samba server.') } ],
+ name => N('Congratulation') . "\n\n" . N('The wizard successfully configured your Samba server.'),
end => 1,
next => 0
},
@@ -289,10 +284,10 @@ sub write_conf {
foreach (@{$self->{tab}}) {
if (/^\s*\;?\s*\[(.*)\].*/) {
$menu = $1;
- print FH "$self->{conf}->{$menu}{__comment}"."[$menu]\n";
+ print FH "$self->{conf}->{$menu}{__comment}\[$menu\]\n";
}
elsif (/^(?!\#)\s*\;*\s*(.*?)\s*=/) {
- print FH "$self->{conf}->{$menu}{$1}{comment}"."$1" ." = ". "$self->{conf}->{$menu}{$1}{value}\n";
+ print FH "$self->{conf}->{$menu}{$1}{comment}$1 = $self->{conf}->{$menu}{$1}{value}\n";
}
else {
print FH $_;
@@ -305,7 +300,7 @@ sub add_printer {
my $self = shift;
my ($printer) = @_;
- if (exists $self->{conf}->{$printer}) {
+ if (exists $self->{conf}{$printer}) {
$self->comment_menu($printer, " ");
}
else {
@@ -343,10 +338,10 @@ sub comment_menu {
my ($menu, $str) = @_;
return if (!$menu or !exists $self->{conf}->{$menu});
- $self->{conf}->{$menu}{__comment} = $str;
+ $self->{conf}{$menu}{__comment} = $str;
foreach (keys %{$self->{conf}->{$menu}}) {
($_ eq "__comment") and next;
- $self->{conf}->{$menu}{$_}{comment} = $str;
+ $self->{conf}{$menu}{$_}{comment} = $str;
}
}
@@ -369,19 +364,14 @@ sub printer_sharing {
my $self = shift;
if ($o->{var}{wiz_all_printers}) {
- $self->comment_menu("printers", " ");
- foreach my $printer (keys (%::bool)) {
- $self->comment_menu($printer, ";");
- }
- }
- else {
+ $self->comment_menu('printers', " ");
+ } else {
$self->comment_menu("printers", ";");
- foreach my $printer (keys (%::bool)) {
- if (int($::bool{$printer})) {
- $self->comment_menu($printer, " ");
+ for(my $i; $i < @{$o->{var}{wiz_box_list}}; $i++) {
+ my $printer = $o->{var}{list_printers}[$i];
+ if ($o->{var}{wiz_box_list}[$i]) {
$self->add_printer($printer);
- }
- else {
+ } else {
$self->comment_menu($printer, ";");
}
}
@@ -497,13 +487,10 @@ sub do_it {
if ($o->{var}{wiz_do_printer_sharing}) {
standalone->explanations("Enabling printer sharing");
$conf->printer_sharing();
- }
- else {
+ } else {
standalone->explanations("Disabling printer sharing");
- foreach my $printer (keys (%::bool)) {
- if (!int($::bool{$printer})) {
- $conf->comment_menu("$printer", ";");
- }
+ for(my $i; $i < @{$o->{var}{wiz_box_list}}; $i++) {
+ $conf->comment_menu("$o->{var}{list_printers}[$i]", ";");
}
$conf->comment_menu("printers", ";");
}
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm
index 05b20ea2..b6ccaf57 100755
--- a/web_wizard/Apache.pm
+++ b/web_wizard/Apache.pm
@@ -57,6 +57,7 @@ my $o = {
} else {
return (0, N("%s does not exist.", $file))
}
+ 1
}
};
@@ -77,8 +78,8 @@ $o->{pages} = {
next => 'ask_mod'
},
dhcp_warning => {
- name => N('Warning.'),
- data => [ { label => N('You are in dhcp, server may not work with your configuration.') } ],
+ name => N('Warning.') . "\n\n" . N('You are in dhcp, server may not work with your configuration.'),
+ ignore => 1,
next => 'config'
},
ask_mod => {
@@ -113,11 +114,13 @@ available on your http server via http://www.yourserver.com/~user.'), type => 'b
data => [
{ label => N('The path you entered does not exist.') }
],
+ ignore => 1,
next => 'ask_dir'
},
error => {
name => N('Error.'),
data => [ { label => N('') } ],
+ ignore => 1,
next => 'config'
},
summary => {